/* ══════════════════════════════════════════
   NUNIQUE — Cakes & Coffee
   Shared Stylesheet
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --pink:        #E91E8C;
    --pink-dark:   #C2185B;
    --pink-light:  #FF5FA8;
    --pink-soft:   #FDE4EF;
    --teal:        #00BCD4;
    --teal-dark:   #0097A7;
    --teal-soft:   #E0F7FA;
    --black:       #111111;
    --dark:        #1A1A1A;
    --mid:         #4A4A4A;
    --light:       #888888;
    --border:      #E0E0E0;
    --bg:          #FAFAFA;
    --white:       #FFFFFF;
    --nav-h:       108px;
    --header-logo-h: 100px;
    --header-nav-h:  48px;
    --header-total:  calc(var(--header-logo-h) + var(--header-nav-h));
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.label {
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--pink);
}

.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 900; background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.header-top {
    border-bottom: 1px solid var(--border);
    padding: 10px 2rem;
}
.header-top-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: var(--header-logo-h);
}
.header-logo img { height: 64px; width: auto; display: block; }
.header-social {
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    display: flex; align-items: center; gap: 16px;
}
.header-social a {
    color: var(--mid);
    display: inline-flex; align-items: center;
    transition: color .2s, transform .2s;
}
.header-social a:hover { color: var(--pink); transform: scale(1.15); }
.header-nav {
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--teal);
    padding: 0 2rem;
    overflow: hidden;
    max-height: 200px;
    transition: max-height .35s ease, opacity .25s ease, border .25s ease;
}
.header-nav.scrolled-away {
    max-height: 0; border-bottom-width: 0; opacity: 0; pointer-events: none;
}
.header-nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 0 10px; gap: 8px;
}
.nav-links {
    display: flex; align-items: center; gap: 24px; list-style: none;
}
.nav-links a {
    font-size: 1.05rem; font-weight: 500; color: var(--mid);
    transition: color .2s, background .2s; white-space: nowrap;
    padding: .25rem .4rem; border-radius: 6px;
}
.nav-links a:hover { color: var(--pink); background: var(--pink-soft); }
.nav-links a.active { color: var(--pink); font-weight: 700; }
.nav-links a.active:hover { color: var(--pink); background: var(--pink-soft); }
.nav-below {
    display: flex; align-items: center; justify-content: center;
}
.nav-anfragen {
    display: inline-flex; align-items: center;
    background: var(--pink); color: #fff !important;
    padding: .45rem 1.4rem; border-radius: 50px;
    font-size: .82rem; font-weight: 700; letter-spacing: .06em;
    transition: background .2s, transform .2s !important;
    border: none; white-space: nowrap; text-decoration: none;
}
.nav-anfragen:hover { background: var(--pink-dark) !important; transform: translateY(-1px); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: .35rem; flex-direction: column; gap: 5px;
    position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 10;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--dark); border-radius: 2px; transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
    display: none; position: fixed;
    top: var(--header-total); left: 0; right: 0; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem; z-index: 899;
    flex-direction: column; gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    max-height: calc(100vh - var(--header-total)); overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
    font-size: 1.05rem; font-weight: 500; color: var(--mid);
    padding: 1rem .75rem; border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s, padding-left .2s; border-radius: 6px;
}
.nav-drawer a:hover { color: var(--pink); background: var(--pink-soft); padding-left: 1.25rem; border-bottom-color: transparent; }
.nav-drawer a.active { color: var(--pink); font-weight: 700; }
.nav-drawer a.active:hover { color: var(--pink); background: var(--pink-soft); }
.nav-drawer .nav-cta {
    text-align: center; background: var(--pink); color: #fff !important;
    padding: .75rem 1.5rem; border-radius: 50px;
    border: none !important; margin-top: .75rem; font-weight: 700; letter-spacing: .05em;
}
.nav-drawer .nav-cta:hover { background: var(--pink-dark) !important; }
.drawer-social {
    display: flex; gap: 1rem; margin-top: 1.25rem;
    padding-top: 1rem; border-top: 1px solid var(--border); justify-content: center;
}
.drawer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--teal-soft); color: var(--mid);
    border: none !important; padding: 0 !important;
    transition: background .2s, transform .2s !important;
}
.drawer-social a:hover { background: var(--teal) !important; color: #fff !important; transform: scale(1.1); }
.nav-spacer { height: calc(var(--header-total) + 10px); }





/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 2rem; border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: .9rem; font-weight: 600;
    cursor: pointer; border: none;
    transition: all .25s; letter-spacing: .04em;
}
.btn-primary {
    background: var(--pink); color: #fff;
    box-shadow: 0 4px 16px rgba(233,30,140,.2);
}
.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(233,30,140,.3);
}
.btn-outline {
    background: transparent; color: var(--pink);
    border: 2px solid var(--pink);
}
.btn-outline:hover {
    background: var(--pink); color: #fff;
    transform: translateY(-2px);
}
.btn-teal {
    background: var(--teal); color: #fff;
    box-shadow: 0 4px 16px rgba(0,188,212,.2);
}
.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 3rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 820px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }
.section-head .label { margin-bottom: .5rem; }
.section-head h2 { color: var(--dark); }
.section-head p {
    margin-top: .75rem; color: var(--mid);
    font-size: 1.05rem; max-width: 560px;
}

/* ── HERO ── */
.hero {
    position: relative; overflow: hidden;
    min-height: calc(100vh - var(--nav-h));
    display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 4rem 2rem;
    max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-content h1 { color: #fff; max-width: 680px; }
.hero-content p {
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 520px; margin: 1.25rem 0 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO (smaller, for subpages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--teal-soft) 100%);
    padding: 3.5rem 2rem 3rem;
    text-align: center;
}
.page-hero .label { color: var(--pink); }
.page-hero h1 { color: var(--dark); margin-top: .4rem; }
.page-hero p { color: var(--mid); margin-top: .75rem; font-size: 1.05rem; }

/* ── CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--mid); font-size: .92rem; line-height: 1.65; }
.card-price {
    font-weight: 700; color: var(--pink);
    font-size: .95rem; margin-top: .75rem;
}

/* ── SERVICE ROWS ── */
.service-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-img {
    width: 100%; max-width: 340px; border-radius: 16px;
    object-fit: cover; flex-shrink: 0;
}
.service-text .label { margin-bottom: .75rem; }
.service-text h3 { margin-bottom: 1rem; }
.service-text p { color: var(--mid); margin-bottom: 1.5rem; line-height: 1.75; }

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.gallery-grid img {
    width: 100%; aspect-ratio: 1/1;
    object-fit: cover; border-radius: 10px;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none;
    padding: 1.4rem 0;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--dark);
    gap: 1rem;
}
.faq-q .faq-icon {
    flex-shrink: 0; width: 24px; height: 24px;
    background: var(--pink-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--pink); color: #fff;
}
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
}
.faq-a-inner {
    padding: 0 0 1.4rem;
    color: var(--mid); line-height: 1.75;
    font-size: .97rem;
}

