:root {
    --bg: #fffaf8;
    --bg-soft: #fff3f1;
    --paper: #ffffff;
    --paper-2: #fff7f5;
    --text: #281514;
    --heading: #190808;
    --muted: #715956;
    --soft: #9d8580;
    --red: #ef1f2d;
    --red-dark: #b90815;
    --red-soft: #fff1f2;
    --cream: #fff7e8;
    --border: rgba(239, 31, 45, .14);
    --border-strong: rgba(239, 31, 45, .28);
    --shadow: 0 22px 70px rgba(170, 40, 50, .10);
    --shadow-strong: 0 30px 90px rgba(170, 40, 50, .16);
    --radius: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(239, 31, 45, .06), transparent 28%),
        radial-gradient(circle at 92% 6%, rgba(255, 213, 218, .42), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fff8f6 45%, #fff 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.shell {
    width: min(1160px, calc(100% - 34px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-shell {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(239, 31, 45, .14);
}

.brand strong {
    display: block;
    font-size: 19px;
    letter-spacing: -.02em;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.desktop-nav a:hover {
    color: var(--red);
}

.basket-btn,
.red-btn,
.gold-btn,
.ghost-btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
}

.red-btn,
.gold-btn {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    box-shadow: 0 16px 38px rgba(239, 31, 45, .22);
}

.ghost-btn {
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--red);
}

.basket-btn {
    background: #1f1211;
    color: #fff;
    box-shadow: 0 14px 34px rgba(36, 19, 18, .12);
}

.basket-btn span {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    margin-left: 8px;
    border-radius: 99px;
    background: var(--red);
    color: #fff;
}

.hero {
    padding: 72px 0 68px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.98), rgba(255,247,245,.88)),
        radial-gradient(circle at 82% 38%, rgba(239,31,45,.10), transparent 34%);
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 950;
    font-size: 12px;
}

.eyebrow span {
    width: 38px;
    height: 2px;
    background: var(--red);
}

h1,
h2,
h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--heading);
    margin: 0;
    letter-spacing: -.045em;
}

h1 {
    font-size: clamp(48px, 5.8vw, 78px);
    line-height: .95;
    margin-top: 20px;
    max-width: 760px;
}

h2 {
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1;
}

h3 {
    font-size: 23px;
    line-height: 1.06;
}

.hero-copy p,
.section-head p,
.custom-grid p,
.footer p,
.faq p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-copy p {
    max-width: 670px;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
    max-width: 720px;
}

.hero-trust div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 14px 40px rgba(170, 40, 50, .07);
}

.hero-trust strong {
    display: block;
    color: var(--red);
    font-weight: 950;
}

.hero-trust span {
    color: var(--muted);
    font-size: 13px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 235px;
    gap: 18px;
    align-items: stretch;
}

.showcase-main,
.mini-showcase,
.showcase-stat {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
}

.showcase-main {
    min-height: 440px;
    border-radius: 34px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.showcase-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(239, 31, 45, .12), transparent 20%),
        linear-gradient(145deg, #fff, #fff1f2);
}

.showcase-cake {
    position: absolute;
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    border-radius: 42% 58% 46% 54%;
    background:
        radial-gradient(circle at 50% 43%, #fff8dc 0 13%, transparent 14%),
        radial-gradient(circle, #fff4f0 0 30%, #ff7883 31% 52%, #ef1f2d 53% 72%, #a80c16 73%);
    box-shadow: inset 0 0 0 16px rgba(255,255,255,.26), 0 34px 75px rgba(239,31,45,.28);
    z-index: 2;
}

.showcase-cake::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -42px;
    width: 310px;
    height: 48px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(100, 20, 26, .14);
}

.showcase-content {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
}

.showcase-content span,
.showcase-content small {
    display: block;
    color: var(--muted);
}

.showcase-content span {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 950;
    font-size: 11px;
}

.showcase-content strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
    margin: 7px 0 8px;
}

.showcase-stack {
    display: grid;
    gap: 18px;
}

.mini-showcase,
.showcase-stat {
    border-radius: 26px;
    padding: 16px;
}

.mini-showcase {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 125px;
}

