/*==================================================
    JUST BAKED BY ARSHIA
    Premium Bakery Website
    old css file
    Part A.1

    Contents
    ------------------------
    1. Root Variables
    2. Reset
    3. Global Styles
    4. Typography
    5. Utility Classes
    6. Buttons
    7. Navbar
    8. Hero
==================================================*/



/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    /* Brand */

    --primary-color:#E1306C;
    --yellow:#F4C542;
    --pink:#F3A5B7;

    /* Neutral */

    --white:#FFFFFF;
    --cream:#FFF8F3;
    --charcoal:#2D2D2D;
    --gray:#6B7280;

    /* Layout */

    --container:1140px;

    /* Radius */

    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:24px;
    --radius-xl:30px;
    --radius-2xl:40px;
    --radius-pill:999px;

    /* Shadows */

    --shadow-sm:0 10px 25px rgba(0,0,0,.05);
    --shadow-md:0 15px 40px rgba(0,0,0,.07);
    --shadow-lg:0 20px 50px rgba(0,0,0,.08);
    --shadow-xl:0 30px 60px rgba(0,0,0,.10);

    /* Animation */

    --transition:.35s ease;

}



/*==================================================
    RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--charcoal);
    background:var(--cream);
    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;

}

a{

    color:inherit;
    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;
    outline:none;

}



/*==================================================
    GLOBAL
==================================================*/

section{

    padding:100px 0;

}

.container{

    max-width:var(--container);

}

::selection{

    background:var(--yellow);
    color:var(--charcoal);

}



/*==================================================
    TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Playfair Display',serif;
    color:var(--charcoal);
    line-height:1.2;

}

h1{

    font-size:4rem;
    font-weight:700;

}

h2{

    font-size:3rem;
    font-weight:700;

}

p{

    color:var(--gray);
    line-height:1.8;

}



/*==================================================
    SECTION COMPONENTS
==================================================*/

.section-tag{

    display:inline-block;

    margin: bottom 14px;

    color:var(--pink);

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

}

.section-title{

    position:relative;

    max-width:850px;

    margin:0 auto 30px;
    margin: bottom 14px;
    padding-bottom:28px;

    text-align:center;

    font-size:3rem;

    line-height:1.15;

}

.section-title::after{

    content:"✦";

    position:absolute;

    left:50%;

    bottom:-12px;

    transform:translateX(-50%);

    color:var(--pink);

    font-size:1rem;
     opacity:.9;
}

.section-subtitle{

    max-width:760px;

     margin-top:0;

    margin-bottom:60px;
    text-align:center; 

    color:var(--gray);

    line-height:1.8;

}



/*==================================================
    COMMON COMPONENTS
==================================================*/

.card{

    background:var(--white);

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

.image-rounded{

    width:100%;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}



/*==================================================
    PREMIUM BUTTONS
==================================================*/

.instagram-btn,
.hero-primary,
.footer-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--yellow);
    color:var(--charcoal);

    border:2px solid transparent;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        color .35s ease;

    will-change:transform;

}
.final-cta-btn{

    background:#E1306C;
    color:#fff;

}
.hero-secondary{

    background:#FFFDF8;
     border-radius:999px;
    border:2px solid var(--charcoal);

    color:var(--charcoal);

}


.instagram-btn:hover,
.hero-primary:hover,
.footer-btn:hover{

    background:#FFD84A;      /* slightly brighter */

    color:var(--charcoal);

    transform:translateY(-4px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(244,197,66,.35);

}
.final-cta-btn:hover{

    background:#C9205C;

    color:#fff;

    box-shadow:
        0 18px 40px rgba(225,48,108,.35);

}
.hero-secondary:hover{

    background:var(--charcoal);

    color:#fff;

}

.instagram-btn:active,
.hero-primary:active,
.footer-btn:active,
.final-cta-btn:active{

    transform:translateY(-1px) scale(.98);

}

/* Premium shine */

.instagram-btn::before,
.hero-primary::before,
.footer-btn::before,
.final-cta-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:

    linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:left .7s ease;

}



.instagram-btn:hover::before,
.hero-primary:hover::before,
.footer-btn:hover::before,
.final-cta-btn:hover::before{

    left:150%;

}
.what-card:hover h3,
.bento-card:hover h3,
.menu-card:hover h3,
.feature-card:hover h3,
.cake-category-card:hover h3{

    color:var(--pink);

}

/*==================================================
    NAVBAR
==================================================*/

.navbar{

    padding:18px 0;
    transition:
        background .35s ease,
        padding .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}
.navbar.scrolled{

    padding:10px 0;

    background:rgba(255,250,248,.88);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.navbar .container{

    max-width:1140px;
    display:flex;

    align-items:center;
}


.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

}

.navbar-brand img{

    width:85px;

    height:85px;
     transition:
        width .35s ease,
        height .35s ease;
}
.navbar.scrolled .navbar-brand img{

    width:68px;

    height:68px;

}

.brand-text{

    font-family:'Playfair Display',serif;

    font-size:1.8rem;

    font-weight:700;

    white-space:nowrap;

    color:var(--charcoal);
       transition:font-size .35s ease;
}
.navbar.scrolled .brand-text{

    font-size:1.55rem;

}

.navbar-nav{

    gap:20px;

}

.nav-link{

    font-weight:500;

    color:var(--charcoal);
    position:relative;
    transition:color .3s ease;

}
.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--yellow);

    transition:width .3s ease;
}

.nav-link:hover::after{
    width:100%;
}

.nav-link.active{
    color:var(--yellow);
    font-weight:600;
    
}

.nav-link.active::after{
    width:100%;
}

.nav-link:hover{

    color:var(--yellow);

}



/*==================================================
    HERO
==================================================*/

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    padding-top:80px;

}

.tagline{

    margin-bottom:12px;

    color:var(--pink);

    font-weight:600;

}

.hero-tag{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 16px;

    background:rgba(244,197,66,.20);

    border-radius:var(--radius-pill);

    font-size:.9rem;

}

.hero h1{

    max-width:650px;

}

.hero p{

    max-width:650px;

    margin-bottom:30px;

    font-size:1.1rem;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.trust-line{

    margin-top:20px;

    font-size:.95rem;

    color:#374151;

}

.hero-image{

    width:100%;

    max-width:600px;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-xl);

}
/*==================================================
    HOMEPAGE
    Part A.2

    Contents
    ------------------------
    9. Celebration
    10. What We Bake
    11. Featured Bento Collection
    12. About
    13. Theme Cakes
==================================================*/



/*==================================================
    CELEBRATION
==================================================*/

.occasion-card{

    background:var(--white);

    padding:28px;

    border-radius:var(--radius-md);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.occasion-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.occasion-card h3{

    margin-bottom:14px;

    font-size:1.45rem;

}

.occasion-card p{

    margin:0;

}



/*==================================================
    WHAT WE BAKE
==================================================*/

.what-card{

    background:var(--white);

    overflow:hidden;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.what-card:hover{

    transform:translateY(-8px);
     border: 1px solid rgba(243,165,183,.35);
    box-shadow:var(--shadow-md);

}

.card-image{

    width:100%;

    height:280px;

    object-fit:cover;

    object-position:center;

}

.what-card-body{

    padding:26px;

}

.what-card h3{

    margin-bottom:15px;

    font-size:1.45rem;
      transition:

        color .35s ease;
}

.what-card p{

    margin:0;

}



/*==================================================
    FEATURED BENTO COLLECTION
==================================================*/

.bento-section{

    position:relative;

    overflow:hidden;

    padding:110px 0;

    background:linear-gradient(180deg,#FFFAF8 0%,#FFFFFF 100%);

}

.bento-section::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,181,181,.12);

}

.bento-section::after{

    content:"";

    position:absolute;

    bottom:-120px;

    left:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,223,186,.15);

}