/* ── REVIEWS CAROUSEL ── */
.reviews-wrapper {
    position: relative;
    display: flex; align-items: center; gap: .75rem;
}
.reviews-track {
    display: flex; gap: 1.5rem;
    overflow-x: auto; padding-bottom: .5rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
    flex: 1;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
    min-width: 300px; max-width: 340px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
    flex-shrink: 0;
    transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.review-stars { color: var(--pink); font-size: 1.1rem; margin-bottom: .75rem; }
.review-text {
    font-style: italic; color: var(--mid);
    line-height: 1.7; font-size: .92rem;
    margin-bottom: 1rem;
}
.review-author { font-weight: 600; font-size: .88rem; }
.review-btn {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--teal); color: #fff;
    border: none; cursor: pointer;
    font-size: 1.6rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.review-btn:hover {
    background: var(--teal-dark);
    transform: scale(1.1);
}
.reviews-dots {
    display: flex; justify-content: center; gap: .5rem;
    margin-top: 1.25rem;
}
.reviews-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: background .2s, transform .2s;
}
.reviews-dots .dot.active {
    background: var(--teal); transform: scale(1.3);
}

/* ── TEAM ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
.team-card { text-align: center; }
.team-card img {
    width: 160px; height: 160px;
    object-fit: cover; border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--pink-soft);
    box-shadow: 0 4px 16px rgba(233,30,140,.1);
}
.team-card h3 { font-size: 1.2rem; }
.team-card .role {
    font-size: .82rem; font-weight: 600;
    color: var(--teal-dark); letter-spacing: .05em;
    text-transform: uppercase; margin: .3rem 0 .75rem;
}
.team-card p { font-size: .88rem; color: var(--mid); line-height: 1.65; }

/* ── CONTACT FORM ── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info p { color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-detail {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: 1rem; font-size: .95rem;
}
.contact-detail .icon {
    font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0;
}
.contact-detail a { color: var(--teal-dark); }
.contact-detail a:hover { text-decoration: underline; }
.contact-cta-box {
    background: var(--pink); color: #fff;
    border-radius: 16px; padding: 1.5rem;
    margin-top: 2rem; text-align: center;
}
.contact-cta-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; margin-bottom: .5rem;
}
.contact-cta-box p { font-size: .9rem; opacity: .9; margin-bottom: 1rem; }
.contact-cta-box .btn {
    background: #fff; color: var(--pink);
    font-weight: 700;
}
.contact-cta-box .btn:hover { background: var(--pink-soft); }

/* Contact form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block; font-size: .85rem; font-weight: 500;
    color: var(--mid); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: .75rem 1rem;
    border: 1px solid var(--border); border-radius: 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: .95rem; color: var(--dark);
    background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,188,212,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FLAVOUR PAGE ── */
