/* ═══════════════════════════════════════════════════
   TIRA — style2.css
   Palette: Pink #ce0b69 · Yellow #fdcb15 · Sage #e0ebce · Peach #f7bd9e
   Font: Onest only · Text: #000000
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --pink:    #ce0b69;
    --yellow:  #fdcb15;
    --sage:    #e0ebce;
    --peach:   #f8be9f;
    --black:   #000000;
    --white:   #ffffff;
    --cream:   #faf8f3;

    --font: 'Onest', sans-serif;

    --nav-h: 116px;
    --nav-announcement-h: 36px;
    --nav-main-h: 80px;
    --container: 1240px;
    --radius: 6px;
    --radius-lg: 12px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 0.65s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Honor the HTML hidden attribute even when class rules set display.
   (e.g., .btn { display: inline-flex } would otherwise override the UA
   [hidden] { display: none } rule because class specificity beats attribute.) */
[hidden] { display: none !important; }

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Container ── */
.container {
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    padding: 1rem 2rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .03em;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--white  { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: var(--yellow); border-color: var(--yellow); }

.btn--ghost { background: transparent; color: var(--black); border-color: transparent; padding-inline: 0; }
.btn--ghost:hover { color: var(--pink); background: transparent; border-color: transparent; transform: translateX(2px); }

.btn--ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--black  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black:hover { background: var(--pink); border-color: var(--pink); }

.btn--ghost-black { background: transparent; color: var(--black); border-color: rgba(0,0,0,.35); }
.btn--ghost-black:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn--sm { padding: .65rem 1.2rem; font-size: .875rem; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav__announcement {
    background: var(--black);
    color: var(--peach);
    height: var(--nav-announcement-h);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 1rem;
}
.nav__announcement p {
    margin: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav__main {
    background: var(--cream);
    border-bottom: 1.5px solid rgba(0,0,0,.08);
    height: var(--nav-main-h);
}

.nav__inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    gap: 2rem;
}

.nav__logo-link {
    flex-shrink: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav__logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    gap: 2.4rem;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.nav__links a {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
    transition: color .2s;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--pink);
    transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--pink); }
.nav__links a:hover::after { width: 100%; }

.nav__icons {
    display: flex;
    align-items: center;
    gap: .15rem;
    flex-shrink: 0;
}
.nav__icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--black);
    border-radius: 50%;
    transition: background .2s, color .2s;
    position: relative;
    padding: 0;
}
.nav__icon:hover { background: rgba(0,0,0,.06); color: var(--pink); }
.nav__icon svg { width: 22px; height: 22px; }

.nav__cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--pink);
    color: var(--white);
    font-size: .62rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1.5px solid var(--cream);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s;
}
.nav__burger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s var(--ease);
}
.nav__mobile-menu.open { max-height: 400px; }
.nav__mobile-menu a {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--pink);
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
}
.hero__video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(var(--container), 100% - 3rem);
    margin-inline: auto;
    padding-block: 3rem 6rem;
    color: var(--white);
}

.hero__eyebrow {
    font-size: clamp(.8rem, 1.2vw, 1rem);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(60px, 9.5vw, 132px);
    font-weight: 900;
    line-height: .96;
    letter-spacing: -.03em;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
}
.hero__title-line { display: block; }

.hero__sub {
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    font-weight: 400;
    line-height: 1.55;
    opacity: .92;
    max-width: 720px;
    margin-bottom: 2.25rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: var(--white);
    opacity: .6;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: var(--white);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: .6; }
    50% { transform: scaleY(.5); opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════ */
.marquee {
    overflow: hidden;
    padding: .9rem 0;
    border-top: 1.5px solid rgba(0,0,0,.12);
    border-bottom: 1.5px solid rgba(0,0,0,.12);
}
.marquee--black,
.marquee--pink,
.marquee--sage,
.marquee--peach { background: var(--black); border-color: var(--black); }

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.marquee__track--rtl { animation-direction: reverse; }

.marquee__track span {
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 0;
}
.marquee--black .marquee__track span,
.marquee--pink  .marquee__track span,
.marquee--sage  .marquee__track span,
.marquee--peach .marquee__track span { color: var(--peach); }

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

/* ═══════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════ */

/* Colored sections */
.s-boutique,
.s-philosophy,
.s-wedding,
.s-b2b,
.s-franchise,
.s-atelier {
    overflow: hidden;
}

/* Section number: small inline label above the title */
.section-num {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .45;
    margin-bottom: .9rem;
}
.section-num--light { color: var(--white); }

.section-header { margin-bottom: 4rem; }
.section-header--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.section-header--row .section-header__main { flex: 1; min-width: 280px; }
.section-header--row .section-header__cta { flex-shrink: 0; }
.section-title {
    font-size: clamp(40px, 6vw, 82px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.02;
}
.section-title--light { color: var(--white); }
.section-sub {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 4rem;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.4rem 1.6rem;
    border-right: 2px solid var(--black);
    background: var(--white);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-bar__icon svg {
    width: 28px; height: 28px;
    color: var(--black);
}
.trust-bar__text { display: flex; flex-direction: column; gap: .15rem; }
.trust-bar__text strong { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.trust-bar__text span { font-size: .78rem; opacity: .65; }

/* ═══════════════════════════════════════════════════
   INFO BAR (4-col with /01-/04 numbering)
═══════════════════════════════════════════════════ */
.info-bar {
    background: var(--cream);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin-top: 3.5rem;
    margin-bottom: 3rem;
    overflow: hidden;
}
.info-bar--3 { grid-template-columns: repeat(3, 1fr); }
.info-bar--transparent {
    background: transparent;
    border-radius: 0;
    border-top-color: rgba(0,0,0,.14);
    border-bottom-color: rgba(0,0,0,.14);
}
.info-bar--transparent .info-bar__item {
    border-right-color: rgba(0,0,0,.14);
}
/* "Bare" — no outer frame, only vertical separators between items */
.info-bar--bare {
    background: transparent;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
}
.info-bar--bare .info-bar__item {
    border-right-color: rgba(0,0,0,.18);
}
.info-bar__item {
    padding: 2.2rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    border-right: 1px solid rgba(0,0,0,.08);
    position: relative;
}
.info-bar__item:last-child { border-right: none; }
.info-bar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info-bar__icon {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}
.info-bar__icon svg { width: 28px; height: 28px; }
.info-bar__num {
    font-size: .85rem;
    font-weight: 600;
    color: var(--pink);
    font-feature-settings: "tnum";
    letter-spacing: .02em;
}
.info-bar__title {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--black);
}
.info-bar__desc {
    font-size: .85rem;
    line-height: 1.5;
    color: rgba(0,0,0,.7);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   SECTION 2 — BOUTIQUE (Yellow)
═══════════════════════════════════════════════════ */
.s-boutique {
    background: var(--peach);
    padding-block: 3.5rem 5rem;
}
.boutique-grid-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    will-change: transform;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 8px 16px -6px rgba(0,0,0,.12),
        0 16px 28px -10px rgba(0,0,0,.10);
}

.product-card__img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f3e6d4;
    overflow: hidden;
}
.product-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.03); }

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    padding: .45rem .8rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.product-tag--new     { background: var(--pink); color: var(--white); border-color: var(--pink); }
.product-tag--limited { background: var(--white); color: var(--black); }

.product-card__body {
    padding: 1.25rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1;
}
.product-card__body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.15;
    margin: 0;
}
.product-card__subtitle {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0,0,0,.5);
    margin-bottom: 1rem;
}

