@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+Tamil:wght@400;500;600;700&display=swap');

/* =========================================================
   ROOT
========================================================= */

:root {

    --cream: #f7f1e7;
    --cream-dark: #eee3d2;

    --paper: #fffdf9;

    --maroon: #651b22;
    --maroon-dark: #3e0f15;

    --gold: #b38b4c;

    --text: #28211e;
    --muted: #766c65;

    --line: rgba(62, 15, 21, 0.13);

    --shadow:
        0 20px 55px rgba(40, 20, 12, 0.10);

    --radius: 22px;

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "DM Sans",
        Arial,
        sans-serif;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    background: var(--paper);

    color: var(--text);

    font-family: var(--sans);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: auto;
}

.section {
    padding: 100px 0;
}

.eyebrow {

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .20em;

    text-transform: uppercase;
}

h1,
h2,
h3 {

    font-family: var(--serif);

    font-weight: 600;

    line-height: 1;
}

h2 {

    color: var(--maroon-dark);

    font-size: clamp(
        48px,
        5vw,
        70px
    );
}

h2 em {

    color: var(--gold);

    font-style: italic;
}

p {
    color: var(--muted);
}


/* =========================================================
   IMAGE PLACEHOLDERS
========================================================= */

.image-placeholder {

    background:
        linear-gradient(
            135deg,
            rgba(101, 27, 34, .07),
            rgba(179, 139, 76, .13)
        );

    border:
        1px dashed
        rgba(101, 27, 34, .25);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--maroon);

    overflow: hidden;
}

.image-placeholder span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;
}

.image-placeholder small {

    margin-top: 6px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 253, 249, .95);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid var(--line);
}

.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 28px;
}

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-right: auto;
}

.brand-symbol {

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    color: var(--maroon);

    font-family: var(--serif);

    font-size: 20px;

    font-weight: 700;
}

.brand-text strong {

    display: block;

    color: var(--maroon-dark);

    font-size: 17px;

    letter-spacing: .12em;
}

.brand-text small {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: .16em;
}

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 23px;
}

.desktop-nav a {

    color: #5e514a;

    font-size: 13px;

    font-weight: 600;

    transition: .2s;
}

.desktop-nav a:hover {
    color: var(--maroon);
}

.header-button {

    padding:
        12px 19px;

    background:
        var(--maroon);

    color: white;

    border-radius:
        999px;

    font-size: 12px;

    font-weight: 700;
}

.menu-button {

    display: none;

    border: 0;

    background: transparent;

    color: var(--maroon);

    font-size: 27px;

    cursor: pointer;
}

.mobile-nav {

    display: none;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 22px;

    border-radius:
        999px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .25s,
        background .25s;
}

.button:hover {

    transform:
        translateY(-2px);
}

.button-primary {

    background:
        var(--maroon);

    color:
        white;
}

.button-primary:hover {

    background:
        var(--maroon-dark);
}

.button-light {

    border:
        1px solid
        rgba(255,255,255,.6);

    color:
        white;
}

.button-light:hover {

    background:
        white;

    color:
        var(--maroon);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height:
        720px;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    background:
        var(--maroon-dark);
}

.hero-photo {

    position:
        absolute;

    inset:
        0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 35% 48%,
            rgba(35, 8, 12, 0.65) 0%,
            rgba(35, 8, 12, 0.35) 38%,
            rgba(35, 8, 12, 0) 70%
        ),
        linear-gradient(
            90deg,
            rgba(20, 5, 8, 0.96) 0%,
            rgba(20, 5, 8, 0.88) 30%,
            rgba(20, 5, 8, 0.65) 55%,
            rgba(20, 5, 8, 0.18) 85%,
            rgba(20, 5, 8, 0.05) 100%
        );
}

.hero-content {

    position:
        relative;

    z-index:
        2;

    width:
        min(760px, 100%);

    color:
        white;

    padding:
        100px 0;
     
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.75),
        0 1px 3px rgba(0, 0, 0, 0.9);
        max-width: 820px;
}


.hero h1 {

    margin-bottom:
        25px;

    color:
        white;

    font-size:
        clamp(
            60px,
            7vw,
            100px
        );
        max-width: 800px;
       
    font-size: 4.4rem;

}

.hero h1 em {

    display:
        block;

    color:
        #d5b675;

    font-style:
        italic;
}

.hero-description {

    max-width:
        580px;

    color:
        rgba(255,255,255,.80);

    font-size:
        17px;
}

.hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        32px;
}

.hero-trust {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        22px;

    margin-top:
        35px;

    color:
        rgba(255,255,255,.72);

    font-size:
        12px;
}

.hero-trust span + span {

    padding-left:
        22px;

    border-left:
        1px solid
        rgba(255,255,255,.25);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    background:
        var(--maroon-dark);

    color:
        white;
}

