/* =======================================================
   Izan's BAKERY  —  Corporate Artisan Design System
   Clean white canvas · refined neutrals · one warm accent
   Loaded after style.css, so this layer governs the look.
   ======================================================= */

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

/* ── Design Tokens ─────────────────────────────────────── */
:root {
    /* Warm artisan accent — disciplined, used sparingly */
    --bk-primary:        #BE6A36;   /* toasted terracotta */
    --bk-primary-dark:   #97511F;
    --bk-primary-light:  #D98B52;
    --bk-accent:         #E8B587;
    --bk-accent-light:   #F6EBDF;   /* faint warm tint for fills */
    --bk-brown:          #6B4A33;
    --bk-brown-light:    #9A7B63;

    /* Clean corporate canvas */
    --bk-bg:             #FFFFFF;
    --bk-surface:        #FAF8F5;   /* off-white section band */
    --bk-surface-2:      #F4F0EA;   /* slightly deeper band */
    --bk-white:          #FFFFFF;

    /* Neutral ink scale */
    --bk-text-dark:      #1C1B19;
    --bk-text:           #2E2C28;
    --bk-text-medium:    #5C574F;
    --bk-text-light:     #8A847A;
    --bk-text-muted:     #ADA69B;

    --bk-border:         #E6E1D9;
    --bk-border-light:   #F0ECE5;

    /* Deep espresso footer */
    --bk-footer-bg:      #1A1714;
    --bk-footer-text:    #ABA398;
    --bk-footer-link:    #E8E2D8;
    --bk-footer-muted:   #6E665B;

    --bk-sale:           #C0492F;
    --bk-success:        #4A7C59;

    /* Soft, neutral elevation (corporate, not heavy) */
    --bk-shadow-sm:      0 1px 2px rgba(28,27,25,0.04), 0 2px 6px rgba(28,27,25,0.04);
    --bk-shadow-md:      0 6px 24px rgba(28,27,25,0.07);
    --bk-shadow-lg:      0 18px 50px rgba(28,27,25,0.10);
    --bk-shadow-amber:   0 14px 38px rgba(190,106,54,0.16);

    --bk-radius:         14px;
    --bk-radius-sm:      8px;
    --bk-radius-lg:      22px;
    --bk-radius-xl:      32px;
    --bk-radius-full:    9999px;

    --bk-ease:           0.32s cubic-bezier(0.22, 1, 0.36, 1);
    --bk-container:      1280px;
}

/* ── Base ──────────────────────────────────────────────── */
body.gradient-bg,
body {
    background-color: var(--bk-bg) !important;
    background-image: none !important;
    color: var(--bk-text);
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .section-title { color: var(--bk-text-dark); }
a { text-decoration: none; }
::selection { background: var(--bk-accent-light); color: var(--bk-primary-dark); }

/* Slightly wider, more spacious containers for a premium feel */
.container { max-width: var(--bk-container); }
.mw-1620 { max-width: var(--bk-container) !important; }

/* ── Reusable type / layout helpers ───────────────────── */
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-allura   { font-family: 'Allura', cursive; }
.text-primary-bk { color: var(--bk-primary) !important; }
.text-right { text-align: right; }
.pt-90 { padding-top: 90px !important; }

.bk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 1rem;
}
.bk-eyebrow::before {
    content: '';
    width: 26px; height: 1px;
    background: currentColor;
    opacity: 0.55;
}
.bk-eyebrow.is-centered { justify-content: center; }

/* ── Header ────────────────────────────────────────────── */
.header-mobile,
#header.header {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--bk-border-light);
    box-shadow: none;
    position: sticky !important;
    top: 0;
    z-index: 1000 !important;
    transition: box-shadow var(--bk-ease), border-color var(--bk-ease);
}
#header.header.is-scrolled { box-shadow: 0 4px 24px rgba(28,27,25,0.07); }

.logo__image {
    max-width: 190px;
    max-height: 52px;
    width: auto;
}