.bento-card{

    position:relative;

    background:var(--white);

    overflow:hidden;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.bento-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.bento-image{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:.45s ease;

}

.bento-card:hover .bento-image{

    transform:scale(1.06);

}

.bento-content{

    padding:28px;

}

.bento-content h3{

    margin-bottom:15px;

    font-size:1.35rem;
      transition:

        color .35s ease;
}

.bento-content p{

    margin:0;

}

.bento-badge{

    position:absolute;

    top:16px;

    left:16px;

    padding:8px 14px;

    background:var(--white);

    color:var(--primary-color);

    border-radius:var(--radius-pill);

    font-size:.8rem;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}



/*==================================================
    ABOUT
==================================================*/

.about-image{

    width:100%;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}

.about-tag{

    display:inline-block;

    margin-bottom:10px;

    color:var(--pink);

    font-weight:600;

}

.about-title{

    margin-bottom:20px;

    font-size:3rem;

}

.about-text{

    margin-bottom:18px;

    line-height:1.9;

}



/*==================================================
    THEME CAKES
==================================================*/

.theme-cakes{

    background:transparent;

}

.theme-tag{

    display:inline-block;

    margin-bottom:10px;

    color:var(--pink);

    font-weight:600;

}

.theme-title{

    margin-bottom:20px;

    font-size:3rem;

}

.theme-text{

    margin-bottom:18px;

    line-height:1.9;

}

.theme-cakes img{

    width:100%;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .bento-section{

        padding:80px 0;

    }

    .bento-content{

        padding:22px;

    }

    .bento-content h3{

        font-size:1.2rem;

    }

}

@media(max-width:768px){

    .occasion-card{

        padding:24px;

    }

    .card-image{

        height:240px;

    }

    .about-title,
    .theme-title{

        font-size:2.3rem;

    }

     #backToTop{

        width:48px;
        height:48px;

        right:18px;
        bottom:18px;

        font-size:1rem;

    }
}
/*==================================================
    HOMEPAGE
    Part A.3

    Contents
    ------------------------
    14. Instagram Gallery
    15. Order Process
    16. Footer
    17. Menu Hero
    18. Menu Navigation
    19. Menu Category Cards
==================================================*/



/*==================================================
    INSTAGRAM GALLERY
==================================================*/

.instagram-tag{

    display:inline-block;

    margin-bottom:10px;

    color:var(--pink);

    font-weight:600;

}

.instagram-title{

    margin-bottom:20px;

    font-size:3rem;

}

.instagram-subtitle{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

}

.insta-card{

    overflow:hidden;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.insta-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.insta-image{

    width:100%;

    height:320px;

    object-fit:cover;

    object-position:center;

    transition:.45s ease;
    transition:

        transform .5s ease,

        filter .5s ease,

        box-shadow .5s ease;
}

.insta-card:hover .insta-image{

    transform:scale(1.05);
    
}
.insta-image:hover{

    transform:

        translateY(-8px)

        scale(1.02);

    filter:brightness(1.05);

    box-shadow:

        0 25px 60px rgba(0,0,0,.12);

}


/*==================================================
    ORDER PROCESS
==================================================*/

.order-tag{

    display:inline-block;

    margin-bottom:10px;

    color:var(--pink);

    font-weight:600;

}

.order-title{

    margin-bottom:20px;

    font-size:3rem;

}

.order-subtitle{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

}

.order-card{

    background:var(--white);

    padding:40px 30px;

    text-align:center;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.order-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.step-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:60px;

    height:60px;

    margin:0 auto 22px;

    border-radius:50%;

    background:var(--yellow);

    color:var(--charcoal);

    font-size:1.2rem;

    font-weight:700;

}

.order-card h3{

    margin-bottom:15px;

    font-size:1.35rem;

}

.order-card p{

    margin:0;

}



/*==================================================
    FOOTER
==================================================*/

.footer{

    padding:35px 0 15px;

    background:#1F2937;

    color:var(--white);

    border-top:4px solid var(--yellow);

}

.footer-content{

    text-align:center;

}

.footer-logo{

    width:80px;

    border-radius:var(--radius-sm);

    margin:0 auto 15px;

}

.footer-brand{

    color:var(--white);

    font-size:1.8rem;

}

.footer-tagline{

    color:var(--yellow);

    margin-bottom:15px;

}

.footer-note{

    max-width:650px;

    margin:0 auto;

    color:#D1D5DB;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:24px;

    margin:30px 0;

}

.footer-links a{

    color:#D1D5DB;

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--yellow);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.10);

}

.footer-location,
.footer-copyright{

    color:#D1D5DB;

    font-size:.9rem;

}



/*==================================================
    MENU HERO
==================================================*/

.menu-hero{

    padding:120px 0 80px;

    text-align:center;

}

.menu-tag{

    display:inline-block;

    margin-bottom:15px;

    color:var(--pink);

    font-weight:600;

}

.menu-hero h1{

    margin-bottom:20px;

    font-size:4rem;

}

.menu-hero p{

    max-width:700px;

    margin:auto;
    box-shadow:

0 15px 35px rgba(0,0,0,.05),

0 35px 70px rgba(0,0,0,.08);
}



/*==================================================
    MENU NAVIGATION
==================================================*/

.menu-navigation{

    padding-bottom:60px;

}

.menu-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.menu-links a{

    padding:12px 22px;

    background:var(--white);

    border:1px solid rgba(0,0,0,.08);

    border-radius:var(--radius-pill);

    color:var(--gray);

    font-weight:500;

    transition:var(--transition);

}

.menu-links a:hover{

    transform:translateY(-3px);

    color:var(--charcoal);

}



/*==================================================
    MENU CATEGORY CARDS
==================================================*/

.menu-category{

    padding:80px 0;

}

.section-heading{

    max-width:800px;

    margin:0 auto 50px;

    text-align:center;

}

.menu-section-tag{

    display:inline-block;

    margin-bottom:10px;

    color:var(--pink);

    font-weight:600;

}

.menu-card{

    background:var(--white);

    overflow:hidden;

    border:1px solid rgba(0,0,0,.06);

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.menu-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.menu-card-image{

    width:100%;

    height:260px;

    object-fit:cover;

    object-position:center;

}

.menu-card-content{

    padding:25px;

}

.menu-card h3{

    margin-bottom:15px;
    transition:

        color .35s ease;
}

.menu-card p{

    margin:0;

}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:768px){

    .instagram-title,
    .order-title{

        font-size:2.3rem;

    }

    .insta-image{

        height:260px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .menu-hero h1{

        font-size:2.5rem;

    }

    .menu-links a{

        padding:10px 16px;

        font-size:.9rem;

    }

}
/*==================================================
    MENU PAGE
    Part A.4

    Contents
    ------------------------
    20. Menu Showcase
    21. Category Variations
    22. Celebration CTA
    23. FAQ
    24. Final CTA
==================================================*/



/*==================================================
    MENU SHOWCASE
==================================================*/

.menu-showcase{

    padding:100px 0;

}

.menu-showcase-image{

    width:100%;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}

.menu-showcase-tag{

    display:inline-block;

    margin-bottom:12px;

    color:var(--pink);

    font-weight:600;

}

.menu-showcase-title{

    margin-bottom:20px;

    font-size:3rem;

}

.menu-showcase-text{

    margin-bottom:18px;

    line-height:1.9;

}

.flavor-box{

    margin-top:25px;

    padding:25px;

    background:var(--white);

    border:1px solid rgba(0,0,0,.06);

    border-radius:var(--radius-lg);

}

.flavor-box h3{

    margin-bottom:15px;

    font-size:1.2rem;

}

.flavor-list{

    padding-left:20px;

}

.flavor-list li{

    margin-bottom:8px;

    color:var(--gray);

}



/*==================================================
    CATEGORY COLOR VARIATIONS
==================================================*/

/* Premium Cakes */

#premium-cakes .menu-showcase-tag{

    color:#D4A017;

}