.trust-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.trust-item {

    padding:
        25px;

    text-align:
        center;

    border-right:
        1px solid
        rgba(255,255,255,.12);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {

    display:
        block;

    color:
        #d8bc83;

    font-family:
        var(--serif);

    font-size:
        30px;
}

.trust-item span {

    color:
        rgba(255,255,255,.65);

    font-size:
        10px;

    letter-spacing:
        .1em;

    text-transform:
        uppercase;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        75px;

    align-items:
        center;
}

.about-content > p {

    max-width:
        600px;
}

.about-content .large-text {

    margin:
        25px 0 15px;

    color:
        #514740;

    font-size:
        18px;
}

.about-points {

    display:
        flex;

    gap:
        45px;

    margin-top:
        35px;
}

.about-points strong {

    display:
        block;

    color:
        var(--maroon);

    font-family:
        var(--serif);

    font-size:
        34px;
}

.about-points span {

    color:
        var(--muted);

    font-size:
        11px;

    text-transform:
        uppercase;

    letter-spacing:
        .08em;
}

.about-photo {

    min-height:
        520px;

    border-radius:
        var(--radius);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap:
        40px;

    margin-bottom:
        42px;
}

.section-heading > p {

    max-width:
        420px;
}

.section-heading.centered {

    display:
        block;

    text-align:
        center;
}

.section-heading.centered > p {

    margin:
        15px auto 0;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    background:
        var(--cream);
}

.category-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;
}

.category-card {

    background:
        var(--paper);

    border-radius:
        var(--radius);

    overflow:
        hidden;

    border:
        1px solid
        rgba(62,15,21,.06);

    box-shadow:
        0 8px 30px
        rgba(38,20,12,.06);

    transition:
        transform .3s,
        box-shadow .3s;
}

.category-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}

.category-image {
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
    padding: 18px 22px;
    gap: 20px;
}

.category-details h3 {
    color: var(--maroon-dark);
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
}

.category-details span {
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
    white-space: nowrap;
}

/* =========================================================
   FAVOURITES
========================================================= */

.favourites-section {

    background:
        var(--paper);
}

.favourite-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;
}

.favourite-card {

    min-height:
        230px;

    padding:
        30px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        end;

    border-radius:
        var(--radius);

    border:
        1px solid
        var(--line);

    background:
        linear-gradient(
            145deg,
            var(--cream),
            white
        );
}

.favourite-card span {

    color:
        var(--gold);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .12em;
}

.favourite-card h3 {

    margin-top:
        7px;

    color:
        var(--maroon-dark);

    font-size:
        31px;
}


/* =========================================================
   CAKES
========================================================= */

.cakes-section {

    background:
        #f2e9dc;
}


.cake-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        14px;

    max-width:
        1000px;

    margin:
        0 auto;
}


.cake-photo {

    aspect-ratio:
        1 / 1;

    border-radius:
        16px;

    overflow:
        hidden;

    background:
        #111;
}


.cake-photo img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    display:
        block;
}


.cake-footer {

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    margin-top:
        22px;

    text-align:
        center;
}


.cake-footer p {

    font-size:
        13px;

    color:
        var(--muted);
}

/* =========================================================
   CELEBRATION
========================================================= */

.celebration-section {

    background:
        var(--maroon-dark);
}

.celebration-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

    align-items:
        center;
}

.celebration-content h2 {

    color:
        white;
}

.celebration-content > p:not(.eyebrow) {

    max-width:
        560px;

    margin:
        22px 0 30px;

    color:
        rgba(255,255,255,.70);
}

.celebration-photo {

    min-height:
        470px;

    border-color:
        rgba(255,255,255,.22);

    color:
        #d9bd83;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    background:
        var(--paper);
}

.gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        18px;
}

.gallery-photo {

    height:
        350px;

    border-radius:
        var(--radius);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background:
        var(--cream);
}

.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        60px;

    align-items:
        stretch;
}

.contact-content .large-text {

    max-width:
        600px;

    margin:
        25px 0 30px;

    color:
        #514740;

    font-size:
        18px;
}

.contact-list {

    display:
        grid;

    gap:
        12px;

    max-width:
        520px;
}

.contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    padding:
        15px;

    border:
        1px solid
        var(--line);

    border-radius:
        15px;

    background:
        rgba(255,255,255,.65);
}

.contact-icon {

    width:
        43px;

    height:
        43px;

    display:
        grid;

    place-items:
        center;

    flex-shrink:
        0;

    border-radius:
        50%;

    background:
        var(--maroon);

    color:
        white;
}

.contact-item strong {

    display:
        block;

    color:
        var(--maroon-dark);

    font-size:
        14px;
}

.contact-item small {

    color:
        var(--muted);

    font-size:
        12px;
}

.map-placeholder {

    min-height:
        460px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    border:
        1px solid
        var(--line);

    border-radius:
        var(--radius);

    background:
        #e5ddd0;

    color:
        var(--maroon);
}

.map-placeholder span {

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        .12em;
}

.map-placeholder small {

    margin-top:
        6px;

    color:
        var(--muted);
}


/* =========================================================
   CATEGORY PAGE
========================================================= */

.category-hero {

    padding:
        100px 0 85px;

    background:
        var(--maroon-dark);

    color:
        white;
}

.back-link {

    display:
        inline-block;

    margin-bottom:
        50px;

    color:
        #d7b875;

    font-size:
        13px;

    font-weight:
        700;
}

.category-hero h1 {

    margin-bottom:
        18px;

    color:
        white;

    font-size:
        clamp(
            65px,
            8vw,
            105px
        );
}

.category-hero > .container > p:last-child {

    max-width:
        650px;

    color:
        rgba(255,255,255,.70);

    font-size:
        17px;
}


