/* ============================================================
   BARKAT DESIGNS — Stylesheet
   A luxury jewelry brand website
   ============================================================ */

/* ======================== CUSTOM PROPERTIES ======================== */
:root {
    /* Color Palette - Derived from the floral logo */
    --pink-50: #FFF0F3;
    --pink-100: #FFE0E8;
    --pink-200: #F8C8D6;
    --pink-300: #F0A0B8;
    --pink-400: #E87A9A;
    --pink-500: #D4567C;
    --pink-600: #B83A62;
    --rose: #C77D93;
    --blush: #FFF5F7;
    --sage-100: #E8F0E8;
    --sage-200: #C8DCC8;
    --sage-300: #A3BDA3;
    --sage-400: #8BA888;
    --sage-500: #6B8F6B;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --cream: #FFFAF7;
    --warm-white: #FFF9F5;
    --charcoal: #2D1F1F;
    --dark: #1A1212;
    --text: #3A2A2A;
    --text-light: #8A7A7A;
    --text-muted: #B8A8A8;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-width: 1280px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ======================== 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: 300;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    cursor: none;
    overflow-x: hidden;
}

/* Restore default cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none !important; }
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

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

button, input, textarea, select {
    font-family: inherit;
    cursor: none;
}

::selection {
    background: var(--pink-200);
    color: var(--charcoal);
}

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

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

/* ======================== TYPOGRAPHY ======================== */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--pink-500);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-divider {
    color: var(--pink-300);
    margin-bottom: 24px;
}

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

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

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

.preloader-logo {
    width: 200px;
    margin: 0 auto 30px;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--pink-100);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--pink-400), var(--rose));
    border-radius: 2px;
    animation: preloaderFill 2s var(--ease-out-expo) forwards;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

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

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ======================== CUSTOM CURSOR ======================== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--pink-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--pink-300);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo),
                border-color 0.3s,
                background 0.3s;
}

.cursor-dot.hovering {
    width: 14px;
    height: 14px;
    background: var(--pink-400);
    mix-blend-mode: normal;
}

.cursor-outline.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--pink-400);
    background: rgba(232, 122, 154, 0.06);
}

/* ======================== SCROLL PROGRESS ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-400), var(--rose), var(--gold));
    z-index: 9990;
    transition: width 0.05s linear;
}

/* ======================== GRAIN OVERLAY ======================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ======================== NAVIGATION ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(255, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: 0 1px 30px rgba(45, 31, 31, 0.06);
}

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

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

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding: 2px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink-400);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-logo {
    width: 160px;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled .nav-logo {
    width: 120px;
}

.nav-logo img {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    position: absolute;
    left: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.menu-line:nth-child(1) { top: 0; }
.menu-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-line:nth-child(3) { bottom: 0; }

.menu-toggle.active .menu-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ======================== MOBILE MENU ======================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

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

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--charcoal);
    padding: 12px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

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

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

.mobile-menu-link:hover {
    color: var(--pink-500);
}

.mobile-menu-footer {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo) 0.4s;
}

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

.mobile-menu-footer a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ======================== HERO SECTION ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg,
        var(--cream) 0%,
        var(--pink-50) 30%,
        var(--blush) 60%,
        var(--sage-100) 100%
    );
    background-size: 300% 300%;
    animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#petals-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px var(--container-padding) 80px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 32px;
    padding: 8px 20px;
    border: 1px solid var(--pink-200);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--pink-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--pink-500);
    font-weight: 400;
}

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

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

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--pink-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 86, 124, 0.25);
}

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

.btn-ghost:hover {
    background: var(--charcoal);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 1px solid var(--rose);
    padding: 12px 28px;
}

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

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

.btn-light:hover {
    background: var(--pink-50);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--pink-300);
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Hero Floating Decorations */
.hero-float {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-float-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 200, 214, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-float-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 220, 200, 0.25) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-float-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 213, 168, 0.2) 0%, transparent 70%);
    top: 30%;
    left: 10%;
    animation: floatSlow 12s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* ======================== MARQUEE ======================== */
.marquee-section {
    padding: 18px 0;
    background: var(--charcoal);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-200);
    padding: 0 24px;
}

.marquee-dot {
    font-size: 0.7rem !important;
    color: var(--pink-400) !important;
    padding: 0 8px !important;
}

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