#premium-cakes .flavor-box{

    border-color:rgba(255,193,7,.35);

}


/* Brownies */

#brownies .menu-showcase-tag{

    color:#8B4513;

}
/* Bento */
.bento-features{
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.bento-features li{
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: .9rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-weight: 500;
}

.bento-features li::before{
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}


/* Cupcakes */

#cupcakes .menu-showcase-tag{

    color:#E67EAA;

}

#cupcakes .flavor-box{

    border-color:rgba(230,126,170,.25);

}


/* Tea Cakes */

#tea-cakes .menu-showcase-tag{

    color:#C48B5A;

}

#tea-cakes .flavor-box{

    border-color:rgba(196,139,90,.25);

}


/* Tea-Time Specials */

#tea-time .menu-showcase-tag{

    color:#2F855A;

}

#tea-time .flavor-box{

    border-color:rgba(47,133,90,.25);

}



/*==================================================
    CELEBRATION CTA
==================================================*/

.celebration-cta{

    padding:120px 0;

}

.celebration-image{

    width:100%;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:var(--shadow-lg);

}

.celebration-tag{

    display:inline-block;

    margin-bottom:15px;

    color:var(--pink);

    font-weight:600;

}

.celebration-title{

    margin-bottom:20px;

    font-size:3rem;

}

.celebration-text{

    margin-bottom:18px;

    line-height:1.9;

}

.occasion-list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:25px;

}

.occasion-list span{

    padding:10px 18px;

    background:var(--white);

    border:1px solid rgba(0,0,0,.06);

    border-radius:var(--radius-pill);

    font-size:.95rem;

}



/*==================================================
    FAQ
==================================================*/

.faq-section{

    padding:120px 0;

}

.faq-tag{

    display:inline-block;

    color:var(--pink);

    font-weight:600;

}

.faq-title{

    margin:15px 0;

    font-size:3rem;

}

.faq-subtitle{

    max-width:700px;

    margin:0 auto 50px;

    text-align:center;

}