/* =========================================================
   LISTING
========================================================= */

.listing-header {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap:
        30px;

    margin-bottom:
        40px;
}


.listing-header h2 {

    font-size:
        50px;
}


.listing-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        14px 18px;

    max-width:
        1000px;

    margin:
        0 auto;
}


/* =========================================================
   CLEAN MENU ITEM
========================================================= */

.menu-item {

    min-height:
        95px;

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

    padding:
        20px 24px;

    background:
        var(--paper);

    border:
        1px solid
        var(--line);

    border-radius:
        16px;

    box-shadow:
        0 6px 22px
        rgba(38,20,12,.04);

    transition:
        transform .25s,
        box-shadow .25s,
        border-color .25s;

}


.menu-item:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(38,20,12,.08);

    border-color:
        rgba(101,27,34,.20);

}


/* =========================================================
   NUMBER
========================================================= */

.menu-number {

    width:
        42px;

    height:
        42px;

    flex-shrink:
        0;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(179,139,76,.45);

    border-radius:
        50%;

    color:
        var(--gold);

    font-family:
        var(--serif);

    font-size:
        18px;

    font-weight:
        700;

}


/* =========================================================
   ITEM CONTENT
========================================================= */

.menu-item-content {

    flex:
        1;

}


.menu-item-content h3 {

    color:
        var(--maroon-dark);

    font-size:
        25px;

    line-height:
        1.05;

}


.menu-item-content p {

    margin-top:
        5px;

    color:
        var(--muted);

    font-size:
        12px;

}


/* =========================================================
   ARROW
========================================================= */

.menu-arrow {

    color:
        var(--gold);

    font-size:
        20px;

    font-weight:
        600;

    transition:
        transform .25s;

}


.menu-item:hover .menu-arrow {

    transform:
        translateX(5px);

}

/* =========================================================
   MINI CTA
========================================================= */

.mini-cta {

    background:
        var(--cream);
}

.mini-cta-inner {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        30px;
}

.mini-cta h2 {

    margin-bottom:
        8px;

    font-size:
        50px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        65px 0 20px;

    background:
        #241719;

    color:
        rgba(255,255,255,.68);
}

.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap:
        60px;

    padding-bottom:
        45px;
}

.footer-brand .brand-text strong {
    color: white;
}

.footer-brand .brand-text small {
    color: rgba(255,255,255,.48);
}

.footer-about p {

    max-width:
        370px;

    margin-top:
        20px;
}

.footer-links h4 {

    margin-bottom:
        15px;

    color:
        white;

    font-size:
        11px;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;
}

