/* ========================================
   modeX — Premium Clothing Brand
   Design System & Global Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --clr-bg: #0a0a0a;
    --clr-bg-secondary: #111111;
    --clr-bg-card: #161616;
    --clr-bg-elevated: #1a1a1a;
    --clr-surface: #1e1e1e;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-border-hover: rgba(255, 255, 255, 0.15);

    --clr-text: #f0f0f0;
    --clr-text-secondary: #9a9a9a;
    --clr-text-muted: #666666;

    --clr-accent: #c9a96e;
    --clr-accent-light: #dcc18a;
    --clr-accent-dark: #a88b4a;
    --clr-accent-glow: rgba(201, 169, 110, 0.25);

    --clr-success: #4ade80;
    --clr-error: #f87171;

    /* Gradients */
    --grad-accent: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
    --grad-dark: linear-gradient(180deg, var(--clr-bg), var(--clr-bg-secondary));
    --grad-card: linear-gradient(145deg, rgba(30,30,30,0.8), rgba(20,20,20,0.4));
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-5xl: 4.5rem;
    --fs-hero: clamp(3rem, 8vw, 7rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: clamp(4rem, 8vw, 8rem);

    /* Effects */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px 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);
    --shadow-accent: 0 4px 30px var(--clr-accent-glow);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-accent) var(--clr-bg);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--clr-bg); }
html::-webkit-scrollbar-thumb {
    background: var(--clr-accent-dark);
    border-radius: var(--radius-full);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-section) 0;
}

/* --- Accent & Utility --- */
.accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-md);
    padding: 6px 16px;
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--clr-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-accent);
    color: var(--clr-bg);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px var(--clr-accent-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1.5px solid var(--clr-border-hover);
}

.btn-outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: var(--fs-sm);
}

.btn-full {
    width: 100%;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: var(--space-xl);
    letter-spacing: -1px;
}

.preloader-logo span {
    color: var(--clr-accent);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--clr-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--grad-accent);
    border-radius: var(--radius-full);
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* --- Custom Cursor --- */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity var(--transition-fast);
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--clr-accent);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--clr-accent-light);
    background: rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--clr-text);
}

.logo span {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--clr-text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-icon-btn:hover {
    color: var(--clr-text);
    background: var(--clr-surface);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--clr-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: var(--clr-text-secondary);
    transition: color var(--transition-fast);
}

.search-close:hover {
    color: var(--clr-text);
}

.search-content {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 0 var(--space-xl);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.search-overlay.active .search-content {
    transform: translateY(0);
}

.search-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-xl);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
}

.search-input-wrapper input {
    width: 100%;
    padding: 18px 56px 18px 24px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    color: var(--clr-text);
    font-size: var(--fs-md);
    font-family: var(--font-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-input-wrapper input:focus {
    border-color: var(--clr-accent);
}

.search-input-wrapper svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tag {
    padding: 8px 20px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-tag:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--clr-bg-secondary);
    z-index: 1501;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    border-left: 1px solid var(--clr-border);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--clr-border);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
}

.cart-close-btn {
    font-size: 28px;
    color: var(--clr-text-secondary);
    transition: color var(--transition-fast);
}

.cart-close-btn:hover {
    color: var(--clr-text);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-xl);
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl) 0;
    color: var(--clr-text-muted);
}

.cart-empty svg {
    margin: 0 auto var(--space-lg);
    opacity: 0.3;
}

.cart-empty p {
    margin-bottom: var(--space-xl);
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--clr-border);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-details .cart-item-meta {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.cart-item-details .cart-item-price {
    font-weight: 600;
    color: var(--clr-accent);
}

.cart-item-remove {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    align-self: center;
}

.cart-item-remove:hover {
    color: var(--clr-error);
}

.cart-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--clr-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
    letter-spacing: -2px;
}

.hero-title-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-text-secondary);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: var(--fs-xs);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--clr-text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* --- Marquee Section --- */
.marquee-section {
    overflow: hidden;
    padding: var(--space-lg) 0;
    background: var(--clr-bg-secondary);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    padding-right: var(--space-2xl);
    white-space: nowrap;
}