.faq-section .accordion-item{

    margin-bottom:18px;

    border:none;

    border-radius:var(--radius-md);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.faq-section .accordion-button{

    padding:22px;

    background:var(--white);

    font-weight:600;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:#FFF8F6;

    color:var(--primary-color);

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    padding:22px;

    color:var(--gray);

    line-height:1.8;

}



/*==================================================
    FINAL CTA
==================================================*/

.final-cta{

    padding:120px 0;

}

.final-cta-box{

    padding:80px 50px;

    text-align:center;

    background:var(--white);

    border-radius:35px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.final-cta-tag{

    display:inline-block;

    margin-bottom:15px;

    color:var(--pink);

    font-weight:600;

}

.final-cta-title{

    margin-bottom:25px;

    font-size:3rem;

}

.final-cta-text{

    max-width:850px;

    margin:0 auto 20px;

    line-height:1.9;

}

.final-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:20px;

    padding:16px 40px;

    background:var(--primary-color);

    color:var(--white);

    border-radius:var(--radius-pill);

    font-weight:600;

    transition:var(--transition);

}

.final-cta-btn:hover{

    transform:translateY(-3px);

    filter:brightness(.95);

}

.final-cta-note{

    margin-top:25px;

    color:var(--gray);

    font-size:.95rem;

}



/*==================================================
    MENU RESPONSIVE
==================================================*/

@media(max-width:768px){

    .menu-showcase{

        padding:70px 0;

    }

    .menu-showcase-title{

        margin-top:15px;

        font-size:2.2rem;

        line-height:1.2;

    }

    .menu-showcase .col-lg-6:first-child{

        margin-bottom:20px;

    }

    .flavor-box{

        margin-top:20px;

    }

    .celebration-cta,
    .faq-section,
    .final-cta{

        padding:80px 0;

    }

    .celebration-title,
    .faq-title,
    .final-cta-title{

        font-size:2.2rem;

    }

    .final-cta-box{

        padding:50px 25px;

    }

}
/*==================================================
    CUSTOM CAKES PAGE
    Part B.1

    Contents
    ------------------------
    1. Hero
    2. SEO Intro
    3. Why Choose Us
    4. Common Category Sections
==================================================*/



/*==================================================
    CUSTOM HERO
==================================================*/

.custom-hero{

    padding:120px 0;

}

.custom-hero-tag{

    display:inline-block;

    margin-bottom:15px;

    color:var(--pink);

    font-weight:600;

}

.custom-hero-title{

    margin-bottom:25px;

    font-size:3.5rem;

    line-height:1.2;

}

.custom-hero-text{

    max-width:650px;

    margin-bottom:18px;

    line-height:1.9;

}

.custom-hero-image{

    width:100%;

    max-width:550px;

    border-radius:var(--radius-xl);

    object-fit:cover;

    box-shadow:

0 15px 35px rgba(0,0,0,.05),

0 35px 70px rgba(0,0,0,.08);

}



/*==================================================
    SEO INTRO
==================================================*/

.custom-cakes-intro{

    padding:20px 0 70px;

}

.intro-text{

    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:1.08rem;

    line-height:2;

}



/*==================================================
    WHY CUSTOM CAKES
==================================================*/

.why-custom-cakes{

    padding:120px 0;

}

.feature-card{

    background:var(--white);

    padding:40px 30px;

    text-align:center;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-icon{

    margin-bottom:20px;

    font-size:2.5rem;

}

.feature-card h3{

    margin-bottom:15px;

    font-size:1.35rem;
    transition:

        color .35s ease;
}

.feature-card p{

    margin:0;

}



/*==================================================
    COMMON CATEGORY SECTIONS
==================================================*/

/*
    Shared by:

    Birthday Cakes

    Kids Theme Cakes

    Engagement Cakes

    Graduation Cakes
*/

.birthday-cakes,
.kids-theme-cakes,
.engagement-cakes,
.graduation-cakes{

    padding:120px 0;

}



/*==================================================
    CATEGORY CARDS
==================================================*/

.cake-category-card{

    background:var(--white);

    overflow:hidden;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.cake-category-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.cake-category-image{

    width:100%;

    height:320px;

    object-fit:cover;

    object-position:center;

    display:block;

}

.cake-category-content{

    padding:26px;

}

.cake-category-card h3{

    margin-bottom:15px;
     transition:

        color .35s ease;
    font-size:1.35rem;

}

.cake-category-card p{

    margin:0;

}



/*==================================================
    SECTION BACKGROUND
==================================================*/

.alt-section{

    background:var(--white);

    border-radius:var(--radius-2xl);

}
/*==================================================
    CUSTOM CAKES PAGE
    Part B.2

    Contents
    ------------------------
    5. Cake Flavors
    6. Custom Bento
    7. Gallery
    8. Order Process
==================================================*/



/*==================================================
    CAKE FLAVORS
==================================================*/

.cake-flavors{

    padding:120px 0;

}

.flavor-card{

    background:var(--white);

    padding:35px 25px;

    text-align:center;

    border-radius:var(--radius-md);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.flavor-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.flavor-card h3{

    margin:0;

    font-size:1.15rem;

}



/*==================================================
    CUSTOM BENTO
==================================================*/

.custom-bento-section{

    position:relative;

    padding:110px 0;

    background:linear-gradient(180deg,#FFF8F4 0%,#FFFFFF 100%);

}

.custom-bento-card{

    background:var(--white);

    padding:40px 30px;

    text-align:center;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.custom-bento-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.custom-bento-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:72px;

    height:72px;

    margin:0 auto 24px;

    border-radius:50%;

    background:linear-gradient(135deg,#FFB7B7,#FFD9C5);

    color:var(--white);

    font-size:1.45rem;

    font-weight:700;
    transition:

        transform .4s ease;
}

.custom-bento-card h3{

    margin-bottom:18px;

    font-size:1.35rem;

}

.custom-bento-card p{

    margin:0;

}

.custom-bento-occasions{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:14px;

    margin:35px 0 55px;

}

.custom-bento-occasions span{

    padding:10px 18px;

    background:var(--white);

    border:1px solid rgba(0,0,0,.08);

    border-radius:var(--radius-pill);

    color:var(--gray);

    font-size:.92rem;

    font-weight:500;

    transition:var(--transition);

}

.custom-bento-occasions span:hover{

    background:var(--primary-color);

    border-color:var(--primary-color);

    color:var(--white);

}



/*==================================================
    GALLERY
==================================================*/

.custom-gallery{

    padding:120px 0;

}

.gallery-item{

    overflow:hidden;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
    background:#fff;
}

.gallery-item:hover{

    box-shadow:var(--shadow-md);
    transform:translateY(-6px);
}

.gallery-image{

    display:block;

    width:100%;

    aspect-ratio:1 / 1;

    object-fit:cover;

    object-position:center;

    transition:.45s ease;

}

.gallery-item:hover .gallery-image{

    transform:scale(1.05);

}

.gallery-note{

    max-width:700px;

    margin:auto;

    text-align:center;

}
.gallery-description{

margin:18px 0;

line-height:1.8;

color:#666;

font-size:.95rem;

}

.gallery-features{

display:flex;

flex-direction:column;

gap:8px;

margin-bottom:20px;

}

.gallery-features span{

font-size:.9rem;

color:#555;

}


/*==================================================
    ORDER PROCESS
==================================================*/

.custom-order-process{

    padding:120px 0;

}

.process-card{

    background:var(--white);

    padding:40px 30px;

    text-align:center;

    border-radius:var(--radius-lg);

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.process-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:60px;

    height:60px;

    margin:0 auto 22px;

    border-radius:50%;

    background:#F8D7DA;

    color:var(--charcoal);

    font-size:1.35rem;

    font-weight:700;
    box-shadow:

        0 10px 25px rgba(243,165,183,.30);
}

.process-card h3{

    margin-bottom:15px;

}

.process-card p{

    margin:0;

}
/*==================================================
    CUSTOM CAKES PAGE
    Part B.3

    Contents
    ------------------------
    9. FAQ
    10. Final CTA
    11. Service Area
    12. Responsive
==================================================*/



/*==================================================
    FAQ
==================================================*/

.cake-faq{

    padding:100px 0;

    background:var(--white);

}

.cake-faq .accordion-item{

    margin-bottom:18px;

    overflow:hidden;

    border:none;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

}

.cake-faq .accordion-button{

    padding:24px 30px;

    background:var(--white);

    font-size:1.05rem;

    font-weight:600;

    box-shadow:none;

}

.cake-faq .accordion-button:not(.collapsed){

    background:#FFF8F6;

    color:var(--primary-color);

}

.cake-faq .accordion-button:focus{

    box-shadow:none;

}

.cake-faq .accordion-body{

    padding:0 30px 28px;

    color:var(--gray);

    line-height:1.8;

}



/*==================================================
    FINAL CTA
==================================================*/

.final-cake-cta{

    padding:120px 0;

}

.cta-box{

    padding:70px 40px;

    text-align:center;

    background:var(--white);

    border-radius:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.cta-box h2{

    margin:20px 0;

    font-size:2.8rem;

}

.cta-box p{

    max-width:720px;

    margin:auto;

    line-height:1.9;

}

.cta-note{

    margin-top:24px;

    color:var(--gray);

}



/*==================================================
    SERVICE AREA
==================================================*/

.service-area{

    padding:120px 0;

}

.service-area .container{

    max-width:900px;

    text-align:center;

}

.service-area h2{

    margin-bottom:22px;

}

.service-area p{

    max-width:850px;

    margin:auto;

    font-size:1.05rem;

    line-height:2;

}



/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:991px){

    .navbar-brand img{

        width:60px;

        height:60px;

    }

    .brand-text{

        font-size:1.2rem;

    }

    .navbar-collapse{

        margin-top:20px;

        padding:20px;

        background:var(--cream);

        border-radius:var(--radius-md);

        text-align:center;
        transition:
        opacity .3s ease,
        transform .3s ease;
    }
    .navbar-collapse.collapsing{

    opacity:0;
    transform:translateY(-10px);

}

.navbar-collapse.show{

    opacity:1;
    transform:translateY(0);

}

    .navbar-nav .nav-item{

        margin:8px 0;

    }

    .instagram-btn{

        width:100%;

        margin-top:15px;

    }

    .hero{

        padding-top:60px;

    }

    .bento-section,

    .custom-bento-section,

    .birthday-cakes,

    .kids-theme-cakes,

    .engagement-cakes,

    .graduation-cakes,

    .cake-flavors,

    .custom-gallery,

    .custom-order-process,

    .cake-faq,

    .service-area,

    .why-custom-cakes,

    .celebration-cta,

    .faq-section,

    .final-cta,

    .final-cake-cta{

        padding:80px 0;

    }

    .cake-category-image{

        height:260px;

    }

}



@media (max-width:768px){

    section{

        padding:60px 0;

    }

    h1{

        font-size:2.4rem;

    }

    h2,

    .section-title,

    .about-title,

    .theme-title,

    .instagram-title,

    .order-title,

    .faq-title,

    .celebration-title,

    .menu-showcase-title,

    .custom-hero-title,

    .cta-box h2{

        font-size:2.2rem;

    }

    .hero{

        min-height:auto;

        text-align:center;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons a{

        width:100%;

    }

    .hero-image{

        margin-top:40px;

    }

    .card-image,

    .menu-card-image{

        height:220px;

    }

   .cake-category-image{

        width:100%;
        height:auto;

        aspect-ratio:4/5;

        object-fit:cover;
        object-position:center;

    }



    .insta-image{

        height:240px;

    }

    .gallery-image{

        aspect-ratio:1/1;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .menu-showcase .col-lg-6:first-child{

        margin-bottom:25px;

    }

    .cta-box,

    .final-cta-box{

        padding:50px 25px;

    }
    .section-divider{
        margin:60px auto;
    }

}



@media (max-width:576px){

    .section-title{

        font-size:2rem;

    }

    .brand-text{

        font-size:1rem;

    }

    .trust-line{

        line-height:1.8;

    }

    .menu-links{

        gap:10px;

    }

    .menu-links a{

        width:100%;

        text-align:center;

    }

    .custom-bento-occasions{

        gap:10px;

    }

    .custom-bento-occasions span{

        font-size:.85rem;

        padding:8px 14px;

    }

}
/*==================================================
    polishing
==================================================*/
.section-divider{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    width:100%;

    margin:70px auto;

}

.divider-line{

    width:90px;
    height:1px;

    background:rgba(0,0,0,.15);

    display:block;

}

.divider-icon{

    color:var(--pink);

    font-size:1rem;

    line-height:1;

    animation:dividerFloat 3s ease-in-out infinite;

}

@keyframes dividerFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-3px);
    }

}
/*==================================================
    SCROLL REVEAL
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

    will-change:opacity,transform;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}
/*==========================================
    BACK TO TOP
==========================================*/

#backToTop{

    position:fixed;

    right:28px;
    bottom:28px;

    width:56px;
    height:56px;

    border:none;
    border-radius:50%;

    background:#F3A5B7;

    color:#fff;

    font-size:1.15rem;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 15px 35px rgba(243,165,183,.35);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;

    z-index:999;

}

#backToTop.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

#backToTop:hover{

    background:#EB8FA7;

    transform:
        translateY(-4px)
        scale(1.05);

    box-shadow:
        0 20px 45px rgba(243,165,183,.45);

}

#backToTop:active{

    transform:scale(.96);

}
/* ==========================================
   GALLERY HERO
========================================== */

.gallery-hero{
    position:relative;
    overflow:hidden;
    padding:140px 0;
    background:
        radial-gradient(circle at top right,
        rgba(243,165,183,.16),transparent 38%),
        linear-gradient(180deg,#fffdfc 0%,#fff8f5 100%);
}

.gallery-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:#fff;
    color:var(--primary-color);
    font-size:.9rem;
    font-weight:600;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    margin-bottom:22px;
}

.gallery-title{
    font-size:clamp(3rem,6vw,4.8rem);
    line-height:1.05;
    color:var(--charcoal);
    margin-bottom:24px;
    letter-spacing:-1px;
}

.gallery-title span{
    color:var(--primary-color);
}

.gallery-text{
    max-width:620px;
    color:#6B7280;
    font-size:1.08rem;
    line-height:2;
    margin-bottom:38px;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    align-items:center;

}
/* ==========================================
   PRIMARY BUTTON
========================================== */

.btn-primary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 34px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        #F3A5B7
    );

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:50px;

    box-shadow:
        0 18px 40px rgba(225,48,108,.25);

    transition:all .35s ease;

}

