:root {
    --cake-rose: #f8d7da;
    --cake-blush: #f4c7c3;
    --cake-berry: #8c3b52;
    --cake-chocolate: #5b342c;
    --cake-gold: #d7a86e;
    --cake-ink: #352522;
    --cake-muted: #7b6660;
    --cake-card: rgba(255, 255, 255, 0.82);
    --cake-border: rgba(140, 59, 82, 0.14);
    --cake-shadow: 0 20px 60px rgba(91, 52, 44, 0.12);
    --cake-radius: 28px;
    --cream: #faf6f0;
    --beige: #f0e8d8;
    --brown: #5c3317;
    --terracotta: #c1603a;
    --terra-light: #d4775a;
    --gold: #b8852a;
    --text: #3a2210;
    --light-text: #7a5c48;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-shell {
    min-height: 100vh;
    color: var(--cake-ink);
    background:
        radial-gradient(circle at top left, rgba(248, 215, 218, 0.72), transparent 30%),
        linear-gradient(180deg, #fcf7f1 0%, #f9f1e8 38%, #fffaf5 100%);
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
}

body.site-shell::before,
body.site-shell::after {
    content: "";
    position: fixed;
    z-index: -1;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.5;
}

body.site-shell::before {
    top: -8rem;
    left: -8rem;
    background: rgba(244, 199, 195, 0.72);
}

body.site-shell::after {
    right: -10rem;
    bottom: 10%;
    background: rgba(215, 168, 110, 0.22);
}

.site-main {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.site-navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 252, 247, 0.94);
    border-bottom: 1px solid rgba(123, 102, 96, 0.12);
    box-shadow: 0 12px 28px rgba(91, 52, 44, 0.06);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cake-chocolate);
    text-decoration: none;
}

.site-brand-badge,
.site-brand-mark,
.category-icon,
.product-icon,
.info-icon,
.contact-icon,
.timeline-bullet {
    display: inline-grid;
    place-items: center;
}

.site-brand-badge {
    flex: 0 0 auto;
}

.site-brand-badge--logo {
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.site-brand-logo {
    display: block;
    width: auto;
    height: 5rem;
    max-width: min(54vw, 360px);
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(58, 34, 16, 0.14));
}

.site-brand-copy {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.site-brand-copy strong {
    font-weight: 700;
}

.site-brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(91, 52, 44, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--cake-chocolate);
}

.site-nav-link {
    color: var(--cake-chocolate);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.site-nav-link:hover,
.site-nav-link.active,
.footer-shell a,
.breadcrumb-cake a {
    color: var(--cake-berry);
}

.site-nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: rgba(91, 52, 44, 0.34);
}

.btn-cake-primary {
    color: #fff;
    padding: 0.9rem 1.65rem;
    border-radius: 999px;
    font-weight: 800;
    background: linear-gradient(180deg, #d9784f, #c7663f);
    border: none;
    box-shadow: 0 16px 32px rgba(201, 111, 73, 0.25);
}

.btn-cake-primary:hover,
.btn-cake-primary:focus {
    color: #fff;
    background: linear-gradient(180deg, #cc6c45, #bb5c38);
    transform: translateY(-1px);
}

.btn-cake-outline {
    color: var(--cake-chocolate);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    border: 1px solid rgba(91, 52, 44, 0.14);
}

.btn-cake-outline:hover,
.btn-cake-outline:focus {
    color: var(--cake-berry);
    border-color: rgba(140, 59, 82, 0.35);
    background: #fff;
    transform: translateY(-1px);
}

.hero-shell,
.showcase-panel,
.glass-card,
.category-card,
.product-card,
.info-card,
.contact-card,
.cta-band,
.timeline-card,
.footer-card {
    border: 1px solid var(--cake-border);
    border-radius: var(--cake-radius);
    background: var(--cake-card);
    box-shadow: var(--cake-shadow);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-color: rgba(255, 255, 255, 0.6);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 238, 0.78)),
        radial-gradient(circle at top right, rgba(248, 215, 218, 0.64), transparent 26%);
}

.hero-shell--home {
    min-height: 38rem;
}

.hero-shell--home::after {
    display: none;
}

.hero-shell::after,
.category-card::before,
.product-card::before,
.info-card::before,
.contact-card::before {
    content: "";
    position: absolute;
}

.hero-shell::after {
    right: -4rem;
    top: -3rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 215, 218, 0.75) 0%, rgba(248, 215, 218, 0) 70%);
}

.eyebrow,
.tag-chip,
.floating-badge,
.admin-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.eyebrow {
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    background: rgba(140, 59, 82, 0.08);
    color: var(--cake-berry);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.display-cake,
.section-title,
.product-price,
.hero-mini-stat {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.display-cake {
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.94;
    color: var(--cake-chocolate);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--cake-chocolate);
}

.lead-cake,
.section-copy,
.hero-highlight span,
.footer-shell {
    color: var(--cake-muted);
}

.lead-cake {
    max-width: 30rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.18;
}

.glass-card {
    padding: 1.4rem;
}

.hero-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
}

