/* ============================================
   CAKE BLOOM UAE - Premium Korean Cakery Demo
   Brand: Pink, Rose Gold, White
   Style: Elegant, Minimalist, Korean
   ============================================ */

/* === VARIABLES === */
:root {
    /* Fonts */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Poppins', -apple-system, sans-serif;

    /* Brand Colors - Pink Theme */
    --color-primary: #E91E63;          /* Vibrant pink - main brand */
    --color-primary-light: #F48FB1;
    --color-primary-dark: #C2185B;

    --color-secondary: #D4A574;        /* Rose gold */
    --color-secondary-light: #E8C4A0;
    --color-secondary-dark: #B8956A;

    --color-accent: #FFD54F;           /* Soft gold */
    --color-accent-light: #FFE082;
    --color-accent-dark: #FFC107;

    --color-cream: #FFF9F5;            /* Warm cream */
    --color-white: #FFFFFF;

    /* Glow Colors */
    --color-glow-primary: rgba(233, 30, 99, 0.4);
    --color-glow-secondary: rgba(212, 165, 116, 0.4);

    /* Backgrounds */
    --color-bg: #E91E63;               /* Pink main */
    --color-bg-light: #FDF2F4;         /* Very light pink */
    --color-bg-white: #FFFFFF;
    --color-bg-cream: #FFF9F5;
    --color-bg-dark: #C2185B;          /* Darker pink for contrast */
    --color-bg-secondary: #AD1457;     /* Even darker for gradients */
    --color-bg-elevated: #C2185B;      /* For shared components */
    --color-bg-card: #AD1457;          /* Card backgrounds */

    /* Text */
    --color-text: #FFFFFF;
    --color-text-dark: #2D1F2D;        /* Dark purple-brown */
    --color-text-secondary: rgba(255, 255, 255, 0.9);
    --color-text-dim: rgba(255, 255, 255, 0.75);
    --color-text-muted: rgba(255, 255, 255, 0.6);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.15);
    --border-default: rgba(255, 255, 255, 0.25);
    --border-accent: rgba(212, 165, 116, 0.5);

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-bloom {
    position: relative;
    width: 70px;
    height: 70px;
}

.loader-bloom span {
    position: absolute;
    border: 4px solid transparent;
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: bloomSpin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-bloom span:nth-child(1) {
    width: 70px;
    height: 70px;
    animation-delay: -0.4s;
}

.loader-bloom span:nth-child(2) {
    width: 52px;
    height: 52px;
    top: 9px;
    left: 9px;
    animation-delay: -0.25s;
    border-top-color: var(--color-secondary);
}

.loader-bloom span:nth-child(3) {
    width: 34px;
    height: 34px;
    top: 18px;
    left: 18px;
    animation-delay: -0.1s;
    border-top-color: var(--color-accent);
}

@keyframes bloomSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* === PROGRESS BAR === */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
    z-index: 1000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--color-glow-secondary);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 14px 48px;
    background: rgba(233, 30, 99, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s var(--ease-out);
}

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

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-primary);
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: var(--color-cream);
}

.nav-cta svg {
    transition: transform 0.3s var(--ease-out);
}

.nav-cta:hover svg {
    transform: translateX(4px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s var(--ease-out);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--color-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.cta {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .nav {
        padding: 14px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: var(--color-bg);
}

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

.hero-image {
    position: absolute;
    inset: -10%;
    background:
        url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    opacity: 0.22;
    filter: grayscale(30%) contrast(1.1);
    animation: heroImageFloat 25s ease-in-out infinite alternate;
}

@keyframes heroImageFloat {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1%, 1%); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(233, 30, 99, 0.85) 0%,
            rgba(233, 30, 99, 0.7) 50%,
            rgba(233, 30, 99, 0.95) 100%),
        radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(212, 165, 116, 0.2) 0%, transparent 40%);
    animation: heroGradientPulse 10s ease-in-out infinite alternate;
}

@keyframes heroGradientPulse {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Floating decorations */
.hero-floats {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.float-petal {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: floatPetal 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-petal::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 3px solid rgba(212, 165, 116, 0.2);
    border-radius: 50%;
}

.float-petal::after {
    content: '';
    position: absolute;
    inset: 40px;
    border: 3px solid rgba(255, 213, 79, 0.15);
    border-radius: 50%;
}

@keyframes floatPetal {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(25px, -35px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--color-secondary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.03em;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 9vw, 80px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-accent);
    text-shadow:
        0 0 40px rgba(255, 213, 79, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dim);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s forwards;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: var(--color-white);
}

.hero-scroll span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px;
    }

    .hero-floats {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

/* === MARQUEE BANNER === */
.marquee-banner {
    padding: 20px 0;
    overflow: hidden;
    background: var(--color-primary-dark);
    position: relative;
}

.marquee-banner::before,
.marquee-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-banner::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, transparent 100%);
}

