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

:root {
    --rose: #e8a5b0;
    --rose-dark: #c9758a;
    --rose-light: #f7dde2;
    --cream: #faf5ed;
    --ivory: #f0e8d8;
    --gold: #b8966a;
    --gold-light: #d4b483;
    --gold-dark: #8a6d3b;
    --green: #7a8c6e;
    --green-light: #a8b89a;
    --brown: #5c4a3a;
    --text: #3d2e22;
    --text-light: #7a6555;
    --white: #fffdf9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── DECORATIVE ELEMENTS ── */
.vine-divider {
    text-align: center;
    margin: 0;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    opacity: 0.7;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 245, 237, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 106, 0.3);
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--gold-dark);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold-dark);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--brown) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_bouquet.png');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.82) saturate(0.9);
    transform: scale(1.03);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(92, 74, 58, 0.65) 0%,
            rgba(61, 46, 34, 0.35) 50%,
            rgba(184, 150, 106, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1.2s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(212, 180, 131, 0.7);
    color: var(--gold-light);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title em {
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    font-size: 1.2em;
    color: var(--gold-light);
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(138, 109, 59, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(138, 109, 59, 0.65);
}

.hero-cta .hero-phone {
    display: block;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll::before {
    content: '↓';
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── SECTIONS COMMON ── */
section {
    padding: 6rem 2rem;
}

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

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-title em {
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    color: var(--rose-dark);
    font-size: 1.3em;
}

.gold-rule {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border: none;
    margin: 1rem 0 2rem;
}

.gold-rule.center {
    margin-left: auto;
    margin-right: auto;
}

/* ── ABOUT ── */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.about-text strong {
    color: var(--brown);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.85rem !important;
    margin: 0 !important;
    color: var(--text-light) !important;
}

.about-visual {
    position: relative;
}

.about-visual-frame {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--ivory);
    position: relative;
}

.about-visual-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(184, 150, 106, 0.4);
    z-index: 1;
    pointer-events: none;
    border-radius: 2px;
}

.about-visual-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-quote {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--gold-dark);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    max-width: 220px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 !important;
    color: var(--white) !important;
}

/* ── WOMEN'S DAY ── */
#womens-day {
    background: linear-gradient(180deg, var(--rose-light) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

#womens-day::before {
    content: '✿ ✿ ✿';
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    opacity: 0.12;
    color: var(--rose-dark);
    letter-spacing: 1rem;
}

.womens-day-header {
    text-align: center;
    margin-bottom: 4rem;
}

.womens-day-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-dark), #b85070);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.45rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s, box-shadow 0.35s;
    border: 1px solid rgba(184, 150, 106, 0.2);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.product-tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: rgba(250, 245, 237, 0.95);
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    border: 1px solid var(--gold-light);
    backdrop-filter: blur(4px);
}

.product-body {
    padding: 1.5rem 1.6rem 0.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.product-body p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
    flex: 1;
}

.product-flowers {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.flower-tag {
    background: var(--ivory);
    color: var(--gold-dark);
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    border: 1px solid var(--gold-light);
}

.product-footer {
    padding: 1rem 1.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(184, 150, 106, 0.15);
    margin-top: 1rem;
}

.product-price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rose-dark);
}

.btn-order {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-dark), #b85070);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 117, 138, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 117, 138, 0.55);
}

.order-info-box {
    background: var(--white);
    border: 1px solid rgba(184, 150, 106, 0.35);
    border-radius: 8px;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.order-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.8rem;
}

.order-info-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
}

.order-info-box .order-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: var(--rose-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-dark), #b85070);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(201, 117, 138, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(201, 117, 138, 0.55);
}

/* ── DELIVERY ── */
#delivery {
    background: var(--ivory);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.delivery-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.area-pill {
    background: var(--white);
    border: 1px solid rgba(184, 150, 106, 0.4);
    color: var(--brown);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.area-pill.main {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
    grid-column: 1 / -1;
    font-size: 1rem;
}

.delivery-steps {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 0.3rem;
}

.delivery-step p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-light);
}

.special-card {
    background: linear-gradient(135deg, var(--brown), #3d2e22);
    color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '✉';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.08;
}

.special-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
}

.special-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.85;
}