.footer-links a {

    display:
        block;

    margin:
        7px 0;

    font-size:
        13px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    padding-top:
        18px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    font-size:
        11px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-top {

    position:
        fixed;

    right:
        22px;

    bottom:
        100px;

    width:
        44px;

    height:
        44px;

    display:
        grid;

    place-items:
        center;

    border:
        0;

    border-radius:
        50%;

    background:
        var(--maroon);

    color:
        white;

    cursor:
        pointer;

    opacity:
        0;

    visibility:
        hidden;

    transition:
        .25s;

    z-index:
        500;
}

.back-top.show {

    opacity:
        1;

    visibility:
        visible;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {

        position:
            absolute;

        top:
            82px;

        left:
            20px;

        right:
            20px;

        padding:
            18px;

        background:
            var(--paper);

        border:
            1px solid
            var(--line);

        border-radius:
            16px;

        box-shadow:
            var(--shadow);
    }

    .mobile-nav.open {

        display:
            flex;

        flex-direction:
            column;

        gap:
            5px;
    }

    .mobile-nav a {

        padding:
            11px;

        color:
            var(--maroon-dark);

        font-size:
            14px;

        font-weight:
            600;
    }

    .category-grid {

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

    .listing-grid {

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

    .about-grid,
    .celebration-grid{

        grid-template-columns:
            1fr;
    }

    .about-photo {

        min-height:
            450px;
    }

    .footer-grid {

        grid-template-columns:
            2fr 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .container {

        width:
            calc(100% - 28px);
    }

    .section {

        padding:
            72px 0;
    }

    .nav-container {

        min-height:
            72px;
    }

    .brand-text strong {

        font-size:
            12px;
    }

    .brand-text small {

        font-size:
            8px;
    }

    .brand-symbol {

        width:
            39px;

        height:
            39px;
    }

    .mobile-nav {

        top:
            72px;
    }

    .hero {

        min-height:
            680px;
    }

    .hero-content {

        padding:
            80px 0;
    }

    .hero h1 {

        font-size:
            59px;
    }

    .hero-description {

        font-size:
            15px;
    }

    .hero-trust {

        gap:
            10px;
    }

    .hero-trust span + span {

        padding-left:
            10px;
    }

    .trust-grid {

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

    .trust-item {

        padding:
            20px 10px;
    }

    .trust-item:nth-child(2) {

        border-right:
            0;
    }

    .trust-item:nth-child(-n+2) {

        border-bottom:
            1px solid
            rgba(255,255,255,.12);
    }

    .section-heading {

        display:
            block;
    }

    .section-heading > p {

        margin-top:
            15px;
    }

    h2 {

        font-size:
            48px;
    }

    .category-grid,
.favourite-grid,
.gallery-grid,
.listing-grid {

    grid-template-columns:
        1fr;
}


.cake-grid {

    grid-template-columns:
        repeat(2, 1fr);

}

    .category-image {

        height:
            280px;
    }

    .about-points {

        gap:
            25px;
    }

    .about-photo {

        min-height:
            380px;
    }

   
    .cake-footer {

        display:
            block;
    }

    .cake-footer .text-link {

        display:
            inline-block;

        margin-top:
            12px;
    }

    .celebration-photo {

        min-height:
            350px;
    }

    .gallery-photo {

        height:
            350px;
    }

    .map-placeholder {

        min-height:
            350px;
    }

    .listing-header {

        display:
            block;
    }

    .listing-header .button {

        margin-top:
            20px;
    }

    .listing-header h2 {

        font-size:
            45px;
    }

    .mini-cta-inner {

        display:
            block;
    }

    .mini-cta .button {

        margin-top:
            20px;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px;
    }

    .footer-about {

        grid-column:
            1 / -1;
    }

    .footer-bottom {

        display:
            block;
    }

    .footer-bottom > * {

        display:
            block;

        margin-top:
            8px;
    }
    .back-to-top {
        bottom: 85px;
    }
   

}

/* Favourite card image alignment */
.favourite-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.favourite-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.favourite-card span,
.favourite-card h3 {
    margin-left: 22px;
    margin-right: 22px;
}

.favourite-card span {
    margin-top: 18px;
}

.favourite-card h3 {
    margin-bottom: 22px;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;
    border-radius: 50px;

    background: #25D366;
    color: #fff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        padding: 13px 17px;
        font-size: 14px;
    }

    .whatsapp-icon {
        font-size: 21px;
    }
}
/* ================= LANGUAGE SWITCHER ================= */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 25px;
}

.language-btn {
    border: none;
    background: transparent;
    color: #6b5a54;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 2px;
}

.language-btn.active {
    color: var(--maroon);
    font-weight: 700;
}

.language-btn:hover {
    color: var(--maroon);
}

.language-switcher span {
    color: #b9aaa4;
}

@media (max-width: 640px) {

    .language-switcher {
        margin-left: auto;
        margin-right: 10px;
        gap: 6px;
    }

    .language-btn {
        font-size: 13px;
    }

}
/* =========================================================
   PREMIUM CATEGORY HERO - IMAGE LED STYLE
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

.category-hero {
    position: relative;
    min-height: 500px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--maroon-dark);
}

.category-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--maroon-dark);
}

.category-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            ellipse at 70% 50%,
            rgba(20, 5, 8, .05) 0%,
            rgba(20, 5, 8, .18) 42%,
            rgba(20, 5, 8, .38) 100%
        ),
        linear-gradient(
            90deg,
            rgba(38, 8, 13, .98) 0%,
            rgba(38, 8, 13, .92) 30%,
            rgba(38, 8, 13, .67) 50%,
            rgba(38, 8, 13, .20) 75%,
            rgba(38, 8, 13, .08) 100%
        );
}

.category-hero::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: -3%;
    right: -3%;
    bottom: -38px;
    height: 80px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: var(--paper);
}

.category-hero-content {
    position: relative;
    z-index: 2;
    padding: 78px 0 105px;
    color: white;
}

.category-hero .back-link {
    margin-bottom: 42px;
    color: #d7b875;
    transition: transform .25s ease, color .25s ease;
}

.category-hero .back-link:hover {
    color: white;
    transform: translateX(-3px);
}

.category-hero h1 {
    margin-bottom: 16px;
    max-width: 760px;
    color: white;
    font-size: clamp(64px, 8vw, 108px);
    line-height: .9;
    text-shadow: 0 4px 18px rgba(0,0,0,.28);
}

.category-hero-content > #category-description {
    max-width: 620px;
    color: rgba(255,255,255,.80);
    font-size: 17px;
}

.category-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.category-hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 600;
}

.category-hero-features b {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215,184,117,.75);
    border-radius: 50%;
    color: #d7b875;
    font-size: 12px;
}

.category-hero-photo.no-category-image {
    background:
        radial-gradient(circle at 72% 35%, rgba(179,139,76,.22), transparent 34%),
        linear-gradient(135deg, #2d080e, #651b22 55%, #3e0f15);
}

.category-hero-photo.no-category-image::before {
    content: "BAKED ITEMS";
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.08);
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 120px);
    font-weight: 700;
    letter-spacing: .04em;
}

/* =========================================================
   CATEGORY LIST POLISH
========================================================= */

.listing-section {
    position: relative;
    background: var(--paper);
}

.listing-section .container {
    position: relative;
}

.listing-grid {
    max-width: 1040px;
}

.menu-item {
    min-height: 92px;
    background: rgba(255,253,249,.94);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
}

.menu-item-content h3 {
    font-size: 23px;
}

.menu-item-content p {
    font-size: 11px;
    letter-spacing: .02em;
}

.listing-note {
    max-width: 1040px;
    margin: 26px auto 0;
    padding: 15px 20px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.listing-note span {
    color: var(--gold);
    margin-right: 6px;
}

/* =========================================================
   HOMEPAGE CATEGORY GRID - 9 CATEGORIES
========================================================= */

.category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    min-height: 330px;
}

.category-image {
    height: 245px;
}

.category-card-no-image .category-image {
    display: grid;
    place-items: center;
    position: relative;
    background:
        radial-gradient(circle at 75% 25%, rgba(179,139,76,.30), transparent 32%),
        linear-gradient(135deg, #3e0f15, #651b22);
}

.category-no-photo > div {
    text-align: center;
    color: white;
}

.category-no-photo span {
    display: block;
    color: #d7b875;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .05em;
}

.category-no-photo small {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =========================================================
   CAKE CONTENT
========================================================= */

.cake-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 28px auto 0;
}

.cake-info-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 23px;
    background: rgba(255,253,249,.75);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.cake-info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(179,139,76,.5);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--serif);
    font-weight: 700;
}

.cake-info-card h3 {
    margin-bottom: 5px;
    color: var(--maroon-dark);
    font-size: 25px;
}

.cake-info-card p {
    font-size: 12px;
    line-height: 1.6;
}

.cake-footer {
    margin-top: 25px;
}

/* =========================================================
   MOBILE CATEGORY / CAKE LAYOUT
========================================================= */

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

    .category-hero {
        min-height: 510px;
    }

    .category-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(38,8,13,.97) 0%,
                rgba(38,8,13,.86) 48%,
                rgba(38,8,13,.42) 100%
            );
    }
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 0;
    }

    .category-image {
        height: 245px;
    }

    .category-hero {
        min-height: 540px;
    }

    .category-hero-content {
        padding: 62px 0 105px;
    }

    .category-hero .back-link {
        margin-bottom: 32px;
    }

    .category-hero h1 {
        font-size: clamp(55px, 16vw, 78px);
    }

    .category-hero-content > #category-description {
        font-size: 15px;
    }

    .category-hero-features {
        gap: 12px;
        margin-top: 28px;
    }

    .category-hero-features span {
        width: 100%;
    }

    .listing-header h2 {
        font-size: 43px;
    }

    .menu-item {
        min-height: 82px;
        padding: 17px 16px;
        gap: 13px;
    }

    .menu-number {
        width: 37px;
        height: 37px;
        font-size: 16px;
    }

    .menu-item-content h3 {
        font-size: 21px;
    }

    .menu-item-content p {
        font-size: 10px;
    }

    .menu-arrow {
        font-size: 17px;
    }

    .cake-info-grid {
        grid-template-columns: 1fr;
    }

    .cake-info-card h3 {
        font-size: 23px;
    }

    .category-no-photo span {
        font-size: 31px;
    }
}
/* Tamil hero heading adjustment */
html[lang="ta"] .hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
}
.map-placeholder {
    min-height: 420px;
    overflow: hidden;
    border-radius: 14px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}