.mini-cake {
    width: 72px;
    height: 72px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 48%, #fff9df 0 16%, transparent 17%),
        radial-gradient(circle, #ff9099 0 42%, #ef1f2d 43% 70%, #a40b15 71%);
    flex: 0 0 auto;
}

.mini-cake-two {
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 48%, #fff9df 0 16%, transparent 17%),
        radial-gradient(circle, #fff0ef 0 34%, #ff7b86 35% 56%, #ef1f2d 57% 75%, #a40b15 76%);
}

.mini-showcase strong,
.mini-showcase span {
    display: block;
}

.mini-showcase span {
    color: var(--muted);
    margin-top: 4px;
}

.showcase-stat strong {
    display: block;
    color: var(--red);
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
}

.showcase-stat span {
    display: block;
    color: var(--text);
    font-weight: 950;
    margin-top: 8px;
}

.category-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.category-strip-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 0;
}

.category-strip span {
    white-space: nowrap;
    background: var(--red-soft);
    color: var(--red-dark);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 850;
    font-size: 13px;
}

.filter-bar-section {
    padding: 36px 0 20px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 280px auto;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,.90);
    box-shadow: var(--shadow);
}

.filter-bar label,
.quote-form label {
    display: grid;
    gap: 8px;
    color: var(--soft);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .11em;
    font-weight: 950;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 13px 16px;
    outline: none;
}

textarea {
    border-radius: 18px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(239, 31, 45, .45);
    box-shadow: 0 0 0 4px rgba(239, 31, 45, .08);
}

.section {
    padding: 58px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
}

.section-head p {
    max-width: 430px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-strong);
}

.product-image {
    position: relative;
    height: 248px;
    overflow: hidden;
    background-color: #fff1f3;
}