.product-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.06);
}
.product-price {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -.01em;
}
.product-add {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    transition: color .2s, gap .2s;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.product-add:hover { color: var(--pink); gap: .55rem; }

/* Platforms */
.platforms { text-align: center; }
.platforms p { font-size: .9rem; opacity: .65; margin-bottom: 1rem; font-weight: 600; }
.platforms__list { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.platform-badge {
    padding: .5rem 1.2rem;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 700;
    background: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — PHILOSOPHY (Sage)
═══════════════════════════════════════════════════ */
.s-philosophy {
    background: var(--cream);
    padding-block: 2.5rem 7rem;
}

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

.philosophy__body {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.trust-pills {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .7rem;
}
.pill {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.4;
}

.philosophy__video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 16px 32px -12px rgba(0,0,0,.12);
}
.philosophy__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════════
   SECTION 4 — WEDDING (Peach, full-bleed split)
═══════════════════════════════════════════════════ */
.s-wedding {
    background: var(--peach);
    padding: 0;
    overflow: hidden;
}

.wedding__layout {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 0;
    align-items: stretch;
    height: calc(100vh - var(--nav-h));
    min-height: 480px;
    max-height: 860px;
}

.wedding__visual {
    position: relative;
    overflow: hidden;
}
.wedding__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wedding__text {
    display: flex;
    align-items: center;
    padding: 2rem max(1.5rem, calc((100vw - 1240px) / 2)) 2rem 3rem;
}
.wedding__text-inner {
    max-width: 720px;
}
.wedding__text-inner > p { margin: 1rem 0 1.5rem; line-height: 1.75; }

.wedding__features {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 2.5rem;
}
.wedding__features li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1rem;
    font-weight: 600;
}
.wedding__features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--black);
    color: var(--peach);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — B2B (Cream, full-bleed split: 60% text / 40% image)
═══════════════════════════════════════════════════ */
.s-b2b {
    background: var(--cream);
    color: var(--black);
    padding: 0;
    overflow: hidden;
}

.b2b__layout {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 0;
    align-items: stretch;
    min-height: 560px;
}

.b2b__text {
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem max(1.5rem, calc((100vw - 1240px) / 2));
}
.b2b__text-inner { max-width: 560px; }
.b2b__text-inner > p {
    margin: 2rem 0 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0,.75);
    max-width: 480px;
}
.s-b2b .product-add { display: inline-flex; }

.b2b__visual {
    overflow: hidden;
}
.b2b__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════════
   SECTION 6 — FRANCHISE (Yellow)
═══════════════════════════════════════════════════ */
.s-franchise {
    background: var(--peach);
    padding-block: 2.5rem 7rem;
}

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

.franchise__big-title {
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.franchise__intro {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 1rem;
}
.franchise__right > p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.franchise__pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(0,0,0,.12);
    border-bottom: 1px solid rgba(0,0,0,.12);
}
.franchise__pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,.12);
}
.franchise__pillar:last-child { border-bottom: none; }
.pillar-num {
    font-size: .95rem;
    font-weight: 600;
    color: var(--pink);
    opacity: 1;
    flex-shrink: 0;
    line-height: 1.2;
    min-width: 2.5rem;
    letter-spacing: .02em;
    font-feature-settings: "tnum";
}
.franchise__pillar strong {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.franchise__pillar p { font-size: .875rem; opacity: .7; line-height: 1.5; }

/* ═══════════════════════════════════════════════════
   SECTION 7 — ATELIER (Sage)
═══════════════════════════════════════════════════ */
.s-atelier {
    background: var(--cream);
    padding-block: 2.5rem 7rem;
}

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

.atelier__text > p {
    margin: 2rem 0 2.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 440px;
}

.atelier__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.atelier__visual { position: relative; }
.atelier__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--black);
    transform: rotate(1deg);
}
.atelier__location-tag {
    position: absolute;
    top: 1.5rem; left: -1.5rem;
    background: var(--pink);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: var(--radius);
    padding: .7rem 1.2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 0 var(--black);
}
.atelier__location-city {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.01em;
}
.atelier__location-label {
    font-size: .72rem;
    font-weight: 600;
    opacity: .75;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   AUTH — Google Giriş
═══════════════════════════════════════════════════ */
.nav__user-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.nav__user-avatar--sm { width: 22px; height: 22px; }

/* Auth Modal */
.auth-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
}
.auth-modal[hidden] { display: none; }
.auth-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
}
.auth-modal__box {
    position: relative; z-index: 1;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    width: min(340px, 90vw);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.auth-modal__close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.1rem; color: var(--muted);
    line-height: 1; padding: .25rem;
}
.auth-modal__logo { width: 80px; margin-bottom: 1rem; }
.auth-modal__title { font-size: 1.3rem; font-weight: 700; margin-bottom: .35rem; }
.auth-modal__sub   { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.auth-modal__btn-wrap { display: flex; justify-content: center; }

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: .75rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    display: none; flex-direction: column; gap: .5rem;
    z-index: 500;
}
.user-dropdown.is-open { display: flex; }
.user-dropdown__header {
    display: flex; align-items: center; gap: .6rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}
.user-dropdown__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.user-dropdown__name   { font-size: .85rem; font-weight: 600; }
.user-dropdown__email  { font-size: .75rem; color: var(--muted); }
.user-dropdown__signout {
    background: none; border: 1px solid var(--border);
    border-radius: .5rem; padding: .45rem .75rem;
    font-size: .8rem; cursor: pointer; color: var(--text);
    text-align: left;
    transition: background .15s;
}
.user-dropdown__signout:hover { background: var(--cream); }

/* Mobil kullanıcı satırı */
.nav__mobile-user {
    display: flex; align-items: center; gap: .6rem;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: .9rem; font-weight: 600;
}
.nav__mobile-user button {
    margin-left: auto; background: none; border: none;
    font-size: .8rem; color: var(--muted); cursor: pointer;
}

/* Dropdown'ın konumlanması için nav__icons relative olmalı */
.nav__icons { position: relative; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: var(--white);
    padding-block: 2rem 1.5rem;
}

.footer__top {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 1.75rem;
}

.footer__logo {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.footer__quote {
    font-size: clamp(.9rem, 1.3vw, 1.05rem);
    font-weight: 300;
    line-height: 1.55;
    font-style: italic;
    max-width: 620px;
    opacity: .9;
    border-left: none;
    padding-left: 0;
}
.footer__quote cite {
    display: block;
    margin-top: .75rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .04em;
    opacity: .9;
    color: var(--peach);
}

.footer__divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin-bottom: 1.25rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.footer__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    opacity: .85;
    color: var(--white);
    transition: color .2s, opacity .2s;
}
.footer__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: color .2s;
}
.footer__link:hover { opacity: 1; color: var(--pink); }
.footer__sep { opacity: .3; }
.footer__address { font-size: .9rem; opacity: .55; }

.footer__copy { font-size: .78rem; opacity: .55; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════
   MODAL + CONTACT FORM
═══════════════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modalFade .25s var(--ease);
}
.modal[hidden] { display: none; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.modal__panel {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-lg);
    width: min(540px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 24px 64px -16px rgba(0,0,0,.45);
    animation: modalRise .35s var(--ease);
}
.modal__panel--wide { width: min(680px, 100%); }
.modal__back {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 0 .8rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
    font-family: var(--font);
    transition: color .2s;
}
.modal__back:hover { color: var(--pink); }
@keyframes modalRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.modal__close:hover { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.25); }

.modal__content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 2rem .4rem 0;
    line-height: 1.2;
}
.modal__lead {
    color: rgba(0,0,0,.65);
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.contact-form label > span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.65);
}
.contact-form label > span em {
    font-style: normal;
    font-weight: 500;
    opacity: .6;
    text-transform: none;
    letter-spacing: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: .8rem 1rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    background: var(--white);
    color: var(--black);
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(206,11,105,.15);
}
.contact-form textarea { resize: vertical; min-height: 70px; font-family: var(--font); }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.contact-form__submit { margin-top: .75rem; align-self: flex-start; }

.modal__content--success {
    text-align: center;
    padding: 1rem 0;
}
.modal__success-icon {
    display: inline-block;
    font-size: 2.4rem;
    color: var(--pink);
    margin-bottom: .8rem;
    line-height: 1;
}
.modal__content--success h3 { margin: 0 0 1rem; font-size: 1.35rem; }
.modal__content--success p { color: rgba(0,0,0,.7); line-height: 1.65; }
.modal__brand {
    margin: 1.4rem 0 1.6rem;
    font-style: italic;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: .04em;
}

/* lock body scroll when modal open */
body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════
   CALENDAR (booking)
═══════════════════════════════════════════════════ */
.calendar { margin-top: 1.5rem; }
.calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .5rem 0 1rem;
}
.calendar__title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: capitalize;
    margin: 0;
}
.calendar__nav {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.calendar__nav:hover { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.25); }

.calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .25rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.calendar__weekdays span {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.5);
    padding: .5rem 0;
}

.calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .25rem;
    padding-top: .5rem;
}
.calendar__day {
    aspect-ratio: 1;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: transparent;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 500;
    color: var(--black);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.calendar__day--blank { visibility: hidden; }
.calendar__day--past { color: rgba(0,0,0,.25); }
.calendar__day--available {
    background: var(--peach);
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    border-color: rgba(0,0,0,.12);
}
.calendar__day--available:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.calendar__legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.25rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: .75rem;
    color: rgba(0,0,0,.6);
}
.calendar__legend-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.calendar__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.calendar__dot--available { background: var(--peach); border: 1px solid rgba(0,0,0,.12); }
.calendar__dot--past { background: rgba(0,0,0,.12); }