.flavour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.flavour-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.flavour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.flavour-card img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.flavour-card-body { padding: 1.25rem; }
.flavour-num {
    font-size: .72rem; font-weight: 700;
    color: var(--teal-dark); letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .3rem;
}
.flavour-card-body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.flavour-card-body p { font-size: .88rem; color: var(--mid); line-height: 1.6; }

/* ── NOTICE BOX ── */
.notice {
    background: var(--teal-soft);
    border-left: 4px solid var(--teal);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    font-size: .92rem; color: var(--mid);
    margin-bottom: 2.5rem;
}
.notice strong { color: var(--teal-dark); }

/* ── WEEK SPECIAL ── */
.special-note {
    background: var(--pink-soft);
    border-radius: 16px; padding: 2rem;
    text-align: center; margin-bottom: 3rem;
}
.special-note h3 { margin-bottom: .5rem; }
.special-note p { color: var(--mid); }

/* ── FOOTER ── */
footer {
    background: var(--teal-soft); color: var(--mid);
    padding: 3.5rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
    font-size: .88rem; line-height: 1.7;
    max-width: 280px;
}
footer h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: .78rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1.25rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: .6rem; }
footer ul li a {
    font-size: .88rem;
    color: var(--mid);
    transition: color .2s;
}
footer ul li a:hover { color: var(--pink); }
.footer-bottom {
    max-width: 1200px; margin: 1.5rem auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; flex-wrap: wrap; gap: .5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}
.footer-bottom a { color: var(--mid); }
.footer-bottom a:hover { color: var(--pink); }

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-below { display: none; }
    .header-nav { display: none; }
    .header-social { display: none; }
    .nav-toggle { display: flex; position: static; transform: none; }
    :root { --header-logo-h: 90px; --header-nav-h: 0px; --header-total: 90px; }
    .header-logo img { height: 54px; }
    /* Mobile header: logo left, toggle right — no overlap */
    .header-top { padding: 8px 1.25rem; }
    .header-top-inner {
        justify-content: space-between;
        min-height: var(--header-logo-h);
        position: relative;
    }
    .header-logo { flex: 1; display: flex; justify-content: center; }
    /* Push toggle to the far right WITHOUT covering logo */
    .nav-toggle { order: 2; flex-shrink: 0; margin-left: auto; }
    .header-logo { order: 1; }
    .service-row { grid-template-columns: 1fr; gap: 2rem; }
    .service-row.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .flavour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .section { padding: 3.5rem 1.25rem; }
    .hero-content { padding: 3rem 1.25rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SOCIAL MEDIA ICONS ── */
.social-icons {
    display: flex; gap: .75rem; margin-top: 1rem;
}
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,188,212,.12);
    color: var(--mid); font-size: 1rem;
    transition: background .2s, transform .2s;
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--teal); color: #fff;
    transform: translateY(-2px);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; z-index: 9999;
    border-top: 3px solid var(--teal);
    box-shadow: 0 -4px 24px rgba(0,0,0,.12);
    padding: 1.5rem 2rem;
}
.cookie-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
    flex: 1; min-width: 260px;
    font-size: .85rem; line-height: 1.6; color: var(--mid);
}
.cookie-text strong { color: var(--dark); }
.cookie-text a { color: var(--teal-dark); text-decoration: underline; }
.cookie-buttons {
    display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-btn-accept {
    background: var(--teal); color: #fff; border: none;
    padding: .65rem 1.5rem; border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem; font-weight: 700; cursor: pointer;
    transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--teal-dark); }