.navigation__link {
    color: var(--bk-text) !important;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px !important;
    transition: color var(--bk-ease);
}
.navigation__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--bk-primary);
    transition: width var(--bk-ease);
}
.navigation__link:hover,
.navigation__link.active { color: var(--bk-primary) !important; }
.navigation__link:hover::after,
.navigation__link.active::after { width: 100%; }
.navigation__list.d-flex { gap: 6px; }
.navigation__item { padding: 0 18px; }

.header-tools__item,
.header-tools__item svg { color: var(--bk-text-dark); transition: color var(--bk-ease); }
.header-tools__item:hover,
.header-tools__item:hover svg { color: var(--bk-primary); }
.header-tools__item span.pr-6px { font-size: 0.82rem; font-weight: 500; }

.cart-amount {
    background: var(--bk-primary) !important;
    color: #fff !important;
    font-size: 0.62rem !important;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    border-radius: var(--bk-radius-full) !important;
}

/* Search popup fix (theme leaves an invisible click-blocking overlay) */
.js-hidden-content { pointer-events: none !important; visibility: hidden; }
.hover-container:hover .hover__content,
.hover-container.js-content_visible .js-hidden-content {
    pointer-events: auto !important;
    visibility: visible;
}
.search-popup { background: var(--bk-white) !important; border-bottom: 1px solid var(--bk-border-light); }
.search-field__input { border-color: var(--bk-border) !important; color: var(--bk-text-dark) !important; }
.search-field__input:focus {
    border-color: var(--bk-primary) !important;
    box-shadow: 0 0 0 3px rgba(190,106,54,0.12) !important;
    outline: none;
}

/* ════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */
.bk-btn,
.bakery-btn-primary,
.bakery-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--bk-radius-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--bk-ease);
    text-decoration: none !important;
}
.bakery-btn-primary {
    background: var(--bk-primary);
    color: #fff !important;
    border-color: var(--bk-primary);
    box-shadow: 0 8px 22px rgba(190,106,54,0.22);
}
.bakery-btn-primary:hover {
    background: var(--bk-primary-dark);
    border-color: var(--bk-primary-dark);
    box-shadow: 0 12px 30px rgba(190,106,54,0.30);
    transform: translateY(-2px);
    color: #fff !important;
}
.bakery-btn-outline {
    background: transparent;
    color: var(--bk-text-dark) !important;
    border-color: var(--bk-border);
}
.bakery-btn-outline:hover {
    border-color: var(--bk-text-dark);
    color: var(--bk-text-dark) !important;
    transform: translateY(-2px);
}
.bakery-btn-outline.on-dark { color: #fff !important; border-color: rgba(255,255,255,0.4); }
.bakery-btn-outline.on-dark:hover { background: #fff; color: var(--bk-text-dark) !important; border-color:#fff; }

/* Order-now / add-to-cart pills used across cards */
.order-now-btn {
    background: var(--bk-text-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--bk-radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 18px !important;
    transition: all var(--bk-ease) !important;
}
.order-now-btn:hover {
    background: var(--bk-primary) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Bootstrap button normalisation */
.btn-primary, .btn-info {
    background: var(--bk-primary) !important;
    border-color: var(--bk-primary) !important;
    border-radius: var(--bk-radius-full) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    color: #fff !important;
    transition: all var(--bk-ease) !important;
}
.btn-primary:hover, .btn-info:hover {
    background: var(--bk-primary-dark) !important;
    border-color: var(--bk-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(190,106,54,0.26);
}
.btn-link { color: var(--bk-primary) !important; }
.btn-link:hover { color: var(--bk-primary-dark) !important; }
.btn-warning {
    background: var(--bk-success) !important;
    border-color: var(--bk-success) !important;
    color: #fff !important;
    border-radius: var(--bk-radius-full) !important;
}
.btn-outline-secondary {
    border-color: var(--bk-border) !important;
    color: var(--bk-text-medium) !important;
    border-radius: var(--bk-radius-full) !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--bk-ease);
}
.btn-outline-secondary:hover {
    border-color: var(--bk-text-dark) !important;
    color: var(--bk-text-dark) !important;
    background: transparent !important;
}

/* ════════════════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════════════════ */
.bakery-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 2.5rem;
}
.bakery-section-title,
.section-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--bk-text-dark);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.bakery-section-title em { font-style: italic; color: var(--bk-primary); }
.bakery-section-subtitle {
    color: var(--bk-text-light);
    font-size: 1rem;
    margin: 0.6rem 0 0;
    max-width: 540px;
}
.bk-section-head-center { text-align: center; margin: 0 auto 3rem; max-width: 640px; }
.bk-section-head-center .bakery-section-subtitle { margin-left: auto; margin-right: auto; }

.bakery-category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--bk-text-dark);
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════════
   HERO  (photography-forward, corporate split)
   ════════════════════════════════════════════════════════ */
.bakery-hero {
    background: var(--bk-white);
    padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}
.bakery-hero::before {
    content: '';
    position: absolute;
    top: -160px; right: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(190,106,54,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.bakery-hero__content { position: relative; z-index: 2; }
.bakery-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bk-primary);
    margin-bottom: 1.5rem;
}
.bakery-hero__eyebrow-line { display: block; width: 30px; height: 1px; background: currentColor; opacity: 0.55; }

.bakery-hero__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--bk-text-dark);
    margin-bottom: 1.4rem;
}
.bakery-hero__heading em {
    font-style: italic;
    color: var(--bk-primary);
    font-weight: 500;
    display: block;
}
.bakery-hero__tagline {
    font-size: 1.1rem;
    color: var(--bk-text-medium);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.25rem;
}
.bakery-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 2.75rem; }