/* ═══════════════════════════════════════════════════
   BOOKING + PAYMENT
═══════════════════════════════════════════════════ */
.booking-summary {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1.5rem;
    margin: 1rem 0 1.5rem;
}
.booking-summary > div { display: flex; flex-direction: column; gap: .2rem; }
.booking-summary__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}
.booking-summary > div strong { font-size: .98rem; font-weight: 700; }
.booking-summary__price { grid-column: span 2; padding-top: .8rem; border-top: 1px solid rgba(0,0,0,.06); }
.booking-summary__price strong { font-size: 1.25rem; color: var(--pink); }

.payment-card {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: var(--radius);
    padding: 1rem 1.1rem 1.1rem;
    margin-top: .25rem;
    background: var(--white);
}
.payment-card legend {
    padding: 0 .4rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}
.payment-card label { margin-top: .8rem; }
.payment-card label:first-of-type { margin-top: .2rem; }
.payment-card__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}
.payment-note {
    font-size: .72rem;
    color: rgba(0,0,0,.55);
    line-height: 1.5;
    margin: .25rem 0 .5rem;
}

/* ═══════════════════════════════════════════════════
   PARTNER PAGE (placeholder + full)
═══════════════════════════════════════════════════ */
.partner-page {
    background: var(--cream);
    min-height: calc(100vh - var(--nav-h));
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
}
.partner-page__inner {
    max-width: 640px;
    text-align: left;
}
.partner-page__title {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    margin: 1rem 0 1.5rem;
}
.partner-page__lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0,.7);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Partner Hero */
.partner-hero {
    background: var(--peach);
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 5rem;
}
.partner-hero__inner {
    max-width: 880px;
}
.partner-hero__title {
    font-size: clamp(42px, 6.4vw, 92px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.02;
    margin: 1rem 0 1.5rem;
}
.partner-hero__lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: rgba(0,0,0,.75);
    max-width: 640px;
    margin-bottom: 2.25rem;
}
.partner-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

/* Partner Formats */
.partner-formats {
    background: var(--cream);
    padding-block: 4rem 5rem;
}
.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}
.format-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.format-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 12px 24px -8px rgba(0,0,0,.10),
        0 24px 40px -16px rgba(0,0,0,.08);
}
.format-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}
.format-card__num {
    font-size: .9rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: .02em;
    font-feature-settings: "tnum";
}
.format-card__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}
.format-card__icon svg { width: 28px; height: 28px; }
.format-card__title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.format-card__sub {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0,0,0,.5);
    margin-bottom: .25rem;
}
.format-card__desc {
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(0,0,0,.75);
    margin-bottom: .25rem;
}
.format-card__features {
    list-style: none;
    padding: .5rem 0 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.format-card__features li {
    font-size: .85rem;
    line-height: 1.45;
    color: rgba(0,0,0,.7);
    padding-left: 1.1rem;
    position: relative;
}
.format-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

/* Format Blocks — alternating image/text rows (reference: FoxPro-style) */
.format-blocks {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 3rem;
}
.format-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.format-block--reverse .format-block__visual { grid-column: 1; grid-row: 1; }
.format-block--reverse .format-block__text   { grid-column: 2; grid-row: 1; }

.format-block__text {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    max-width: 460px;
}
.format-block__accent {
    font-family: 'Caveat', cursive;
    font-weight: 500;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    color: var(--pink);
    line-height: 1;
    margin-bottom: -.35rem;
}
.format-block__title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1;
    text-transform: uppercase;
}
.format-block__subtitle {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
    margin-bottom: .75rem;
}
.format-block__desc {
    font-size: .98rem;
    line-height: 1.7;
    color: rgba(0,0,0,.75);
    margin-bottom: .5rem;
}
.format-block__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.format-block__features li {
    font-size: .88rem;
    line-height: 1.5;
    color: rgba(0,0,0,.7);
    padding-left: 1.1rem;
    position: relative;
}
.format-block__features li::before {
    content: '';
    position: absolute;
    left: 0; top: .5em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

.format-block__visual {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* organic blob shape */
    border-radius: 45% 55% 65% 35% / 50% 60% 40% 50%;
    transition: transform .5s var(--ease);
}
.format-block__visual:hover { transform: translateY(-4px); }
.format-block--reverse .format-block__visual {
    border-radius: 55% 45% 35% 65% / 60% 50% 50% 40%;
}
.format-block__visual--peach { background: var(--peach); }
.format-block__visual--rose  { background: #f7d7c4; }
.format-block__visual--sage  { background: #eadcb5; }
.format-block__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* "Detayları Görüşelim" button = underlined text-link styled like .product-add */
.format-block__text .product-add {
    align-self: flex-start;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font);
    margin-top: .25rem;
}
/* ═══════════════════════════════════════════════════
   SHARED FLAVOR STRIP — between Block 1 & Block 2
   with arrow indicators pointing to both sections.
═══════════════════════════════════════════════════ */
.flavor-shared {
    margin: 0;
    padding: 0;
}
.flavor-shared__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.flavor-shared__title {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: .35rem;
}
.flavor-shared__sub {
    font-size: .9rem;
    color: rgba(0,0,0,.65);
    line-height: 1.5;
}
.flavor-shared__sub strong { color: var(--pink); font-weight: 700; }

.flavor-shared {
    position: relative;
    overflow: visible;
}
.flavor-shared__pointer {
    position: relative;
    display: flex;
    align-items: center;
    gap: .85rem;
    color: var(--pink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.flavor-shared__pointer--up { margin-bottom: 1.25rem; }
.flavor-shared__pointer--down { margin-top: 1.25rem; }
/* On desktop, shift stem horizontally so it aligns with the centre of each
   block's image column (image is in right half for Block 1, left half for Block 2). */
@media (min-width: 769px) {
    .flavor-shared__pointer--up { padding-right: 25%; }
    .flavor-shared__pointer--down { padding-left: 25%; }
}
.flavor-shared__pointer > span:not(.flavor-shared__line) {
    flex-shrink: 0;
}
.flavor-shared__line {
    flex: 1;
    height: 1px;
    /* up pointer: line on LEFT, label/stem on RIGHT — gradient grows strong toward right */
    background: linear-gradient(to right, rgba(206,11,105,.05), rgba(206,11,105,.4));
}
.flavor-shared__pointer--down .flavor-shared__line {
    /* down pointer: stem/label on LEFT, line on RIGHT — gradient strong on left */
    background: linear-gradient(to right, rgba(206,11,105,.4), rgba(206,11,105,.05));
}
/* Arrow stem — small footprint in the row, full-length SVG extends out via position absolute */
.flavor-shared__stem {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--pink);
}
.flavor-shared__stem svg {
    position: absolute;
    left: 0;
    width: 24px;
    height: 360px;
    opacity: .65;
    pointer-events: none;
}
.flavor-shared__stem--up svg {
    /* arrowhead is at the top of the SVG; bottom of SVG aligns with stem's top (so it extends upward) */
    bottom: 100%;
}
.flavor-shared__stem--down svg {
    /* arrowhead at bottom of SVG; top of SVG aligns with stem's bottom (extends downward) */
    top: 100%;
}

/* ═══════════════════════════════════════════════════
   FLAVOR SCROLL — 6 tiles visible · last 2 in slider
═══════════════════════════════════════════════════ */
.flavor-scroll {
    position: relative;
}
.flavor-grid {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.2) transparent;
    padding-bottom: .35rem;
}
.flavor-grid::-webkit-scrollbar { height: 4px; }
.flavor-grid::-webkit-scrollbar-track { background: transparent; }
.flavor-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 2px; }
.flavor-grid::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.3); }

.flavor-tile {
    /* 6 tiles visible at full width: (container − 5 gaps) / 6 */
    flex: 0 0 calc((100% - 5 * .85rem) / 6);
    scroll-snap-align: start;
    background: transparent;
    border: none;
    padding: 0;
    cursor: help;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    position: relative;
    font-family: var(--font);
    color: var(--black);
    text-align: center;
}
.flavor-tile__visual {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative;
    background: #f0e8d8;
}
.flavor-tile__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flavor-tile:hover .flavor-tile__visual,
.flavor-tile:focus-visible .flavor-tile__visual {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,.30);
}
.flavor-tile:focus-visible { outline: none; }
.flavor-tile:focus-visible .flavor-tile__visual {
    box-shadow: 0 12px 24px -8px rgba(0,0,0,.30), 0 0 0 3px rgba(206,11,105,.35);
}
.flavor-tile__name {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.35;
    color: var(--black);
    padding: 0 .15rem;
    hyphens: auto;
}

