@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gold: #c9a962;
    --gold-light: #d4b87a;
    --gold-dark: #a88a4a;
    --white: #ffffff;
    --muted-gray: #888888;
    --text-secondary: #666666;
    --border-color: #333333;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --header-height: 80px;
    --container-width: 1400px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(40px, 8vw, 72px);
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
}

h4 {
    font-size: 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 48px;
    color: var(--white);
}

.section-title span {
    color: var(--gold);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.header:hover::before {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 8px;
    color: #c9a962;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a962, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav {
    display: flex;
    gap: 48px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 8px 0;
    transition: all 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a962;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
    color: #c9a962;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-action {
    position: relative;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
}

.header-action:hover {
    color: #c9a962;
    transform: scale(1.1);
}

.header-action svg {
    width: 100%;
    height: 100%;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #c9a962, #a88a4a);
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.cart-count.show {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #c9a962;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        padding: 0 24px;
    }
}
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action {
    position: relative;
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: color var(--transition-fast);
}

.header-action:hover {
    color: var(--gold);
}

.header-action svg {
    width: 100%;
    height: 100%;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--primary-black);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.cart-count.show {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--muted-gray);
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a962 0%, #a88a4a 100%);
    color: #0a0a0a;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.45), 0 0 30px rgba(201, 169, 98, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid rgba(201, 169, 98, 0.6);
    color: #c9a962;
    background: transparent;
    position: relative;
}

.btn-outline::before {
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(168, 138, 74, 0.1) 100%);
    border-color: #c9a962;
    color: #c9a962;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.2), inset 0 0 20px rgba(201, 169, 98, 0.05);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.hero-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    border-radius: 0;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 10;
    transition: all var(--transition-fast);
    opacity: 0;
    cursor: pointer;
}

.hero:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.carousel-arrow.prev {
    left: 40px;
}

.carousel-arrow.next {
    right: 40px;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.5);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-section {
    padding: 100px 24px;
    background: var(--charcoal);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(145deg, #1f1f1f 0%, #151515 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-watch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-watch-img {
    transform: scale(1.08);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(21, 21, 21, 1), transparent);
    pointer-events: none;
}

.product-image svg {
    width: 160px;
    height: 160px;
    color: var(--gold);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.2));
}

.product-card:hover .product-image svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.4));
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-add-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(168, 138, 74, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.6);
    color: #c9a962;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.quick-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-add-btn:hover {
    background: linear-gradient(135deg, #c9a962 0%, #a88a4a 100%);
    color: #0a0a0a;
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.35);
    transform: translateY(0);
}

.quick-add-btn:hover::before {
    left: 100%;
}

.product-card:hover .quick-add-btn {
    transform: translateY(0);
}

.product-info {
    padding: 28px 24px;
    background: linear-gradient(to bottom, rgba(21, 21, 21, 0.8), transparent);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.product-brand {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-body);
}

.product-price::before {
    content: '$';
    color: var(--gold);
    margin-right: 2px;
}

font-weight: 600;
color: var(--gold);
}

.brands-section {
    padding: 80px 0;
    background: var(--primary-black);
    overflow: hidden;
}

.brands-showcase {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--primary-black) 100%);
}

.brands-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.brand-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 24px;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%);
    border: 1px solid rgba(201, 169, 98, 0.08);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.brand-showcase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 169, 98, 0.1);
}

.brand-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.brand-logo svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.brand-showcase-card:hover .brand-logo {
    opacity: 1;
}

.brand-showcase-name {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--muted-gray);
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.brand-showcase-card:hover .brand-showcase-name {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .brands-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .brand-showcase-card {
        padding: 24px 16px;
    }
}

.new-arrivals-section,
.top-sales-section {
    padding: 100px 24px;
    background: var(--charcoal);
}

.top-brands-section {
    padding: 100px 24px;
    background: var(--primary-black);
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

.section-footer .btn {
    position: relative;
    padding: 18px 48px;
    font-size: 12px;
    letter-spacing: 3px;
    background: transparent;
    overflow: hidden;
}

.section-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
    transition: left 0.6s ease;
}