.btn-primary-custom:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:
        0 25px 50px rgba(225,48,108,.35);

}
/* ==========================================
   SECONDARY BUTTON
========================================== */

.btn-secondary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:16px 34px;

    background:#fff;

    color:var(--charcoal);

    text-decoration:none;

    font-weight:600;

    border-radius:50px;

    border:1px solid rgba(0,0,0,.08);

    transition:all .35s ease;

}

.btn-secondary-custom:hover{

    background:#fff4f7;

    color:var(--primary-color);

    border-color:rgba(225,48,108,.18);

    transform:translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

}

.gallery-hero-image{
    width:100%;
    max-width:620px;
    border-radius:24px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,.10);
    transition:.5s ease;
    filter: brightness(1.06);
}

.gallery-hero-image:hover{
    transform:translateY(-10px) scale(1.02);
}
/* ==========================================
   TRENDING THEMES
========================================== */

.gallery-search{
    padding:120px 0;
    background:#ffffff;
}

.search-tags{
    margin-top:45px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
}

.search-tags a{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 24px;

    border-radius:999px;

    background:#fff8f8;

    border:1px solid rgba(225,48,108,.08);

    color:#555;

    text-decoration:none;

    font-weight:500;

    transition:.35s ease;

}

.search-tags a:hover{

    background:var(--primary-color);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(225,48,108,.20);

}
/* ==========================================
   SECTION HEADINGS
========================================== */

.section-tag{

    display:inline-block;

    color:var(--primary-color);

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}

.section-title{

    font-size:clamp(2.2rem,5vw,3.4rem);

    color:var(--charcoal);

    margin-bottom:18px;

}

.section-subtitle{

    max-width:680px;

    margin:auto;

    color:#6B7280;

    line-height:1.9;

    font-size:1.03rem;

}
/* ==========================================
   COLLECTIONS
========================================== */

.gallery-collections{

    padding:130px 0;

    background:#fffaf8;

}

/* ==========================================
   COLLECTION CARD
========================================== */

.collection-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    padding:42px 34px;

    text-decoration:none;

    color:inherit;

    overflow:hidden;

    border-radius:24px;

    background:#ffffff;


    border:1px solid rgba(255,255,255,.6);

    box-shadow:
        0 18px 45px rgba(0,0,0,.05);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}
.collection-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        #F3A5B7
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s ease;

}
.collection-card::after{

content:"Explore →";

margin-top:auto;

padding-top:30px;

font-weight:600;

color:var(--primary-color);

font-size:.95rem;

opacity:.65;

transition:.35s ease;

}

.collection-card:hover{

    transform:translateY(-12px);

    border-color:rgba(225,48,108,.15);

    box-shadow:

        0 30px 70px rgba(225,48,108,.12),

        0 12px 35px rgba(0,0,0,.06);

}

.collection-card:hover::before{

    transform:scaleX(1);

}
.collection-card:hover::after{

opacity:1;

transform:translateX(8px);

}

.collection-icon{

width:68px;

height:68px;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

background:linear-gradient(
135deg,
#FFF7F9,
#FFF1F4
);

color:var(--primary-color);

font-size:2rem;

margin-bottom:28px;

transition:.4s ease;

}

.collection-card h3{

font-size:1.35rem;

font-weight:700;

margin-bottom:16px;

transition:.35s ease;

}

.collection-card:hover h3{

color:var(--primary-color);

}

.collection-card p{

margin:0;

line-height:1.8;

color:#6B7280;

}
/* ==========================================
   MICRO INTERACTIONS
========================================== */

.collection-card:hover .collection-icon{

transform:

translateY(-3px)

rotate(-8deg)

scale(1.08);

}
/* ==========================================
   FEATURED CREATION
========================================== */

.featured-masterpiece{

    padding:120px 0;
    background:#fffaf8;

}

.masterpiece-card{

    background:#fff;
    border-radius:32px;
    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

    transition:.4s ease;

}

.masterpiece-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.12);

}

.masterpiece-image{

    width:100%;
    height:100%;
    min-height:600px;
    display:block;
    margin:auto;
    object-fit:cover;

    transition:.45s ease;

}

.masterpiece-card:hover .masterpiece-image{

    transform:scale(1.03);

}

.masterpiece-content{

    padding:80px;

}

.gallery-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    background:#FFF4F7;

    color:var(--primary-color);

    border-radius:999px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:25px;

}

.masterpiece-content h2{

    font-size:3.2rem;

    margin-bottom:22px;

    line-height:1.15;

}

.masterpiece-content p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}
.masterpiece-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.masterpiece-highlights div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

    color:#444;

}

.masterpiece-highlights i{

    color:var(--primary-color);

    font-size:1.1rem;

}
.masterpiece-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}
/* ==========================================
   CURATED COLLECTIONS
========================================== */

.editorial-collections{

    padding:120px 0;

    background:#ffffff;

}

.collection-showcase{

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    margin-bottom:60px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 22px 55px rgba(0,0,0,.07);

    transition:.4s ease;

}

.collection-showcase:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(0,0,0,.10);

}

.collection-showcase:last-child{

    margin-bottom:0;

}

/* ==========================================
   IMAGE
========================================== */

