:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --accent: #f5c400;
    --green: #33b864;
    --red: #e5352a;
    --blue: #1ba1e3;
    --card: #f7f7f8;
    --border: #e0e0e0;
    --shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --overlay-from: rgba(0, 0, 0, .72);
    --overlay-mid: rgba(0, 0, 0, .28);
    --overlay-to: rgba(0, 0, 0, .10);
    --text: #0b0b0b;
    --card-bg: #FEFFF6;
    --muted: #6b6b6b;
    --gap: 28px;
}

/* Dark Mode */
body.dark-mode {
    --bg: #000000;
    --text: #ffffff;
    --muted: #b6b6b6;
    --accent: #f5c400;
    --green: #33b864;
    --red: #e5352a;
    --blue: #1ba1e3;
    --card: #141414;
    --border: #242424;
    --shadow: 0 20px 50px rgba(0, 0, 0, .45);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html,
body {
    background: #fff;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

header.site,
footer.footer {
    background: var(--bg);
    color: var(--text);
}

footer.footer {
    background-color: #000;
    color: #fff
}

body.dark-mode {
    /* background-color: #121212; */
    color: #f1f1f1;
}

body.dark-mode a {
    color: #ffcc66;
}

body.dark-mode header,
body.dark-mode footer {
    background-color: #000;
}

body.dark-mode .footer-col ul li a {
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.card-title {
    font-family: "Sour Gummy", sans-serif;
    font-weight: 400;
}

p {
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .4rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #0000;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.btn.primary {
    background: var(--accent);
    color: #000;
    box-shadow: var(--shadow);
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.secondary {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #fff;
}

.btn.secondary:hover {
    transform: translateY(-2px);
}

.tag {
    padding: .4rem .7rem;
    border-radius: 999px;
    background: #fff;
    color: var(--bg);
    border: 1px solid var(--border);
    font-size: .85rem;
}

/* HEADER */
header.site {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform .28s ease;
    will-change: transform;
    /* fallback if JS not set yet */
    --header-height: 120px;
    background: rgba(13, 13, 13, .7);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid var(--line)
}

header.site.site--hidden {
    transform: translateY(calc(-1 * var(--header-height)));
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.nav .left {
    display: flex;
    align-items: center;
    gap: 14px
}

.logo {
    font-weight: 900;
    letter-spacing: .04em;
    width: 90px;
}

.nav-icon-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #000 !important;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 24px rgba(245, 196, 0, .22);
    transition: transform .15s ease, box-shadow .15s ease;
}

.nav-icon-btn:hover {
    transform: translateY(-2px);
}

.nav-icon-btn svg {
    display: block;
}

.nav-icon-btn .badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #000;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    min-width: 25px;
    padding: 0 .3rem;
    border-radius: 999px;
    border: 2px solid var(--accent);
}


.hero-wrap {
    display: grid;
    grid-template-columns: .7fr .8fr;
    gap: 44px;
    align-items: center;
}

.h-eyebrow {
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
}

.h-title {
    font-size: clamp(3rem, 6vw, 8rem);
    line-height: 1.06;
    margin: 10px 0 14px;
    font-weight: 800;
    color: #fff;
}

.h-sub {
    color: #d9d9d9;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.6;
}

.h-ctas {
    display: flex;
    gap: 12px;
    margin: 22px 0 12px;
    flex-wrap: wrap;
}

.h-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.pack-card {
    background: linear-gradient(180deg, #101010, #0a0a0a);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow);
}

.pack-slab {
    /* height: 380px; */
    border-radius: 16px;
    background: linear-gradient(135deg, #0b0b0b, #161616);
    position: relative;
    display: grid;
    place-items: center;
}

.grain {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: .2;
    animation: float 5s linear infinite;
}

.grain:nth-child(1) {
    top: 14%;
    left: 20%;
    animation-duration: 4.2s;
}

.grain:nth-child(2) {
    top: 34%;
    left: 60%;
    animation-duration: 6.3s;
}

.grain:nth-child(3) {
    top: 68%;
    left: 40%;
    animation-duration: 5.1s;
}

.grain:nth-child(4) {
    top: 52%;
    left: 75%;
    animation-duration: 7.2s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
        opacity: .2;
    }

    50% {
        opacity: .5;
    }

    100% {
        transform: translateY(-20px) scale(1.1);
        opacity: .15;
    }
}

/* OFFER BAND */
.offer {
    color: #1e1c17;
    font-size: 15px;
}

/* WHY */
.why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.why .tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: #ccc;
    font-weight: 800;
}

/* SOCIAL PROOF */
.social {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.quote {
    padding: 24px;
    font-size: 1.05rem;
}

.stars {
    letter-spacing: .08em;
}

/* NUTRITION */
table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

thead th {
    background: #121212;
    color: #e6e6e6;
    position: sticky;
    top: 0;
}

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(180deg, #121212, #0f0f0f);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    display: grid;
    gap: 10px;
}

.field {
    display: flex;
    gap: 10px;
}

.field input {
    flex: 1;
    background: #0b0b0b;
    border: 1px solid var(--border);
    color: #fff;
    padding: .9rem 1rem;
    border-radius: 999px;
    outline: none;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

img {
    width: 100%;
    height: auto;
}

.cover {
    width: 100%;
    height: 100%;
}

.logo img {
    width: 120px;
    height: auto;
}











/* FAQ Section Styling */
.faq-section {
    /* background-color: #000; */
    color: #fff;
    padding: 60px 0;
}

.faq-title {
    /* text-align: center; */
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* max-width: 800px; */
    /* margin: 0 auto; */
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-question:hover {
    color: #f4d03f;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.75);
    padding-bottom: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}













/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* FAQ Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

/* Fade-in sections */
.section:not(#toppings) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible:not(#toppings) {
    opacity: 1;
    transform: translateY(0);
}


/* 19-8-25 */
b.border-d {
    border: 2px dotted black;
    border-radius: 6px;
    padding: 0px 5px;
}

.smug-carousel {
    --gap: 18px;
    --per-view: 4;
    /* background: #000; */
    padding: 0 0 60px;
    position: relative;
}

.smug-carousel .container {
    width: min(1200px, 85vw);
    margin: auto;
}

.smug-viewport {
    overflow: hidden;
    position: relative;
}

.smug-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    will-change: transform;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}


/* yellow arrows */
.smug-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    z-index: 5;
    background: #f5c400;
    color: #000;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(245, 196, 0, .25);
}

.smug-nav.prev {
    left: 1%;
}

.smug-nav.next {
    right: 1%;
}

/* pack + hover topper */
.smug-pack {
    position: relative;
    height: 320px;
    /* thodu vadhare height for lift */
    display: grid;
    place-items: end center;
    margin-bottom: 12px;
    isolation: isolate;
    /* z-index layers clean */
}

.smug-pack img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform .6s ease, opacity .45s ease, bottom .6s ease;
    pointer-events: none;
    will-change: transform, bottom, opacity;
}

/* base pouch */
.smug-pack .packet {
    z-index: 1;
    bottom: 0;
    max-height: 100%;
    width: auto;
}

/* foil sheen (light overlay) */
.smug-pack .foil {
    z-index: 0;
    top: 62px;
    width: 49%;
    opacity: 1;
    filter: blur(0.2px);
}

.smug-pack .foil2 {
    z-index: 0;
    top: 114px;
    width: 49%;
    opacity: 1;
    filter: blur(0.2px);
}

/* rice cake (animated) */
.smug-pack .cake {
    z-index: 0;
    bottom: 155px;
    width: 45%;
    transform: translateX(-50%) translateY(0);
    /* filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .55)); */
}

.smug-pack .cake2 {
    z-index: 0;
    bottom: 120px;
    width: 42%;
    transform: translateX(-50%) translateY(0);
    /* filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .55)); */
}

/* soft ground shadow under pack */
.smug-pack::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 54%;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 70%);
    opacity: .55;
    z-index: 0;
}

/* hover effect: lift cake up a bit */
.smug-card:hover .cake {
    bottom: 170px;
    transform: translateX(-50%) translateY(-10px);
}

.smug-card:hover .cake2 {
    bottom: 130px;
    transform: translateX(-50%) translateY(-10px);
}

/* --- card surface should follow theme --- */
.smug-card {
    color: var(--text);
    text-align: center;
    padding: 12px 12px 18px;
    overflow: hidden;
    background-color: #F8F4F0;
    height: 100%;
}

.footer-col ul li a {
    color: var(--text);
}

.social-links a {
    color: var(--text);
}

/* text styling */
.title {
    font-weight: 600;
    margin: .3rem 0 .25rem;
    color: #000;
}

.f-title {
    font-weight: 600;
    margin: .3rem 0 .25rem;
    color: #000;
}

.wt {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-left: 6px;
    font-size: 14px;

}

.price {
    font-weight: 900;
    font-size: .9rem;
    margin-bottom: .15rem;
    color: #000000;
}

.card_main {
    width: 33.33%;
    max-width: 100%;
    height: 100%;
}


.rating {
    color: #000;
    letter-spacing: .08em;
    margin: .4rem 0;
    font-size: 12px;
}

.rating .muted {
    color: #b6b6b6;
    letter-spacing: 0;
    margin-left: 6px;
}

/* add to cart */

/* Main ADD TO CART button */
.btn-add {
    position: relative;
    display: inline-block;
    background: var(--accent);
    color: #000 !important;
    /* auto adjusts with theme */
    border-radius: 5px;
    /* padding: .6rem 1.5rem; */
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(245, 196, 0, .18);
    font-size: 18px;
    line-height: 21px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-add:hover {
    transform: translateY(-2px);
}

/* Border Hover Effect (same as btn-5 hover-border-11) */
.btn-add.hover-border-11::before,
.btn-add.hover-border-11::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    /* adjusts with theme */
    z-index: 2;
    transition: 0.35s;
}

.btn-add.hover-border-11::before {
    top: 0;
    right: 0;
}

.btn-add.hover-border-11::after {
    bottom: 0;
    left: 0;
}

.btn-add.hover-border-11:hover::before,
.btn-add.hover-border-11:hover::after {
    width: 0%;
    transition: 0.2s 0.2s ease-out;
}

.btn-add.hover-border-11 span::before,
.btn-add.hover-border-11 span::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--text);
    /* adjusts with theme */
    z-index: 2;
    transition: 0.25s;
}