.section-footer .btn:hover::before {
    left: 100%;
}

.section-footer .btn span {
    position: relative;
    z-index: 1;
}

.section-footer .btn-primary {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(168, 138, 74, 0.1) 100%);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: #c9a962;
}

.top-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .top-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .top-brands-grid {
        grid-template-columns: 1fr;
    }
}

.top-brand-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #1f1f1f 0%, #0d0d0d 100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.top-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.top-brand-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 98, 0.15);
    border-color: rgba(201, 169, 98, 0.4);
}

.top-brand-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.top-brand-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(13, 13, 13, 1), transparent);
}

.top-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(30%);
}

.top-brand-card:hover .top-brand-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.top-brand-info {
    padding: 28px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.top-brand-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: 1px;
}

.top-brand-info p {
    font-size: 13px;
    color: var(--muted-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.top-brand-info .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.top-brand-card:hover .top-brand-info .btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .top-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brands-carousel-wrapper {
    position: relative;
    width: 100%;
}

.brands-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.brands-carousel.left {
    margin-bottom: -30px;
}

.brands-track {
    display: flex;
    gap: 80px;
    animation: marquee-left 25s linear infinite;
}

.brands-carousel.right .brands-track {
    animation: marquee-right 25s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--muted-gray);
    opacity: 0.3;
    transition: all var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.brand-item:hover {
    color: var(--gold);
    opacity: 1;
}

.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 24px 50px;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a962, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #c9a962;
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 16px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, #c9a962, transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    padding-left: 16px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: #c9a962;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    color: #c9a962;
    padding-left: 24px;
}

.footer-link:hover::before {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.15);
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: all 0.4s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.newsletter-input:focus {
    border-color: #c9a962;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.15);
}

.newsletter-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #c9a962, #a88a4a);
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.2);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.35);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    border-color: #c9a962;
    color: #c9a962;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.2);
}

display: flex;
align-items: center;
justify-content: center;
color: var(--muted-gray);
transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--charcoal);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cart-title {
    font-family: var(--font-heading);
    font-size: 24px;
}

.cart-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gray);
    transition: color var(--transition-fast);
}

.cart-close:hover {
    color: var(--white);
}

.cart-close svg {
    width: 24px;
    height: 24px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--muted-gray);
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--dark-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-image svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.cart-item-details {
    flex: 1;
}

.cart-item-brand {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted-gray);
    margin-bottom: 4px;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-gray);
    padding: 4px;
    border-radius: 2px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gray);
    transition: color var(--transition-fast);
}

.quantity-btn:hover {
    color: var(--white);
}

.quantity-value {
    width: 28px;
    text-align: center;
    font-size: 14px;
}

.remove-item {
    color: var(--muted-gray);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.remove-item:hover {
    color: #ff4444;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-subtotal-label {
    font-size: 14px;
    color: var(--muted-gray);
}

.cart-subtotal-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
}

.filters-sidebar {
    width: 280px;
    background: var(--charcoal);
    padding: 32px;
    border-radius: 4px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.filter-option:hover .filter-checkbox {
    border-color: var(--gold);
}

.filter-option input {
    display: none;
}

.filter-option input:checked+.filter-checkbox {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-option input:checked+.filter-checkbox svg {
    display: block;
}

.filter-checkbox svg {
    display: none;
    width: 12px;
    height: 12px;
    color: var(--primary-black);
}

.filter-label {
    font-size: 14px;
    color: var(--muted-gray);
}

.price-range {
    display: flex;
    gap: 16px;
    align-items: center;
}

.price-input {
    width: 100%;
    padding: 10px 12px;
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    color: var(--white);
    font-size: 14px;
    border-radius: 2px;
    outline: none;
}

.price-input:focus {
    border-color: var(--gold);
}

.gender-toggle {
    display: flex;
    gap: 8px;
}

.gender-btn {
    flex: 1;
    padding: 10px;
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    color: var(--muted-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.gender-btn:hover,
.gender-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-black);
}

.clear-filters-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    color: var(--muted-gray);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.clear-filters-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.products-page {
    padding: 120px 24px 80px;
    background: var(--primary-black);
}

.products-page-header {
    max-width: var(--container-width);
    margin: 0 auto 48px;
}

.products-page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 16px;
}

.products-page-subtitle {
    color: var(--muted-gray);
}

.products-layout {
    display: flex;
    gap: 48px;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: flex-start;
}

.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--charcoal);
    padding: 32px;
    border-radius: 4px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.products-main {
    flex: 1;
    min-width: 0;
}

