/* ============================================
   NIERYY — Luxury Fashion Website
   Minimalist & Luxurious Design System
   ============================================ */

/* === FONT FACES === */
@font-face {
    font-family: 'TanAegean';
    src: url('TanAegean-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Brand Colors */
    --cream:        #F5F1EB;
    --blush:        #E7C9CF;
    --ice:          #C9D9E8;
    --lavender:     #D7C7E5;
    --sage:         #BCC482;
    --rose:         #D63362;
    --gold:         #C9A45D;
    --mauve:        #7C6275;
    --brown:        #5A3E32;
    --black:        #000000;

    /* Functional Colors */
    --bg-primary:   #FDFCFA;
    --bg-secondary: #F5F1EB;
    --text-primary: #1a1a1a;
    --text-secondary: #5A3E32;
    --text-muted:   #7C6275;
    --accent:       #D63362;
    --accent-gold:  #C9A45D;
    --border:       rgba(90, 62, 50, 0.1);

    /* Typography */
    --font-heading: 'TanAegean', 'Georgia', serif;
    --font-body:    'Lora', 'Georgia', serif;

    /* Spacing */
    --section-pad:  clamp(60px, 8vw, 100px);
    --container:    1320px;

    /* Transitions */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:  cubic-bezier(0.76, 0, 0.24, 1);
    --duration:     0.6s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    cursor: default;
}

body.loading {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
}

::selection {
    background-color: var(--rose);
    color: white;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--border);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--rose);
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50%      { opacity: 1;   transform: scale(1); }
}

@keyframes preloaderSlide {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* === CUSTOM CURSOR === */
.cursor-dot, .cursor-ring {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--rose);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, opacity 0.3s ease;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(214, 51, 98, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                    border-color 0.3s ease, background 0.3s ease;
    }

    .cursor-ring.hover {
        width: 60px;
        height: 60px;
        border-color: rgba(214, 51, 98, 0.15);
        background: rgba(214, 51, 98, 0.04);
    }
}

/* === NAVIGATION === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

#navbar.scrolled {
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-logo {
    flex: 0 0 auto;
    padding: 0 30px;
}

.logo-img {
    height: 192px;
    width: auto;
    transition: transform 0.3s var(--ease-out);
}

.logo-img:hover {
    transform: scale(1.03);
}

#navbar.scrolled .logo-img {
    height: 160px;
}

.nav-icon {
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--rose);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--rose);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.4s var(--ease-out);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-top: 2px solid var(--rose);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.nav-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.nav-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--rose);
}

/* Invisible bridge so the menu doesn't close when moving mouse from toggle to menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    width: 220px;
    height: 14px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 24px 6px;
}

.dropdown-link {
    display: block;
    padding: 7px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out), background 0.3s var(--ease-out);
    position: relative;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--rose);
    transition: height 0.3s var(--ease-out);
}

.dropdown-link:hover {
    color: var(--rose);
    padding-left: 32px;
    background: rgba(214, 51, 98, 0.04);
}

.dropdown-link:hover::before {
    height: 100%;
}

.dropdown-link.featured {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.dropdown-link.featured:hover {
    color: var(--rose);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 48px);
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: var(--rose);
}

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

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-bg-overlay {
    display: none;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 0 24px;
}

.hero-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

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

.tag-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
}

@media (min-width: 640px) {
    .title-line span {
        white-space: nowrap;
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brown);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary .btn-text,
.btn-primary .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    color: var(--text-primary);
    border: 1px solid var(--border);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.btn-light {
    background: white;
    color: var(--text-primary);
}

.btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
    z-index: 0;
}

.btn-light:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-light:hover {
    color: white;
}

.btn-light .btn-text,
.btn-light .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    display: flex;
    transition: transform 0.3s var(--ease-out);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* === MARQUEE STRIP === */
.marquee-strip {
    padding: 24px 0;
    background: var(--black);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.marquee-dot {
    font-size: 8px !important;
    color: var(--gold) !important;
}

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

/* === HERO LOGO OVERLAY === */
.hero-logo-overlay {
    position: absolute;
    top: clamp(100px, 14vh, 160px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
}

.hero-logo-img {
    height: clamp(60px, 10vw, 110px);
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

/* === CREAM OUTLINE BUTTON === */
.btn-outline-cream {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 48px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 241, 235, 0.65);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-outline-cream::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 241, 235, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.btn-outline-cream:hover {
    border-color: var(--cream);
    color: #fff;
}

.btn-outline-cream:hover::before {
    transform: translateY(0);
}

.btn-outline-cream .btn-text {
    position: relative;
    z-index: 1;
}

/* === OCCASION BLOCKS (Bridal & Occasional) === */
.occasion-blocks {
    padding: var(--section-pad) 0;
}

.occasion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2vw, 30px);
}

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

.occasion-image-wrapper {
    position: absolute;
    inset: 0;
}

.occasion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}

.occasion-card:hover .occasion-image {
    transform: scale(1.06);
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
    transition: background 0.5s ease;
}

.occasion-card:hover .occasion-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.55) 100%);
}

.occasion-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 4vw, 48px);
    z-index: 2;
    color: #fff;
}

.occasion-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #fff;
}

.occasion-cta {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.occasion-card:hover .occasion-cta {
    color: #fff;
}

.occasion-cta .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-out);
}