/* ======================== ABOUT SECTION ======================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-1 {
    grid-row: span 2;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--pink-100), var(--pink-200), var(--sage-200));
    background-size: 200% 200%;
    animation: placeholderShimmer 4s ease infinite;
}

.about-img-2 .img-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--sage-100), var(--sage-200), var(--pink-100));
}

.placeholder-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    opacity: 0.7;
}

.placeholder-content span {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.placeholder-content p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

@keyframes placeholderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.about-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 32px;
}

/* ======================== COLLECTIONS SECTION ======================== */
.collections {
    padding: var(--section-padding) 0;
    background: var(--blush);
}

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

.collection-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
    display: block;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 31, 31, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 340), 60%, 90%),
        hsl(var(--hue, 340), 40%, 85%),
        hsl(calc(var(--hue, 340) + 30), 30%, 88%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.collection-card:hover .card-placeholder {
    transform: scale(1.05);
}

.card-placeholder-icon {
    color: hsl(var(--hue, 340), 30%, 65%);
    opacity: 0.5;
    transition: opacity 0.4s, transform 0.4s;
}

.collection-card:hover .card-placeholder-icon {
    opacity: 0.3;
    transform: scale(1.1);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 31, 31, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s;
}

.collection-card:hover .card-overlay {
    background: rgba(45, 31, 31, 0.15);
}

.card-explore {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s var(--ease-out-expo);
}

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

.card-info {
    padding: 22px 24px;
    text-align: center;
}

.card-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ======================== COLLECTIONS PAGE HERO ======================== */
.collections-page-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--pink-50) 50%, var(--blush) 100%);
    text-align: center;
}

.collections-full .collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.collections-full .collections-grid .collection-card {
    width: calc(25% - 21px);
}

@media (max-width: 1024px) {
    .collections-full .collections-grid .collection-card {
        width: calc(50% - 14px);
    }
}

@media (max-width: 768px) {
    .collections-full .collections-grid .collection-card {
        width: 100%;
        max-width: 400px;
    }

    .collections-page-hero {
        padding-top: 100px;
        padding-bottom: 24px;
    }
}

/* Active nav link */
.nav-link.active {
    color: var(--pink-500);
}

/* ======================== COLLECTION DETAIL PAGE ======================== */

/* Collection Hero Banner */
.collection-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.collection-hero-bg {
    position: absolute;
    inset: 0;
}

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

.collection-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 18, 0.75) 0%, rgba(26, 18, 18, 0.2) 50%, rgba(26, 18, 18, 0.1) 100%);
}

.collection-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}

.collection-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}

.collection-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

/* Products Section */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.products-header {
    margin-bottom: 36px;
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.products-count strong {
    color: var(--charcoal);
    font-weight: 500;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--pink-100);
    transition: all 0.5s var(--ease-out-expo);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(199, 125, 147, 0.12);
    border-color: var(--pink-200);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image .card-placeholder {
    aspect-ratio: 1;
}

.product-image .card-img {
    aspect-ratio: 1;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--pink-500);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}

.product-info {
    padding: 22px 24px 26px;
}

.product-sku {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
}

.product-stock {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-stock.in-stock {
    background: var(--sage-100);
    color: var(--sage-500);
}

.product-stock.out-stock {
    background: var(--pink-50);
    color: var(--pink-500);
}

.product-category {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--rose);
    margin-bottom: 4px;
}

.product-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.color-tag {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: 20px;
    background: var(--pink-50);
    color: var(--text-light);
    border: 1px solid var(--pink-100);
}

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

.btn-sm {
    padding: 10px 22px;
    font-size: 0.75rem;
}

/* Product Image Gallery */
.product-gallery {
    position: relative;
}

.product-main-img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-thumbs::-webkit-scrollbar {
    display: none;
}

.product-thumb {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.product-thumb:hover {
    opacity: 0.8;
}

.product-thumb.active {
    border-color: var(--pink-400);
    opacity: 1;
}

.product-img-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-img {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 4px 12px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.2rem;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 80vw;
}

.lightbox-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    border-color: var(--pink-400);
    opacity: 1;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 1rem; }
    .lightbox-thumb { width: 40px; height: 40px; }
    .product-thumb { width: 34px; height: 34px; min-width: 34px; }
}

/* Products Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-hero {
        height: 300px;
    }

    .collection-hero-content {
        padding-bottom: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .collection-hero {
        height: 250px;
    }
}

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

/* ======================== COLLECTIONS CAROUSEL ======================== */
.collections-carousel {
    position: relative;
    padding: 0 60px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s var(--ease-out-expo);
}