.bakery-hero__trust {
    display: flex;
    gap: 14px 36px;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--bk-border-light);
}
.bakery-hero__trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--bk-text-medium);
}
.bakery-hero__trust-badge svg { color: var(--bk-primary); flex-shrink: 0; }

/* Hero photograph stack */
.bakery-hero__media { position: relative; }
.bakery-hero__media-frame {
    position: relative;
    border-radius: var(--bk-radius-lg);
    overflow: hidden;
    box-shadow: var(--bk-shadow-lg);
    aspect-ratio: 4 / 5;
}
.bakery-hero__media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bakery-hero__media::after {
    content: '';
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius-lg);
    z-index: -1;
}
.bakery-hero__badge {
    position: absolute;
    background: var(--bk-white);
    border-radius: var(--bk-radius);
    padding: 14px 18px;
    box-shadow: var(--bk-shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bk-text-dark);
    border: 1px solid var(--bk-border-light);
    white-space: nowrap;
    z-index: 3;
}
.bakery-hero__badge-1 { bottom: 28px; left: -26px; }
.bakery-hero__badge-2 { top: 30px; right: -26px; }
.bakery-hero__badge-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bk-accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--bk-primary);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   FEATURE STRIP  (trust row beneath hero)
   ════════════════════════════════════════════════════════ */
.bk-feature-strip {
    border-top: 1px solid var(--bk-border-light);
    border-bottom: 1px solid var(--bk-border-light);
    background: var(--bk-surface);
}
.bk-feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.bk-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 26px;
    border-right: 1px solid var(--bk-border-light);
}
.bk-feature:last-child { border-right: none; }
.bk-feature__icon { color: var(--bk-primary); flex-shrink: 0; }
.bk-feature__title { font-weight: 600; font-size: 0.92rem; color: var(--bk-text-dark); margin: 0; }
.bk-feature__text { font-size: 0.78rem; color: var(--bk-text-light); margin: 2px 0 0; }
@media (max-width: 991px) { .bk-feature-strip__grid { grid-template-columns: repeat(2,1fr); } .bk-feature:nth-child(2){border-right:none;} }
@media (max-width: 575px) { .bk-feature-strip__grid { grid-template-columns: 1fr; } .bk-feature{border-right:none;border-bottom:1px solid var(--bk-border-light);} }

/* ════════════════════════════════════════════════════════
   CATEGORY TILES  (homepage)
   ════════════════════════════════════════════════════════ */
