* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #ffffff;
    --foreground: #000000;
    --border: #e5e5e5;
    --muted-foreground: #737373;
    --secondary: #f5f5f5;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.search-container {
    flex: 1;
    max-width: 42rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.5rem 2.75rem 0.5rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    background: var(--secondary);
    font-size: 0.875rem;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--foreground);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
}

.search-btn {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.75rem;
    background: var(--foreground);
    color: var(--background);
    border: none;
    border-radius: 0.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--secondary);
}

.btn-primary {
    background: var(--foreground);
    color: var(--background);
    border-color: var(--foreground);
}

.btn-primary:hover {
    background: #333;
}

/* Preferences Button */
.preferences-btn {
    background: var(--secondary);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--muted-foreground);
    border: none;
    cursor: pointer;
}

.preferences-btn svg {
    width: 1rem;
    height: 1rem;
}

.nav-container {
    position: relative;
}

nav {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

nav::-webkit-scrollbar {
    display: none;
}

nav button {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    color: var(--foreground);
    font-family: inherit;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

nav button:hover {
    color: var(--muted-foreground);
}

nav button svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.2s ease;
}

nav button.active svg {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    padding: 2rem 0;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.dropdown-header {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.designers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .designers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .designers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.designer-link {
    padding: 0.5rem 0;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    display: block;
}

.designer-link:hover {
    color: var(--muted-foreground);
}

.see-all-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 450px;
    background: #000;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.carousel-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.carousel-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 48rem;
}

.carousel-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid white;
    background: transparent;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.carousel-btn:hover {
    background: white;
    color: black;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.hero-carousel:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 2rem;
    background: white;
}

/* Product Grid */
.product-section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    cursor: pointer;
}

.product-image {
    aspect-ratio: 1;
    background: var(--secondary);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 0.25rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.product-price {
    font-size: 0.875rem;
    font-weight: 600;
}

.product-size {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: text-decoration 0.2s ease;
    text-transform: uppercase;
}

.view-more-btn:hover {
    text-decoration: underline;
}

/* Protection Banner */
.protection-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--foreground);
    color: var(--background);
    padding: 0.75rem 0;
    text-align: center;
    z-index: 40;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.protection-banner a {
    color: var(--background);
    text-decoration: underline;
    font-weight: 500;
}

.protection-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--background);
    cursor: pointer;
    font-size: 1.25rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding: 4rem 0 6rem;
    background: #000;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.875rem;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-family: inherit;
    transition: background 0.2s ease;
}

.newsletter-btn:hover {
    background: #f0f0f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer-section h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: block;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8125rem;
    color: #666;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-apps {
    display: flex;
    gap: 0.75rem;
}

.app-badge {
    height: 2.5rem;
    padding: 0 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #999;
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-badge:hover {
    border-color: #fff;
    color: #fff;
}

.app-badge svg {
    width: 1rem;
    height: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--muted-foreground);
}

.field {
    margin-bottom: 0.5rem;
}

.field label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.125rem;
    color: var(--muted-foreground);
}

.field select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    background: #fff;
    font-size: 0.875rem;
}

.methods {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
}

.methods-column {
    flex: 1;
}

.methods-column h3 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.logos img {
    height: 20px;
    width: auto;
}