.occasion-card:hover .occasion-cta .arrow {
    transform: translateX(4px);
}

/* === AAKAAR BANNER (reuses lookbook styles) === */
.aakaar-banner {
    position: relative;
    height: clamp(400px, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* === MOBILE MENU SUB-LINKS === */
.mobile-link-sub {
    font-size: 15px !important;
    padding-left: 24px !important;
    opacity: 0.7;
}

@media (max-width: 640px) {
    .occasion-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .occasion-card {
        aspect-ratio: 4 / 3;
    }
}

/* === SECTION COMMON === */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 60px);
}

/* === BRAND STORY === */
.brand-story {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    overflow: hidden;
    position: relative;
}

.story-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--blush);
    z-index: -1;
}

.story-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-accent-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--rose);
    color: white;
    padding: 28px 36px;
    text-align: center;
    z-index: 2;
}

.accent-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
}

.accent-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.story-content {
    max-width: 520px;
}

.story-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

.story-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.link-underline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--rose);
    transition: all 0.3s ease;
    margin-top: 12px;
}

.link-underline:hover {
    gap: 12px;
    border-color: transparent;
}

/* === COLLECTIONS === */
.collections {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
}

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

.card-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.collection-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    color: white;
    z-index: 2;
}

.card-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), opacity 0.5s ease;
    opacity: 0;
}

.collection-card:hover .card-desc {
    max-height: 60px;
    opacity: 0.7;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.card-cta .arrow {
    transition: transform 0.3s ease;
}

.collection-card:hover .card-cta .arrow {
    transform: translateX(4px);
}

/* === FEATURED PRODUCTS === */
.featured {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

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

.product-card {
    position: relative;
    display: block;
    color: inherit;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    margin-bottom: 14px;
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.product-img-2 {
    opacity: 0;
}

.product-card:hover .product-img-1 {
    opacity: 0;
}

.product-card:hover .product-img-2 {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--rose);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--gold);
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-out);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-action-btn:hover {
    background: var(--rose);
    color: white;
}

.add-to-bag-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: var(--black);
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

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

.add-to-bag-btn:hover {
    background: var(--rose);
}

.product-info {
    text-align: left;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

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

/* === PARALLAX LOOKBOOK === */
.lookbook-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.1s linear;
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
    z-index: 1;
}

.lookbook-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.lookbook-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 14px;
    color: white;
}

.lookbook-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 28px;
}

/* Aakaar banner refined variant */
.aakaar-banner--refined {
    height: clamp(360px, 55vh, 580px);
}

.lookbook-overlay--light {
    background: rgba(26, 26, 26, 0.35);
}

.lookbook-content--bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: clamp(40px, 6vw, 70px);
}

.aakaar-caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    max-width: 400px;
}

.btn--sm {
    padding: 12px 28px;
    font-size: 11px;
}

/* Centered story (image removed) */
.brand-story--centered {
    text-align: center;
}

.story-content--centered {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.story-content--centered .story-divider {
    margin: 24px auto;
}

.story-content--centered .link-underline {
    justify-content: center;
}

/* === CRAFTSMANSHIP === */
.craftsmanship {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

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

.craft-item {
    text-align: center;
    padding: 48px 28px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.craft-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rose);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

.craft-item:hover::after {
    transform: scaleX(1);
}

.craft-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.craft-icon {
    color: var(--rose);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.craft-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* === TESTIMONIALS === */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-track {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--blush);
    line-height: 0.8;
    margin-bottom: 10px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-style: italic;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-primary);
}

.author-title {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.test-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.test-nav-btn:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.test-dot.active {
    background: var(--rose);
    transform: scale(1.2);
}

/* === SOCIAL SECTION === */
.social-section {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

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

.social-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

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

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

.social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 51, 98, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-item:hover .social-overlay {
    opacity: 1;
}

/* === NEWSLETTER === */
.newsletter {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.newsletter-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.form-group {
    display: flex;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--rose);
}

.newsletter-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.newsletter-btn {
    padding: 18px 32px;
    background: var(--rose);
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--brown);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.6;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: white;
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 176px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 300px;
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(214, 51, 98, 0.1);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 24px;
    color: white;
}

.footer-link {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--rose);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--rose);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(214, 51, 98, 0.3);
}

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

.back-to-top:hover {
    background: var(--brown);
    transform: translateY(-4px);
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-img {
    overflow: hidden;
}

.reveal-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s var(--ease-in-out);
}

.reveal-img.revealed::before {
    transform: scaleX(0);
    transform-origin: left;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .story-visual {
        max-width: 500px;
    }

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

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

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

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 16px;
    }

    .logo-img {
        height: 96px;
    }

    #navbar.scrolled .logo-img {
        height: 80px;
    }

    .footer-logo {
        height: 100px;
    }

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

    .collection-card {
        aspect-ratio: 4/3;
    }

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

    .craft-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .social-item:nth-child(4),
    .social-item:nth-child(5) {
        display: none;
    }

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

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

    .hero-scroll-indicator {
        display: none;
    }

    .story-accent-card {
        bottom: -20px;
        right: 0;
        padding: 20px 24px;
    }

    .accent-number {
        font-size: 28px;
    }
}

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

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

    .newsletter-btn {
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

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