/* =========================================================
   FINAL MOBILE POLISH
   ========================================================= */

@media (max-width: 640px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Overall spacing */
    .section {
        padding: 52px 0;
    }

    /* ================= HEADER ================= */

    .nav-container {
        min-height: 68px;
    }

    .brand-text strong {
        font-size: 11px;
        letter-spacing: .08em;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: .12em;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    /* ================= HERO ================= */

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 44px);
        line-height: 1.08;
        margin-bottom: 18px;
        max-width: 100%;
    }

    /* Tamil needs slightly more compact typography */
    html[lang="ta"] .hero h1 {
        font-size: 36px;
        line-height: 1.18;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 9px;
        margin-top: 24px;
    }

    .hero-buttons .button {
        font-size: 11px;
        padding: 11px 16px;
    }

    .hero-trust {
        gap: 8px;
        margin-top: 25px;
        font-size: 10px;
    }

    .hero-trust span + span {
        padding-left: 8px;
    }

    /* ================= TRUST BAR ================= */

    .trust-item {
        padding: 17px 7px;
    }

    .trust-item strong {
        font-size: 23px;
    }

    .trust-item span {
        font-size: 8px;
    }

    /* ================= SECTION HEADINGS ================= */

    h2,
    .listing-header h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .section-heading > p {
        margin-top: 10px;
    }

    /* ================= CATEGORY CARDS ================= */

    .category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-card {
        min-height: auto;
    }

    .category-image {
        height: 165px;
    }

    .category-details {
        min-height: 68px;
        padding: 14px 16px;
        gap: 12px;
    }

    .category-details h3 {
        font-size: 19px;
        line-height: 1.2;
    }

    .category-details span {
        font-size: 12px;
        letter-spacing: .05em;
    }

    /* ================= ABOUT ================= */

    .about-content .large-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-points {
        gap: 18px;
        margin-top: 25px;
    }

    .about-points strong {
        font-size: 26px;
    }

    .about-points span {
        font-size: 8px;
    }

    .about-photo {
        min-height: 300px;
    }

    /* ================= FAVOURITES ================= */

    .favourite-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* ================= CAKES ================= */

    .cake-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cake-photo {
        height: 280px;
    }

    /* ================= CELEBRATION ================= */

    .celebration-photo {
        min-height: 280px;
    }

    /* ================= CONTACT ================= */

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

    .map-placeholder {
        min-height: 300px;
    }

    .map-placeholder iframe {
        min-height: 300px;
    }

    /* ================= FOOTER ================= */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}