.marquee-content span {
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.marquee-dot {
    color: var(--clr-accent) !important;
    font-size: 8px !important;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Collections Section --- */
.collections-section {
    background: var(--clr-bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-xl);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.collection-card-large {
    grid-row: span 2;
}

.collection-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.collection-card-large .collection-img-wrapper {
    min-height: 620px;
}

.collection-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img-wrapper img {
    transform: scale(1.08);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.collection-card:hover .collection-info {
    transform: translateY(0);
}

.collection-count {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 8px;
    display: block;
}

.collection-info h3 {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    margin-bottom: 6px;
}

.collection-info p {
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-md);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

.collection-link span {
    transition: transform var(--transition-fast);
}

.collection-link:hover span {
    transform: translateX(4px);
}

/* --- Products Section --- */
.products-section {
    background: var(--clr-bg-secondary);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-secondary);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.filter-btn.active {
    background: var(--grad-accent);
    color: var(--clr-bg);
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.product-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--clr-surface);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
    transition: all var(--transition-fast);
    border: 1px solid var(--clr-border);
}

.product-action-btn:hover {
    background: var(--clr-accent);
    color: var(--clr-bg);
    border-color: var(--clr-accent);
}

.product-card-info {
    padding: var(--space-lg);
}

.product-card-info h3 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.product-card:hover .product-card-info h3 {
    color: var(--clr-accent);
}

.product-card-category {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-price .current-price {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-accent);
}

.product-card-price .old-price {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-decoration: line-through;
}

.product-card-footer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--grad-accent);
    color: var(--clr-bg);
    border-color: transparent;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Feature Banner --- */
.feature-banner {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad-glass);
    border: 1px solid var(--clr-border);
    color: var(--clr-accent);
}

.feature-item h4 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

/* --- About Section --- */
.about-section {
    background: var(--clr-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.about-content p {
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-accent);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--clr-accent);
}

.stat-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* --- Lookbook Section --- */
.lookbook-section {
    background: var(--clr-bg);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: var(--space-md);
}

.lookbook-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.lookbook-item-tall {
    grid-row: span 2;
}

.lookbook-item-wide {
    grid-column: span 2;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.lookbook-tag {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

.lookbook-overlay h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--clr-bg-secondary);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-smooth);
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-3xl);
    text-align: center;
}

.testimonial-stars {
    color: var(--clr-accent);
    font-size: var(--fs-lg);
    letter-spacing: 4px;
    margin-bottom: var(--space-xl);
}

.testimonial-card > p {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-style: italic;
    line-height: 1.8;
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-2xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--clr-bg);
}

.testimonial-author strong {
    display: block;
    font-size: var(--fs-base);
    text-align: left;
}

.testimonial-author span {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-align: left;
    display: block;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-secondary);
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: scale(1.2);
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: var(--clr-bg);
}

.newsletter-wrapper {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--clr-accent-glow), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-content .section-tag {
    margin-bottom: var(--space-lg);
}

.newsletter-content .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    color: var(--clr-text-secondary);
    line-height: 1.7;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    color: var(--clr-text);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-input-group input:focus {
    border-color: var(--clr-accent);
}

.newsletter-note {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-align: center;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--clr-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-glass);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    outline: none;
    transition: border-color var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--clr-bg);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
    margin: var(--space-md) 0 var(--space-xl);
    max-width: 280px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: var(--space-md);
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.footer-links-group h4 {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    color: var(--clr-text);
}

.footer-links-group ul li {
    margin-bottom: var(--space-sm);
}

.footer-links-group a {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--clr-border);
}

.footer-bottom p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--clr-accent);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-accent);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--clr-accent-glow);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 5000;
    opacity: 0;
    transition: all var(--transition-smooth);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--clr-bg-elevated);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-full);
    color: var(--clr-accent);
    font-size: var(--fs-sm);
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-accent);
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image img {
        height: 400px;
    }

    .newsletter-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-content .section-title {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--clr-bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-3xl);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-smooth);
        z-index: 999;
        border-left: 1px solid var(--clr-border);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: var(--fs-lg);
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card-large {
        grid-row: span 1;
    }

    .collection-card-large .collection-img-wrapper {
        min-height: 350px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .product-card-img {
        height: 240px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .lookbook-item-wide {
        grid-column: span 2;
    }

    .section-title {
        font-size: var(--fs-3xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-img {
        height: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-wrapper {
        padding: var(--space-2xl);
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .lookbook-item-tall {
        grid-row: span 1;
    }

    .lookbook-item-wide {
        grid-column: span 1;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
}