.logos span {
    height: 20px;
    line-height: 20px;
    font-size: 0.75rem;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.cancel-btn {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    cursor: pointer;
}

.save-btn {
    padding: 0.5rem 1rem;
    background: var(--foreground);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .search-container {
        display: none;
    }

    .btn:not(.btn-primary) {
        display: none;
    }

    .hero-carousel {
        height: 500px;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .methods {
        flex-direction: column;
    }
}

/* Collection Title */
.collection-title {
    padding: 2rem 0;
    text-align: center;
}

.collection-title h1 {
    font-size: 2rem;
    font-weight: 600;
}

.collection-title p {
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* Main Content Layout */
.main-content {
    display: flex;
    gap: 2rem;
}

.filters-sidebar {
    width: 25%;
    min-width: 200px;
}

.products-main {
    flex: 1;
}

/* Filters */
.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section summary {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.filter-section summary::-webkit-details-marker {
    display: none;
}

.filter-section .filter-options {
    padding-top: 0.75rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sort-select {
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
}

.item-count {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Product Grid */
.product-section {
    padding: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.product-card {
    cursor: pointer;
}

.product-image {
    aspect-ratio: 3/4;
    background: var(--secondary);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 0.25rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.product-price {
    font-size: 0.875rem;
    font-weight: 600;
}

.product-size {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.2s;
}

.pagination button.active,
.pagination button:hover {
    background: var(--foreground);
    color: white;
}

@media (max-width: 767px) {
    .main-content {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
    }
}

/* Product Detail Styles */
.product-detail {
    padding: 2rem 0;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.product-main {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.image-gallery {
    flex: 1;
}

.main-image {
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumbnails img {
    width: 100px;
    height: 133px;
    object-fit: cover;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.thumbnails img:hover {
    opacity: 0.8;
}

.product-details {
    flex: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-designer {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-size {
    margin-bottom: 0.5rem;
}

.product-size label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.product-size select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
}

.product-condition {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.buy-buttons .btn {
    flex: 1;
}

.seller-info {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.seller-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.seller-info p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.seller-rating {
    color: #ffd700; /* Gold for stars */
}

.product-description {
    margin-top: 2rem;
}

.product-description h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shipping-info {
    margin-top: 2rem;
}

.shipping-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.authenticity {
    margin-top: 2rem;
    background: var(--secondary);
    padding: 1rem;
    border-radius: 0.25rem;
}

.authenticity h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-items {
    margin-top: 3rem;
}

.related-items h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .product-main {
        flex-direction: column;
    }

    .thumbnails {
        justify-content: center;
    }
}

/* Product Actions */
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.favorite-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.favorite-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

.favorite-btn:hover svg {
  color: var(--foreground);
}

.favorite-btn.active svg {
  fill: var(--foreground);
  color: var(--foreground);
}

.buy-now-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .favorite-btn {
    align-self: flex-start;
  }

  .buy-now-btn {
    width: 100%;
  }
}

.about-section {
  padding: 2rem 0;
}

.about-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-mission, .about-history, .about-team, .about-affiliate, .about-contact {
  margin-bottom: 3rem;
}

.about-mission h2, .about-history h2, .about-team h2, .about-affiliate h2, .about-contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-mission p, .about-history p, .about-team p, .about-affiliate p, .about-contact p {
  font-size: 1rem;
  line-height: 1.6;
}

.about-affiliate .btn {
  margin-top: 1rem;
  display: inline-block;
}

.support-form {
  padding: 2rem 0;
  background: var(--secondary);
}

.support-form h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.support-form p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: center;
}

.request-form {
  max-width: 600px;
  margin: 0 auto;
}

.request-form .field {
  margin-bottom: 1.5rem;
}

.request-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  font-size: 1rem;
  background: var(--background);
}

.request-form textarea {
  min-height: 150px;
  resize: vertical;
}

.request-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sign-up-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.sign-up-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sign-up-form h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.sign-up-form p {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 2rem;
}

.google-btn, .apple-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.google-btn:hover, .apple-btn:hover {
  background: var(--secondary);
}

.google-btn .icon, .apple-btn .icon {
  width: 20px;
  height: 20px;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.divider span {
  background: var(--background);
  padding: 0 1rem;
  position: relative;
  color: var(--muted-foreground);
}

.sign-up-form .field {
  margin-bottom: 1.5rem;
}

.sign-up-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.sign-up-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.sign-up-form input:focus {
  border-color: var(--foreground);
  outline: none;
}

.terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.terms a {
  color: var(--foreground);
  text-decoration: underline;
}

.sign-up-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.login-link {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

.login-link a {
  color: var(--foreground);
  text-decoration: underline;
}

/* Add new styles for Terms of Service page */

.terms-section {
  padding: 4rem 0;
}

.terms-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-style: italic;
}

.terms-clause {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.terms-clause h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.terms-clause p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-clause .summary {
  background: var(--secondary);
  padding: 1rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.effective-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 3rem;
}