.hero-highlight strong {
    display: block;
    color: var(--cake-chocolate);
    font-size: 1.05rem;
}

.hero-mini-stat {
    min-width: 5rem;
    text-align: right;
    font-size: 2.15rem;
    color: var(--cake-berry);
}

.section-shell {
    margin-top: 4rem;
}

.section-heading {
    max-width: 40rem;
}

.section-kicker {
    color: var(--cake-berry);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-card,
.product-card,
.info-card,
.contact-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.category-card:hover,
.product-card:hover,
.info-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 59, 82, 0.25);
    box-shadow: 0 24px 55px rgba(91, 52, 44, 0.14);
}

.category-card-body,
.product-card-body,
.info-card-body,
.contact-card-body,
.detail-panel,
.footer-card {
    padding: 1.6rem;
}

.detail-panel {
    padding: 2rem;
}

.category-card::before,
.product-card::before,
.info-card::before,
.contact-card::before {
    inset: auto -1.5rem -3.5rem auto;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 215, 218, 0.62), rgba(248, 215, 218, 0));
}

.category-icon,
.product-icon,
.info-icon,
.contact-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    font-size: 1.2rem;
    background: rgba(140, 59, 82, 0.1);
    color: var(--cake-berry);
}

.tag-chip {
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    background: rgba(91, 52, 44, 0.06);
    color: var(--cake-chocolate);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-price {
    font-size: 2rem;
    color: var(--cake-berry);
}

.card-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(140, 59, 82, 0.08);
}

.floating-badge,
.admin-pill {
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(91, 52, 44, 0.08);
    color: var(--cake-chocolate);
    font-size: 0.8rem;
    font-weight: 700;
}

.floating-badge {
    background: rgba(255, 255, 255, 0.75);
}

.admin-pill {
    background: rgba(53, 37, 34, 0.06);
}

.home-stage {
    position: relative;
    padding-bottom: 1.5rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 40rem;
    padding: clamp(2rem, 3vw, 3rem);
    padding-bottom: 7.5rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: calc(var(--cake-radius) + 8px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 244, 235, 0.72)),
        radial-gradient(circle at top right, rgba(244, 199, 195, 0.36), transparent 34%);
    box-shadow: 0 28px 68px rgba(91, 52, 44, 0.12);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(252, 247, 241, 0.9) 0%, rgba(252, 247, 241, 0.66) 32%, rgba(252, 247, 241, 0.42) 52%, rgba(252, 247, 241, 0.54) 100%),
        var(--hero-backdrop-image);
    background-position: center;
    background-size: cover;
    filter: blur(12px);
    transform: scale(1.06);
    opacity: 0.95;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(229, 214, 201, 0.62));
    pointer-events: none;
}

.home-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 30rem;
    padding-top: 1.4rem;
}

.hero-inline-link {
    color: var(--cake-chocolate);
    font-weight: 700;
    text-decoration: none;
}

.hero-inline-link:hover,
.hero-inline-link:focus {
    color: var(--cake-berry);
}

.home-hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 32rem;
}

.home-hero-image {
    width: min(100%, 36rem);
    max-height: 33rem;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 26px 34px rgba(91, 52, 44, 0.2));
}

.home-hero-placeholder {
    display: grid;
    place-items: center;
    min-height: 28rem;
    padding: 2rem;
    text-align: center;
    color: var(--cake-muted);
    border-radius: 28px;
    border: 1px dashed rgba(91, 52, 44, 0.16);
    background: rgba(255, 255, 255, 0.45);
}

.home-hero-placeholder strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--cake-chocolate);
    font-size: 1.1rem;
}

.section-head-center {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.home-featured-rail {
    position: relative;
    z-index: 3;
    max-width: 78rem;
    margin: -5rem auto 0;
    padding: 0 0.85rem;
}

.home-featured-intro {
    max-width: 42rem;
    margin: 0 auto 1.4rem;
    text-align: center;
}

.home-featured-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--cake-chocolate);
}

.home-product-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(91, 52, 44, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(91, 52, 44, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(91, 52, 44, 0.14);
}

.home-product-image-link {
    display: block;
    text-decoration: none;
}

.home-product-image {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    background: #f7f0ea;
}

.home-product-image--empty {
    display: grid;
    place-items: center;
    color: var(--cake-muted);
}

.home-product-body {
    padding: 0.95rem 1rem 1.1rem;
    text-align: center;
}

.home-product-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.85rem;
    color: var(--cake-chocolate);
}

.home-product-title a {
    color: inherit;
    text-decoration: none;
}