.btn-add.hover-border-11 span::before {
    bottom: 0;
    right: 0;
}

.btn-add.hover-border-11 span::after {
    top: 0;
    left: 0;
}

.btn-add.hover-border-11:hover span::before,
.btn-add.hover-border-11:hover span::after {
    height: 0%;
}

/* Ensure text inside is positioned correctly */
.btn-add span {
    position: relative;
    z-index: 3;
    padding: 6px 23px;
    line-height: 40px;
}


.recipe-section .title {
    /* font-size: 2.5rem; */
    font-weight: 700;
    color: #000;
    font-style: italic;
}

.recipe_ideas .title {
    font-style: normal;
}

.recipe-section .subtitle {
    color: #bbb;
    margin: 10px 0 30px;
    font-size: 1rem;
}

/* Recipe Card */
.recipe-card {
    text-align: center;
}

.recipe-card img:hover {
    transform: scale(1.1);
}

.recipe-card img {
    max-width: 350px;
    width: 100%;
    height: 350px;
    border-radius: 50%;
    transition: transform 0.6s ease;
    margin: 0 auto 15px;
}

.recipe-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    background: #f7c600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}


.recipe-section .swiper-button-prev {
    left: 0;
    width: 35px;
    height: 35px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
}

.recipe-section .swiper-button-next {
    right: 0;
    width: 35px;
    height: 35px;
}