.products-main .products-grid {
    max-width: none;
    margin: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-count {
    font-size: 14px;
    color: var(--muted-gray);
}

.sort-select {
    padding: 10px 16px;
    background: var(--charcoal);
    border: 1px solid var(--border-color);
    color: var(--white);
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.sort-select:focus {
    border-color: var(--gold);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--charcoal);
    border-radius: 4px;
    margin-bottom: 48px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    outline: none;
}

.search-input::placeholder {
    color: var(--muted-gray);
}

.search-icon {
    width: 24px;
    height: 24px;
    color: var(--muted-gray);
}

.product-detail {
    padding: 120px 24px 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    height: 500px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-main-image svg {
    width: 280px;
    height: 280px;
    color: var(--gold);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: var(--charcoal);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-fast);
    overflow: hidden;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--gold);
}

.product-thumbnail svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.product-detail-info {
    padding-top: 20px;
}

.detail-brand {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.detail-name {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
}

.detail-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
}

.detail-description {
    color: var(--muted-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.detail-specs {
    margin-bottom: 32px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 12px 0;
    font-size: 14px;
}

.specs-table td:first-child {
    color: var(--muted-gray);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--white);
}

.detail-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--charcoal);
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.quantity-selector button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gray);
    transition: color var(--transition-fast);
}

.quantity-selector button:hover {
    color: var(--white);
}

.quantity-selector span {
    width: 48px;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-btn {
    flex: 1;
}

.wishlist-btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gray);
    transition: all var(--transition-fast);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    border-color: #ff4444;
    color: #ff4444;
}

.wishlist-btn svg {
    width: 24px;
    height: 24px;
}

.checkout-page {
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.checkout-container {
    max-width: 900px;
    margin: 0 auto;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-align: center;
    margin-bottom: 48px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted-gray);
}

.step-number {
    width: 32px;
    height: 32px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.checkout-step.active .step-number,
.checkout-step.completed .step-number {
    border-color: var(--gold);
    color: var(--gold);
}

.checkout-step.active .step-number {
    background: var(--gold);
    color: var(--primary-black);
}

.step-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-form {
    background: var(--charcoal);
    padding: 48px;
    border-radius: 4px;
}

.form-section {
    margin-bottom: 32px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-gray);
}

.form-input {
    padding: 14px 16px;
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    color: var(--white);
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input::placeholder {
    color: var(--muted-gray);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.back-btn {
    color: var(--muted-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.back-btn:hover {
    color: var(--white);
}

.next-btn {
    min-width: 200px;
}

.order-summary {
    background: var(--dark-gray);
    padding: 24px;
    border-radius: 4px;
    margin-top: 32px;
}

.order-summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: var(--charcoal);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-image svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-size: 14px;
    margin-bottom: 4px;
}

.order-item-variant {
    font-size: 12px;
    color: var(--muted-gray);
}

.order-item-price {
    font-weight: 600;
    color: var(--gold);
}

.order-totals {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--muted-gray);
}

.order-total-row.total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.order-total-row.total span:last-child {
    color: var(--gold);
}

.confirmation-message {
    text-align: center;
    padding: 60px 24px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-black);
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
}

.confirmation-text {
    color: var(--muted-gray);
    margin-bottom: 32px;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.auth-modal.open {
    opacity: 1;
    visibility: visible;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    background: var(--charcoal);
    border-radius: 4px;
    padding: 48px;
    position: relative;
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-gray);
    transition: color var(--transition-fast);
}

.auth-close:hover {
    color: var(--white);
}

.auth-close svg {
    width: 24px;
    height: 24px;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--muted-gray);
    margin-bottom: 32px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-gray);
    text-align: center;
    position: relative;
    transition: color var(--transition-fast);
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.auth-tab.active,
.auth-tab:hover {
    color: var(--white);
}