.home-product-meta {
    margin-top: 0.35rem;
    color: var(--cake-muted);
    font-size: 0.98rem;
}

.btn-card-action {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.82rem 1rem;
    font-size: 0.95rem;
}

.home-order-section {
    margin-top: 0.75rem;
}

.home-cta {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3.1rem 1.25rem 3.4rem;
    text-align: center;
    border-top: 1px solid rgba(91, 52, 44, 0.12);
    border-bottom: 1px solid rgba(91, 52, 44, 0.12);
}

.home-cta .section-title,
.home-cta .section-copy {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.home-cta .section-title,
.home-testimonials .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.home-cta .section-title::before,
.home-cta .section-title::after,
.home-testimonials .section-title::before,
.home-testimonials .section-title::after {
    content: "";
    width: 5rem;
    height: 1px;
    background: rgba(91, 52, 44, 0.18);
}

.home-testimonials {
    margin-top: 4.25rem;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 1.35rem 1.25rem 1.4rem;
    border: 1px solid rgba(91, 52, 44, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(91, 52, 44, 0.08);
}

.testimonial-card::after {
    content: "“";
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    color: rgba(91, 52, 44, 0.12);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.95rem;
}

.testimonial-avatar {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 10px 22px rgba(91, 52, 44, 0.12);
}

.testimonial-avatar--initials {
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(140, 59, 82, 0.9), rgba(215, 168, 110, 0.9));
    color: #fff;
    font-weight: 800;
}

.testimonial-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    color: var(--cake-chocolate);
}

.testimonial-role {
    color: var(--cake-muted);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--cake-ink);
    font-size: 1rem;
    line-height: 1.65;
}

.footer-shell {
    padding: 2.4rem 0 3rem;
}

.footer-shell a,
.breadcrumb-cake a {
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal[data-delay="1"] {
    transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.18s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.26s;
}

.breadcrumb-cake {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--cake-muted);
    font-size: 0.9rem;
}

.product-visual {
    position: relative;
    overflow: hidden;
    min-height: 28rem;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 236, 0.86)),
        radial-gradient(circle at top left, rgba(248, 215, 218, 0.52), transparent 34%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 12%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(44, 31, 28, 0.5);
    background-size: 50%;
}

.product-visual-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--cake-muted);
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-bullet {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(140, 59, 82, 0.12);
    color: var(--cake-berry);
    font-weight: 800;
}

.empty-shell {
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(140, 59, 82, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.56);
}

.empty-shell h3,
.empty-shell h2 {
    color: var(--cake-chocolate);
}

@media (max-width: 991.98px) {
    .site-main {
        padding-top: 1.5rem;
    }

    .home-hero {
        padding: 1.5rem;
        min-height: auto;
        padding-bottom: 2.25rem;
    }

    .home-hero-visual,
    .home-hero-placeholder {
        min-height: 24rem;
    }

    .home-featured-rail {
        margin-top: 1.6rem;
        padding: 0;
    }

    .section-head-center {
        margin-bottom: 1.25rem;
    }

    .home-product-image {
        height: 13rem;
    }

    .home-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .display-cake {
        font-size: 2.7rem;
    }

    .hero-shell,
    .glass-card,
    .category-card,
    .product-card,
    .info-card,
    .contact-card,
    .cta-band,
    .timeline-card,
    .detail-panel,
    .footer-card,
    .product-visual,
    .empty-shell,
    .home-hero,
    .home-hero-visual,
    .home-product-card,
    .testimonial-card {
        border-radius: 22px;
    }

    .home-hero-visual,
    .home-hero-placeholder {
        min-height: 18rem;
    }

    .home-hero-image {
        max-height: 19rem;
    }

    .home-product-image {
        height: 12rem;
    }

    .home-cta .section-title,
    .home-testimonials .section-title {
        gap: 0.6rem;
    }

    .home-cta .section-title::before,
    .home-cta .section-title::after,
    .home-testimonials .section-title::before,
    .home-testimonials .section-title::after {
        width: 2rem;
    }

    .testimonial-head {
        align-items: flex-start;
    }

    .testimonial-avatar {
        width: 3.4rem;
        height: 3.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-product-card,
    .product-card,
    .category-card,
    .info-card,
    .contact-card,
    .btn-cake-primary,
    .btn-cake-outline {
        transition: none;
    }
}

body[data-page="home"] {
    background: var(--cream);
    color: var(--text);
    font-family: "Lato", "Segoe UI", sans-serif;
}

body[data-page="home"]::before,
body[data-page="home"]::after {
    display: none;
}

body[data-page="home"] .site-navbar {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e8ddd0;
    box-shadow: none;
}

body[data-page="home"] .site-brand {
    gap: 0.55rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    color: var(--brown);
}

body[data-page="home"] .site-brand-badge--logo {
    background: transparent;
    border: none;
    box-shadow: none;
}

body[data-page="home"] .site-brand-logo {
    height: 5.3rem;
    filter: drop-shadow(0 10px 22px rgba(58, 34, 16, 0.18));
}

body[data-page="home"] .site-brand-mark {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--terracotta);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
}