.recipe-section .swiper {
    padding: 50px 0;
}

/* -------- Feature Icons -------- */
.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 30px
}

.feature {
    background: var(--panel);
    border: 0px solid var(--border);
    padding: 18px 14px;
    border-radius: 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .35)
}

.f-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--yellow);
    display: grid;
    place-items: center;
    color: #111;
    font-weight: 800;
    margin: 0 auto 10px
}

/* -------- Footer -------- */

.foot {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 26px;
    grid-template-columns: 2fr repeat(3, 1fr)
}

.foot h5 {
    margin: 0 0 10px
}

.foot a {
    color: var(--muted)
}

.copy {
    grid-column: 1/-1;
    color: #8b8b8b;
    font-size: .9rem;
    margin-top: 10px
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 120px;
    height: 120px;
}

.footer-logo .logo-s {
    color: #f7c600;
}

.footer-logo .logo-y {
    color: #fff;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #f7c600;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;

}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #f7c600;
}

.social-links i {
    color: #fff;
}

.social-links a {
    /* color: #fff; */
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f7c600;
}

.shop-on {
    margin: 10px 0 5px;
    font-size: 13px;
    color: #ccc;
}

.shop-icons img {
    width: 28px;
    margin-right: 5px;
}

.footer-bottom {
    margin-top: 30px;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #000;
}