/* ── CONTACT ── */
#contact {
    background: linear-gradient(180deg, var(--brown) 0%, #2a1e14 100%);
    color: var(--white);
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.contact-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--gold-light);
}

.contact-link .icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 180, 131, 0.15);
    border: 1px solid rgba(212, 180, 131, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-link:hover .icon {
    background: rgba(212, 180, 131, 0.3);
}

.contact-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-brand {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 150, 106, 0.2);
}

.footer-brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--gold-light);
    display: block;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.8rem;
    letter-spacing: 0.05em;
}

/* ── FLOATING CTA ── */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(138, 109, 59, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.03em;
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(138, 109, 59, 0.65);
}

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

    .about-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-visual-frame img {
        height: 320px;
    }

    .about-quote {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .order-info-box {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .delivery-areas {
        grid-template-columns: 1fr;
    }

    .area-pill.main {
        grid-column: 1;
    }

    .order-info-box {
        padding: 1.8rem 1.5rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.2rem;
        font-size: 0.82rem;
    }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ── PREMIUM CTA BOX ── */
.cta-premium {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 24px 80px rgba(92, 50, 65, 0.22);
}

.cta-premium-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #4a1628 0%,
            #7c2d42 35%,
            #b85070 65%,
            #c97888 100%);
    z-index: 0;
}

.cta-premium-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(212, 180, 131, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-premium-inner {
    position: relative;
    z-index: 1;
    padding: 3.5rem 3rem;
    text-align: center;
    color: var(--white);
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-title em {
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    font-size: 1.3em;
    color: var(--gold-light);
    display: block;
}

.cta-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle strong {
    color: var(--white);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.3s, transform 0.3s;
}

.cta-feat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.cta-feat-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.cta-feat strong {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 700;
}

.cta-feat small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--gold-dark), #c8993a);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(138, 109, 59, 0.55), 0 0 0 0 rgba(212, 180, 131, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(138, 109, 59, 0.55), 0 0 0 0 rgba(212, 180, 131, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(138, 109, 59, 0.55), 0 0 0 10px rgba(212, 180, 131, 0);
    }
}

.cta-btn-main:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 45px rgba(138, 109, 59, 0.7);
    animation: none;
}

.cta-btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
    display: inline-block;
}

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

.cta-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: background 0.3s, transform 0.3s;
}

.cta-btn-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cta-fine {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    margin: 0;
}

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

    .cta-premium-inner {
        padding: 2.5rem 1.8rem;
    }
}

@media (max-width: 600px) {
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .cta-btn-main,
    .cta-btn-phone {
        width: 100%;
        justify-content: center;
    }
}

/* ── NŐNAPI HERO BANNER ── */
.womens-day-hero-banner {
    position: relative;
    margin-top: 2.8rem;
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 220, 232, 0.22) 40%,
            rgba(212, 180, 131, 0.18) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 200, 215, 0.55);
    box-shadow:
        0 8px 32px rgba(180, 70, 100, 0.22),
        0 2px 8px rgba(184, 150, 106, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    animation: fadeInUp 1.8s 0.3s ease both;
    text-align: center;
}

/* Shimmer sweep */
.wdb-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.28) 50%,
            transparent 80%);
    background-size: 200% 100%;
    animation: wdbShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

@keyframes wdbShimmer {
    0% {
        background-position: 200% 0;
    }

    60% {
        background-position: -100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Floating petals */
.wdb-petals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    height: 100%;
}

.wdb-petals span {
    font-size: 1.4rem;
    opacity: 0.18;
    animation: wdbFloat 6s ease-in-out infinite;
    align-self: flex-start;
    margin-top: -0.5rem;
}

.wdb-petals span:nth-child(1) {
    animation-delay: 0s;
}

.wdb-petals span:nth-child(2) {
    animation-delay: 1.2s;
    font-size: 1rem;
    opacity: 0.12;
}

.wdb-petals span:nth-child(3) {
    animation-delay: 2.4s;
    font-size: 1.6rem;
    opacity: 0.14;
}

.wdb-petals span:nth-child(4) {
    animation-delay: 0.8s;
    opacity: 0.1;
}

.wdb-petals span:nth-child(5) {
    animation-delay: 3.2s;
    font-size: 1.1rem;
    opacity: 0.13;
}

@keyframes wdbFloat {
    0% {
        transform: translateY(-8px) rotate(-5deg);
    }

    50% {
        transform: translateY(8px) rotate(5deg);
    }

    100% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

/* Inner content */
.wdb-inner {
    position: relative;
    z-index: 2;
    padding: 2rem 2.2rem 2.2rem;
}

/* Eyebrow label */
.wdb-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 210, 225, 0.92);
    margin-bottom: 0.7rem;
}

