/* ============================================
   KARAN JAGAT — Premium Clothing Brand
   Luxury CSS Theme v2.0
   ============================================ */

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --cream: #f5f0eb;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gray-950: #0a0a0a;
    --accent: #c9a96e;
    --accent-light: #dfc9a0;
    --error: #ef4444;
    --success: #22c55e;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.3s;
    --duration-slow: 0.6s;
    --container: 1280px;
    --nav-h: 72px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-700) var(--gray-950);
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }

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

/* ==================== CUSTOM CURSOR ==================== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transition: transform 0.15s var(--ease-out), opacity 0.15s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
    background: var(--accent);
}

@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all var(--duration) var(--ease);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.btn-full { width: 100%; }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    gap: 6px;
    align-items: baseline;
    transition: opacity var(--duration);
}

.nav-logo:hover { opacity: 0.7; }

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

.logo-accent {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.5);
    transition: color var(--duration);
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    transition: all var(--duration);
    border-radius: 50%;
}

.nav-icon-btn:hover {
    background: rgba(255,255,255,0.08);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--duration) var(--ease-bounce);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 640px;
    padding: 0 32px;
}

.search-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.search-input-wrap {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: border-color var(--duration);
}

.search-input-wrap:focus-within {
    border-color: var(--accent);
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 0;
    font-size: 28px;
    font-family: var(--font);
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

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

.search-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    transition: color var(--duration);
    padding: 4px;
}

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

.search-results {
    width: 100%;
    max-width: 640px;
    padding: 0 32px;
    margin-top: 32px;
    max-height: 50vh;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: opacity var(--duration);
}

.search-result-item:hover { opacity: 0.6; }

.search-result-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--gray-900);
}

.search-result-name {
    font-size: 14px;
    font-weight: 500;
}

.search-result-price {
    font-size: 13px;
    color: var(--accent);
    margin-left: auto;
    font-weight: 600;
}

.search-no-results {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    padding: 40px 0;
    letter-spacing: 0.5px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

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

.hero-fallback {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-950) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
}

.hero-title {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.title-line {
    display: block;
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.0;
}

.title-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0;
}

.hero-text {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-text {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gray-500);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== MARQUEE ==================== */
.marquee-section {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    overflow: hidden;
    background: var(--gray-950);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

.marquee-item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-500);
    padding: 0 12px;
    text-transform: uppercase;
}

/* ==================== SECTIONS ==================== */
.section { padding: 120px 0; }
.section-dark { background: var(--gray-950); }

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

.section-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 12px;
    font-weight: 300;
}

.section-subtag {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ==================== FILTER TABS ==================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    transition: all var(--duration) var(--ease);
    background: transparent;
}

.filter-tab:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.filter-tab.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--gray-950);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease);
    position: relative;
}

.product-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-900);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.product-img-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    font-size: 48px;
    color: var(--gray-600);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--black);
    border-radius: 4px;
    z-index: 2;
}

.product-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform var(--duration) var(--ease);
    z-index: 2;
}

.product-card:hover .product-actions-overlay {
    transform: translateY(0);
}

.product-action-btn {
    flex: 1;
    padding: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all var(--duration);
    text-align: center;
    backdrop-filter: blur(10px);
}

.product-action-btn.add-to-cart-btn {
    background: var(--white);
    color: var(--black);
}

.product-action-btn.add-to-cart-btn:hover {
    background: var(--accent);
    color: var(--black);
}

.product-action-btn.quick-view-btn {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.product-action-btn.quick-view-btn:hover {
    background: rgba(255,255,255,0.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.product-price-old {
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: line-through;
}

/* ==================== VALUES ==================== */
.section-values {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: var(--gray-950);
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    transition: all var(--duration-slow) var(--ease);
}

.value-card:hover {
    border-color: rgba(201,169,110,0.2);
    background: rgba(201,169,110,0.03);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50%;
    color: var(--accent);
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ==================== COLLECTIONS ==================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
}

.collection-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.collection-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.collection-card:hover .collection-img-wrap img {
    transform: scale(1.08);
}

.collection-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    transition: background var(--duration);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.collection-info {
    width: 100%;
}

.collection-count {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}

.collection-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.collection-desc {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.collection-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--duration) var(--ease);
    display: inline-block;
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== PARALLAX DIVIDER ==================== */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -60px;
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-fallback {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
    max-width: 700px;
}

.parallax-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
}

.parallax-author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
}

/* ==================== ABOUT ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
}

.about-fallback {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border-radius: 12px;
}

.about-floating-card {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--accent);
    color: var(--black);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.floating-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.floating-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content-col .section-tag,
.about-content-col .section-title { text-align: left; }
.about-title { margin-bottom: 0; }

.about-divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 20px 0 0;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-300);
    margin-top: 24px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-plus {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    display: inline;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ==================== SOCIAL / INSTAGRAM ==================== */
.section-social {
    padding: 100px 0 80px;
}

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

.social-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-fallback {
    position: absolute;
    inset: 0;
    background: var(--gray-900);
}

.social-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration);
    color: var(--white);
}

.social-card:hover .social-hover { opacity: 1; }