.bk-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 991px){ .bk-cat-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 479px){ .bk-cat-grid{ grid-template-columns: 1fr;} }
.bk-cat-tile {
    position: relative;
    display: block;
    border-radius: var(--bk-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--bk-shadow-sm);
}
.bk-cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--bk-ease); }
.bk-cat-tile::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,15,10,0.72) 0%, rgba(20,15,10,0.15) 45%, transparent 70%);
}
.bk-cat-tile:hover img { transform: scale(1.07); }
.bk-cat-tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; }
.bk-cat-tile__name {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: 1.25rem; font-weight: 600; margin: 0;
}
.bk-cat-tile__link {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.85); font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
    transition: gap var(--bk-ease), color var(--bk-ease);
}
.bk-cat-tile:hover .bk-cat-tile__link { gap: 12px; color: #fff; }

/* ════════════════════════════════════════════════════════
   PRODUCT CARDS
   ════════════════════════════════════════════════════════ */
.product-card,
.products-carousel .product-card,
.products-by-category .product-card,
.category-product-card {
    background: var(--bk-white) !important;
    border-radius: var(--bk-radius) !important;
    overflow: hidden;
    border: 1px solid var(--bk-border-light);
    box-shadow: var(--bk-shadow-sm);
    transition: transform var(--bk-ease), box-shadow var(--bk-ease), border-color var(--bk-ease);
}
.product-card:hover,
.products-carousel .product-card:hover,
.category-product-card:hover {
    box-shadow: var(--bk-shadow-md) !important;
    transform: translateY(-6px);
    border-color: var(--bk-border);
}
.pc__img-wrapper { background: var(--bk-surface); overflow: hidden; }
.pc__img { transition: transform 0.7s var(--bk-ease) !important; }
.product-card:hover .pc__img { transform: scale(1.06) !important; }

.pc__category {
    font-size: 0.66rem !important;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bk-text-light) !important;
}
.pc__title a, .pc__title {
    color: var(--bk-text-dark) !important;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    transition: color var(--bk-ease);
}
.pc__title a:hover { color: var(--bk-primary) !important; }

.price, .money.price, .product-card__price .money {
    color: var(--bk-text-dark) !important;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
}
.product-card__price s, .product-card__price del { color: var(--bk-text-muted) !important; font-weight: 400; }
.review-star { fill: var(--bk-primary-light) !important; color: var(--bk-primary-light); }

.pc__atc.btn {
    background: var(--bk-text-dark) !important;
    color: #fff !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.06em;
    border-radius: var(--bk-radius-full) !important;
    border: none !important;
    font-weight: 600 !important;
    transition: all var(--bk-ease) !important;
}
.pc__atc.btn:hover { background: var(--bk-primary) !important; transform: translateY(-1px); }
.pc__atc.btn-warning { background: var(--bk-success) !important; color: #fff !important; }
.pc__atc.btn-warning:hover { background: #3a6348 !important; }
.pc__btn-wl svg { transition: color var(--bk-ease); }
.pc__btn-wl:hover svg { color: var(--bk-sale) !important; }

/* Sale badge */
.badge-sale, .badge[style*="e74c3c"] {
    background: var(--bk-sale) !important;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════
   STORY / SPLIT BAND  (homepage)
   ════════════════════════════════════════════════════════ */
.bk-story { background: var(--bk-surface); }
.bk-story__img {
    border-radius: var(--bk-radius-lg);
    overflow: hidden;
    box-shadow: var(--bk-shadow-md);
    aspect-ratio: 5 / 4;
}
.bk-story__img img { width: 100%; height: 100%; object-fit: cover; }
.bk-story__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}
.bk-story__text { color: var(--bk-text-medium); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.5rem; }
.bk-stats { display: flex; gap: 40px; flex-wrap: wrap; margin: 1.75rem 0 2rem; }
.bk-stat__num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: var(--bk-primary); line-height: 1; }
.bk-stat__label { font-size: 0.8rem; color: var(--bk-text-light); letter-spacing: 0.04em; margin-top: 4px; }

/* ════════════════════════════════════════════════════════
   CTA BAND  (homepage)
   ════════════════════════════════════════════════════════ */
.bk-cta {
    position: relative;
    border-radius: var(--bk-radius-lg);
    overflow: hidden;
    padding: clamp(48px, 7vw, 90px) clamp(24px, 6vw, 80px);
    color: #fff;
    isolation: isolate;
}
.bk-cta__bg { position: absolute; inset: 0; z-index: -2; }
.bk-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.bk-cta::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(110deg, rgba(20,15,10,0.86) 0%, rgba(20,15,10,0.55) 55%, rgba(20,15,10,0.25) 100%);
}
.bk-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; line-height: 1.12; letter-spacing: -0.01em;
    margin-bottom: 1rem; max-width: 16ch;
}
.bk-cta__text { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 46ch; margin-bottom: 2rem; }