.showcase-image{

    width:100%;

    height:100%;

    min-height:500px;

    object-fit:cover;

    transition:.45s ease;

}

.collection-showcase:hover .showcase-image{

    transform:scale(1.03);

}

/* ==========================================
   CONTENT
========================================== */

.collection-showcase .col-lg-7{

    padding:70px;

}

.collection-showcase h3{

    font-size:2.3rem;

    margin:18px 0 22px;

    line-height:1.2;

}

.collection-showcase p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}

/* ==========================================
   BADGE
========================================== */

.gallery-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    background:#FFF4F7;

    color:var(--primary-color);

    border-radius:999px;

    font-size:.9rem;

    font-weight:600;

}

/* ==========================================
   PREVIEW GRID
========================================== */

.cake-preview-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}

.cake-preview-grid a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 18px;

    background:#FFF9FA;

    border:1px solid rgba(225,48,108,.08);

    border-radius:14px;

    color:#555;

    font-weight:500;

    transition:.35s ease;

}

.cake-preview-grid a:hover{

    background:var(--primary-color);

    color:#fff;

    transform:translateY(-3px);

    border-color:var(--primary-color);

    box-shadow:0 12px 28px rgba(225,48,108,.22);

}
/* ==========================================
   INSPIRATION STORY
========================================== */

.inspiration-story{
    padding:120px 0;
    background:#ffffff;
}

.story-image{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    transition:.4s ease;
}

.story-image:hover{
    transform:translateY(-8px);
}

.story-content{
    padding-left:35px;
}

.story-tag{
    display:inline-block;
    padding:10px 18px;
    background:#FFF4F7;
    color:var(--primary-color);
    border-radius:999px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
}

.story-content h2{
    font-size:2.9rem;
    line-height:1.15;
    margin-bottom:24px;
}

.story-content p{
    color:#666;
    line-height:2;
    margin-bottom:20px;
}

.story-features{
    margin:35px 0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.story-features div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    color:#444;
}

.story-features i{
    color:var(--primary-color);
}
/* ==================================================
   MINECRAFT PAGE
   BREADCRUMB
================================================== */

.cake-breadcrumb{
    background:#FAF7F2;
    padding:28px 0 10px;
}

.cake-breadcrumb .breadcrumb{
    margin:0;
    padding:0;
    background:transparent;
}

.cake-breadcrumb .breadcrumb-item{
    font-size:.95rem;
    font-weight:500;
    color:#8c8175;
}

.cake-breadcrumb .breadcrumb-item a{
    color:#8C6A43;
    text-decoration:none;
    transition:.3s;
}

.cake-breadcrumb .breadcrumb-item a:hover{
    color:#5d4325;
}

.cake-breadcrumb .breadcrumb-item.active{
    color:#4d433a;
    font-weight:600;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#bca27d;
}


/* ==================================================
   HERO
================================================== */

.cake-hero{
    background:#FAF7F2;
    padding:40px 0 100px;
    position:relative;
    overflow:hidden;
}

.cake-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(212,185,150,.12);
    top:-170px;
    right:-150px;
    filter:blur(90px);
}

.cake-hero::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(233,219,195,.22);
    left:-120px;
    bottom:-120px;
    filter:blur(80px);
}

.cake-hero .container{
    position:relative;
    z-index:2;
}


/* Heading */

.cake-title{
    font-family:"Playfair Display",serif;
    font-size:3.8rem;
    line-height:1.15;
    color:#2b2723;
    margin:22px 0 28px;
}

.cake-title span{
    color:#8C6A43;
}


/* Description */

.cake-description{
    font-size:1.08rem;
    line-height:1.95;
    color:#5f554b;
    margin-bottom:38px;
    max-width:620px;
}


/* Highlights */

.cake-highlights{
    display:grid;
    grid-template-columns:repeat(2,minmax(220px,1fr));
    gap:18px;
    margin-bottom:40px;
}

.cake-highlights div{
    display:flex;
    align-items:center;
    gap:12px;

    background:#ffffff;

    padding:16px 18px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    font-weight:500;

    color:#443d36;

    transition:.35s;
}

.cake-highlights div:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.cake-highlights i{
    color:#8C6A43;
    font-size:1.1rem;
}


/* Hero Image */

.cake-hero-image{
    width:100%;
    border-radius:30px;
    box-shadow:0 28px 70px rgba(0,0,0,.12);
    transition:.45s;
}

.cake-hero-image:hover{
    transform:translateY(-8px);
}


/* Responsive */

@media (max-width:991px){

.cake-hero{
    padding:30px 0 70px;
    text-align:center;
}

.cake-title{
    font-size:2.7rem;
}

.cake-description{
    margin-left:auto;
    margin-right:auto;
}

.cake-highlights{
    grid-template-columns:1fr;
}

}
/* ==================================================
   CAKE STORY
================================================== */

.cake-story{
    padding:100px 0;
    background:#FAF7F2;
    overflow:hidden;
}

/* ---------- IMAGE ---------- */

.story-image-card{
    position:relative;
}

.story-image{
    width:100%;
    display:block;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.45s ease;
}

.story-image:hover{
    transform:translateY(-8px);
}

/* Floating Card */

.story-floating-card{
    position:absolute;
    left:25px;
    bottom:25px;

    display:flex;
    align-items:center;
    gap:15px;

    background:#ffffff;

    padding:18px 22px;

    border-radius:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.story-floating-card i{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F8EFE2;
    color:#8C6A43;

    font-size:1.25rem;
}

.story-floating-card strong{
    display:block;
    color:#2f2924;
    font-size:1rem;
}

.story-floating-card span{
    display:block;
    font-size:.88rem;
    color:#7b7168;
}

/* ---------- CONTENT ---------- */

.story-title{
    font-family:"Playfair Display",serif;
    font-size:2.8rem;
    line-height:1.2;
    color:#2d2824;

    margin:20px 0 30px;
}

.story-title span{
    color:#8C6A43;
}

.story-text{
    font-size:1.05rem;
    line-height:1.95;
    color:#5d544c;
    margin-bottom:22px;
}

/* ---------- FEATURES ---------- */

.story-features{
    display:grid;
    gap:18px;
    margin:40px 0;
}

.story-feature-card{
    display:flex;
    align-items:flex-start;
    gap:18px;

    background:#ffffff;

    padding:22px 24px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s ease;
}

.story-feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(0,0,0,.08);
}

.story-feature-card i{
    width:58px;
    height:58px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F8EFE2;
    color:#8C6A43;

    font-size:1.35rem;
}

.story-feature-card h4{
    font-family:"Playfair Display",serif;
    font-size:1.3rem;
    margin-bottom:8px;
    color:#2c2723;
}

.story-feature-card p{
    margin:0;
    color:#6b6158;
    line-height:1.7;
    font-size:.96rem;
}

/* ---------- TRUST ---------- */

.story-trust{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#F8EFE2;

    color:#6d5434;

    padding:16px 24px;

    border-radius:40px;

    margin-bottom:40px;

    font-weight:500;
}

.story-trust i{
    color:#8C6A43;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:991px){

.cake-story{
    padding:80px 0;
}

.story-title{
    font-size:2.2rem;
}

.story-floating-card{
    position:static;
    margin-top:20px;
}

.story-trust{
    justify-content:center;
    width:100%;
}

}

@media (max-width:576px){

.story-feature-card{
    flex-direction:column;
    text-align:center;
}

.story-feature-card i{
    margin:auto;
}

.story-title{
    font-size:1.9rem;
}

}
/* ==================================================
   SIGNATURE FEATURES
================================================== */