/* ==================== NEWSLETTER ==================== */
.section-newsletter {
    background: var(--gray-950);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.newsletter-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-text {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 36px;
    font-weight: 300;
}

.newsletter-form { width: 100%; }

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--duration);
}

.newsletter-input-wrap:focus-within {
    border-color: var(--accent);
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
}

.newsletter-input::placeholder { color: var(--gray-600); }

.newsletter-btn {
    border-radius: 0;
    padding: 16px 32px;
    font-size: 11px;
}

.newsletter-feedback { min-height: 24px; }

.newsletter-error {
    color: var(--error);
    font-size: 13px;
    margin-top: 12px;
    display: none;
}

.newsletter-error.show { display: block; }

.newsletter-success {
    color: var(--success);
    font-size: 14px;
    margin-top: 12px;
    display: none;
}

.newsletter-success.show { display: block; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-950);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 72px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-display);
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-500);
    transition: all var(--duration);
}

.social-link:hover {
    color: var(--white);
    border-color: var(--accent);
    background: rgba(201,169,110,0.1);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--duration);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-credit {
    font-family: var(--font-display);
    font-style: italic;
}

/* ==================== CART DRAWER ==================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration);
    backdrop-filter: blur(4px);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100%;
    background: var(--gray-950);
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease);
}

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

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cart-item-count {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-500);
    margin-left: 8px;
}

.cart-drawer-close {
    color: var(--gray-400);
    transition: color var(--duration);
    padding: 4px;
}

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

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty-msg {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    padding: 60px 0;
    font-style: italic;
    font-family: var(--font-display);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    animation: cartItemIn 0.3s var(--ease);
}

@keyframes cartItemIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--gray-900);
    flex-shrink: 0;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-400);
    transition: all var(--duration);
}

.qty-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.qty-value {
    width: 36px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-remove {
    font-size: 11px;
    color: var(--gray-600);
    transition: color var(--duration);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.cart-item-remove:hover { color: var(--error); }

.cart-drawer-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 8px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.cart-total-row span:first-child {
    font-size: 14px;
    color: var(--gray-400);
}

.cart-total {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.cart-note {
    font-size: 11px;
    color: var(--gray-600);
    text-align: center;
    margin-top: 12px;
}

/* ==================== QUICK VIEW MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration);
    backdrop-filter: blur(6px);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: 90%;
    max-width: 840px;
    max-height: 90vh;
    background: var(--gray-950);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    z-index: 4001;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--duration);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
}

.modal-image-wrap {
    aspect-ratio: 3 / 4;
    background: var(--gray-900);
    overflow: hidden;
}

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

.modal-info {
    padding: 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.modal-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.modal-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.modal-sizes { margin-bottom: 24px; }

.size-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
    display: block;
    margin-bottom: 10px;
}

.size-options { display: flex; gap: 8px; }

.size-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    transition: all var(--duration);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201,169,110,0.08);
}

.modal-qty-row {
    margin-bottom: 24px;
}

.modal-qty {
    margin-top: 8px;
    display: inline-flex;
}

.modal-add-btn {
    margin-bottom: 16px;
    font-size: 13px;
    padding: 18px;
}

.modal-trust {
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--duration) var(--ease);
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

/* ==================== SCROLL ANIMATIONS ==================== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==================== RESPONSIVE — TABLET ==================== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }
    .nav-link { font-size: 22px; letter-spacing: 3px; }
    .hamburger { display: flex; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; gap: 24px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

    .modal-body { grid-template-columns: 1fr; }
    .modal-image-wrap { aspect-ratio: 16 / 9; }
}

/* ==================== RESPONSIVE — MOBILE ==================== */
@media (max-width: 640px) {
    :root { --nav-h: 60px; }

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

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-info { padding: 14px; }
    .product-name { font-size: 13px; }
    .product-price { font-size: 14px; }
    .product-actions-overlay {
        position: relative;
        transform: none;
        padding: 0 14px 14px;
        flex-direction: column;
    }

    .collections-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .collection-info { padding: 16px; }
    .collection-name { font-size: 16px; }
    .collection-desc { font-size: 11px; display: none; }
    .collection-link { opacity: 1; transform: none; }

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

    .hero-badge { margin-bottom: 20px; }
    .badge-line { width: 24px; }
    .badge-text { font-size: 8px; letter-spacing: 2px; }

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

    .parallax-divider { height: 40vh; min-height: 280px; }

    .about-floating-card { right: 12px; bottom: 12px; }
    .floating-number { font-size: 22px; }
    .about-stats { gap: 28px; flex-wrap: wrap; }
    .stat-number { font-size: 28px; }

    .newsletter-input-wrap { flex-direction: column; }
    .newsletter-btn { width: 100%; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cart-drawer { width: 100%; }

    .modal { width: 96%; max-height: 95vh; border-radius: 12px; }
    .modal-info { padding: 24px; }
    .modal-name { font-size: 20px; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

    .logo-text, .logo-accent { font-size: 16px; letter-spacing: 2px; }

    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 8px 16px; font-size: 11px; }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-950); }
::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* ==================== SELECTION ==================== */
::selection { background: rgba(201,169,110,0.3); color: var(--white); }

/* ==================== LOADING SHIMMER (for image states) ==================== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gray-900) 25%, var(--gray-800) 50%, var(--gray-900) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