.cookie-btn-decline {
    background: transparent; color: var(--mid);
    border: 1px solid var(--border);
    padding: .65rem 1.5rem; border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem; font-weight: 500; cursor: pointer;
    transition: all .2s;
}
.cookie-btn-decline:hover { border-color: var(--mid); color: var(--dark); }
.cookie-btn-reject {
    background: transparent; color: var(--mid);
    border: 1px solid var(--border);
    padding: .65rem 1.5rem; border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem; font-weight: 500; cursor: pointer;
    transition: all .2s;
}
.cookie-btn-reject:hover { border-color: var(--mid); color: var(--dark); }
@media (max-width: 600px) {
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .cookie-buttons { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ── ABOUT PAGE ── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.about-image-col { display: flex; flex-direction: column; }
.about-image {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.12);
    aspect-ratio: 1/1;
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.about-text p { color: var(--mid); line-height: 1.85; margin-bottom: 1rem; }
.about-text h3 { color: var(--dark); font-family: 'Cormorant Garamond', serif; }
@media (max-width: 768px) {
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { aspect-ratio: 4/3; }
}

/* ── SCROLL-TO-TOP BUTTON ── */
#scrollTopBtn {
    position: fixed; bottom: 1.75rem; right: 1.75rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--pink); color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 18px rgba(233,30,140,.35);
    opacity: 0; transform: translateY(12px) scale(.85);
    transition: opacity .3s, transform .3s, background .2s;
    z-index: 800;
    pointer-events: none;
}
#scrollTopBtn.visible {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: auto;
}
#scrollTopBtn:hover {
    background: var(--pink-dark);
    transform: translateY(-2px) scale(1.08);
}

/* ── GALLERY LIGHTBOX ── */
.gallery-grid img {
    cursor: zoom-in;
    transition: transform .2s, box-shadow .2s;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: .75rem;
    cursor: zoom-out;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
    padding: 1.5rem;
}
.lightbox-overlay.open {
    opacity: 1; pointer-events: auto;
}
.lightbox-overlay img {
    max-width: min(90vw, 800px); max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 12px 60px rgba(0,0,0,.6);
    transform: scale(.88);
    transition: transform .35s cubic-bezier(.2,0,.2,1);
    object-fit: contain;
    cursor: default;
}
.lightbox-overlay.open img { transform: scale(1); }
.lightbox-caption {
    color: rgba(255,255,255,.7);
    font-size: .85rem; font-family: "Urbanist", sans-serif;
    text-align: center; max-width: 600px;
}
.lightbox-close {
    position: fixed; top: 1.1rem; right: 1.25rem;
    width: 42px; height: 42px;
    background: rgba(255,255,255,.15); color: #fff;
    font-size: 1.3rem; cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s; z-index: 2001;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); transform: scale(1.1); }
.lightbox-hint {
    position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.4); font-size: .75rem;
    font-family: "Urbanist", sans-serif; pointer-events: none;
}