.signature-features{
    padding:100px 0;
    background:#FAF7F2;
}

/* ---------- FEATURE CARD ---------- */

.feature-box{
    background:#ffffff;
    padding:45px 30px;
    border-radius:28px;
    text-align:center;
    height:100%;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 55px rgba(0,0,0,.09);
}

/* ---------- ICON ---------- */

.feature-icon{
    width:85px;
    height:85px;

    margin:0 auto 28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F8EFE2;

    transition:.35s ease;
}

.feature-box:hover .feature-icon{
    transform:scale(1.08);
    background:#F3E3CC;
}

.feature-icon i{
    font-size:2rem;
    color:#8C6A43;
}

/* ---------- TITLE ---------- */

.feature-box h3{
    font-family:"Playfair Display",serif;
    font-size:1.45rem;
    color:#2E2925;
    margin-bottom:18px;
    line-height:1.35;
}

/* ---------- TEXT ---------- */

.feature-box p{
    margin:0;
    color:#665C53;
    font-size:.98rem;
    line-height:1.85;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:991px){

.signature-features{
    padding:80px 0;
}

.feature-box{
    padding:38px 24px;
}

}

@media (max-width:576px){

.feature-box{
    padding:35px 22px;
}

.feature-icon{
    width:72px;
    height:72px;
}

.feature-icon i{
    font-size:1.7rem;
}

.feature-box h3{
    font-size:1.3rem;
}

}
/* ==================================================
   MINECRAFT GALLERY
================================================== */

.cake-gallery{
    padding:100px 0;
    background:#FAF7F2;
}

/* ---------- CARD ---------- */

.gallery-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    margin:0;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.09);
}

/* ---------- IMAGE ---------- */

.gallery-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;

    transition:.45s ease;
}

.gallery-card:hover img{
    transform:scale(1.06);
}

/* ---------- CAPTION ---------- */

.gallery-card figcaption{
    padding:22px 20px;

    font-family:"Playfair Display",serif;
    font-size:1.2rem;
    color:#2E2925;
    text-align:center;
    line-height:1.4;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:991px){

.cake-gallery{
    padding:80px 0;
}

}

@media (max-width:576px){

.gallery-card{
    border-radius:22px;
}

.gallery-card figcaption{
    padding:18px;
    font-size:1.05rem;
}

}
/* ==================================================
   CAKE CUSTOMIZATION
================================================== */

.cake-customization{
    padding:100px 0;
    background:#FAF7F2;
}

/* ---------- CUSTOM CARDS ---------- */

.custom-card{
    background:#ffffff;
    border-radius:28px;
    padding:40px;

    height:100%;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.custom-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.09);
}

.custom-card h3{
    font-family:"Playfair Display",serif;
    font-size:1.7rem;
    color:#2E2925;

    margin-bottom:28px;
}

/* ---------- LIST ---------- */

.custom-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.custom-card li{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 0;

    border-bottom:1px solid #EFE6D8;

    color:#665C53;
    font-size:1rem;
}

.custom-card li:last-child{
    border-bottom:none;
}

.custom-card li::before{
    content:"✓";

    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F6EEE3;

    color:#8C6A43;
    font-weight:700;
    flex-shrink:0;
}

/* ---------- FLAVOURS ---------- */

.cake-customization h3{
    font-family:"Playfair Display",serif;
    color:#2E2925;
    margin-bottom:18px;
}

.cake-customization p{
    color:#665C53;
    line-height:1.9;
}

.flavour-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:30px;
}

.flavour-tags span{
    background:#ffffff;

    padding:12px 22px;

    border-radius:999px;

    color:#8C6A43;

    font-weight:500;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    transition:.3s ease;
}

.flavour-tags span:hover{
    background:#8C6A43;
    color:#fff;
    transform:translateY(-3px);
}

/* ---------- NOTE ---------- */

.custom-note{
    background:#ffffff;

    padding:40px;

    border-radius:28px;

    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.custom-note h4{
    font-family:"Playfair Display",serif;
    font-size:1.6rem;

    color:#2E2925;

    margin-bottom:20px;
}

.custom-note p{
    margin-bottom:30px;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:991px){

.cake-customization{
    padding:80px 0;
}

.custom-card,
.custom-note{
    padding:32px;
}

}

@media(max-width:576px){

.custom-card,
.custom-note{
    padding:26px;
    border-radius:22px;
}

.custom-card h3,
.custom-note h4{
    font-size:1.45rem;
}

.flavour-tags{
    gap:10px;
}

.flavour-tags span{
    padding:10px 18px;
    font-size:.9rem;
}

}
/* ==================================================
   CAKE SIZE GUIDE
================================================== */

.cake-size-guide{
    padding:100px 0;
    background:#FAF7F2;
}

/* ---------- SIZE CARD ---------- */

.size-card{
    position:relative;

    background:#ffffff;

    border-radius:28px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.size-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.09);
}

/* ---------- POPULAR CARD ---------- */

.featured-size{
    border:2px solid #C8A97E;
}

.popular-badge{
    position:absolute;

    top:-14px;
    left:50%;

    transform:translateX(-50%);

    background:#8C6A43;

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:.82rem;
    font-weight:600;

    letter-spacing:.5px;
}

/* ---------- CONTENT ---------- */

.size-card h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    font-size:1.7rem;

    margin-bottom:16px;
}

.serves{
    display:inline-block;

    background:#F6EEE3;

    color:#8C6A43;

    padding:8px 18px;

    border-radius:999px;

    font-weight:600;

    margin-bottom:22px;
}

.size-card p{
    color:#665C53;

    line-height:1.8;

    margin:0;
}

/* ---------- LOWER CONTENT ---------- */

.cake-size-guide h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    margin-bottom:18px;
}

.cake-size-guide p{
    color:#665C53;

    line-height:1.9;
}

/* ---------- HELPER CARD ---------- */

.guest-helper{
    background:#ffffff;

    border-radius:28px;

    padding:40px;

    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.guest-helper h4{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    font-size:1.55rem;

    margin-bottom:22px;
}

.guest-helper ul{
    list-style:none;

    padding:0;

    margin:0 0 30px;
}

.guest-helper li{
    padding:12px 0;

    color:#665C53;

    border-bottom:1px solid #EFE6D8;
}

.guest-helper li:last-child{
    border-bottom:none;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:991px){

.cake-size-guide{
    padding:80px 0;
}

.size-card,
.guest-helper{
    padding:32px;
}

}

@media (max-width:576px){

.size-card,
.guest-helper{
    border-radius:22px;
    padding:26px;
}

.size-card h3{
    font-size:1.45rem;
}

.guest-helper h4{
    font-size:1.35rem;
}

.popular-badge{
    font-size:.75rem;
}

}
/* ==================================================
   HOW TO ORDER
================================================== */

.how-to-order{
    padding:100px 0;
    background:#FAF7F2;
}

/* ---------- ORDER STEP ---------- */

.order-step{
    position:relative;

    background:#ffffff;

    border-radius:28px;

    padding:45px 30px 35px;

    height:100%;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.order-step:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.09);
}

/* ---------- STEP NUMBER ---------- */

.step-number{
    position:absolute;

    top:-16px;
    left:50%;

    transform:translateX(-50%);

    width:52px;
    height:52px;

    border-radius:50%;

    background:#8C6A43;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:1rem;

    box-shadow:0 10px 20px rgba(140,106,67,.25);
}

/* ---------- ICON ---------- */

.order-step i{
    display:block;

    font-size:2.7rem;

    color:#8C6A43;

    margin:18px 0 24px;
}