/* Main title */
.wdb-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem;
    font-weight: 400;
    color: #fff;
    text-shadow:
        0 2px 16px rgba(180, 70, 100, 0.5),
        0 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    margin-bottom: 0.9rem;
    letter-spacing: 0.02em;
}

/* Date pill */
.wdb-date-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 117, 138, 0.85), rgba(184, 80, 112, 0.85));
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.38rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 180, 200, 0.4);
    box-shadow: 0 2px 12px rgba(200, 80, 110, 0.3);
}

/* Description */
.wdb-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255, 240, 245, 0.9);
    margin-bottom: 1.5rem;
}

.wdb-desc strong {
    color: #fff;
    font-weight: 700;
}

/* CTA Button */
.wdb-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #d4af72 0%, #b8966a 60%, #8a6d3b 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    box-shadow:
        0 4px 18px rgba(184, 150, 106, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.wdb-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 50px;
}

.wdb-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(184, 150, 106, 0.65);
}

.wdb-cta:hover::before {
    opacity: 1;
}

.wdb-cta svg {
    transition: transform 0.25s;
    flex-shrink: 0;
}

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

/* Responsive */
@media (max-width: 560px) {
    .wdb-title {
        font-size: 2rem;
    }

    .wdb-inner {
        padding: 1.5rem 1.4rem 1.8rem;
    }
}

/* ── FULL WIDTH ABOUT BOX ── */
.about-full-box {
    background: linear-gradient(135deg, var(--brown) 0%, #3d2e22 100%) !important;
    color: var(--white) !important;
    padding: 6rem 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-full-box .section-title {
    color: var(--white) !important;
}

.about-full-box .about-text p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.about-full-box .feature-item h4 {
    color: var(--gold-light) !important;
}

.about-full-box .feature-item p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about-full-box .about-visual-frame {
    box-shadow: 20px 20px 0 var(--gold-dark) !important;
}

/* ── LOCATIONS SHOWCASE ── */
.locations-showcase {
    background: var(--white);
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 106, 0.2);
}

.locations-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.locations-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card {
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(184, 150, 106, 0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
    border-color: var(--gold-light);
}

.location-card.active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 150, 106, 0.2);
    background: #fff;
    border-color: var(--gold);
}

.location-card.active .lc-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--rose-dark);
}

.lc-icon {
    font-size: 1.4rem;
    margin-right: 1.2rem;
    background: rgba(212, 180, 131, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lc-text strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}

.lc-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.lc-arrow {
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.location-card:hover .lc-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.locations-map-container {
    min-height: 400px;
    height: 100%;
}

@media (max-width: 900px) {
    .locations-showcase {
        grid-template-columns: 1fr;
    }

    .locations-map-container {
        min-height: 350px;
    }

    .locations-info {
        padding: 2rem;
    }
}

/* ── COUNTDOWN TIMER ── */
.countdown-container {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
    border: 1px solid rgba(184, 150, 106, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.countdown-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(184, 150, 106, 0.4);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    min-width: 65px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cd-box span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.cd-box small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 700;
}

.cd-colon {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: -0.8rem;
}

@media (max-width: 500px) {
    .countdown-timer {
        gap: 0.4rem;
    }

    .cd-box {
        padding: 0.5rem;
        min-width: 50px;
    }

    .cd-box span {
        font-size: 1.4rem;
    }

    .cd-colon {
        font-size: 1.4rem;
    }
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.pl-icon {
    font-size: 4rem;
    animation: pl-pulse 1.5s infinite ease-in-out;
}

.pl-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.pl-bar {
    width: 180px;
    height: 4px;
    background: rgba(184, 150, 106, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-top: 5px;
}

.pl-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--rose-dark);
    animation: pl-load 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pl-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@keyframes pl-load {
    0% {
        width: 0;
    }

    30% {
        width: 40%;
    }

    70% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}