/* Scroll buttons (prev/next) — vertically centered on the tile visuals */
.flavor-scroll__btn {
    position: absolute;
    top: calc(50% - .8rem);
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.12);
    color: var(--black);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transition: background .2s, color .2s, transform .2s;
    z-index: 5;
    font-family: var(--font);
    font-weight: 700;
    padding: 0 0 3px 0;
}
.flavor-scroll__btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}
.flavor-scroll__btn--prev { left: -16px; }
.flavor-scroll__btn--next { right: -16px; }

/* Right-edge gradient fade hint */
.flavor-scroll::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: calc(100% - 2rem);
    width: 60px;
    background: linear-gradient(to left, var(--cream), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: opacity .25s;
}
.flavor-scroll[data-at-end="true"]::after { opacity: 0; }

/* Tooltip popup — position: fixed, positioned by JS so it isn't clipped by
   scroll-container overflow. Anchored ABOVE the tile (tiles are horizontal). */
.flavor-tile__tip {
    position: fixed;
    left: var(--tip-x, 0);
    top: var(--tip-y, 0);
    transform: translate(-50%, calc(-100% - 14px));
    background: var(--black);
    color: var(--white);
    padding: .85rem 1rem;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 400;
    line-height: 1.5;
    width: 240px;
    max-width: calc(100vw - 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s var(--ease);
    z-index: 100;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    text-align: left;
    letter-spacing: .01em;
}
.flavor-tile__tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% + var(--tip-arrow, 0px));
    transform: translateX(-50%);
    width: 0; height: 0;
    border: 7px solid transparent;
    border-top-color: var(--black);
}
.flavor-tile__tip.is-active {
    opacity: 1;
    visibility: visible;
}

/* Partner Trust */
.partner-trust {
    background: var(--peach);
    padding-block: 3rem 4rem;
}
.partner-trust .info-bar { margin: 0; }

/* ═══════════════════════════════════════════════════
   PRODUCTION SECTION — Mascarpone + standards cards
═══════════════════════════════════════════════════ */
.production {
    margin: 4rem 0 2rem;
}
.production__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}
.production__head .section-sub {
    display: inline-block;
    margin: 1.2rem auto 0;
    max-width: 640px;
    width: min(100%, 640px);
    font-size: 1rem;
    line-height: 1.7;
    white-space: normal;
}

.production__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.1rem;
    align-items: stretch;
}

/* Main mascarpone card */
.production__main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: var(--peach);
    min-height: 440px;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.production__main:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 16px 32px -12px rgba(0,0,0,.15);
}
.production__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.production__main-text {
    position: absolute;
    top: 1rem;
    left: -0.75rem;
    max-width: 42%;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.1rem 1.3rem 1.3rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px -10px rgba(0,0,0,.15);
}
.production__main-eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .65rem;
}
.production__main-text h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: .55rem;
}
.production__main-text p {
    font-size: .88rem;
    line-height: 1.55;
    color: rgba(0,0,0,.75);
}

/* Side cards (stacked) */
.production__side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}
.production__card {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 0;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.production__card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 12px 24px -10px rgba(0,0,0,.15);
}
.production__card-img {
    flex: 1;
    overflow: hidden;
    min-height: 130px;
    background: var(--cream);
    position: relative;
}
.production__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.production__card-text {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.85rem 0.95rem 0.75rem;
    text-align: left;
    background: rgba(255,255,255,.92);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 24px -16px rgba(0,0,0,.12);
    z-index: 2;
}
.production__card h4 {
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.3;
}

/* Partner Process */
.partner-process {
    background: var(--cream);
    padding-block: 4rem 5rem;
}
.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: process;
}
.process-step {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
}
.process-step__num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 1.25rem;
    font-feature-settings: "tnum";
}
.process-step__body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.process-step__body p {
    font-size: .88rem;
    line-height: 1.55;
    color: rgba(0,0,0,.7);
}

/* Partner CTA */
.partner-cta {
    background: var(--black);
    color: var(--white);
    padding-block: 5rem 6rem;
}
.partner-cta__inner {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
}
.partner-cta__title {
    font-size: clamp(34px, 4.8vw, 60px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.partner-cta__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,.75);
    margin-bottom: 2.5rem;
}
.partner-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.partner-cta__contact {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    letter-spacing: .02em;
}
.partner-cta__contact strong {
    color: var(--peach);
    font-weight: 700;
    margin-right: .35rem;
}

/* ═══════════════════════════════════════════════════
   FRANCHISE PAGE
═══════════════════════════════════════════════════ */
.franchise-hero__bar {
    margin-top: 2.25rem;
    margin-bottom: 0;
    max-width: 940px;
}
.franchise-hero__bar .info-bar__item {
    padding: 1.2rem 1.5rem 1.2rem;
    gap: .55rem;
}
@media (min-width: 769px) {
    .franchise-hero__bar .info-bar__item:first-child { padding-left: 0; }
    .franchise-hero__bar .info-bar__item:last-child  { padding-right: 0; }
}
.franchise-hero__bar .info-bar__num {
    font-size: .82rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: .02em;
    font-feature-settings: "tnum";
}
.franchise-hero__bar .info-bar__title {
    font-size: .78rem;
}
.franchise-hero__bar .info-bar__desc {
    font-size: .82rem;
}

/* Brand inline mark (logo image inside headings) */
.brand-mark {
    display: inline-block;
    height: .92em;
    width: auto;
    vertical-align: -.06em;
    margin: 0 .04em 0 .12em;
}

/* "Tira" inline wordmark — matches logo character (bold geometric sans, no italic) */
.tira {
    font-weight: 900;
    letter-spacing: -.035em;
    font-feature-settings: "ss01";
}

/* Compare */
.franchise-compare {
    background: var(--cream);
    padding-block: 4rem 5rem;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
.compare-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.compare-card--old {
    background: rgba(0,0,0,.03);
    opacity: .75;
}
.compare-card--new {
    border-color: rgba(206,11,105,.25);
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 32px -12px rgba(206,11,105,.18);
}
.compare-card__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0,0,0,.5);
    align-self: flex-start;
    padding: .35rem .7rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: var(--radius);
}
.compare-card__label--accent {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}
.compare-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .25rem;
}
.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.compare-list li {
    font-size: .95rem;
    line-height: 1.5;
    padding-left: 1.85rem;
    position: relative;
}
.compare-list--negative li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    color: rgba(0,0,0,.55);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-list--positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Models */
.franchise-models {
    background: var(--peach);
    padding-block: 4rem 5rem;
}
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.model-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.model-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 32px -12px rgba(0,0,0,.14);
}
.model-card--featured {
    border-color: var(--pink);
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 36px -10px rgba(206,11,105,.25);
}
.model-card__badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: var(--pink);
    color: var(--white);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .7rem;
    border-radius: var(--radius);
}
.model-card__head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .25rem;
}
.model-card__size {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--peach);
    color: var(--black);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model-card--featured .model-card__size {
    background: var(--pink);
    color: var(--white);
}
.model-card__tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}
.model-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.model-card__sub {
    font-size: .95rem;
    color: rgba(0,0,0,.65);
    margin-bottom: .5rem;
}
.model-card__features {
    list-style: none;
    padding: .25rem 0 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1rem;
}
.model-card__features li {
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(0,0,0,.75);
    padding-left: 1.1rem;
    position: relative;
}
.model-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}
.model-card__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.model-card__hint {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}

/* Tech & Community */
.franchise-tech {
    background: var(--cream);
    padding-block: 4rem 5rem;
}
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
.tech-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.tech-card__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--peach);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .25rem;
}
.tech-card__icon svg { width: 28px; height: 28px; }
.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.tech-card > p {
    color: rgba(0,0,0,.7);
    line-height: 1.6;
    font-size: .95rem;
}
.tech-card__features {
    list-style: none;
    padding-top: .75rem;
    border-top: 1px solid rgba(0,0,0,.08);
    margin: .5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.tech-card__features li {
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(0,0,0,.75);
    padding-left: 1.1rem;
    position: relative;
}
.tech-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}

/* Founder's Circle */
.founders-circle {
    background: var(--black);
    color: var(--white);
    padding-block: 5rem 5rem;
}
.founders-circle__inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}
.founders-circle__badge {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.founders-circle__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.founders-circle__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,.8);
    max-width: 580px;
    margin: 0 auto 2.25rem;
}
.founders-circle__lead strong {
    color: var(--peach);
    font-weight: 700;
}
.founders-circle__stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.founders-circle__stat {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    align-items: center;
}
.founders-circle__stat strong {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--peach);
    letter-spacing: -.02em;
    line-height: 1;
}
.founders-circle__stat span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

/* Roadmap reuses .process-steps from partner page */
.franchise-roadmap {
    background: var(--cream);
    padding-block: 4rem 5rem;
}