/* =========================================================
   MOBILE HERO IMAGE FIX
   ========================================================= */

@media (max-width: 640px) {
    .hero {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: var(--maroon-dark);
    }
}
@media (max-width: 640px) {

    .category-details {
        align-items: center;
        min-height: 72px;
        padding: 14px 16px;
        gap: 8px;
    }

    .category-details h3 {
        font-size: 18px;
        line-height: 1.35;
        flex: 1;
        min-width: 0;
        overflow-wrap: break-word;
    }

    .category-details span {
        flex-shrink: 0;
        font-size: 11px;
    }

    html[lang="ta"] .category-details h3 {
        font-size: 17px;
        line-height: 1.4;
    }
}
/* =========================================================
   FINAL MOBILE TAMIL + IMAGE FIX
   ========================================================= */

@media (max-width: 640px) {

    /* =====================================================
       1. HOMEPAGE HERO IMAGE
       Show more of the real photo on narrow screens
       ===================================================== */

    .hero-image img {
        object-fit: contain;
        object-position: center center;
        background: var(--maroon-dark);
    }

    /* Keep hero content readable */
    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding: 55px 0;
    }

    /* Homepage Tamil hero */
    html[lang="ta"] .hero h1 {
        font-size: 33px;
        line-height: 1.25;
        max-width: 100%;
        overflow: visible;
    }


    /* =====================================================
       2. CATEGORY PAGE HERO IMAGE
       ===================================================== */

    .category-hero-photo img {
        object-fit: contain;
        object-position: center center;
        background: var(--maroon-dark);
    }

    /* Category Tamil heading */
    .category-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
        line-height: 1.2;
        max-width: 100%;
        overflow: visible;
        word-break: normal;
        overflow-wrap: break-word;
    }

    html[lang="ta"] .category-hero h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.25;
    }


    /* =====================================================
       3. HOMEPAGE CATEGORY CARDS
       Prevent Tamil letters from being clipped
       ===================================================== */

    .category-details {
        min-height: 72px;
        height: auto;
        padding: 14px 16px;
        gap: 10px;
        align-items: center;
        overflow: visible;
    }

    .category-details h3 {
        flex: 1;
        min-width: 0;
        margin: 0;
        font-size: 18px;
        line-height: 1.4;
        height: auto;
        overflow: visible;
        word-break: normal;
        overflow-wrap: break-word;
    }

    html[lang="ta"] .category-details h3 {
        font-size: 17px;
        line-height: 1.45;
    }

    .category-details span {
        flex-shrink: 0;
        font-size: 11px;
        white-space: nowrap;
    }


    /* =====================================================
       4. CATEGORY PRODUCT LIST
       Tamil names can wrap naturally
       ===================================================== */

    .menu-item {
        min-height: 82px;
        height: auto;
        padding: 16px 14px;
        gap: 11px;
        align-items: center;
        overflow: visible;
    }

    .menu-number {
        flex-shrink: 0;
    }

    .menu-item-content {
        flex: 1;
        min-width: 0;
        overflow: visible;
    }

    .menu-item-content h3 {
        margin: 0;
        font-size: 19px;
        line-height: 1.4;
        height: auto;
        overflow: visible;
        word-break: normal;
        overflow-wrap: break-word;
    }

    html[lang="ta"] .menu-item-content h3 {
        font-size: 18px;
        line-height: 1.45;
    }

    .menu-item-content p {
        margin-top: 5px;
        font-size: 9px;
        line-height: 1.4;
        height: auto;
        overflow: visible;
    }

    .menu-arrow {
        flex-shrink: 0;
    }


    /* =====================================================
       5. OTHER TAMIL HEADINGS / TEXT
       Prevent glyph clipping throughout the site
       ===================================================== */

    html[lang="ta"] h1,
    html[lang="ta"] h2,
    html[lang="ta"] h3,
    html[lang="ta"] h4,
    html[lang="ta"] p,
    html[lang="ta"] span,
    html[lang="ta"] a {
        overflow: visible;
    }

    html[lang="ta"] h2 {
        line-height: 1.25;
    }

    html[lang="ta"] p {
        line-height: 1.65;
    }


    /* =====================================================
       6. PREVENT HORIZONTAL OVERFLOW
       ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}
/* =========================================================
   TAMIL FONT FIX
   ========================================================= */

html[lang="ta"] body {
    font-family: "Noto Sans Tamil", "Noto Sans", Arial, sans-serif;
}

html[lang="ta"] h1,
html[lang="ta"] h2,
html[lang="ta"] h3,
html[lang="ta"] h4,
html[lang="ta"] h5,
html[lang="ta"] h6,
html[lang="ta"] .button,
html[lang="ta"] .back-link,
html[lang="ta"] .menu-item-content,
html[lang="ta"] .category-details {
    font-family: "Noto Sans Tamil", "Noto Sans", Arial, sans-serif;
}