/* Welcome bar for signed-in users */
.bakery-welcome-bar {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border-light);
    border-radius: var(--bk-radius);
    padding: 16px 22px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.bakery-welcome-bar .user-greeting { font-size: 0.95rem; color: var(--bk-text); }
.bakery-welcome-bar .user-name { color: var(--bk-primary); font-weight: 700; }

/* ════════════════════════════════════════════════════════
   SHOP PAGE
   ════════════════════════════════════════════════════════ */
.bakery-shop-banner {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border-light);
    border-radius: var(--bk-radius-lg);
    padding: 40px 48px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.bakery-shop-banner::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(190,106,54,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.bakery-shop-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 600;
    color: var(--bk-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.bakery-shop-banner__desc { color: var(--bk-text-medium); font-size: 0.95rem; line-height: 1.6; max-width: 420px; margin: 0; }
.bakery-shop-banner__icon { font-size: 4rem; line-height: 1; flex-shrink: 0; opacity: 0.9; }
@media (max-width: 767px) {
    .bakery-shop-banner { padding: 26px; flex-direction: column; text-align: center; }
    .bakery-shop-banner__icon { display: none; }
}

.shop-sidebar { background: var(--bk-white); }
.shop-sidebar .accordion-button,
.shop-sidebar .aside-header {
    font-family: 'Playfair Display', serif;
    color: var(--bk-text-dark) !important;
    font-size: 1.02rem !important;
    font-weight: 600;
}
.shop-sidebar .accordion-button:not(.collapsed) { color: var(--bk-primary) !important; }
.shop-sidebar .accordion-button:focus { box-shadow: none !important; }
.shop-sidebar .menu-link { color: var(--bk-text-medium) !important; font-size: 0.9rem; transition: color var(--bk-ease); }
.shop-sidebar .menu-link:hover { color: var(--bk-primary) !important; }
.swatch-size {
    background: var(--bk-surface) !important;
    border-color: var(--bk-border) !important;
    color: var(--bk-text-medium) !important;
    border-radius: var(--bk-radius-sm) !important;
    font-size: 0.8rem; font-weight: 600;
}
.swatch-size:hover, .swatch-size.active {
    background: var(--bk-text-dark) !important;
    border-color: var(--bk-text-dark) !important;
    color: #fff !important;
}
.shop-acs__select { color: var(--bk-text-medium) !important; font-size: 0.88rem; }
.product-card-wrapper .product-card { border-radius: var(--bk-radius) !important; border: 1px solid var(--bk-border-light); }

/* ════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ════════════════════════════════════════════════════════ */
.product-single__name {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
    font-weight: 600 !important;
    color: var(--bk-text-dark) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em;
}
.product-single__price .current-price {
    color: var(--bk-text-dark) !important;
    font-size: 1.7rem !important;
    font-weight: 700 !important;
}
.product-single__price .current-price s { color: var(--bk-text-muted) !important; font-weight: 400; font-size: 0.82em; }
.btn-addtocart {
    background: var(--bk-primary) !important;
    border-color: var(--bk-primary) !important;
    border-radius: var(--bk-radius-full) !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 38px !important;
    font-size: 0.85rem !important;
    transition: all var(--bk-ease) !important;
}
.btn-addtocart:hover {
    background: var(--bk-primary-dark) !important;
    border-color: var(--bk-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(190,106,54,0.26);
}
.product-single__addtocart { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nav-tabs .nav-link { color: var(--bk-text-medium) !important; font-weight: 500; }
.nav-tabs .nav-link.active,
.nav-link_underscore.active { color: var(--bk-primary) !important; border-color: var(--bk-primary) !important; }
.meta-item label { color: var(--bk-text-medium) !important; font-weight: 600; }
.product-single__addtolinks .menu-link { color: var(--bk-text-medium) !important; }
.product-single__addtolinks .menu-link:hover { color: var(--bk-primary) !important; }

/* ════════════════════════════════════════════════════════
   CART & CHECKOUT
   ════════════════════════════════════════════════════════ */
.page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--bk-text-dark) !important;
    font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
}
.checkout-steps__item-number { transition: all var(--bk-ease); }
.checkout-steps__item.active .checkout-steps__item-number {
    background: var(--bk-primary) !important;
    color: #fff !important;
    border-color: var(--bk-primary) !important;
}
.cart-table th {
    color: var(--bk-text-medium) !important;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}
.shopping-cart__totals h3 { font-family: 'Playfair Display', serif !important; color: var(--bk-text-dark) !important; }
.btn-checkout {
    background: var(--bk-primary) !important;
    border-color: var(--bk-primary) !important;
    border-radius: var(--bk-radius-full) !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all var(--bk-ease) !important;
}
.btn-checkout:hover {
    background: var(--bk-primary-dark) !important;
    border-color: var(--bk-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(190,106,54,0.26);
}
.qty-control__reduce, .qty-control__increase { color: var(--bk-primary) !important; border-color: var(--bk-border) !important; }
.qty-control__number { border-color: var(--bk-border) !important; color: var(--bk-text-dark) !important; }

/* ════════════════════════════════════════════════════════
   BREADCRUMB / PAGINATION / FORM
   ════════════════════════════════════════════════════════ */
.breadcrumb .menu-link { color: var(--bk-text-light) !important; font-size: 0.8rem; transition: color var(--bk-ease); }
.breadcrumb .menu-link:hover { color: var(--bk-primary) !important; }
.breadcrumb-separator { color: var(--bk-text-muted) !important; }

.page-link { color: var(--bk-text-dark) !important; border-color: var(--bk-border) !important; transition: all var(--bk-ease); }
.page-link:hover { background: var(--bk-surface) !important; border-color: var(--bk-text-dark) !important; }
.page-item.active .page-link { background: var(--bk-text-dark) !important; border-color: var(--bk-text-dark) !important; color: #fff !important; }

.accordion-button:not(.collapsed) { color: var(--bk-primary) !important; background: transparent !important; box-shadow: none !important; }
.accordion-button:focus { box-shadow: none !important; }

.form-control, .form-select {
    border-color: var(--bk-border) !important;
    border-radius: var(--bk-radius-sm) !important;
    color: var(--bk-text-dark);
}
.form-control:focus, .form-select:focus {
    border-color: var(--bk-primary) !important;
    box-shadow: 0 0 0 3px rgba(190,106,54,0.12) !important;
}

/* Swiper bullets */
.products-pagination .swiper-pagination-bullet { background: var(--bk-text-medium); }
.swiper-pagination-bullet-active { background: var(--bk-primary) !important; opacity: 1 !important; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
hr.mt-5 { display: none; }
footer.footer { background: var(--bk-footer-bg) !important; color: var(--bk-footer-text); }
footer.footer .footer-middle { border-bottom: 1px solid rgba(255,255,255,0.07); padding-top: 4rem; padding-bottom: 3rem; }
footer.footer .footer-address, footer.footer p:not(.m-0) { color: var(--bk-footer-text); font-size: 0.88rem; }
footer.footer strong, footer.footer .fw-medium { color: var(--bk-footer-link) !important; }
footer.footer .logo .logo__image { opacity: 0.96; }
footer.footer .sub-menu__title {
    color: var(--bk-footer-link) !important;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 1.3rem;
}
footer.footer .menu-link { color: var(--bk-footer-text) !important; font-size: 0.88rem; transition: color var(--bk-ease); }
footer.footer .menu-link:hover { color: var(--bk-primary-light) !important; padding-left: 3px; }
footer.footer .footer__social-link { color: var(--bk-footer-muted) !important; transition: color var(--bk-ease); padding: 6px; }
footer.footer .footer__social-link:hover { color: var(--bk-primary-light) !important; }
footer.footer .footer-bottom { background: rgba(0,0,0,0.28); padding: 18px 0; }
footer.footer .footer-copyright, footer.footer .footer-settings a { color: var(--bk-footer-muted) !important; font-size: 0.82rem; }
footer.footer .footer-settings a:hover { color: var(--bk-primary-light) !important; }
footer.footer p.m-0, footer.footer p { color: var(--bk-footer-text); }

.footer-mobile {
    background: var(--bk-white) !important;
    border-top: 1px solid var(--bk-border-light) !important;
    box-shadow: 0 -2px 10px rgba(28,27,25,0.05);
}
.footer-mobile__link { color: var(--bk-text-medium) !important; font-size: 0.72rem; }
.mobile-menu-opened .footer-mobile { display: none !important; }
.footer-mobile__link:hover { color: var(--bk-primary) !important; }

.page-overlay { background: rgba(20,15,10,0.55) !important; }
#scrollTop { background: var(--bk-text-dark) !important; color: #fff !important; border-radius: var(--bk-radius-sm) !important; }

/* Auth */
.login-register .page-title { font-family: 'Playfair Display', serif !important; }
.bk-auth {
    background:
        linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.96)),
        url('../images/bakery/cta.jpg') center/cover no-repeat fixed;
    padding: clamp(48px, 8vw, 110px) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.bk-auth .login-register { display: flex; justify-content: center; }
.bk-auth__card {
    width: 100%;
    max-width: 460px;
    background: var(--bk-white);
    border: 1px solid var(--bk-border-light);
    border-radius: var(--bk-radius-lg);
    box-shadow: var(--bk-shadow-lg);
    padding: clamp(28px, 4vw, 44px);
}
.bk-auth__head { text-align: center; margin-bottom: 2rem; }
.bk-auth__head .page-title { margin: 0 0 0.5rem; }
.bk-auth__sub { color: var(--bk-text-light); font-size: 0.92rem; margin: 0; }
.bk-auth .form-control_gray { background: var(--bk-surface) !important; }
.bk-auth .btn-text { text-decoration: none; }

/* ════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS  (subtle, respects reduced-motion)
   ════════════════════════════════════════════════════════ */
@keyframes bk-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.bk-reveal { opacity: 0; }
.bk-reveal.is-visible { animation: bk-fade-up 0.8s var(--bk-ease) forwards; }
.bk-reveal[data-delay="1"].is-visible { animation-delay: 0.08s; }
.bk-reveal[data-delay="2"].is-visible { animation-delay: 0.16s; }
.bk-reveal[data-delay="3"].is-visible { animation-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
    .bk-reveal, .bk-reveal.is-visible { opacity: 1 !important; animation: none !important; }
    * { scroll-behavior: auto !important; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .bakery-hero { padding: 56px 0 40px; }
    .bakery-hero__badge { display: none; }
    .bakery-hero__media::after { display: none; }
}
@media (max-width: 767px) {
    .bakery-hero { text-align: center; }
    .bakery-hero__eyebrow, .bakery-hero__actions, .bakery-hero__trust { justify-content: center; }
    .bakery-hero__tagline { margin-left: auto; margin-right: auto; }
    .bakery-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .bk-stats { justify-content: center; }
}

.products-carousel .swiper-wrapper { align-items: stretch; }
.products-carousel .swiper-slide { height: auto; }
.products-carousel__prev:hover, .products-carousel__next:hover {
    background: var(--bk-text-dark) !important;
    color: #fff !important;
    border-color: var(--bk-text-dark) !important;
}

/* My account / feedback */
.my-account__address-list { display: flex; gap: 1.625rem; }
.form-floating>.form-control, .form-floating>.form-select { height: 48px; }