.marquee-banner::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary-dark) 100%);
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-white);
    flex-shrink: 0;
}

.marquee-divider {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

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

/* === SECTIONS === */
.section {
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

/* Base background image layer for all sections */
.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.05;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Gradient overlay layer for all sections */
.section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* Content must be above pseudo-elements */
.section > * {
    position: relative;
    z-index: 2;
}

.section-light {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-white {
    position: relative;
    background: var(--color-white);
    color: var(--color-text-dark);
    overflow: hidden;
}

/* Collections section background - override base ::before */
#collections.section-white::before {
    background: url('https://images.unsplash.com/photo-1535254973040-607b474cb50d?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
    filter: grayscale(100%) contrast(1.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Collections section gradient overlay - override base ::after */
#collections.section-white::after {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(233, 30, 99, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
}

/* Instagram section background - override base ::before */
#instagram.section-white::before {
    background: url('https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?w=1920&q=80') center/cover no-repeat;
    opacity: 0.07;
    filter: grayscale(100%) contrast(1.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Instagram section gradient overlay - override base ::after */
#instagram.section-white::after {
    background:
        linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        linear-gradient(315deg, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--color-primary);
}

.section-desc {
    font-size: 17px;
    color: #6B5A5A;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 24px;
    }
}

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

.collection-card {
    position: relative;
    padding: 28px;
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) {
    .collection-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow:
            0 25px 60px rgba(233, 30, 99, 0.18),
            0 0 30px rgba(233, 30, 99, 0.08);
    }

    .collection-card:hover::before {
        transform: scaleX(1);
    }

    .collection-card:hover .card-bloom {
        transform: rotate(180deg) scale(1.15);
        filter: drop-shadow(0 0 15px rgba(233, 30, 99, 0.4));
    }

    .collection-card:hover .collection-card-title {
        color: var(--color-primary);
    }
}

.collection-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px var(--color-glow-primary);
}

.collection-card-visual {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bloom {
    width: 80px;
    height: 80px;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    position: relative;
    transition: transform 0.6s var(--ease-out);
}

.card-bloom::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 4px solid var(--color-secondary);
    border-radius: 50%;
}

.card-bloom::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
}

/* Collection-specific bloom colors */
.card-bloom.wedding {
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
}
.card-bloom.wedding::before {
    border-color: var(--color-primary-light);
}
.card-bloom.wedding::after {
    border-color: var(--color-secondary);
}

.card-bloom.celebration {
    border-color: #9C27B0;
}
.card-bloom.celebration::before {
    border-color: #BA68C8;
}
.card-bloom.celebration::after {
    border-color: #E1BEE7;
}

.card-bloom.custom {
    border-color: var(--color-secondary);
}
.card-bloom.custom::before {
    border-color: var(--color-accent);
}
.card-bloom.custom::after {
    border-color: var(--color-primary-light);
}

.card-bloom.mini {
    border-color: #FF9800;
}
.card-bloom.mini::before {
    border-color: #FFB74D;
}
.card-bloom.mini::after {
    border-color: #FFE0B2;
}

.card-bloom.cupcake {
    border-color: #8D6E63;
}
.card-bloom.cupcake::before {
    border-color: #BCAAA4;
}
.card-bloom.cupcake::after {
    border-color: #D7CCC8;
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    text-align: center;
    transition: color 0.3s ease;
}

.collection-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #7A6A6A;
    margin-bottom: 20px;
    text-align: center;
}

.collection-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(233, 30, 99, 0.15);
}

.collection-card-price {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary);
}

.collection-card-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 8px 14px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--radius-full);
}

/* Mobile Active */
.collection-card.mobile-active {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15) !important;
}

.collection-card.mobile-active::before {
    transform: scaleX(1) !important;
}

.collection-card.mobile-active .card-bloom {
    transform: rotate(180deg) scale(1.05) !important;
}

.collection-card.mobile-active .collection-card-title {
    color: var(--color-primary) !important;
}

/* Collections Note */
.collections-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px 32px;
    background: rgba(233, 30, 99, 0.08);
    border: 2px dashed rgba(233, 30, 99, 0.3);
    border-radius: var(--radius-lg);
}

.note-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.collections-note p {
    font-size: 14px;
    color: #6B5A5A;
}

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

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

    .collections-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* === STORY SECTION === */
/* section-light inherits base .section styles */