/* MOBILE TAMIL */
@media (max-width: 640px) {

    html[lang="ta"] .category-hero h1 {
        font-size: 34px !important;
        line-height: 1.35 !important;
    }

    html[lang="ta"] .category-hero-content > #category-description {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    html[lang="ta"] .listing-header h2 {
        font-size: 29px !important;
        line-height: 1.4 !important;
    }

    html[lang="ta"] .menu-item-content h3 {
        font-size: 17px !important;
        line-height: 1.6 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    html[lang="ta"] .menu-item-content p {
        font-size: 9px !important;
        line-height: 1.6 !important;
    }

    html[lang="ta"] .category-details h3 {
        font-size: 16px !important;
        line-height: 1.55 !important;
        height: auto !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    html[lang="ta"] .button,
    html[lang="ta"] .back-link {
        line-height: 1.5 !important;
        height: auto !important;
    }
}
/* =========================================================
   FINAL TAMIL MOBILE WORD WRAP FIX
   ========================================================= */

@media (max-width: 640px) {

    html[lang="ta"] h1,
    html[lang="ta"] h2,
    html[lang="ta"] h3,
    html[lang="ta"] h4,
    html[lang="ta"] p,
    html[lang="ta"] a,
    html[lang="ta"] span {
        max-width: 100%;
        overflow-wrap: anywhere !important;
        
        white-space: normal !important;
    }

    /* Section headings */
    html[lang="ta"] h2 {
        line-height: 1.35 !important;
    }

    /* Category card names */
    html[lang="ta"] .category-details h3 {
        line-height: 1.5 !important;
    }

    /* Product names */
    html[lang="ta"] .menu-item-content h3 {
        line-height: 1.55 !important;
    }

    /* Make sure the section/container itself cannot force overflow */
    html[lang="ta"] .container,
    html[lang="ta"] .section-heading,
    html[lang="ta"] .section-heading > div {
        max-width: 100%;
        min-width: 0;
        overflow: visible !important;
    }
}
/* =========================================================
   TAMIL WORDS - NEVER SPLIT A WORD BETWEEN LINES
   ========================================================= */

@media (max-width: 640px) {

    html[lang="ta"] h1,
    html[lang="ta"] h2,
    html[lang="ta"] h3,
    html[lang="ta"] h4,
    html[lang="ta"] p,
    html[lang="ta"] a,
    html[lang="ta"] span {
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        hyphens: none !important;
    }
     html[lang="ta"] h1,
    html[lang="ta"] h2,
    html[lang="ta"] h3 {
        line-height: 1.35 !important;
    }

}
@media (max-width: 640px) {

    html[lang="ta"] .tamil-word {
        display: inline-block;
        white-space: nowrap;
    }

}
@media (max-width: 640px) {

    html[lang="ta"] .cakes-section .section-heading h2 {
        font-size: 28px !important;
        line-height: 1.45 !important;
    }

   html[lang="ta"] .cakes-section .section-heading h2 span {
   
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}
    }

@media (max-width: 640px) {

    .cake-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .cake-photo {
        width: 100%;
        max-width: 320px;
    }

}
/* =========================================================
   CAKE EXPLORE COLLECTION
   ========================================================= */

.cake-explore {
    margin: 42px auto 0;
    max-width: 1000px;
    border-top: 1px solid rgba(121, 76, 31, 0.2);
    border-bottom: 1px solid rgba(121, 76, 31, 0.2);
}

.cake-explore summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    padding: 22px 20px;

    color: var(--maroon-dark);

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.cake-explore summary::-webkit-details-marker {
    display: none;
}

.cake-explore-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    color: var(--gold);

    font-size: 18px;
    font-weight: 400;

    transition: transform .25s ease;
}

.cake-explore[open] .cake-explore-arrow {
    transform: rotate(45deg);
}

.cake-explore-content {
    padding: 20px 0 55px;
}


/* ================= INTRO ================= */

.cake-explore-heading {
    max-width: 650px;
    margin: 0 auto 38px;
    text-align: center;
}

.cake-explore-heading h3,
.cake-gallery-heading h3 {
    margin: 8px 0 10px;

    color: var(--maroon-dark);

    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.05;
}

.cake-explore-heading p:last-child {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ================= CAKE RANGES ================= */

.cake-range {
    padding: 24px 0;

    border-top: 1px solid rgba(121, 76, 31, 0.12);
}

.cake-range-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 16px;
}

.cake-range-heading > span {
    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.cake-range-heading h4 {
    margin: 0;

    color: var(--maroon-dark);

    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.1;
}

.cake-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.cake-tags span {
    padding: 9px 14px;

    border: 1px solid rgba(121, 76, 31, 0.18);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.55);

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.3;
}


/* ================= GALLERY ================= */

.cake-gallery-heading {
    margin: 42px 0 22px;
    text-align: center;
}

.cake-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cake-gallery-item {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 16px;

    background: #111;
}

.cake-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .4s ease;
}

.cake-gallery-item:hover img {
    transform: scale(1.04);
}


/* ================= CUSTOMIZED CAKE ================= */

.custom-cake-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-top: 35px;
    padding: 24px;

    border: 1px solid rgba(176, 130, 59, .25);
    border-radius: 16px;

    background: rgba(176, 130, 59, .07);
}

.custom-cake-icon {
    color: var(--gold);
    font-size: 22px;
}

.custom-cake-note h4 {
    margin: 0 0 7px;

    color: var(--maroon-dark);

    font-family: var(--serif);
    font-size: 25px;
}