.auth-tab.active::after {
    transform: scaleX(1);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .btn {
    width: 100%;
    margin-top: 8px;
}

.social-login {
    margin-top: 32px;
}

.social-login-title {
    text-align: center;
    font-size: 12px;
    color: var(--muted-gray);
    margin-bottom: 16px;
    position: relative;
}

.social-login-title::before,
.social-login-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.social-login-title::before {
    left: 0;
}

.social-login-title::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--white);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--gold);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .products-layout {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
        position: static;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-carousel {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .checkout-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .cart-drawer {
        width: 100%;
    }
}

.about-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 40%,
            rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.about-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.about-hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.about-hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 1s;
}

.about-hero-particles span:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 2s;
}

.about-hero-particles span:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 3s;
}

.about-hero-particles span:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-delay: 4s;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-30px) scale(1);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.about-hero-label {
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.title-word {
    display: inline-block;
}

.about-hero-title .title-word:nth-child(1) {
    color: var(--white);
}

.about-hero-title .title-word:nth-child(2) {
    color: var(--gold);
    font-style: italic;
}

.about-hero-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

.about-hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted-gray);
    opacity: 0;
    transform: translateY(20px);
}

.about-hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.about-hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted-gray);
}

.scroll-indicator {
    width: 24px;
    height: 24px;
    color: var(--gold);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--muted-gray);
    max-width: 500px;
    margin: 0 auto;
}

.about-intro {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--charcoal) 50%, var(--primary-black) 100%);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: center;
}

.about-intro-text {
    padding: 20px 0;
}

.about-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-intro-title span {
    color: var(--gold);
    font-style: italic;
}

.about-intro-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted-gray);
    margin-bottom: 24px;
}

.about-intro-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
}

.signature-year {
    font-size: 12px;
    color: var(--muted-gray);
    letter-spacing: 2px;
}

.about-intro-visual {
    position: relative;
    padding: 40px;
}

.visual-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.visual-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.visual-frame:hover img {
    transform: scale(1.05);
}

.visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 4px;
    z-index: -1;
}

.visual-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 24px 32px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-black);
    margin-top: 4px;
}

.about-values {
    padding: 120px 24px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 98, 0.1);
}

.value-card:hover::before {
    width: 100%;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.5s ease;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
}

.value-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted-gray);
}

.about-stats {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.3);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.85) 100%);
}

.stats-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 64px;
}

.stats-title span {
    color: var(--gold);
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-8px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-gray);
    margin-top: 16px;
}

.about-timeline {
    padding: 120px 24px;
    background: var(--primary-black);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(201, 169, 98, 0.3) 10%,
            rgba(201, 169, 98, 0.3) 90%,
            transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: calc(50% + 40px);
    text-align: right;
    align-items: flex-end;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: calc(50% + 40px);
    text-align: left;
    align-items: flex-start;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.timeline-card {
    width: calc(50% - 60px);
    max-width: 350px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.4) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.timeline-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-year {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-gray);
}

.timeline-decoration {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-top: 16px;
    opacity: 0.3;
}

.about-cta {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--charcoal) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-particles span {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    animation: ctaRing 8s ease-in-out infinite;
}