.bg-color {
    background: #ececec;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

body.dark-mode .footer-bottom a {
    color: #000
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* --- Hero right-side stage --- */
/* ---- Right-side stage & animation ---- */
.pack-card {
    position: relative;
}

.image-cover {
    position: relative;
}

.pack-stage {
    position: relative;
    width: min(520px, 38vw);
    height: min(520px, 38vw);
    margin-inline: auto;
    isolation: isolate;
    border-radius: 24px;
    background: radial-gradient(35% 35% at 55% 50%, rgba(32, 149, 185, 0.35), transparent 60%);
}

.slide {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
    transform-box: fill-box;
    offset-rotate: 0deg;
    will-change: offset-distance, opacity, transform;
}

/* CURVED PATH: top-right → center (hold ~3s) → bottom-right */
.slide.anim {
    offset-path: path("M 560 -160
 C 480 40, 360 150, 260 240 S 480 440, 560 640"
);
    animation: flyInOut 6s ease-in-out infinite;
}









body.dark-mode .our-story {
    background: #000;
    /* dark background for dark mode */
}

body.dark-mode .story-text {
    color: #fff;
}

.our-story {
    background: #F8F4F0;
    /* light beige background */
}

/* Light Mode Styles */
body:not(.dark-mode) .story-title {
    color: #000;
    /* black text in light mode */
}

/* Dark Mode Styles */
body.dark-mode .story-title {
    color: #000;
    /* white text in dark mode */
}

.story-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Comic Neue', cursive;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #222;
}

.brand-text {
    font-weight: bold;
    color: #e63946;
    font-family: 'Comic Neue', cursive;
}

.story-subtext {
    font-weight: bold;
    color: #e63946;
    margin-top: 10px;
}

.btn-warning {
    background: #ffc107;
    border: none;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    color: #000 !important;
}

.btn-warning:hover {
    background: var(--accent);
    color: #000;
}

.story-img-wrap {
    max-width: 100%;
    width: 100%;
}

.story-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story_text {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 30px;
    flex-wrap: wrap;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section,
.banner-section video {
    width: 100%;
    max-width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-wrap {
    position: relative;
    align-items: center !important;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px;
}




.offer-bar {
    background: linear-gradient(90deg, #f5c400, #ffda1a);
    backdrop-filter: saturate(140%) blur(6px);
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.offer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-code {
    background: #111;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin: 0 4px;
}

.offer span b {
    font-weight: 600;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    z-index: 1;
    display: flex;
    justify-content: end;
}

.heroSwiper {
    height: 100%;
    /* full screen hero */
    padding-left: 50px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-video video {
    width: 50%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
}

.main-logo_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.banner_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    min-height: 720px;
    color: #fff
}


.banner_content {
    padding: 100px;
}

.card_product {
    padding: 50px 0;
}

.card_wrapper_main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.recipe_text.recipe-section {
    width: calc(70% - 25px);
    max-width: 100%;
}

.oure_story_img.text-center {
    width: calc(30% - 25px);
    max-width: 100%;
}

.hero-slider {
    width: 100%;
    /* height: 100vh; */
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 768px;
    z-index: 2;
}


.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content a {
    display: inline-block;
    padding: 12px 25px;
    background: #f5c400;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform: rotate(-30deg);
}

.link:hover {
    background: var(--accent);
}

.link:hover img {
    transform: translateX(5px);
}


.feature {
    text-align: center;
    margin: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.f-icon img {
    width: 100px;
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature:hover .f-icon img {
    transform: scale(1.2);
}

.scroll-arrow {
    position: fixed;
    right: 4%;
    bottom: 2%;
    transform: rotate(180deg);
    background: var(--accent);
    color: #000;
    padding: 12px 14px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 18px;
    display: none;
    /* default hidden */
}

.scroll-arrow.show {
    display: block;
}

.scroll-arrow:hover {
    background: #000;
    color: #fff;
}

.sticky-section {
    display: flex;
    gap: 40px;
    padding: 20px;
    min-height: 100vh;
    align-items: flex-start;
}

/* LEFT SIDE - Sticky Image */
.sticky-left {
    flex: 1;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.sticky-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 100%;
    /* max-height: 560px; */
}

/* RIGHT SIDE - Products */
.products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.product-box {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
} */

.product-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.product-box h4 {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 600;
}

/* Next Section */
.next-section {
    padding: 100px 8%;
    background: #f0f0f0;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .sticky-section {
        flex-direction: column;
    }

    .sticky-left {
        position: relative;
        top: auto;
    }
}


/* ===== HERO WRAPPER ===== */
.hero {
    position: relative;
    height: min(78vh, 860px);
    min-height: 560px;
    border-radius: 0px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .6s ease, transform .8s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}


/* Content scaffolding */
.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topbar {
    padding: 18px 18px 0;
}

/* Delivery / Take away pill */
.mode-pill {
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(6px);
    padding: 6px;
    border-radius: 999px;
    display: inline-flex;
    gap: 6px;
}

.mode-pill .btn {
    --bs-btn-padding-y: .4rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: .9rem;
    color: #fff;
    border-radius: 999px;
}

.mode-pill .btn.active {
    background: #fff;
    color: #111;
}

.mode-pill .btn:not(.active):hover {
    background: rgba(255, 255, 255, .12);
}

/* Search chip */
.search-chip {
    margin-top: 12px;
    max-width: 780px;
    background: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.search-chip input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
}

/* Bottom content area */
.bottom {
    margin-top: auto;
    padding: 0 18px 22px;
}

.pret {
    color: rgba(255, 255, 255, .78);
    letter-spacing: .12em;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Offer typography (slide 1) */
.offer-xl {
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.02em;
    font-size: clamp(3.5rem, 10vw, 10rem);
}

.offer-sub {
    font-weight: 800;
    letter-spacing: .02em;
    font-size: clamp(1.8rem, 4.8vw, 4rem);
}

.code-label {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: clamp(.8rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, .9);
}

.code-badge {
    background: rgba(0, 0, 0, .82);
    padding: .55rem 1rem;
    border-radius: .5rem;
    font-size: clamp(1.2rem, 3.2vw, 2.2rem);
    font-weight: 800;
    display: inline-block;
}

.btn-cta {
    border-radius: 999px;
    font-weight: 600;
    padding: .8rem 1.4rem;
}

/* Dots */
.dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    transition: all .2s ease;
}

.dots button.active {
    width: 34px;
    background: #fff;
}

/* Bottom-right controls + note */
.br-wrap {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
}

.note {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
}

.nav-small {
    display: flex;
    gap: 8px;
}

.nav-small .btn {
    width: 42px;
    height: 25px;
    border-radius: 999px;
    background: var(--bg);
    color: #000;
    border: 0;
    display: grid;
    place-items: center;
}

.nav-small .btn:hover {
    background: rgba(0, 0, 0, .75);
}

#hero .topbar {
    position: absolute;
    left: 50%;
    top: clamp(14px, 3vw, 28px);
    transform: translateX(-50%);
    width: min(500px, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    z-index: 3;
}

/* make the search bar stretch nicely */
#hero .search-chip {
    width: 100%;
}

/* Wrapper */
.hero {
    padding: 16px
}


/* Background image card */
.card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 540px;
}

/* ===== ONLY THIS TEXT BLOCK ===== */
.foot {
    position: absolute;
    left: 28px;
    bottom: 26px;
    color: var(--text);
    z-index: 1;
    max-width: min(520px, 90%);
}

.foot-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    top: 38%;
    left: 5%;
    z-index: 1;
}

.foot-text .tiny {
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
    opacity: .65
}

.foot h3 {
    margin: .35rem 0 1rem;
    font-weight: 500;
    font-size: clamp(22px, 3.2vw, 30px)
}

.btn {
    display: inline-block;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .4rem 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0 !important;
}

.wrap {
    padding: 70px 16px
}


.slider {
    position: relative;
    background: #fff;
    border-radius: 14px;
}


/* header controls in the top-right like SS */
.controls {
    position: absolute;
    top: 40px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.ctrl {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d3d3d3;
    color: #111;
    cursor: pointer;
}

.ctrl[disabled] {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.viewport {
    overflow: hidden;
    padding-top: 30px;
}

.track {
    display: flex;
    gap: var(--gap);
    will-change: transform;
    transition: transform .5s ease;
    padding-bottom: 15px;
}


/* Each card width is responsive based on items-per-view */
.card {
    flex: 0 0 var(--card-w, 25%);
    background: #F8F4F0;
    border-radius: 8px;
    overflow: hidden;
}


.card-inner {
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.badge {
    font-size: 11px;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #888;
}


.imgbox {
    height: 210px;
    display: grid;
    place-items: center;
}

.imgbox img {
    max-width: 75%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .10));
}

.card-inner .title {
    font-size: 18px;
    line-height: 22px;
}

.sub {
    color: #777;
}


/* hover subtle lift */
.card {
    transition: transform .3s ease, box-shadow .3s ease
}

.card:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

article.card::before {
    background: none;
}

article.card {
    height: auto;
    min-height: auto;
    text-align: center;
}

article.card .imgbox {
    height: auto;
}

article.card .badge {
    white-space: break-spaces;
    line-height: 20px;
    padding: 0 0 35px 0;
}


/* Info Bar Section */
.info-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 20px;
    text-align: center;
    /* border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; */
}

.info-item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    transition: transform 0.3s ease-in-out;
}

.info-item:hover {
    transform: translateY(-8px);
}

.info-item i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #000;
    animation: floatIcon 2s ease-in-out infinite;
}

.info-item span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* Animation Keyframes */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.image {
    width: 40px;
    height: 40px;
}



.card-cover {
    position: relative;
    color: #fff;
}

h2.title_main {
    font-size: 50px;
    line-height: 57px;
}

/* ============================
   RECIPE SECTION STYLING
   ============================ */
.recipe-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.recipe-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.recipe-wrapper-unique {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Left image */
.recipe-image-box {
    width: calc(50% - 20px);
    max-width: 100%;
    text-align: center;
}

.recipe-image-box img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #F8F4F0;
}

/* Right side content */
.recipe-details {
    width: calc(50% - 20px);
    max-width: 100%;
    height: 100%;
    text-align: left;
}

.recipe-section {
    margin-bottom: 25px;
}

.recipe-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
    /* green */
}