/* ---------- CONTENT ---------- */

.order-step h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    font-size:1.55rem;

    margin-bottom:16px;
}

.order-step p{
    color:#665C53;

    line-height:1.85;

    margin:0;
}

/* ---------- REMINDER CARD ---------- */

.order-reminder{
    background:#ffffff;

    border-radius:30px;

    padding:45px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.order-reminder h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    font-size:2rem;

    margin-bottom:28px;
}

.order-reminder ul{
    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.order-reminder li{
    position:relative;

    padding:14px 0 14px 34px;

    text-align:left;

    color:#665C53;

    border-bottom:1px solid #EFE6D8;

    line-height:1.8;
}

.order-reminder li:last-child{
    border-bottom:none;
}

.order-reminder li::before{
    content:"✓";

    position:absolute;

    left:0;
    top:15px;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#F6EEE3;

    color:#8C6A43;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.85rem;
    font-weight:700;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width:991px){

.how-to-order{
    padding:80px 0;
}

.order-step{
    padding:40px 28px 30px;
}

.order-reminder{
    padding:35px;
}

}

@media (max-width:576px){

.order-step,
.order-reminder{
    border-radius:22px;
}

.order-step{
    padding:36px 24px 26px;
}

.order-step h3{
    font-size:1.4rem;
}

.order-reminder{
    padding:28px;
}

.order-reminder h3{
    font-size:1.6rem;
}

.order-reminder li{
    padding-left:30px;
}

}
/* ==================================================
   FAQ
================================================== */

.cake-faq{
    padding:100px 0;
    background:#FAF7F2;
}

.faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#ffffff;

    border-radius:24px;

    padding:32px 35px;

    margin-bottom:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;
}

.faq-item:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 55px rgba(0,0,0,.08);
}

.faq-item h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    font-size:1.45rem;

    margin-bottom:16px;
}

.faq-item p{
    color:#665C53;

    line-height:1.9;

    margin:0;
}


/* ==================================================
   RELATED COLLECTIONS
================================================== */

.related-collections{
    padding:100px 0;
    background:#FAF7F2;
}

.related-card{
    display:block;

    background:#ffffff;

    border-radius:26px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;

    height:100%;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.09);
}

.related-card img{
    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:.45s ease;
}

.related-card:hover img{
    transform:scale(1.05);
}

.related-card h3{
    font-family:"Playfair Display",serif;

    color:#2E2925;

    text-align:center;

    padding:24px;

    font-size:1.45rem;

    margin:0;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:991px){

.cake-faq,
.related-collections,
.cake-cta{
    padding:80px 0;
}

.cta-box{
    padding:60px 40px;
}

.cta-box h2{
    font-size:2.4rem;
}

.related-card img{
    height:220px;
}

}

@media (max-width:576px){

.faq-item{
    padding:26px;
}

.faq-item h3{
    font-size:1.25rem;
}

.related-card{
    border-radius:22px;
}

.related-card img{
    height:210px;
}

.related-card h3{
    font-size:1.3rem;
}

}

/* ==========================================
   PHASE A RESPONSIVE
========================================== */

@media (max-width:991px){

.gallery-hero{

padding:100px 0;

text-align:center;

}

.gallery-text{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.gallery-hero-image{

margin-top:30px;

max-width:500px;

}

.gallery-search{

padding:90px 0;

}

.gallery-collections{

padding:100px 0;

}
.featured-masterpiece{

    padding:90px 0;

}

.masterpiece-content{

    padding:45px;

}

.masterpiece-image{

    min-height:420px;

}

.masterpiece-content h2{

    font-size:2.3rem;

}
.collection-showcase .col-lg-7{

    padding:45px;

}

.showcase-image{

    min-height:380px;

}

.collection-showcase h3{

    font-size:2rem;

}

}

@media(max-width:768px){

.editorial-collections{

    padding:90px 0;

}

.collection-showcase{

    border-radius:24px;

}

.collection-showcase .col-lg-7{

    padding:30px;

}

.showcase-image{

    min-height:280px;

}

.collection-showcase h3{

    font-size:1.8rem;

}

.cake-preview-grid{

    grid-template-columns:1fr;

}

.collection-showcase .btn{

    width:100%;

    justify-content:center;

}

}

@media(max-width:768px){

.masterpiece-content{

    padding:35px;

}

.masterpiece-highlights{

    grid-template-columns:1fr;

}

.masterpiece-buttons{

    flex-direction:column;

}

.masterpiece-buttons a{

    width:100%;

}

.masterpiece-content h2{

    font-size:2rem;

}

.masterpiece-image{

    min-height:320px;

}

}

@media (max-width:768px){

.gallery-title{

font-size:2.7rem;

}

.collection-card{

padding:34px 28px;

}

.collection-icon{

width:64px;

height:64px;

font-size:1.8rem;

}

.search-tags{

gap:10px;

}

.search-tags a{

padding:12px 18px;

font-size:.9rem;

}

}

@media (max-width:576px){

.gallery-hero{

padding:80px 0;

}

.gallery-hero-image{

border-radius:20px;

}

.section-title{

font-size:2rem;

}

.collection-card{

text-align:center;

}

.collection-icon{

margin:0 auto 24px;

}

}

@media(max-width:768px){

.featured-content{
    padding:35px;
}

.featured-list{
    grid-template-columns:1fr;
}

.featured-image{
    min-height:320px;
}

.featured-content h2{
    font-size:2rem;
}

}
 
.footer-links {
    display: block;
    width: 100%;
}

.footer-main-links,
.footer-menu-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 26px;
}

.footer-menu-links {
    margin-top: 18px;
}

/*==================================================
    SWEET TREAT COLLECTION LINKS
==================================================*/

.treat-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:36px 0 30px;
}

.treat-link{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 18px;
    background:var(--white);
    border:1px solid rgba(0,0,0,.06);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.treat-link-icon{
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#FFF1F4,#FFF7F0);
    color:var(--primary-color);
    font-size:1.2rem;
    transition:var(--transition);
}

.treat-link-text{
    display:flex;
    flex-direction:column;
    gap:2px;
    flex:1;
}

.treat-link-text strong{
    font-family:'Playfair Display',serif;
    font-size:1.05rem;
    color:var(--charcoal);
}

.treat-link-text small{
    color:var(--gray);
    font-size:.82rem;
}

.treat-link-arrow{
    color:rgba(0,0,0,.2);
    font-size:.95rem;
    transition:var(--transition);
}

.treat-link:hover{
    transform:translateY(-4px);
    border-color:rgba(225,48,108,.18);
    box-shadow:var(--shadow-md);
}

.treat-link:hover .treat-link-icon{
    background:var(--primary-color);
    color:#fff;
    transform:scale(1.06);
}

.treat-link:hover .treat-link-text strong{
    color:var(--primary-color);
}

.treat-link:hover .treat-link-arrow{
    color:var(--primary-color);
    transform:translateX(4px);
}

@media (max-width:576px){
    .treat-grid{
        grid-template-columns:1fr;
    }
}
/* =========================
   FOOTER SOCIAL LINKS
========================= */

.footer-socials {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 16px;

    margin-top: 28px;

}


.footer-socials a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.25);

    text-decoration: none;

    font-size: 18px;

    transition: all 0.3s ease;

}


.footer-socials a:hover {

    transform: translateY(-4px);

    background: #f5c542;

    border-color: #f5c542;

    color: #1f2937;

}
/*==================================================
    END OF STYLESHEET
==================================================*/