.carousel-track .collection-card {
    min-width: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
    flex-shrink: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--pink-200);
    background: white;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(45, 31, 31, 0.08);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-arrow:hover {
    background: var(--pink-500);
    border-color: var(--pink-500);
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(212, 86, 124, 0.2);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--pink-300);
    background: transparent;
    padding: 0;
    transition: all 0.3s var(--ease-out-expo);
}

.carousel-dot:hover {
    background: var(--pink-200);
}

.carousel-dot.active {
    background: var(--pink-500);
    border-color: var(--pink-500);
    transform: scale(1.2);
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
    .collections-carousel {
        padding: 0 52px;
    }

    .carousel-track .collection-card {
        min-width: calc((100% - 28px) / 2);
        max-width: calc((100% - 28px) / 2);
    }
}

/* Mobile: 1 card */
@media (max-width: 768px) {
    .collections-carousel {
        padding: 0 44px;
    }

    .carousel-track .collection-card {
        min-width: 100%;
        max-width: 100%;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow-left {
        left: 0;
    }

    .carousel-arrow-right {
        right: 0;
    }
}

/* ======================== FEATURED SECTION ======================== */
.featured {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal), #3D2828, #2A1A1A);
    background-size: 200% 200%;
    animation: heroGradient 10s ease infinite;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 18, 18, 0.4) 100%);
}

/* Decorative sparkle dots on featured */
.featured-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 30%, rgba(232, 213, 168, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 60%, rgba(232, 213, 168, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 20%, rgba(248, 200, 214, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 70% 70%, rgba(232, 213, 168, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 40%, rgba(248, 200, 214, 0.3) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 20% 80%, rgba(232, 213, 168, 0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 80% 10%, rgba(248, 200, 214, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 60% 90%, rgba(232, 213, 168, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 40% 45%, rgba(248, 200, 214, 0.35) 50%, transparent 50%);
    animation: sparkle 5s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

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

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.9;
}

.featured-cta {
    margin-bottom: 60px;
}

.featured-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold-light);
    display: inline;
}

.counter-number + span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-light);
}

.counter-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.counter-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* ======================== VALUES SECTION ======================== */
.values {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--pink-100);
    transition: all 0.5s var(--ease-out-expo);
}

.value-card:hover {
    border-color: var(--pink-300);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(199, 125, 147, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-50);
    border-radius: 50%;
    color: var(--pink-500);
    transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover .value-icon {
    background: var(--pink-500);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--pink-100);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--pink-100);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(199, 125, 147, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ======================== INSTAGRAM SECTION ======================== */
.instagram {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.insta-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-item-wide {
    grid-column: span 1;
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 340), 50%, 88%),
        hsl(var(--hue, 340), 35%, 82%),
        hsl(calc(var(--hue, 340) + 40), 30%, 85%)
    );
    transition: transform 0.8s var(--ease-out-expo);
}

.insta-item:hover .insta-placeholder {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 31, 31, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}

.insta-overlay svg {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
}

.insta-item:hover .insta-overlay {
    background: rgba(45, 31, 31, 0.3);
}

.insta-item:hover .insta-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* ======================== CONTACT SECTION ======================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--blush);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--pink-100);
    transition: all 0.4s var(--ease-out-expo);
}

.contact-method:hover {
    border-color: var(--pink-300);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(199, 125, 147, 0.1);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-50);
    border-radius: 50%;
    color: var(--pink-500);
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact-method span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--pink-100);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 0 10px;
    border: none;
    border-bottom: 1.5px solid var(--pink-100);
    background: transparent;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.3s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -8px;
    font-size: 0.72rem;
    color: var(--pink-500);
    letter-spacing: 0.05em;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-400);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Newsletter */
.newsletter {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--pink-100);
}

.newsletter p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--pink-100);
    border-radius: 50px;
    font-size: 0.9rem;
    background: var(--pink-50);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--pink-400);
}

.newsletter-form button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--charcoal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.newsletter-form button:hover {
    background: var(--pink-500);
    transform: scale(1.05);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 130px;
    margin-bottom: 16px;
    filter: brightness(3);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: var(--pink-300);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.4s var(--ease-out-expo);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: white;
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-out-expo);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

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

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

/* ======================== RESPONSIVE DESIGN ======================== */

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

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

    .testimonial-card:last-child {
        display: none;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .nav-logo {
        width: 100px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .about-images {
        order: -1;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimonial-card:last-child {
        display: block;
    }

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

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

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

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .featured-counter {
        gap: 24px;
    }

    .counter-divider {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

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

    .insta-item:nth-child(3) {
        display: none;
    }
}