.product-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 42px;
    width: 176px;
    height: 176px;
    transform: translateX(-50%);
    border-radius: 48% 52% 45% 55%;
    background:
        radial-gradient(circle at 50% 48%, #fff9df 0 14%, transparent 15%),
        radial-gradient(circle, #fff4f0 0 30%, #ff7a85 31% 52%, #ef1f2d 53% 72%, #a80c16 73%);
    box-shadow:
        inset 0 0 0 13px rgba(255,255,255,.25),
        0 28px 60px rgba(239,31,45,.24);
}

.product-image::after {
    content: "";
    position: absolute;
    width: 238px;
    height: 42px;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(90, 20, 26, .12);
}

.cake-art-1 {
    background:
        radial-gradient(circle at 18% 14%, rgba(255,255,255,.78), transparent 18%),
        linear-gradient(135deg, #fff4f2, #ffd0d7);
}

.cake-art-2 {
    background:
        radial-gradient(circle at 74% 20%, rgba(255,255,255,.82), transparent 18%),
        linear-gradient(135deg, #fff7e8, #ffd8de);
}

.cake-art-3 {
    background:
        radial-gradient(circle at 24% 18%, rgba(255,255,255,.82), transparent 18%),
        linear-gradient(135deg, #f4f8ff, #ffdce1);
}

.cake-art-4 {
    background:
        radial-gradient(circle at 68% 18%, rgba(255,255,255,.82), transparent 16%),
        linear-gradient(135deg, #fff3f7, #ffe8c7);
}

.cake-art-5 {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.86), transparent 18%),
        linear-gradient(135deg, #f8f2ff, #ffe0e3);
}

.cake-art-6 {
    background:
        radial-gradient(circle at 72% 22%, rgba(255,255,255,.82), transparent 17%),
        linear-gradient(135deg, #fff8e5, #ffd6df);
}

.cake-art-2::before,
.cake-art-5::before {
    border-radius: 22px 22px 52% 52%;
    width: 168px;
    height: 190px;
}

.cake-art-4::before,
.cake-art-6::before {
    width: 150px;
    height: 150px;
    top: 58px;
}

.badge,
.price-chip,
.image-label {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
}

.badge {
    top: 16px;
    left: 16px;
    background: #fff;
    color: var(--red);
    padding: 7px 10px;
    box-shadow: 0 10px 22px rgba(36,19,18,.10);
}

.price-chip {
    right: 16px;
    bottom: 16px;
    background: var(--red);
    color: #fff;
    padding: 7px 10px;
}

.image-label {
    left: 16px;
    bottom: 16px;
    color: rgba(36,19,18,.56);
    background: rgba(255,255,255,.58);
    padding: 6px 9px;
}

.product-body {
    padding: 24px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--red);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 950;
    margin-bottom: 13px;
}

.product-body p {
    color: var(--muted);
    line-height: 1.65;
}

.product-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.product-details-row div {
    border: 1px solid var(--border);
    background: var(--paper-2);
    border-radius: 16px;
    padding: 14px;
    min-height: 70px;
}

.product-details-row small {
    display: block;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 950;
    font-size: 10px;
    margin-bottom: 6px;
}

.product-details-row strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    line-height: 1.35;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.product-actions a {
    color: var(--red);
    font-weight: 950;
}

.product-actions button {
    border: 0;
    color: #fff;
    background: var(--text);
    border-radius: 999px;
    padding: 10px 13px;
    cursor: pointer;
    font-weight: 900;
}

.product-actions button:hover {
    background: var(--red);
}

.custom-order {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 10% 20%, rgba(239, 31, 45, .06), transparent 28%),
        linear-gradient(135deg, #fff, #fff5f3);
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 34px;
    align-items: center;
}

.process-card {
    display: grid;
    gap: 14px;
}

.process-card div,
.why-grid div,
.faq details {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(239,31,45,.07);
}

.process-card div {
    display: flex;
    align-items: center;
}

.process-card strong {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    flex: 0 0 auto;
}

.why-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-grid strong,
.faq summary {
    color: var(--text);
    font-weight: 950;
}

.why-grid p {
    color: var(--muted);
    line-height: 1.7;
}

.footer {
    padding: 62px 0 20px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr 1fr;
    gap: 30px;
}

.footer h4 {
    margin: 0 0 14px;
}

.footer a {
    display: block;
    color: var(--muted);
    margin: 9px 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: var(--soft);
    font-size: 13px;
}

.basket-overlay {
    position: fixed;
    inset: 0;
    background: rgba(36,19,18,.38);
    z-index: 60;
}

.quote-drawer {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    width: min(520px, 100%);
    height: 100vh;
    overflow-y: auto;
    transform: translateX(105%);
    transition: .25s ease;
    border-left: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}

.quote-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.close-drawer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.drawer-alert {
    margin: 18px 0;
    padding: 13px 15px;
    border-radius: 16px;
    background: var(--red-soft);
    border: 1px solid var(--border);
    color: var(--red-dark);
    font-weight: 800;
}

.basket-items {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.basket-item {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    background: var(--paper-2);
}

.basket-thumb {
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd5dc, #ef1f2d);
}

.basket-item strong {
    display: block;
}

.basket-item small {
    color: var(--muted);
}

.qty {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: 8px;
}

.qty button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 950;
    cursor: pointer;
}

.remove-item {
    border: 0;
    background: transparent;
    color: var(--red);
    cursor: pointer;
    font-weight: 900;
}

.empty-basket {
    color: var(--muted);
    border: 1px dashed var(--border);
    border-radius: 18px;
    padding: 18px;
}

.quote-form {
    display: grid;
    gap: 13px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.quote-form h3 {
    font-family: Inter, Segoe UI, Arial, sans-serif;
    letter-spacing: 0;
    font-size: 18px;
}

.full-btn {
    width: 100%;
}

.no-results {
    border: 1px dashed var(--border);
    border-radius: 20px;
    padding: 20px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1000px) {
    .hero-grid,
    .custom-grid,
    .section-head,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-stack {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .desktop-nav {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand small {
        display: none;
    }

    .basket-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    h1 {
        font-size: 42px;
    }

    .hero {
        padding-top: 54px;
    }

    .hero-trust,
    .filter-bar,
    .product-grid,
    .why-grid,
    .faq-grid,
    .showcase-stack {
        grid-template-columns: 1fr;
    }

    .showcase-main {
        min-height: 360px;
    }

    .showcase-cake {
        width: 190px;
        height: 190px;
    }

    .section {
        padding: 44px 0;
    }

    .product-image {
        height: 220px;
    }

    .product-details-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   FINAL VISUAL POLISH — Flezora One Page Showroom
   ========================================================= */

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(239,31,45,.045), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(255,224,226,.52), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fffaf9 45%, #fff 100%);
}

.site-header {
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 55px rgba(83, 20, 24, .06);
}

.nav-shell {
    min-height: 82px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 18px;
}

.desktop-nav {
    background: rgba(255, 241, 242, .75);
    border: 1px solid rgba(239,31,45,.10);
    padding: 10px 16px;
    border-radius: 999px;
}

.desktop-nav a {
    padding: 6px 4px;
}

.basket-btn {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, #ef1f2d, #b90815);
    color: #fff;
    padding: 15px 22px 15px 48px;
    border: 1px solid rgba(255,255,255,.30);
    box-shadow: 0 18px 45px rgba(239,31,45,.28);
}

.basket-btn::before {
    content: "🧁";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.basket-btn span {
    background: #fff;
    color: var(--red);
    font-weight: 950;
}

.red-btn,
.gold-btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(239,31,45,.26);
}

.red-btn::after,
.gold-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.28), transparent);
    transform: translateX(-120%);
    transition: transform .45s ease;
}

.red-btn:hover::after,
.gold-btn:hover::after {
    transform: translateX(120%);
}

.ghost-btn {
    background: #fff;
    color: var(--red-dark);
    box-shadow: 0 14px 35px rgba(239,31,45,.08);
}

.hero {
    padding: 82px 0 78px;
}

.hero-copy {
    max-width: 760px;
}

.hero-copy p {
    font-size: 18px;
    max-width: 720px;
}

.hero-showcase {
    transform: translateY(4px);
}

.showcase-main {
    min-height: 420px;
    border-radius: 38px;
}

.showcase-main::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(239,31,45,.10), transparent 20%),
        radial-gradient(circle at 78% 14%, rgba(255,255,255,.85), transparent 18%),
        linear-gradient(145deg, #fff, #fff3f4);
}

.showcase-cake {
    top: 50px;
    width: 235px;
    height: 235px;
}

.showcase-content {
    backdrop-filter: blur(14px);
}

.category-strip {
    box-shadow: 0 14px 35px rgba(239,31,45,.05);
}

.category-strip span {
    background: #fff;
    box-shadow: 0 10px 25px rgba(239,31,45,.07);
}

.filter-bar {
    border-radius: 28px;
    transform: translateY(-2px);
}

.section {
    padding: 66px 0;
}

.section-head {
    margin-bottom: 34px;
}

.product-grid {
    gap: 28px;
}

.product-card {
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,1), rgba(255,248,247,1));
}

.product-card:hover {
    transform: translateY(-7px);
}

.product-image {
    height: 255px;
    border-bottom: 1px solid rgba(239,31,45,.10);
}

.product-image::before {
    top: 40px;
}

.cake-art-1::before {
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #fff9df 0 13%, transparent 14%),
        radial-gradient(circle, #fff4ef 0 28%, #ff6d7a 29% 50%, #ef1f2d 51% 70%, #9d0711 71%);
}

.cake-art-2::before {
    width: 164px;
    height: 190px;
    top: 38px;
    border-radius: 26px 26px 48% 48%;
    background:
        linear-gradient(180deg, rgba(255,255,255,.24), transparent),
        radial-gradient(circle at 50% 47%, #fff9df 0 12%, transparent 13%),
        linear-gradient(135deg, #ff8c95, #ef1f2d 58%, #9e0711);
}

.cake-art-3::before {
    width: 178px;
    height: 178px;
    border-radius: 34px;
    transform: translateX(-50%) rotate(5deg);
    background:
        radial-gradient(circle at 50% 50%, #fff9df 0 13%, transparent 14%),
        radial-gradient(circle, #ffd4d8 0 28%, #ff6f7a 29% 50%, #ef1f2d 51% 70%, #9d0711 71%);
}

.cake-art-4::before {
    width: 145px;
    height: 145px;
    top: 62px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #fff9df 0 15%, transparent 16%),
        radial-gradient(circle, #fff2ed 0 30%, #ff8a92 31% 52%, #ef1f2d 53% 72%, #9d0711 73%);
}

.cake-art-5::before {
    width: 170px;
    height: 205px;
    top: 28px;
    border-radius: 24px 24px 54% 54%;
    background:
        radial-gradient(circle at 50% 32%, #fff9df 0 9%, transparent 10%),
        radial-gradient(circle at 50% 62%, #fff9df 0 10%, transparent 11%),
        linear-gradient(180deg, #ffadb5, #ef1f2d 55%, #9d0711);
}

.cake-art-6::before {
    width: 126px;
    height: 126px;
    top: 62px;
    border-radius: 30px;
    box-shadow:
        -58px 24px 0 -18px #ff7d87,
        58px 24px 0 -18px #ef1f2d,
        inset 0 0 0 12px rgba(255,255,255,.24),
        0 28px 60px rgba(239,31,45,.24);
    background:
        radial-gradient(circle at 50% 50%, #fff9df 0 14%, transparent 15%),
        radial-gradient(circle, #ff9aa2 0 45%, #ef1f2d 46% 72%, #9d0711 73%);
}

.product-body {
    padding: 26px;
}

.product-meta {
    border-bottom: 1px solid rgba(239,31,45,.10);
    padding-bottom: 12px;
}

.product-body h3 {
    min-height: 54px;
}

.product-body p {
    min-height: 78px;
}

.product-details-row div {
    background: #fff;
}

.product-actions button {
    background: linear-gradient(135deg, #281514, #120707);
    padding: 11px 16px;
}

.product-actions button::before {
    content: "+ ";
}

.custom-order {
    background:
        radial-gradient(circle at 14% 20%, rgba(239,31,45,.055), transparent 28%),
        radial-gradient(circle at 90% 30%, rgba(255,218,222,.52), transparent 28%),
        linear-gradient(135deg, #fff, #fff7f5);
}

.process-card div {
    min-height: 72px;
}

.why-grid div,
.faq details {
    min-height: 142px;
}

.footer {
    background:
        linear-gradient(180deg, #fff, #fff8f7);
}

.quote-drawer {
    border-radius: 28px 0 0 28px;
}

.quote-drawer .red-btn.full-btn {
    min-height: 50px;
    font-size: 15px;
}

@media (max-width: 720px) {
    .site-header {
        position: sticky;
    }

    .nav-shell {
        gap: 12px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .basket-btn {
        padding: 11px 13px 11px 37px;
        font-size: 12px;
    }

    .basket-btn::before {
        left: 13px;
        font-size: 15px;
    }

    .hero {
        padding: 48px 0 56px;
    }

    h1 {
        font-size: 40px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-trust {
        margin-top: 22px;
    }

    .product-body h3,
    .product-body p {
        min-height: auto;
    }

    .quote-drawer {
        border-radius: 0;
    }
}

.quote-status {
    border-radius: 16px;
    padding: 13px 15px;
    font-weight: 850;
    line-height: 1.5;
}

.quote-status.success {
    color: #0d6b36;
    background: #ecfff3;
    border: 1px solid rgba(13, 107, 54, .18);
}

.quote-status.error {
    color: #b90815;
    background: #fff1f2;
    border: 1px solid rgba(239, 31, 45, .18);
}

.quote-form button:disabled {
    opacity: .65;
    cursor: wait;
}

/* =========================================================
   TYPOGRAPHY POLISH — readable, premium, less over-bold
   ========================================================= */

body {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(46px, 5.3vw, 72px);
    line-height: 1.02;
}

h2 {
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
}

h3 {
    font-size: 22px;
    line-height: 1.15;
}

.hero-copy p,
.section-head p,
.product-body p,
.custom-grid p,
.footer p,
.faq p,
.why-grid p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-copy p {
    font-size: 17px;
}

.desktop-nav {
    font-weight: 650;
    font-size: 14px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.brand strong {
    font-weight: 750;
}

.brand small {
    font-weight: 400;
}

.basket-btn,
.red-btn,
.gold-btn,
.ghost-btn {
    font-weight: 750;
    letter-spacing: -.01em;
}

.product-meta {
    font-size: 10.5px;
    font-weight: 750;
    letter-spacing: .10em;
}

.product-body h3 {
    min-height: 50px;
}

.product-body p {
    min-height: 84px;
}

.product-details-row small {
    font-size: 10.5px;
    font-weight: 750;
    letter-spacing: .08em;
}

.product-details-row strong {
    font-size: 13px;
    font-weight: 600;
}

.product-actions a {
    font-size: 14px;
    font-weight: 750;
}

.product-actions button {
    font-size: 14px;
    font-weight: 750;
}

.badge,
.price-chip,
.image-label {
    font-weight: 750;
}

.hero-trust strong,
.showcase-stat span,
.mini-showcase strong,
.process-card span,
.why-grid strong,
.faq summary {
    font-weight: 650;
}

.quote-drawer h2 {
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1;
    font-weight: 600;
}

.quote-form h3 {
    font-size: 20px;
    font-weight: 650;
}

.quote-form label,
.filter-bar label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

input,
select,
textarea {
    font-size: 15px;
    font-weight: 500;
}

.quote-status {
    font-size: 15px;
    font-weight: 650;
}

.footer h4 {
    font-size: 16px;
    font-weight: 650;
}

.footer a,
.footer p {
    font-size: 14.5px;
}

@media (max-width: 720px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 21px;
    }

    .hero-copy p,
    .product-body p,
    .custom-grid p,
    .footer p,
    .faq p,
    .why-grid p {
        font-size: 15px;
    }

    .quote-drawer h2 {
        font-size: 36px;
    }
}

.uploaded-product-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.uploaded-product-image::before,
.uploaded-product-image::after {
    display: none;
}

.uploaded-product-image .image-label {
    background: rgba(255,255,255,.82);
    color: #241211;
}

.uploaded-product-image::after {
    content: "";
}

.cake-detail-hero {
    padding: 74px 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(239,31,45,.10), transparent 30%),
        linear-gradient(135deg, #fff, #fff7f5);
    border-bottom: 1px solid var(--border);
}

.cake-detail-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 48px;
    align-items: center;
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--red);
    font-weight: 750;
}

.cake-detail-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 680px;
}

.detail-image {
    position: relative;
    min-height: 520px;
    border-radius: 38px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    background-color: #fff1f3;
}

.detail-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 95px;
    width: 270px;
    height: 270px;
    transform: translateX(-50%);
    border-radius: 48% 52% 45% 55%;
    background:
        radial-gradient(circle at 50% 48%, #fff9df 0 14%, transparent 15%),
        radial-gradient(circle, #fff4f0 0 30%, #ff7a85 31% 52%, #ef1f2d 53% 72%, #a80c16 73%);
    box-shadow:
        inset 0 0 0 18px rgba(255,255,255,.25),
        0 34px 80px rgba(239,31,45,.24);
}

.detail-image::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 54px;
    left: 50%;
    bottom: 110px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(90, 20, 26, .12);
}

.detail-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.detail-pills div,
.detail-panel {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow);
}

.detail-pills small {
    display: block;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
    font-weight: 750;
    margin-bottom: 8px;
}

.detail-pills strong {
    font-weight: 650;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.detail-panel h2 {
    font-size: 32px;
}

.detail-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.detail-image.uploaded-product-image {
    background-size: cover;
    background-position: center;
}

.detail-image.uploaded-product-image::before,
.detail-image.uploaded-product-image::after {
    display: none;
}

@media (max-width: 900px) {
    .cake-detail-grid,
    .detail-pills,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .detail-image {
        min-height: 360px;
    }
}

.category-strip-inner a {
    white-space: nowrap;
    background: #fff;
    color: var(--red-dark);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 750;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(239,31,45,.07);
}

.category-cake-section {
    border-top: 1px solid rgba(239,31,45,.08);
}

.category-product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.compact-card .product-image {
    height: 190px;
}

.compact-card .product-body {
    padding: 18px;
}

.compact-card h3 {
    font-size: 20px;
    min-height: 48px;
}

.compact-card .product-body p {
    font-size: 14px;
    min-height: 72px;
}

.compact-card .product-meta {
    font-size: 9.5px;
}

.compact-card .product-actions button {
    padding: 9px 13px;
}

.category-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.category-pagination button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--red);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.category-pagination button.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 30px rgba(239,31,45,.18);
}

.uploaded-basket-thumb {
    background-size: cover;
    background-position: center;
}

@media (max-width: 1100px) {
    .category-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .category-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .category-product-grid {
        grid-template-columns: 1fr;
    }
}