/* Application multistep */
.franchise-application {
    background: var(--peach);
    padding-block: 4rem 5rem;
}
.multistep {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem 2.25rem;
    max-width: 780px;
    margin-inline: auto;
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 32px -16px rgba(0,0,0,.12);
    position: relative;
}
.multistep__progress {
    height: 4px;
    background: rgba(0,0,0,.08);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.multistep__progress-bar {
    height: 100%;
    width: 20%;
    background: var(--pink);
    border-radius: 999px;
    transition: width .35s var(--ease);
}
.multistep__indicator {
    position: absolute;
    top: 1.6rem;
    right: 2rem;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(0,0,0,.55);
    letter-spacing: .04em;
}
.multistep__indicator em { font-style: normal; opacity: .4; margin: 0 .15rem; }
.multistep__step { border: none; padding: 0; }
.multistep__step[hidden] { display: none; }
.multistep__legend {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .25rem;
}
.multistep__step-num {
    font-size: .85rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: .04em;
}
.multistep__hint {
    color: rgba(0,0,0,.6);
    margin-bottom: 1.5rem;
    font-size: .95rem;
    line-height: 1.55;
}
.multistep__label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}
.multistep__label > span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.65);
}
.multistep__label input,
.multistep__label textarea,
.multistep__label select {
    padding: .85rem 1rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    background: var(--white);
    color: var(--black);
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.multistep__label input:focus,
.multistep__label textarea:focus,
.multistep__label select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(206,11,105,.15);
}
.multistep__label textarea { resize: vertical; min-height: 120px; font-family: var(--font); }
.multistep__label select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.multistep__label > span em {
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: .75;
    margin-left: .3rem;
}
.multistep__hint em {
    font-style: italic;
    font-weight: 400;
    color: rgba(0,0,0,.55);
}

/* Phone input with fixed +90 prefix */
.phone-input {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.phone-input:focus-within {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(206,11,105,.15);
}
.phone-input__prefix {
    padding: .85rem 1rem;
    background: rgba(0,0,0,.04);
    border-right: 1px solid rgba(0,0,0,.1);
    font-weight: 700;
    color: rgba(0,0,0,.65);
    display: flex;
    align-items: center;
    font-size: 1rem;
    user-select: none;
}
.phone-input input {
    flex: 1;
    border: none !important;
    padding: .85rem 1rem;
    font-size: 1rem;
    background: transparent;
    font-family: var(--font);
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 100%;
}
.phone-input input:focus { outline: none; }

/* Single-select radio list (vertical) */
.radio-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.radio-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.radio-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-row__mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.25);
    flex-shrink: 0;
    position: relative;
    transition: border-color .2s, background .2s;
}
.radio-row__mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--white);
    transform: scale(0);
    transition: transform .15s var(--ease);
}
.radio-row__label {
    font-size: .98rem;
    font-weight: 600;
    color: var(--black);
}
.radio-row:hover { border-color: rgba(206,11,105,.4); }
.radio-row:has(input:checked) {
    border-color: var(--pink);
    background: rgba(206,11,105,.04);
    box-shadow: 0 0 0 1px var(--pink) inset;
}
.radio-row:has(input:checked) .radio-row__mark {
    border-color: var(--pink);
    background: var(--pink);
}
.radio-row:has(input:checked) .radio-row__mark::after {
    transform: scale(1);
}

/* Disabled button (for franchise submit gate) */
.btn:disabled,
.btn[disabled] {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.multistep__group {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.5rem;
}
.multistep__group-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0,0,0,.65);
}

.choice-grid {
    display: grid;
    gap: .8rem;
}
.choice-card {
    cursor: pointer;
    position: relative;
}
.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choice-card__inner {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: var(--radius);
    background: var(--white);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.choice-card__inner strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.choice-card__inner span {
    font-size: .85rem;
    color: rgba(0,0,0,.65);
    line-height: 1.45;
}
.choice-card:hover .choice-card__inner {
    border-color: rgba(206,11,105,.4);
}
.choice-card input:checked + .choice-card__inner {
    border-color: var(--pink);
    background: rgba(206,11,105,.04);
    box-shadow: 0 0 0 1px var(--pink) inset;
}
.choice-card input:focus-visible + .choice-card__inner {
    box-shadow: 0 0 0 3px rgba(206,11,105,.15);
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.choice-pill {
    cursor: pointer;
    position: relative;
}
.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choice-pill > span {
    display: inline-block;
    padding: .55rem 1.1rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 999px;
    background: var(--white);
    font-size: .85rem;
    font-weight: 600;
    transition: border-color .2s, background .2s, color .2s;
}
.choice-pill:hover > span { border-color: rgba(206,11,105,.4); }
.choice-pill input:checked + span {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--white);
}

.multistep__check {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    line-height: 1.45;
    color: rgba(0,0,0,.7);
    margin-top: 1rem;
}
.multistep__check input {
    margin-top: .2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--pink);
    flex-shrink: 0;
}
.multistep__check a { color: var(--pink); text-decoration: underline; }

.multistep__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,.08);
}
.multistep__actions [data-step-prev] { margin-right: auto; }
.multistep__actions [data-step-next],
.multistep__submit { margin-left: auto; }