/* ── CAKESHOP GALLERY (rotating carousel) ── */
.cake-gallery {
    position: relative; overflow: hidden;
    border-radius: 16px;
    background: var(--bg);
}
.cake-gallery-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cake-gallery-track img {
    min-width: calc(33.333% - .67rem);
    width: calc(33.333% - .67rem);
    aspect-ratio: 4/3; object-fit: cover;
    border-radius: 12px; flex-shrink: 0;
    margin-right: 1rem;
    cursor: zoom-in;
    transition: transform .25s, box-shadow .25s;
    transform: scale(1.3);
    transform-origin: center center;
}
.cake-gallery-track img:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.cake-gallery {
    overflow: hidden;
    padding: 1.5rem 0;  /* room for the 30% scale */
}
.cake-gallery-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.25rem;
}
.cake-gallery-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--teal); color: #fff; border: none;
    cursor: pointer; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
}
.cake-gallery-btn:hover { background: var(--teal-dark); transform: scale(1.1); }
.cake-gallery-dots {
    display: flex; gap: .45rem;
}
.cake-gallery-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: background .2s, transform .2s;
}
.cake-gallery-dots .dot.active { background: var(--teal); transform: scale(1.3); }
@media (max-width: 600px) {
    .cake-gallery-track img { min-width: calc(100% - 0px); width: 100%; margin-right: 0; }
}

/* ── AGB CHECKBOX ── */
.agb-checkbox {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: 1rem 1.25rem; margin-bottom: 1rem;
    background: var(--teal-soft); border: 1px solid var(--teal);
    border-radius: var(--border-radius-lg, 12px);
    cursor: pointer; font-size: .88rem;
}
.agb-checkbox input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; accent-color: var(--teal);
    cursor: pointer;
}
.agb-checkbox span { color: var(--mid); line-height: 1.6; }
.agb-checkbox span a { color: var(--teal-dark); text-decoration: underline; }
.agb-checkbox .req { color: var(--magenta); margin-left: 2px; }

/* ── GLOBAL ICON SIZE: 20×20, magenta ── */
.icon svg,
.contact-detail .icon svg,
.value-icon svg,
.faq-icon svg,
.sec-icon svg,
.footer-icon svg,
.feature-icon svg {
    width: 20px !important;
    height: 20px !important;
}
.icon svg [stroke],
.contact-detail .icon svg,
.value-icon svg,
.sec-icon svg {
    stroke: var(--pink) !important;
}

/* ── GLOBAL ICON FIX: 20×20 magenta on all pages ── */
.faq-q svg,
.faq-q > span svg,
.faq-q span svg,
.value-icon svg,
.values-item > div svg,
.values-item > div > span svg,
.feature-icon svg,
.contact-detail .icon svg,
.icon svg,
.sec-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--pink) !important;
    fill: none !important;
}
/* Fix inline span wrappers that carry old opacity */
.faq-q > span[style*="opacity"],
.values-item > div > span[style*="opacity"] {
    opacity: 1 !important;
}

/* ── ACTIVE NAV LINK ── */
.nav-links li a.nav-active {
    color: var(--pink) !important;
    font-weight: 700;
}

/* ── LANGUAGE SWITCHER ── */
.header-lang {
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    display: flex; align-items: center; gap: 6px;
    padding-left: 2rem;
}
.lang-btn {
    background: none; border: 1.5px solid var(--border);
    color: var(--mid); font-family: 'Urbanist', sans-serif;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    padding: .2rem .55rem; border-radius: 4px;
    cursor: pointer; transition: all .2s; line-height: 1.4;
}
.lang-btn:hover { border-color: var(--pink); color: var(--pink); }
.lang-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; }
@media (max-width: 900px) {
    .header-lang {
        position: static; transform: none;
        padding-left: 0; order: 0; /* far left */
        gap: 4px;
    }
    .lang-btn { font-size: .68rem; padding: .18rem .45rem; }
    .header-logo { order: 1; flex: 1; display: flex; justify-content: center; }
    .nav-toggle { order: 2; flex-shrink: 0; }
    .header-top-inner { justify-content: space-between; padding: 0; }
}

/* ── FLAVOUR CARD HOVER ZOOM ── */
.flavour-card {
    position: relative;
    overflow: visible !important;
}
.flavour-card .card-img-wrap {
    overflow: hidden;
    border-radius: 12px;
}
.flavour-card .card-img-wrap img {
    transition: transform .35s cubic-bezier(.2,0,.2,1);
    display: block; width: 100%;
}
.flavour-card:hover .card-img-wrap img {
    transform: scale(1.07);
}
/* Popup overlay on hover */
.flavour-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--pink);
    border-radius: 16px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}
.flavour-card:hover::after { opacity: 1; }