.cta-particles span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-particles span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.cta-particles span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes ctaRing {

    0%,
    100% {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    50% {
        width: 500px;
        height: 500px;
        opacity: 0.1;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-title span {
    color: var(--gold);
    font-style: italic;
}

.cta-text {
    font-size: 18px;
    color: var(--muted-gray);
    margin-bottom: 48px;
    line-height: 1.8;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-contact-btn {
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.6);
    color: var(--gold);
    padding: 18px 48px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.about-contact-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-intro-visual {
        order: -1;
        padding: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        align-items: flex-start;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        flex-direction: column;
        gap: 8px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 48px;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .header-inner {
        padding: 0 32px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .nav {
        gap: 32px;
    }

    .header-inner {
        padding: 0 24px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .top-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: clamp(40px, 8vw, 72px);
    }
}

@media (max-width: 1024px) {
    .header {
        height: 70px;
    }

    .logo {
        font-size: 24px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        gap: 20px;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 20px 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }

    .hero-description {
        font-size: 16px;
    }

    .products-section,
    .new-arrivals-section,
    .top-sales-section {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .top-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brands-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .section-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    .products-page {
        padding: 100px 20px 60px;
    }

    .products-layout {
        flex-direction: column;
        gap: 32px;
    }

    .filters-sidebar {
        width: 100%;
        position: static;
    }

    .products-main {
        width: 100%;
    }

    .product-detail {
        padding: 100px 20px 60px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    .product-main-image {
        height: 400px;
    }

    .checkout-page {
        padding: 100px 20px 60px;
    }

    .checkout-container {
        max-width: 100%;
    }

    .checkout-form {
        flex-direction: column;
    }

    .order-summary {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer {
        padding: 60px 20px 40px;
    }

    .about-hero {
        min-height: 500px;
    }

    .about-hero-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .about-intro {
        padding: 60px 20px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-visual {
        order: -1;
    }

    .visual-frame img {
        height: 350px;
    }

    .about-values {
        padding: 60px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-stats {
        padding: 60px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 48px;
    }

    .about-timeline {
        padding: 60px 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        align-items: flex-start;
        width: calc(100% - 60px);
    }

    .timeline-dot {
        left: 20px;
    }

    .about-cta {
        padding: 60px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .header-actions {
        gap: 16px;
    }

    .header-action {
        width: 20px;
        height: 20px;
    }

    .hero {
        min-height: 70vh;
        padding: 90px 16px 50px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 11px;
    }

    .carousel-arrow {
        display: none;
    }

    .brands-section {
        padding: 40px 0;
    }

    .brand-item {
        font-size: 20px;
    }

    .products-section,
    .new-arrivals-section,
    .top-sales-section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-image {
        height: 260px;
    }

    .product-info {
        padding: 20px 16px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-price {
        font-size: 16px;
    }

    .top-brands-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .top-brand-image {
        height: 200px;
    }

    .top-brand-info {
        padding: 20px 16px;
    }

    .brands-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-showcase-card {
        padding: 24px 16px;
    }

    .section-footer {
        margin-top: 40px;
    }

    .products-page {
        padding: 90px 16px 40px;
    }

    .products-page-title {
        font-size: 32px;
    }

    .search-bar {
        padding: 12px 16px;
    }

    .filters-sidebar {
        padding: 24px 16px;
    }

    .filter-title {
        font-size: 13px;
    }

    .filter-options {
        gap: 10px;
    }

    .filter-label {
        font-size: 13px;
    }

    .gender-toggle {
        flex-direction: column;
    }

    .price-range {
        flex-direction: column;
    }

    .clear-filters-btn {
        padding: 12px;
    }

    .products-toolbar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .sort-select {
        width: 100%;
    }

    .product-detail {
        padding: 90px 16px 40px;
    }

    .product-main-image {
        height: 300px;
    }

    .product-thumbnails {
        gap: 8px;
    }

    .product-thumbnail {
        width: 60px;
        height: 60px;
    }

    .detail-name {
        font-size: 28px;
    }

    .detail-price {
        font-size: 24px;
    }

    .detail-specs {
        overflow-x: auto;
    }

    .specs-table {
        font-size: 13px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .quantity-selector {
        justify-content: center;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .checkout-page {
        padding: 90px 16px 40px;
    }

    .checkout-title {
        font-size: 32px;
    }

    .checkout-steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .checkout-form-section {
        padding: 20px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-input {
        padding: 12px 16px;
    }

    .form-actions {
        flex-direction: column;
        gap: 16px;
    }

    .next-btn,
    .back-btn {
        width: 100%;
        justify-content: center;
    }

    .order-summary {
        margin-bottom: 32px;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-column {
        padding: 0;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright {
        font-size: 12px;
    }

    .social-links {
        justify-content: center;
    }

    .cart-drawer {
        width: 100%;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 120px;
    }

    .auth-modal {
        padding: 20px;
    }

    .auth-container {
        max-width: 100%;
    }

    .about-hero {
        min-height: 400px;
    }

    .about-hero-label {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .about-hero-title {
        font-size: clamp(32px, 12vw, 56px);
    }

    .about-hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .about-intro {
        padding: 40px 16px;
    }

    .about-intro-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .about-intro-description {
        font-size: 14px;
    }

    .visual-frame img {
        height: 280px;
    }

    .visual-badge {
        padding: 16px 24px;
    }

    .badge-year {
        font-size: 28px;
    }

    .about-values {
        padding: 40px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-icon svg {
        width: 40px;
        height: 40px;
    }

    .value-title {
        font-size: 18px;
    }

    .value-description {
        font-size: 13px;
    }

    .about-stats {
        padding: 40px 16px;
    }

    .stats-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 10px;
    }

    .about-timeline {
        padding: 40px 16px;
    }

    .timeline-container {
        padding: 20px 0;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-heading {
        font-size: 18px;
    }

    .timeline-text {
        font-size: 13px;
    }

    .about-cta {
        padding: 40px 16px;
    }

    .cta-label {
        font-size: 10px;
    }

    .cta-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .cta-text {
        font-size: 14px;
    }

    .about-contact-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        height: 60px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }

    .hero {
        min-height: 60vh;
        padding: 80px 12px 40px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(28px, 12vw, 40px);
    }

    .hero-description {
        font-size: 13px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-image {
        height: 220px;
    }

    .product-overlay {
        display: none;
    }

    .quick-add-btn {
        display: none;
    }

    .top-brand-card {
        border-radius: 8px;
    }

    .top-brand-image {
        height: 160px;
    }

    .top-brand-info h3 {
        font-size: 16px;
    }

    .brand-showcase-card {
        padding: 16px 12px;
    }

    .brand-logo {
        width: 80px;
        height: 40px;
    }

    .brand-showcase-name {
        font-size: 12px;
    }

    .products-page-title {
        font-size: 28px;
    }

    .results-count {
        font-size: 12px;
    }

    .filter-title {
        font-size: 12px;
    }

    .product-detail-grid {
        gap: 24px;
    }

    .product-main-image {
        height: 250px;
    }

    .detail-brand {
        font-size: 12px;
    }

    .detail-name {
        font-size: 24px;
    }

    .detail-price {
        font-size: 20px;
    }

    .detail-description {
        font-size: 14px;
    }

    .detail-actions {
        gap: 12px;
    }

    .quantity-selector button {
        width: 40px;
        height: 40px;
    }

    .wishlist-btn {
        width: 48px;
        height: 48px;
    }

    .checkout-title {
        font-size: 28px;
    }

    .step-label {
        font-size: 12px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input {
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 11px;
    }

    .cart-drawer {
        width: 100%;
    }

    .cart-header {
        padding: 16px;
    }

    .cart-title {
        font-size: 18px;
    }

    .cart-items {
        padding: 16px;
    }

    .cart-footer {
        padding: 16px;
    }

    .about-hero {
        min-height: 350px;
    }

    .about-hero-label {
        font-size: 9px;
        margin-bottom: 16px;
    }

    .about-hero-title {
        font-size: clamp(28px, 14vw, 44px);
    }

    .about-hero-line {
        width: 60px;
    }

    .about-hero-subtitle {
        font-size: 10px;
    }

    .about-intro-title {
        font-size: 24px;
    }

    .about-intro-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .about-intro-signature {
        margin-top: 24px;
        padding-top: 16px;
    }

    .signature-name {
        font-size: 14px;
    }

    .visual-frame img {
        height: 220px;
    }

    .visual-badge {
        padding: 12px 20px;
    }

    .badge-year {
        font-size: 24px;
    }

    .badge-text {
        font-size: 9px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
    }

    .value-icon svg {
        width: 32px;
        height: 32px;
    }

    .value-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .value-description {
        font-size: 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-suffix {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
    }

    .timeline-year {
        font-size: 10px;
    }

    .timeline-heading {
        font-size: 16px;
    }

    .timeline-text {
        font-size: 12px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-text {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}