.multistep--success {
    text-align: center;
    padding: 3rem 2.5rem 2.5rem;
}
.multistep--success h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 1rem 0 .8rem;
    letter-spacing: -.02em;
}
.multistep__success-lead {
    color: rgba(0,0,0,.7);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-inline: auto;
}
.multistep__success-quote {
    background: var(--peach);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 520px;
    text-align: left;
    border-left: 3px solid var(--pink);
}
.multistep__success-quote cite {
    display: block;
    margin-top: .75rem;
    font-style: normal;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   BUTİK PAGE
═══════════════════════════════════════════════════ */
.delivery-bar {
    background: var(--black);
    color: var(--peach);
    padding: .65rem 0;
    margin-top: var(--nav-h);
    position: sticky;
    top: var(--nav-h);
    z-index: 90;
}
.delivery-bar--past { background: var(--pink); color: var(--white); }
.delivery-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.delivery-bar__icon { display: flex; align-items: center; }
.delivery-bar__icon svg { width: 18px; height: 18px; }
.delivery-bar__text {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.delivery-bar__text strong {
    font-weight: 800;
    color: var(--white);
    margin: 0 .15rem;
    font-feature-settings: "tnum";
}

.butik-hero {
    background: var(--cream);
    padding-block: 3rem 2rem;
}
.butik-hero__title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.02;
    margin: 1rem 0 1rem;
}
.butik-hero__lead {
    font-size: clamp(.95rem, 1.3vw, 1.1rem);
    line-height: 1.65;
    color: rgba(0,0,0,.75);
    max-width: 640px;
}

.butik-filters {
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 1rem 0 1.25rem;
}
.filter-pills {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 999px;
    background: var(--white);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: border-color .2s, background .2s, color .2s;
}
.filter-pill:hover { border-color: var(--pink); color: var(--pink); }
.filter-pill__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.filter-pill__dot--peach { background: var(--peach); }
.filter-pill__dot--gold { background: #c9a76a; }
.filter-pill__dot--cocoa { background: #6b4422; }
.filter-rules {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.filter-rule {
    font-size: .72rem;
    color: rgba(0,0,0,.55);
    letter-spacing: .03em;
}

.butik-section {
    background: var(--cream);
    padding-block: 2.5rem 4rem;
}
.butik-section--tin { background: var(--peach); }
.butik-section__head {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.butik-section__head > div {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
.butik-section__num {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: .02em;
    font-feature-settings: "tnum";
}
.butik-section__title {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1;
}
.butik-section__sub {
    font-size: .88rem;
    color: rgba(0,0,0,.65);
    letter-spacing: .02em;
}

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

/* Override product-add to be button on butik page (keeps underline + hover color) */
.product-card .product-add {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font);
}

/* Taste cube */
.taste-cube {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--tc, #ccc);
    border: 1.5px solid var(--white);
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
    z-index: 2;
}
.taste-cube--lg {
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 8px;
}

.product-card__desc {
    font-size: .82rem;
    line-height: 1.5;
    color: rgba(0,0,0,.65);
    margin-top: .25rem;
}

.min-rule-note {
    margin-top: 1.5rem;
    padding: .9rem 1.2rem;
    background: var(--white);
    border: 1px dashed rgba(0,0,0,.15);
    border-radius: var(--radius);
    font-size: .82rem;
    color: rgba(0,0,0,.7);
    text-align: center;
}

/* Tin Box hero card */
.tin-box-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 32px -16px rgba(0,0,0,.12);
}
.tin-box-card__visual {
    position: relative;
    background: #f3e6d4;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.tin-box-card__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.tin-box-card__body {
    padding: 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.tin-box-card__body h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin-top: .25rem;
}
.tin-box-card__desc {
    font-size: .95rem;
    line-height: 1.65;
    color: rgba(0,0,0,.75);
    margin-bottom: .25rem;
}
.tin-box-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 .5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.tin-box-card__features li {
    font-size: .85rem;
    line-height: 1.45;
    color: rgba(0,0,0,.7);
    padding-left: 1.1rem;
    position: relative;
}
.tin-box-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}
.tin-box-card__form {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tin-box-card__select {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.tin-box-card__select > span {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
}
.tin-box-card__select select {
    padding: .8rem 1rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .95rem;
    background: var(--white);
    color: var(--black);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.tin-box-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.tin-box-card__cta .product-price { font-size: 1.5rem; }

.butik-trust {
    background: var(--cream);
    padding-block: 2rem 5rem;
}
.butik-trust .info-bar { margin: 0; }

/* Toast (cart feedback) */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--black);
    color: var(--white);
    padding: .85rem 1.4rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 9000;
    opacity: 0;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    max-width: calc(100vw - 2rem);
    text-align: center;
}
.toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast--warn { background: var(--pink); }

/* nav active state */
.nav__links a.active { color: var(--pink); }
.nav__links a.active::after { width: 100%; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__item { border-right: 1px solid var(--black); border-bottom: 1px solid var(--black); }
    .trust-bar__item:nth-child(2) { border-right: none; }
    .trust-bar__item:nth-child(3) { border-bottom: none; }
    .trust-bar__item:nth-child(4) { border-right: none; border-bottom: none; }

    .info-bar { grid-template-columns: repeat(2, 1fr); }
    .info-bar__item { border-bottom: 1px solid rgba(0,0,0,.08); }
    .info-bar__item:nth-child(2) { border-right: none; }
    .info-bar__item:nth-child(3),
    .info-bar__item:nth-child(4) { border-bottom: none; }

    /* 3-col variant keeps 3 columns on tablet */
    .info-bar--3 { grid-template-columns: repeat(3, 1fr); }
    .info-bar--3 .info-bar__item { border-bottom: none; }
    .info-bar--3 .info-bar__item:nth-child(2) { border-right: 1px solid rgba(0,0,0,.08); }
    .info-bar--3.info-bar--transparent .info-bar__item:nth-child(2) { border-right-color: rgba(0,0,0,.14); }

    .formats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .models-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .compare-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }

    .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .tin-box-card { grid-template-columns: 1fr; }
    .tin-box-card__visual { aspect-ratio: 16 / 9; }

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

    .philosophy__layout,
    .franchise__layout,
    .atelier__layout { gap: 3rem; }

    .wedding__text { padding: 3rem 1.5rem 3rem 2.5rem; }
    .b2b__text { padding: 3rem 2.5rem 3rem 1.5rem; }

    .footer__top { gap: 2.5rem; }

    /* Production grid — stack on tablet, side cards become row */
    .production__grid { grid-template-columns: 1fr; }
    .production__side { flex-direction: row; }
    .production__main { min-height: 460px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 96px; --nav-announcement-h: 32px; --nav-main-h: 64px; }

    .nav__links { display: none; }
    .nav__icons .nav__icon:not(.nav__cart) { display: none; }
    .nav__burger { display: flex; }
    .nav__mobile-menu { display: flex; }
    .nav__announcement p { font-size: .65rem; letter-spacing: .08em; }
    .nav__logo { height: 44px; }

    .hero__title { font-size: clamp(52px, 14vw, 88px); }
    .hero__sub br { display: none; }

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

    .info-bar { grid-template-columns: 1fr; }
    .info-bar__item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
    .info-bar__item:last-child { border-bottom: none; }

    .s-boutique .info-bar { display: none; }

    .trust-pills { flex-wrap: wrap; }

    .formats-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .partner-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 3rem; }
    .partner-hero__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .partner-cta__actions { flex-direction: column; }
    .partner-cta__actions .btn { width: 100%; justify-content: center; }

    /* Format blocks stack vertically; image always above text */
    .format-blocks { gap: 4rem; }
    .format-block,
    .format-block--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .format-block .format-block__visual,
    .format-block--reverse .format-block__visual {
        grid-column: 1; grid-row: 1;
        max-width: 360px;
        margin-inline: auto;
    }
    .format-block .format-block__text,
    .format-block--reverse .format-block__text {
        grid-column: 1; grid-row: 2;
        max-width: 100%;
    }
    /* Production — stack everything vertically on mobile */
    .production__side { flex-direction: column; }
    .production__main { min-height: 380px; }
    .production__main-text { top: 1.25rem; left: 1.25rem; right: 1.25rem; max-width: calc(100% - 2.5rem); padding: 1.1rem 1.25rem; }
    .production__main-text h3 { font-size: 1.15rem; }
    .production__main-text p { font-size: .85rem; }
    .production__card-img { min-height: 160px; }

    /* Flavor strip — fewer tiles visible on mobile, more scroll */
    .flavor-tile { flex: 0 0 calc((100% - 2 * .85rem) / 3); }
    .flavor-tile__name { font-size: .68rem; }
    .flavor-tile__tip { width: 200px; }
    .flavor-scroll__btn { width: 32px; height: 32px; font-size: 1.2rem; }
    .flavor-scroll__btn--prev { left: -8px; }
    .flavor-scroll__btn--next { right: -8px; }
    .flavor-shared__pointer { gap: .5rem; font-size: .68rem; letter-spacing: .08em; }
    .flavor-shared__arrow { width: 18px; height: 22px; }

    .models-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .compare-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .founders-circle__stats { gap: 1.5rem; }
    .multistep { padding: 2rem 1.5rem 1.75rem; }
    .multistep__indicator { position: static; margin-top: -.5rem; margin-bottom: .75rem; text-align: right; }
    .multistep__legend { font-size: 1.25rem; }
    .multistep__actions { flex-direction: column-reverse; align-items: stretch; }
    .multistep__actions [data-step-prev],
    .multistep__actions [data-step-next],
    .multistep__submit { margin: 0; width: 100%; justify-content: center; text-align: center; }

    .delivery-bar__text { font-size: .7rem; }
    .delivery-bar__icon svg { width: 16px; height: 16px; }
    .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .butik-section__head > div { flex-direction: column; gap: .25rem; align-items: flex-start; }
    .filter-pills { gap: .4rem; }
    .filter-pill { font-size: .78rem; padding: .45rem .9rem; }


    .philosophy__layout,
    .atelier__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wedding__layout { grid-template-columns: 1fr; min-height: auto; }
    .wedding__visual { min-height: 320px; max-height: 420px; }
    .wedding__text { padding: 2.5rem 1.5rem; }
    .wedding__text-inner { max-width: 100%; }

    .b2b__layout { grid-template-columns: 1fr; min-height: auto; }
    .b2b__visual { min-height: 280px; max-height: 360px; order: -1; }
    .b2b__text { padding: 2.5rem 1.5rem; }
    .b2b__text-inner { max-width: 100%; }

    .franchise__layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .franchise__big-title { position: static; font-size: clamp(44px, 11vw, 66px); }

    .footer__top {
        flex-direction: column;
        gap: 2rem;
    }
    .footer__logo { height: 48px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
    .trust-bar { grid-template-columns: 1fr; }
    .trust-bar__item { border-right: none; border-bottom: 2px solid var(--black); }
    .trust-bar__item:last-child { border-bottom: none; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; }

    .atelier__actions { flex-direction: column; }

    .section-num { letter-spacing: .16em; }
}

/* ═══════════════════════════════════════════════════
   SHARED ICON CLOSE BUTTON
═══════════════════════════════════════════════════ */
.icon-close {
    background: none; border: none; cursor: pointer;
    color: #999; padding: .3rem; border-radius: 4px;
    display: flex; align-items: center;
    transition: color .2s, background .2s;
    flex-shrink: 0;
}
.icon-close:hover { color: var(--black); background: #f5f5f5; }

/* ═══════════════════════════════════════════════════
   PROFILE MODAL
═══════════════════════════════════════════════════ */
.profile-modal__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5); backdrop-filter: blur(3px);
    z-index: 1000; opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
}
.profile-modal[aria-hidden="false"] .profile-modal__overlay { opacity: 1; pointer-events: all; }

.profile-modal__panel {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -46%);
    width: min(520px, 100vw - 2rem); max-height: 90vh; overflow-y: auto;
    background: var(--white); border-radius: var(--radius-lg); z-index: 1001;
    padding: 2rem; box-shadow: 0 32px 80px rgba(0,0,0,.22);
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.profile-modal[aria-hidden="false"] .profile-modal__panel {
    opacity: 1; pointer-events: all; transform: translate(-50%, -50%);
}
.profile-modal__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.profile-modal__title { font-size: 1.35rem; font-weight: 800; }
.profile-modal__head-actions { display: flex; align-items: center; gap: .75rem; }
.btn-link {
    background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: .85rem; font-weight: 600;
    color: #888; padding: 0; text-decoration: underline;
    transition: color .2s;
}
.btn-link:hover { color: var(--black); }
.btn-link--danger:hover { color: #c00; }

.profile-tabs {
    display: flex; gap: 0;
    border: 1.5px solid #e8e8e8; border-radius: var(--radius); overflow: hidden;
    margin-bottom: 1.75rem;
}
.profile-tab {
    flex: 1; padding: .65rem 1rem;
    background: none; border: none;
    font-family: var(--font); font-size: .9rem; font-weight: 600;
    cursor: pointer; color: #888;
    transition: background .2s, color .2s;
}
.profile-tab--active { background: var(--pink); color: var(--white); }
.profile-tab:not(.profile-tab--active):hover { background: #f9f9f9; color: var(--black); }

.profile-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.auth-select {
    font-family: var(--font); font-size: 1rem;
    border: 1.5px solid #e0e0e0; border-radius: var(--radius);
    padding: .7rem .9rem; outline: none;
    transition: border-color .2s; background: var(--white); width: 100%;
}
.auth-select:focus { border-color: var(--pink); }

.addr-card {
    border: 1.5px solid #e8e8e8; border-radius: var(--radius);
    padding: 1rem; margin-bottom: .75rem;
    transition: border-color .2s;
}
.addr-card:hover { border-color: #ccc; }
.addr-card__label { font-size: .75rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.addr-card__name { font-weight: 600; font-size: .95rem; }
.addr-card__detail, .addr-card__phone { font-size: .82rem; color: #666; }
.addr-card__actions { display: flex; gap: 1rem; margin-top: .5rem; }
.addr-form-title { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 .75rem; }
.addr-form-actions { display: flex; gap: .75rem; }

/* ═══════════════════════════════════════════════════
   CHECKOUT — back button + address selector
═══════════════════════════════════════════════════ */
.checkout-overlay__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
}
.checkout-back {
    display: flex; align-items: center; gap: .4rem;
    background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: .9rem; font-weight: 600;
    color: #555; padding: .3rem 0;
    transition: color .2s;
}
.checkout-back:hover { color: var(--black); }

.addr-radio {
    display: flex; align-items: flex-start; gap: .75rem;
    border: 1.5px solid #e8e8e8; border-radius: var(--radius);
    padding: .85rem 1rem; margin-bottom: .6rem; cursor: pointer;
    transition: border-color .2s, background .2s;
}
.addr-radio:hover { border-color: #ccc; }
.addr-radio:has(input:checked) { border-color: var(--pink); background: #fff7fb; }
.addr-radio input { margin-top: .2rem; accent-color: var(--pink); flex-shrink: 0; }
.addr-radio__body { font-size: .88rem; line-height: 1.5; }
.addr-radio__body strong { font-size: .92rem; }

/* ═══════════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════════ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: var(--nav-h);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.search-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}
.search-overlay__inner {
    width: min(680px, 100% - 2rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
    transform: translateY(-16px);
    transition: transform .35s var(--ease);
}
.search-overlay[aria-hidden="false"] .search-overlay__inner { transform: translateY(0); }
.search-overlay__bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1.5px solid #f0f0f0;
}
.search-overlay__bar svg { flex-shrink: 0; color: #999; }
#searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 1.1rem;
    background: transparent;
    color: var(--black);
}
#searchInput::placeholder { color: #bbb; }
.search-overlay__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: .25rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: color .2s, background .2s;
}
.search-overlay__close:hover { color: var(--black); background: #f5f5f5; }
.search-overlay__results {
    list-style: none;
    max-height: 420px;
    overflow-y: auto;
    padding: .5rem 0;
}
.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.25rem;
    cursor: pointer;
    transition: background .15s;
}
.search-result-item:hover { background: var(--cream); }
.search-result-name { font-weight: 600; }
.search-result-price { color: var(--pink); font-weight: 700; font-size: .95rem; }
.search-no-result { padding: 1.25rem; color: #888; font-size: .95rem; }

/* ═══════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════ */
.cart-drawer__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__overlay {
    opacity: 1;
    pointer-events: all;
}
.cart-drawer__panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 100vw);
    background: var(--white);
    z-index: 901;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1.5px solid #f0f0f0;
}
.cart-drawer__title { font-size: 1.2rem; font-weight: 700; }
.cart-drawer__close {
    background: none; border: none; cursor: pointer;
    color: #666; padding: .3rem; border-radius: 4px;
    display: flex; align-items: center;
    transition: color .2s, background .2s;
}
.cart-drawer__close:hover { color: var(--black); background: #f5f5f5; }
.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.cart-empty { color: #888; text-align: center; padding: 3rem 0; }
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid #f3f3f3;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__info { flex: 1; }
.cart-item__name { display: block; font-weight: 600; font-size: .95rem; }
.cart-item__price { font-size: .85rem; color: #888; }
.cart-item__controls { display: flex; align-items: center; gap: .5rem; }
.cart-qty-btn {
    width: 28px; height: 28px;
    border: 1.5px solid #e0e0e0;
    background: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s;
}
.cart-qty-btn:hover { border-color: var(--pink); background: #fff0f7; }
.cart-qty { font-weight: 700; min-width: 20px; text-align: center; }
.cart-remove {
    background: none; border: none; cursor: pointer;
    color: #ccc; padding: .2rem;
    display: flex; align-items: center;
    transition: color .2s;
}
.cart-remove:hover { color: #e00; }
.cart-drawer__foot {
    padding: 1.25rem 1.5rem;
    border-top: 1.5px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.cart-drawer__totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.cart-drawer__totals strong { font-size: 1.15rem; color: var(--pink); }
.cart-drawer__note {
    font-size: .8rem;
    color: #b05000;
    background: #fff8f0;
    border: 1px solid #ffd0a0;
    border-radius: var(--radius);
    padding: .5rem .75rem;
}
.btn--pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--pink:hover { background: #a80055; border-color: #a80055; }
.btn--full { width: 100%; justify-content: center; }

body.drawer-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════
   AUTH MODAL
═══════════════════════════════════════════════════ */
.auth-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.auth-modal[aria-hidden="false"] .auth-modal__overlay {
    opacity: 1;
    pointer-events: all;
}
.auth-modal__panel {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -46%);
    width: min(480px, 100vw - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    z-index: 1001;
    padding: 2rem;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.auth-modal[aria-hidden="false"] .auth-modal__panel {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}
.auth-modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    color: #999; padding: .3rem; border-radius: 4px;
    display: flex; align-items: center;
    transition: color .2s, background .2s;
}
.auth-modal__close:hover { color: var(--black); background: #f5f5f5; }
.auth-tabs {
    display: flex;
    gap: 0;
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.75rem;
}
.auth-tab {
    flex: 1;
    padding: .65rem 1rem;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    color: #888;
    transition: background .2s, color .2s;
}
.auth-tab--active { background: var(--pink); color: var(--white); }
.auth-tab:not(.auth-tab--active):hover { background: #f9f9f9; color: var(--black); }
.auth-modal__heading { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.25rem; }
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid #dadce0;
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
    color: var(--black);
}
.btn-google:hover { background: #f8f8f8; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.1rem 0;
    color: #bbb;
    font-size: .82rem;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: #e8e8e8;
}
.auth-form { display: flex; flex-direction: column; gap: .85rem; }
.auth-label {
    display: flex; flex-direction: column; gap: .35rem;
    font-size: .85rem; font-weight: 600; color: #444;
}
.auth-label input, .auth-label textarea {
    font-family: var(--font);
    font-size: 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    padding: .7rem .9rem;
    outline: none;
    transition: border-color .2s;
    color: var(--black);
    background: var(--white);
    resize: vertical;
}
.auth-label input:focus, .auth-label textarea:focus { border-color: var(--pink); }
.auth-kvkk {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-size: .82rem;
    color: #555;
    line-height: 1.5;
}
.auth-kvkk input[type="checkbox"] { margin-top: .15rem; accent-color: var(--pink); flex-shrink: 0; }
.auth-link { color: var(--pink); text-decoration: underline; }
.auth-error {
    background: #fff0f0; border: 1px solid #ffc0c0;
    color: #c00; font-size: .83rem;
    border-radius: var(--radius); padding: .5rem .75rem;
}
.auth-forgot { text-align: center; font-size: .83rem; margin-top: .25rem; }
.auth-forgot a { color: var(--pink); }
.auth-confirm { text-align: center; padding: 1rem 0; }
.auth-confirm__icon { font-size: 3rem; margin-bottom: 1rem; }
.auth-confirm p { color: #555; margin-bottom: .5rem; }
.btn--outline { background: none; border: 1.5px solid #e0e0e0; color: var(--black); }
.btn--outline:hover { border-color: var(--black); }
body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════
   CHECKOUT OVERLAY
═══════════════════════════════════════════════════ */
.checkout-overlay__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.checkout-overlay[aria-hidden="false"] .checkout-overlay__overlay {
    opacity: 1;
    pointer-events: all;
}
.checkout-overlay__panel {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -46%);
    width: min(580px, 100vw - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    z-index: 1001;
    padding: 2rem;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.checkout-overlay[aria-hidden="false"] .checkout-overlay__panel {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}
.checkout-overlay__close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    color: #999; padding: .3rem; border-radius: 4px;
    display: flex; align-items: center;
    transition: color .2s, background .2s;
}
.checkout-overlay__close:hover { color: var(--black); background: #f5f5f5; }
.checkout-overlay__title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.25rem; }
.checkout-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-bottom: 1.25rem; }
.checkout-table td { padding: .5rem .25rem; }
.checkout-table td:last-child { text-align: right; font-weight: 600; }
.checkout-table tbody tr { border-bottom: 1px solid #f3f3f3; }
.checkout-table tfoot td { padding-top: .75rem; font-size: 1rem; }
.checkout-table tfoot td:last-child { color: var(--pink); }
.checkout-user-info { font-size: .88rem; color: #555; margin-bottom: 1.25rem; }
.checkout-form { display: flex; flex-direction: column; gap: .85rem; }
.checkout-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.checkout-pay-btn { margin-top: .5rem; }
.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: .78rem;
    color: #888;
    text-align: center;
}

/* ── taste-cube disabled ── */
.taste-cube { display: none; }

/* ── Sold-out product card ── */
.product-card--sold-out {
    opacity: .55;
    pointer-events: none;
}
.product-card--sold-out .product-add {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* ── Section 02 next-day note ── */
.section-next-day-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #fff8f0;
    border: 1px solid #f0d9c0;
    border-radius: 8px;
    padding: .75rem 1.1rem;
    font-size: .85rem;
    color: #7a5230;
    margin-bottom: 2rem;
}
.section-next-day-note svg { flex-shrink: 0; opacity: .7; }

/* ═══════════════════════════════════════════════════
   ÜRÜN DETAY SAYFASI (urun.html)
═══════════════════════════════════════════════════ */
.urun-page {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    min-height: 60vh;
}

.urun-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: #888;
    margin-bottom: 2.5rem;
}
.urun-breadcrumb a { color: #888; text-decoration: none; }
.urun-breadcrumb a:hover { color: var(--pink); }

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

.urun-detail__img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 4/3;
}
.urun-detail__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.urun-detail__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.urun-detail__info-col {
    padding-top: .5rem;
}
.urun-detail__cat {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .6rem;
}
.urun-detail__name {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 .6rem;
}
.urun-detail__subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    display: block;
}
.urun-detail__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
    margin: 0 0 1.8rem;
}

.urun-detail__meta {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 2rem;
}
.urun-detail__meta-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    color: #555;
}
.urun-detail__meta-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.urun-detail__meta-item--sold-out { color: #b00; }

.urun-detail__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.urun-detail__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}
.urun-detail__add {
    flex: none;
    padding: .85rem 2rem;
    font-size: 1rem;
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    border-radius: var(--radius);
}
.urun-detail__add:hover:not(:disabled) {
    background: #a80055;
    border-color: #a80055;
    color: var(--white);
    gap: initial;
}
.urun-detail__add:disabled,
.urun-detail__add.product-add--disabled {
    background: #ccc;
    border-color: #ccc;
    color: #fff;
    cursor: not-allowed;
    opacity: .7;
}

.urun-detail__note {
    font-size: .78rem;
    color: #999;
    margin: 0;
}

/* ── Birlikte Alınabilecekler ── */
.urun-related {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1.5px solid #eee;
}
.urun-related__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}
.urun-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
/* Smaller overrides for related cards */
.urun-rel-card .product-card__body { padding: .75rem; }
.urun-rel-card .product-card__body h3 { font-size: .88rem; margin-bottom: .2rem; }
.urun-rel-card .product-card__subtitle { display: none; }
.urun-rel-card .product-card__desc { display: none; }
.urun-rel-card .product-card__footer { margin-top: .6rem; }
.urun-rel-card .product-price { font-size: .88rem; }
.urun-rel-card .product-add {
    font-size: .75rem;
    padding: .3rem .65rem;
    white-space: nowrap;
}

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

/* ── Product info tabs / mobile accordion ── */
.urun-tabs {
    margin-top: 3rem;
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
}

/* Desktop: grid so both buttons sit in row 1, both panels share row 2 */
@media (min-width: 769px) {
    .urun-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .urun-tab { display: contents; }

    .urun-tab:nth-child(1) .urun-tab__btn { grid-column: 1; grid-row: 1; border-right: 1.5px solid #e8e8e8; }
    .urun-tab:nth-child(2) .urun-tab__btn { grid-column: 2; grid-row: 1; }
    .urun-tab:nth-child(1) .urun-tab__bd  { grid-column: 1 / 3; grid-row: 2; }
    .urun-tab:nth-child(2) .urun-tab__bd  { grid-column: 1 / 3; grid-row: 2; }
}

.urun-tab__btn {
    display: block;
    width: 100%;
    text-align: left;
    background: #fafafa;
    border: none;
    border-bottom: 1.5px solid #e8e8e8;
    padding: 1rem 1.4rem;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    color: #666;
    transition: background .15s, color .15s;
}
.urun-tab__btn:hover { background: #f4f4f4; color: var(--black); }
.urun-tab.is-active .urun-tab__btn {
    background: #fff;
    color: var(--black);
    border-bottom-color: var(--pink);
    box-shadow: inset 0 -2px 0 var(--pink);
}

.urun-tab__bd {
    display: none;
    padding: 1.4rem 1.6rem;
    font-size: .95rem;
    line-height: 1.7;
    color: #333;
    background: #fff;
    white-space: pre-wrap;
}
.urun-tab.is-active .urun-tab__bd { display: block; }

/* Mobile: accordion stacked */
@media (max-width: 768px) {
    .urun-tabs { display: block; border-radius: 10px; }
    .urun-tab { display: block; }
    .urun-tab + .urun-tab .urun-tab__btn { border-top: 1.5px solid #e8e8e8; }
    .urun-tab__btn {
        position: relative;
        padding-right: 2.5rem;
    }
    .urun-tab__btn::after {
        content: '﹢';
        position: absolute;
        right: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #aaa;
        transition: transform .2s;
    }
    .urun-tab.is-active .urun-tab__btn::after {
        content: '－';
        color: var(--pink);
    }
    .urun-tab__bd { border-top: none; }
}

.urun-not-found {
    text-align: center;
    padding: 5rem 0;
}
.urun-not-found p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #666; }

/* product card clickable image / name links */
.product-card__img-link { display: block; }
.product-card__name-link { color: inherit; text-decoration: none; }
.product-card__name-link:hover { color: var(--pink); }

/* ── Quantity selector (urun.html) ── */
.urun-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}
.urun-qty__btn {
    width: 44px;
    height: 100%;
    border: none;
    background: none;
    font-size: 1.3rem;
    font-family: inherit;
    cursor: pointer;
    color: var(--black);
    transition: background .15s;
    line-height: 1;
}
.urun-qty__btn:hover:not(:disabled) { background: #f5f5f5; }
.urun-qty__btn:disabled { color: #ccc; cursor: default; }
.urun-qty__val {
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Quality badges (urun.html) ── */
.urun-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.6rem 0 1.2rem;
}
.urun-badge-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .urun-detail { grid-template-columns: 1fr; gap: 2rem; }
    .urun-detail__name { font-size: 1.8rem; }
    .urun-detail__price { font-size: 1.6rem; }
    .urun-detail__add { flex: 1; padding: .85rem 1.2rem; }
    .urun-detail__footer { gap: .75rem; flex-wrap: nowrap; }
    .urun-badges { gap: .6rem; }
    .urun-badge-img { width: 58px; height: 58px; }
}