/* Story/About section background - override base ::before */
.section-light::before {
    background: url('https://images.unsplash.com/photo-1488477181946-6428a0291777?w=1920&q=80') center/cover no-repeat;
    opacity: 0.09;
    filter: grayscale(80%) contrast(1.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Story/About section gradient overlay - override base ::after */
.section-light::after {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 40%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content .section-label {
    display: inline-block;
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #6B5A5A;
    margin-bottom: 16px;
}

.story-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

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

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(233, 30, 99, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    color: var(--color-white);
}

.image-text {
    font-family: var(--font-display);
    font-size: 26px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-sub {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 14px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.08);
    transition: all 0.3s var(--ease-out);
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.12);
}

.highlight-icon {
    color: var(--color-primary);
}

.highlight-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B5A5A;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
}

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

    .story-content .section-title {
        text-align: center;
    }

    .story-content .section-label {
        text-align: center;
        display: block;
    }

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

/* === ORDER SECTION === */
.section-order {
    background: var(--color-bg);
    color: var(--color-white);
}

/* Order section background - override base ::before */
.section-order::before {
    background: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    opacity: 0.18;
    filter: grayscale(100%) contrast(1.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Order section gradient overlay - override base ::after */
.section-order::after {
    background:
        linear-gradient(180deg,
            rgba(233, 30, 99, 0.92) 0%,
            rgba(233, 30, 99, 0.75) 30%,
            rgba(233, 30, 99, 0.75) 70%,
            rgba(233, 30, 99, 0.92) 100%),
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 40%);
}

.section-order .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.section-order .section-title {
    color: var(--color-white);
}

.section-order .section-title em {
    color: var(--color-accent);
}

.section-order .section-desc {
    color: var(--color-text-secondary);
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.order-step {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.order-step:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-6px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-dim);
    line-height: 1.6;
}

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

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.btn-order:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

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

@media (max-width: 600px) {
    .order-steps {
        grid-template-columns: 1fr;
    }
}

/* === INSTAGRAM SECTION === */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.insta-item:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

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

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

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(233, 30, 99, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.insta-icon {
    color: var(--color-white);
}

.insta-item.insta-cta {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.insta-follow {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    transition: all 0.3s var(--ease-out);
}

.insta-follow span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.insta-item.insta-stats {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.stats-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.stats-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.stats-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

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

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

/* === CONTACT SECTION === */
.section-contact {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

/* Contact section background - override base ::before */
.section-contact::before {
    background: url('https://images.unsplash.com/photo-1535254973040-607b474cb50d?w=1920&q=80') center/cover no-repeat;
    opacity: 0.05;
    filter: grayscale(100%) contrast(1.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Contact section gradient overlay - override base ::after */
.section-contact::after {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 40%);
}

.section-contact .section-label {
    background: rgba(233, 30, 99, 0.1);
    color: var(--color-primary);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--color-white);
    border: 2px solid rgba(233, 30, 99, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.12);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--radius);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9A8A8A;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* === FOOTER === */
.footer {
    position: relative;
    background: var(--color-primary-dark);
    color: var(--color-white);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
    filter: grayscale(100%) brightness(0.5);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(212, 165, 116, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 60px 48px 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-col.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    font-size: 22px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-dim);
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--color-text-dim);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--color-text-dim);
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 20px 48px;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-col.footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .footer-main {
        padding: 50px 24px 40px;
    }

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

    .footer-col.footer-brand {
        grid-column: span 1;
    }

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

    .footer-nav {
        align-items: center;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        padding: 18px 24px;
    }
}

/* === DEMO ATTRIBUTION BANNER (Theme: Pink) === */


.demo-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-tag {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 4px;
}

.demo-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.demo-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.05));
    border: 1px solid rgba(233, 30, 99, 0.4);
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
}

.demo-banner-cta:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(233, 30, 99, 0.1));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
}

.demo-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}

.demo-banner-cta svg {
    color: var(--color-primary);
    transition: transform 0.3s var(--ease-out);
}

.demo-banner-cta:hover svg {
    transform: translate(3px, -3px);
}


/* === SCROLL REVEAL === */
.collection-card,
.order-step,
.contact-card {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition:
        opacity 1s var(--ease-out),
        transform 1s var(--ease-out),
        filter 0.8s var(--ease-out);
}

.collection-card.revealed,
.order-step.revealed,
.contact-card.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.insta-item {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(4px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-bounce),
        filter 0.6s var(--ease-out);
}

.insta-item.revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.story-grid {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition:
        opacity 1.2s var(--ease-out),
        transform 1.2s var(--ease-out),
        filter 1s var(--ease-out);
}

.story-grid.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.section-header {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out);
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.collections-note {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out);
}

.collections-note.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 900px) {
    

    

    

    

    
}

/* Mobile */
@media (max-width: 680px) {
    

    

    

    

    

    

    

    
}

/* Small Mobile */
@media (max-width: 380px) {
    

    

    
}