@media (max-width: 767.98px) {
    .site-brand-logo {
        height: 3.9rem;
        max-width: min(64vw, 260px);
    }

    body[data-page="home"] .site-brand-logo {
        height: 4.2rem;
    }

    .site-brand-badge--logo {
        padding: 0;
        border-radius: 0;
    }
}

body[data-page="home"] .site-nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body[data-page="home"] .site-nav-link:hover,
body[data-page="home"] .site-nav-link.active {
    color: var(--terracotta);
}

body[data-page="home"] .site-nav-link.active::after {
    background: var(--terracotta);
}

.site-main--home {
    padding-top: 0;
    padding-bottom: 0;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #fdf5ec 0%, #f7e8d4 60%, #f0dcc4 100%);
    display: flex;
    align-items: center;
    padding: 0 6vw;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 75% 50%, rgba(193, 96, 58, 0.08) 0%, transparent 70%);
}

.hero-content {
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.hero-badge,
.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1,
.section-title-alt,
.section-title.with-lines {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--brown);
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.tagline,
.section-sub,
.section-subtitle {
    color: var(--light-text);
    font-style: italic;
}

.tagline {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-primary-cake {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(193, 96, 58, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary-cake:hover,
.btn-primary-cake:focus {
    background: var(--terra-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(193, 96, 58, 0.45);
}

.hero-secondary-link {
    color: var(--brown);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus {
    color: var(--terracotta);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-chips span {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 20%, black 60%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 20%, black 60%);
}

.hero-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    color: var(--light-text);
    text-align: center;
}

.products-section {
    background: var(--cream);
    padding: 4rem 6vw 5rem;
}

.products-intro {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-title-alt {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 0.6rem;
}

.section-subtitle,
.section-sub {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.showcase-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(92, 51, 23, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(92, 51, 23, 0.15);
}

.showcase-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.showcase-card-img--empty {
    display: grid;
    place-items: center;
    background: #f3eadb;
    color: var(--light-text);
}

.showcase-card-body {
    padding: 1rem 1.2rem 1.4rem;
    text-align: center;
}

.showcase-card-body h3 {
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.showcase-card-meta {
    margin-bottom: 0.95rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.btn-outline-cake {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-outline-cake:hover,
.btn-outline-cake:focus {
    color: #fff;
    background: var(--terra-light);
    transform: scale(1.04);
}

.order-section {
    background: linear-gradient(135deg, #f7ede0 0%, #efdfc8 100%);
    padding: 5rem 6vw;
    text-align: center;
    position: relative;
}

.order-section::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 5rem;
    height: 5rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 133, 42, 0.18), transparent 70%);
}

.section-title.with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.6rem;
}

.section-title.with-lines::before,
.section-title.with-lines::after {
    content: "";
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-sub {
    margin-bottom: 1.8rem;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(184, 133, 42, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-gold:hover,
.btn-gold:focus {
    background: #c89635;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 133, 42, 0.45);
}

.testimonials-section {
    background: var(--beige);
    padding: 5rem 6vw;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 3rem;
}

.testimonials-section .testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 4px 18px rgba(92, 51, 23, 0.07);
    position: relative;
    border: none;
}

.testimonials-section .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    color: var(--terracotta);
    opacity: 0.15;
    line-height: 1;
}

.testimonials-section .testimonial-card::after {
    display: none;
}

.t-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.t-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--terracotta);
    flex: 0 0 auto;
}

.t-avatar--initials {
    display: grid;
    place-items: center;
    background: var(--terracotta);
    color: #fff;
    font-weight: 700;
}

.t-name {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.t-role {
    margin-top: 0.2rem;
    color: var(--light-text);
    font-size: 0.8rem;
}

.t-text {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-shell--home {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    padding: 2rem 0;
}

.footer-home-brand strong {
    color: #fff;
}

.footer-home-copy {
    max-width: 46rem;
    margin: 0 auto;
}

body[data-page="home"] .empty-shell {
    max-width: 780px;
    margin: 2rem auto 0;
    border: 1px dashed rgba(92, 51, 23, 0.16);
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 700px) {
    .hero {
        min-height: 70vh;
        padding-top: 2rem;
        padding-bottom: 3rem;
        justify-content: flex-end;
        flex-direction: column;
    }

    .hero-img {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-img img {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-title.with-lines {
        gap: 0.6rem;
    }

    .section-title.with-lines::before,
    .section-title.with-lines::after {
        max-width: 36px;
    }
}