.custom-cake-note p {
    margin: 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* ================= SEASONAL ORDERS ================= */

.seasonal-cake-orders {
    margin-top: 50px;
    padding-top: 35px;

    border-top: 1px solid rgba(121, 76, 31, 0.14);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.seasonal-grid > div {
    padding: 20px 16px;

    border: 1px solid rgba(121, 76, 31, 0.14);
    border-radius: 14px;

    background: rgba(255, 255, 255, .5);
}

.seasonal-grid strong {
    display: block;

    margin-bottom: 7px;

    color: var(--maroon-dark);

    font-family: var(--serif);
    font-size: 20px;
}

.seasonal-grid span {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   CAKE EXPLORE — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .cake-explore {
        margin-top: 30px;
    }

    .cake-explore summary {
        padding: 19px 12px;
        font-size: 11px;
        gap: 12px;
    }

    .cake-explore-content {
        padding: 10px 0 40px;
    }

    .cake-explore-heading {
        margin-bottom: 25px;
    }

    .cake-explore-heading h3,
    .cake-gallery-heading h3 {
        font-size: 25px;
        line-height: 1.15;
    }

    .cake-explore-heading p:last-child {
        font-size: 12px;
    }

    .cake-range {
        padding: 20px 0;
    }

    .cake-range-heading {
        gap: 11px;
        margin-bottom: 13px;
    }

    .cake-range-heading h4 {
        font-size: 23px;
    }

    .cake-tags {
        gap: 7px;
    }

    .cake-tags span {
        padding: 8px 11px;
        font-size: 11px;
    }

    .cake-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: center;
    }

    .cake-gallery-item {
        width: 100%;
        max-width: 320px;
    }

    .custom-cake-note {
        padding: 18px;
        gap: 12px;
    }

    .custom-cake-note h4 {
        font-size: 21px;
    }

    .custom-cake-note p {
        font-size: 11px;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seasonal-grid > div {
        padding: 17px 15px;
    }

}

/* =========================================================
   SINGLE CAKE COLLECTION BUTTON + CUSTOMER PHOTOS
   ========================================================= */

.cake-explore {
    border: 0;
    margin-top: 42px;
}

.cake-explore summary.cake-explore-button {
    width: fit-content;
    min-width: 285px;
    margin: 0 auto;
    padding: 16px 24px;
    border: 1px solid var(--maroon);
    border-radius: 999px;
    background: var(--maroon);
    color: #fff;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 12px 30px rgba(62, 15, 21, .14);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.cake-explore summary.cake-explore-button:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(62, 15, 21, .18);
}

.cake-explore summary.cake-explore-button:focus-visible {
    outline: 3px solid rgba(179, 139, 76, .45);
    outline-offset: 4px;
}

.cake-explore summary.cake-explore-button .cake-explore-arrow {
    width: auto;
    height: auto;
    border: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}

.cake-explore[open] summary.cake-explore-button .cake-explore-arrow {
    transform: translateX(3px);
}

/* Customer gallery shown only after the collection is opened */
.customer-gallery-heading {
    max-width: 720px;
    margin: 52px auto 22px;
    text-align: center;
}

.customer-gallery-heading h3 {
    margin: 8px 0 10px;
    color: var(--maroon-dark);
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.05;
}

.customer-gallery-heading p:last-child {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.customer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.customer-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    background: #ddd;
    box-shadow: 0 8px 24px rgba(40, 20, 12, .08);
}

.customer-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.customer-gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .customer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cake-explore {
        margin-top: 30px;
    }

    .cake-explore summary.cake-explore-button {
        width: min(100%, 300px);
        min-width: 0;
        padding: 14px 18px;
        font-size: 12px;
    }

    .customer-gallery-heading {
        margin: 38px auto 20px;
    }

    .customer-gallery-heading h3 {
        font-size: 30px;
        line-height: 1.15;
    }

    .customer-gallery-heading p:last-child {
        font-size: 12px;
    }

    .customer-gallery {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .customer-gallery-item {
        width: 100%;
        max-width: 320px;
    }
}
/* MOBILE CATEGORY HERO IMAGE - FILL SCREEN */
@media (max-width: 640px) {
    .category-hero-photo img {
        object-fit: cover;
        object-position: center center;
    }
}
/* ================= BAKERY LOGO SIZE FIX ================= */

.brand-logo {
    width: 52px !important;
    height: 52px !important;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

@media (max-width: 640px) {
    .brand-logo {
        width: 42px !important;
        height: 42px !important;
    }
}
/* ================= CONTACT RESPONSIVE ================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: stretch;
}

.contact-content {
    min-width: 0;
}

.map-placeholder {
    min-width: 0;
    width: 100%;
    min-height: 460px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

/* MOBILE */
@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-content {
        order: 1;
    }

    .map-placeholder {
        order: 2;
        min-height: 300px;
    }

    .map-placeholder iframe {
        min-height: 300px;
    }
}



/* ================= MOBILE ONLY ================= */

@media (max-width: 640px) {

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .contact-content {
        order: 1 !important;
    }

    .map-placeholder {
        order: 2 !important;
        min-height: 300px !important;
    }

    .map-placeholder iframe {
        min-height: 300px !important;
    }
}