.recipe-list,
.recipe-steps {
    margin-left: 20px;
    line-height: 1.8;
}

/* Smug Tip box */
.recipe-tip-box {
    background: #F8F4F0;
    padding: 15px 20px;
    border-left: 5px solid #000;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* QR Box */
.recipe-qr-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
    text-align: left;
    /* margin-top: 25px !important; */
}

.recipe-qr-box img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.recipe-subheading {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 5px;

}

/* Back to top */
.recipe-back-top {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
    text-decoration: none;
    color: #000;
    background: var(--accent);
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.recipe-back-top:hover {
    background: #000;
    color: #fff;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 992px) {

    .recipe-image-box,
    .recipe-details {
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 576px) {
    .recipe-title {
        font-size: 2rem;
    }

    .recipe-heading {
        font-size: 1.2rem;
    }

    .recipe-qr-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.hero-inner.third-slide {
    justify-content: center;
}

.hero-inner.third-slide .bottom {
    margin-top: 4%;
}




.recipes-details {
    margin: 0;
    padding: 64px 0;
}

.banner-mobile .carousel-cell img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .banner-mobile .hero-slider {
        display: block !important;
    }

    .hero-slider {
        height: 545px;
    }

    .banner-mobile .carousel-cell {
        width: 100% !important;
        height: 300px;
        background-size: cover;
        background-position: center;
    }
}


nav.navbar.navbar-expand-lg.navbar-dark {
    height: 60px;
}

/* .offcanvas {
    position: absolute;
    height: 100vh;
} */

.offcanvas-body .btn {
    padding: 0.25rem 0.75rem;
}

.cart-pack {
    position: relative;
    width: 60px;
    /* cart ma thumbnail size */
    height: 110px;
    margin-right: 10px;
    flex-shrink: 0;
}

.cart-pack img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

.cart-pack .packet {
    z-index: 1;
    bottom: 0;
    width: 100%;
}

.cart-pack .foil {
    z-index: 0;
    top: 5px;
    width: 67%;
    opacity: 0.9;
}

.cart-pack .cake {
    z-index: 0;
    bottom: 50px;
    width: 70%;
}

.offcanvas.offcanvas-end {
    width: 550px;
}

.wrapper-unique {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.wrapper-unique .recipe-qr-box {
    width: calc(50% - 20px);
    max-width: 100%;
}

.wrapper-unique .recipe-tip-box {
    width: calc(50% - 20px);
    max-width: 100%;
}

.wrapper-unique {
    margin-top: 10px;
}


.offcanvas-login-custom {
    position: fixed;
    top: 0;
    right: -550px;
    /* Hidden by default */
    width: 550px;
    max-width: 96vw;
    height: 100vh;
    background: #f7f5ef;
    box-shadow: -2px 0 14px rgba(0, 0, 0, 0.16);
    z-index: 2050;
    transition: right 0.35s;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offcanvas-login-custom.show {
    right: 0;
}

.login-closebtn {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 34px;
    cursor: pointer;
    color: #988e78;
    z-index: 1060;
}

.mylogin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 42px 0 30px 0;
}

.mylogin-title {
    font-size: 1.65em;
    font-weight: 600;
}

.mylogin-subtitle {
    color: #636060;
    margin-bottom: 21px;
}

.mylogin-img {
    width: 250px;
    /* height: 90px; */
    border-radius: 12px;
    box-shadow: 0 6px 19px rgba(0, 0, 0, 0.09);
    margin-bottom: 22px;
    padding: 20px;
}

.mylogin-input-group {
    width: 400px;
    display: flex;
    align-items: center;
    border: 1px solid #e5dac7;
    background: #fff;
    border-radius: 22px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.mylogin-icon {
    color: #b5b09e;
    margin-right: 7px;
}

.mylogin-input-group input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 11px 0;
    font-size: 1em;
}

.mylogin-btn {
    width: 100%;
    padding: 11px;
    border-radius: 22px;
    border: none;
    background: #baa883;
    color: #fff;
    font-size: 1em;
    margin-top: 7px;
    transition: background 0.2s;
    cursor: pointer;
}

.mylogin-btn:hover {
    background: #9d8b69;
}

.mylogin-forgot {
    margin-top: 15px;
    font-size: 0.97em;
    color: #94876b;
    text-align: center;
}

@media (max-width: 480px) {
    .offcanvas-login-custom {
        width: 100vw;
    }

    .mylogin-input-group {
        width: 90vw;
    }
}

.foil {
    display: none;
}

.order-list {
    max-height: 300px;
    overflow-y: auto;
}

.checkbox-xl {
    /* padding-left: 2.5em; */
}

_form-check.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}



.order-card {
    background: #fff;
    min-height: 300px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.order-items img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-items .item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.order-items .item:last-child {
    border-bottom: none;
}

.order-summary {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
}

.order-summary .row {
    margin-bottom: 8px;
}

.order-summary .fw-bold {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.listing-container {
    padding: 150px 0;
}

.order-card {
    border-radius: 16px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.order-card:hover {
    transform: translateY(-5px);
}

.product-id {
    font-size: 14px;
    color: #888;
}

.address-box {
    background: #fff7e6;
    border-left: 4px solid #ff8800;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.btn-buy {
    background: #ff6f00;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

.btn-buy:hover {
    background: #e65c00;
}






.thankyou-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.thankyou-box i {
    font-size: 70px;
    color: #28a745;
    margin-bottom: 20px;
    animation: pop 0.6s ease-in-out;
}

.thankyou-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.order-summary {
    text-align: left;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.order-summary p {
    margin: 5px 0;
}

.btn-home {
    margin-top: 20px;
    background: #ff5722;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-home:hover {
    background: #e64a19;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.btn_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bi-person-circle::before {
    /* color: #fff; */
}


.checkout-page .card {
    min-height: 460px;
}


.order-card .cart-pack {
    width: 80px;
}

.navbar .nav-link.active {
    color: var(--accent) !important;
    font-weight: bold;
    border-bottom: 2px solid var(--bg);
}

.badge.sold-out {
  /* background: var(--text); */
    /* color: #fff; */
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 17px;
}
.Order-detail .cart-pack img {
    height: 100%;
}

.Order-detail .cart-pack .cake {
    z-index: 0;
    bottom: 65px;
    width: 55%;
    height: 43px;
}

.Order-detail .smallPacket .cart-pack .cake {
    z-index: 0;
    bottom: 50px;
    width: 55%;
    height: 43px;
}