:root{
    --cream:#F7EFE1;
    --cream-dark:#EFE1C8;
    --ink:#2B2320;
    --ink-soft:#5B4E44;
    --rust:#B5502D;
    --rust-dark:#8F3D20;
    --gold:#D9A441;
    --green:#47614A;
    --board:#2E3B2E;
    --board-light:#3C4C3C;
    --white-ghost:#F8F8FF;

    --display: 'Fraunces', serif;
    --body: 'Manrope', sans-serif;
    --chalk: 'Caveat', cursive;

    --radius: 22px;
    --radius-sm: 12px;
    --shadow: 0 18px 40px -18px rgba(43,35,32,0.35);
  } 

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

body {
    font-family: var(--display);
    background: var(--cream);
    color: #1a1a2e;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

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

.amp {
    color: var(--gold);
    font-weight: 700;
}
ul {
    list-style: none;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    background: var(--cream);
    height: 70px;
    width: 100%;
    z-index: 1000;
    top: 0;
    
}

.head-container{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    flex: 0.6;
}

.logo-mark{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--board);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.logo-mark svg{
    width: 24px;
    height: 24px;
}

.logo .name .amp {
    color: var(--gold);
    font-family: var(--chalk);
    /* font-style: italic; */
    font-weight: 500;
    margin: 0 2px;
}

/* .desktop-menu {
    flex: 1;
} */

.desktop-menu ul{
    display: flex;
    align-items: center;
    gap: 15px;
}
.desktop-menu ul li a{
    font-family: var(--display);
    color: var(--board);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.desktop-menu ul li a.active:after{
    width: 100%;
}

.desktop-menu ul li a::after{
    width: 0;
    height: 3px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    background: var(--board);
    transition: all 0.3s ease-in-out;
}

.desktop-menu ul li a:hover:after{
    width: 100%;
    transform: scale(1.05);
}

#mobile-menu {
    display: none;
    cursor: pointer;
}

#mobile-menu i {
    display: inline-block;
    font-size: 26px;
    color: var(--board);
}

 
/* ===== SECTION 1 ===== */

.sec1{
    width: 100%;
    height: 90vh;
    background: url('../image/background-burgers-home-top.jpg') no-repeat center center/cover fixed;
    display: flex;
    align-items: center;
    z-index: -1;
    position: relative;
}

.sec1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 35, 32, 0.75) 0%, rgba(43, 35, 32, 0.5) 50%, rgba(217, 164, 65, 0.3) 100%);
    z-index: 0;
}

.sec1 .text-left{
    margin: 24px;
    text-align: left;
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-out;
}

.hero-wrapper {
    width: max-content;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-left h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    padding:  0;
    width: 100%;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-rule {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--rust));
    opacity: 1;
    margin-top: 16px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(217, 164, 65, 0.5);
}

.text-left .amp{
    font-family: var(--chalk);
    color: var(--gold);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 6px;
    text-shadow: 0 2px 10px rgba(217, 164, 65, 0.3);
}

.text-left .description{
    font-size: clamp(16px, 2vw, 30px);
    color: var(--cream);
    padding-top: 10px;
    max-width: 500px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===== SECTION 2 ===== */

.sec2 {
    width: 100%;
    background: linear-gradient(180deg, var(--board) 0%, var(--board-light) 100%);
}

.sec2 .center-grid2{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 20px;
    margin: 0 auto;
}

.center-grid2 .grid2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.center-grid2 .grid2:hover {
    background: rgba(247, 239, 225, 0.05);
    transform: translateY(-5px);
}

.center-grid2 .grid2 .img-container{
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.center-grid2 .grid2:hover .img-container {
    transform: scale(1.1);
}

.center-grid2 .grid2 h1{
    font-family: var(--display);
    font-size: 18px;
    color: var(--cream);
    font-weight: 700;
    transition: color 0.3s ease;
}

.center-grid2 .grid2:hover h1 {
    color: var(--gold);
}

.center-grid2 .grid2 p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--cream);
    font-weight: 400;
    opacity: .7;
    transition: opacity 0.3s ease;
}

.center-grid2 .grid2:hover p {
    opacity: 1;
}

/* ===== SECTION 3 ===== */

.sec3 {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.center-grid3{
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    text-align: center;
    background-color: var(--cream);
    border: 3em solid var(--cream-dark);
    box-shadow: 0 -10px 40px rgba(43, 35, 32, 0.1);
}

.center-grid3 div .name {
    font-family: var(--display);
    font-size: 18px;
    color: var(--cream);
    font-weight: 600;
    background: var(--board);
    display: inline-block;
    padding: 8px 16px;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.center-grid3 div .name .amp {
    font-family: var(--chalk);
    color: var(--gold);
    font-weight: 600;
    font-size: 18px;
    margin: 0 6px;
}

.center-grid3 div.para h1 {
    font-family: var(--display);
    font-size: clamp(20px, 3vw, 60px);
    font-weight: 700;
    margin-top: 10px;
    color: var(--board);
}

.center-grid3 div p {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
    color: var(--ink-soft);
}
.display-grip{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--white-ghost);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.display-grip .item div img {
    max-width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.item:hover div img {
    transform: scale(1.05);
}

.display-grip .item div h1 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--board);
    margin-bottom: 6px;
}

.display-grip .item div p {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.7;
    color: var(--ink-soft);
}

.item:hover div p {
    opacity: 1;
}

.view-menu {
    display: inline-block;
    font-family: var(--body);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    background: var(--board);
    text-align: center;
    cursor: pointer;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    width: max-content;
    margin: 20px auto;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 16px rgba(43, 35, 32, 0.2);
}

.view-menu:hover {
    background: var(--gold);
    color: var(--board);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 164, 65, 0.4);
} 

/* ===== SECTION 4 ===== */


.sec4 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.grid4-item {
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 50px;
    backdrop-filter: contrast(0.8);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.grid4-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 35, 32, 0.85) 0%, rgba(43, 35, 32, 0.6) 100%);
    z-index: 0;
    transition: background 0.3s ease;
}

.grid4-item:hover::before {
    background: linear-gradient(135deg, rgba(43, 35, 32, 0.75) 0%, rgba(43, 35, 32, 0.5) 100%);
}

.grid4-item:hover {
    transform: scale(1.01);
}

.grid4-item div {
    position: relative;
    z-index: 1;
}

.bg1 {
    background-image: url('../image/cell-background-burger-left-1.jpg');
}

.bg2 {
    background-image: url('../image/cell-background-burger-right-1.jpg');
}

.bg3 {
    background-image: url('../image/cell-background-burger-left-2.jpg');
}

.bg4 {
    background-image: url('../image/cell-background-burger-right-2.jpg');
}

.bg5 {
    background-image: url('../image/cell-background-burger-left-3.jpg');
}

.bg6 {
    background-image: url('../image/cell-background-burger-right-3.jpg');
}

.grid4-item div .badge{
    display: inline-block;
    background: var(--gold);
    color: var(--board);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: var(--body);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(217, 164, 65, 0.3);
}
.grid4-item div h1 {
    font-family: var(--body);
    font-size: clamp(20px, 4vw, 60px);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.grid4-item div p {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
}

.grid4-item div:last-child span.price {
    font-family: var(--body);
    font-size: clamp(20px, 2vw, 30px);
    font-weight: bold;
    color: var(--cream);
    margin-right: 10px;
}

.grid4-item div:last-child span.price2 {
    font-family: var(--body);
    font-size: clamp(20px, 2vw, 30px);
    font-weight: bold;
    color: var(--gold);
    text-decoration: line-through;
    opacity: 0.7;
}

.grid4-item div button {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    background: var(--gold);
    padding: 12px 28px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(217, 164, 65, 0.3);
}

.grid4-item div button:hover {
    background: var(--rust);
    border-color: var(--rust);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 80, 45, 0.4);
}

.grid4-item div button:active {
    transform: translateY(0);
}


/* ===== SECTION 5 ===== */


.sec5 {
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}


.slider-wrapper {
    flex: 1;
    overflow: hidden;
    background: var(--white-ghost);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.slider-track {
    display: flex;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.slide {
    min-width: 100%;
    padding: 50px 60px;
    text-align: center;
}

.slide h1 {
    font-family: var(--display);
    font-size: clamp(20px, 4vw, 60px);
    font-weight: 700;
    color: var(--board);
    margin-bottom: 12px;
}

.slide .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--rust));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.slide p {
    font-family: var(--body);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 24px;
    color: var(--ink-soft);
}

.slide a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    background: var(--board);
    text-align: center;
    cursor: pointer;
    padding: 12px 28px;
    border: 2px solid var(--board);
    border-radius: var(--radius-sm);
    margin: 20px auto;
    margin-bottom: 40px;
    transition: all 0.3s;
}

.slide a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--board);
    transform: translateY(-2px);
}


.chevron-btn {
    background: var(--board);
    border: none;
    color: var(--cream);
    font-size: 20px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(43, 35, 32, 0.2);
}

.chevron-btn:hover {
    background: var(--gold);
    color: var(--board);
    transform: scale(1.1);
}

.chevron-btn:active {
    transform: scale(0.95);
}

/* ===== SLIDE 3: INFO ===== */


/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 25px 0 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--board-light);
    background: var(--board);
    border-radius: var(--radius-sm);
}


.info-item .info-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
}

.info-item h3 {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.info-item p {
    font-size: 14px;
    color: var(--cream);
    line-height: 1.6;
    margin: 0;
}

.info-item .day-off {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}


/* ===== DOTS ===== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cream);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(217, 164, 65, 0.5);
}

.slider-dots .dot:hover {
    background: var(--gold);
    transform: scale(1.15);
}

/* ===== FOOTER ===== */
.main-footer {
    /* background: linear-gradient(180deg, var(--board) 0%, #1a1817 100%); */
    background: var(--board);
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

/* ===== KOLÒN LÒG ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-svg {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--board);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.footer-svg svg {
    width: 24px;
    height: 24px;
}

.footer-logo .logo-text {
    font-family: var(--display);
    font-weight: 600;
    color: var(--cream);
    font-size: 20px;
}

.logo-text .amp {
    font-family: var(--chalk);
    color: var(--gold);
    font-weight: 600;
    margin: 0 6px;
}


.footer-desc {
    font-size: 14px;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 320px;
}

/* ===== SOSYAL MEDIA ===== */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--board);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
}

.footer-social .social-link:hover {
    background: var(--gold);
    color: var(--cream);
    transform: translateY(-3px);
}

/* ===== TIT KOLÒN ===== */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gold);
}


/* ===== LYEN ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-family: var(--body);
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--gold);
    transition: transform 0.3s;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

/* ===== INFO KONTAK ===== */
.footer-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-info-item p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--cream);
    margin: 0;
    line-height: 1.5;
}

.footer-info-item i {
    margin-right: 10px;
}

/* ===== HOURS ===== */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-hours .hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--cream);
    font-family: var(--body);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    margin-top: 40px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--cream);
    font-family: var(--chalk);
}

.footer-bottom-container strong {
    color: var(--gold);
}

.footer-bottom-container i {
    margin-right: 4px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #D9A441;
}

.footer-bottom-links .separator {
    color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 990px) {
    .sec2 .center-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .display-grip {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {

    .desktop-menu {
        position: absolute;
        width: 100%;
        top: -325px;
        left: 0;
        padding: 30px 20px;
        background-color: var(--cream);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }

    .desktop-menu.open {
        top: 70px;
    }

    .desktop-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;

    }

    .desktop-menu ul li{
        width: 100%;
        display: inline-block;
        overflow: hidden;
    }

    .desktop-menu ul li a{
        width: 100%;
        display: inline-block;
    }

    #mobile-menu{
        display: flex;
        align-items: center;
    }

    .center-grid3 {
        border: 20px solid var(--cream-dark);
    }

    .sec5 {
        padding: 60px 10px;
    }

    .slider-container {
        gap: 10px;
    }

    .slide {
        padding: 50px 30px;
    }

    .slide a {
        font-size: 16px;
        padding: 10px 15px;
        display: inline-block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-desc {
        max-width: 100%;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .sec2 .center-grid2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .sec4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .bg1, .bg3, .bg5 {
        justify-content: flex-end;
    }
}

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

/* ===== HEADER ACTIONS (NEW) ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--board);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.3s;
}

.cart-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.cart-btn i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--rust);
    color: var(--cream);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
}

.cart-count.show {
    display: flex;
}

/* ===== FLOATING CART BUTTON ===== */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--board);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(217, 164, 65, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    background: var(--rust);
    color: var(--cream);
}

.floating-cart-btn:active {
    transform: scale(0.95);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--rust);
    color: var(--cream);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

.cart-badge:empty {
    display: none;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    z-index: 2000;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open {
    pointer-events: all;
}

.cart-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 35, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.cart-sidebar.open .cart-sidebar-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--white-ghost);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(43, 35, 32, 0.15);
}

.cart-sidebar.open .cart-sidebar-content {
    transform: translateX(0);
}

/* Cart Sidebar Header */
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid rgba(43, 35, 32, 0.08);
    background: var(--cream);
}

.cart-sidebar-header h2 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: var(--board);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-sidebar-header h2 i {
    color: var(--gold);
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    background: var(--board);
    border: none;
    border-radius: 50%;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.cart-close-btn:hover {
    background: var(--rust);
}

/* Cart Items Container */
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-message i {
    font-size: 64px;
    color: var(--ink-soft);
    opacity: 0.3;
    margin-bottom: 16px;
}

.empty-cart-message p {
    font-family: var(--body);
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.browse-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--board);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.browse-menu-btn:hover {
    background: var(--gold);
    color: var(--board);
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: 0 4px 16px rgba(43, 35, 32, 0.08);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cream-dark);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-name {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    color: var(--board);
    line-height: 1.3;
}

/* Chwa kliyan an te fè pou plat sa a. */
.cart-item-options {
    font-family: var(--body);
    font-size: 12px;
    line-height: 1.4;
    color: var(--rust-dark);
    margin: 2px 0 4px;
}

.cart-item-price {
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink-soft);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    background: var(--board);
    border: none;
    border-radius: 6px;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.cart-item-controls button:hover:not(:disabled) {
    background: var(--gold);
}

.cart-item-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-item-controls .qty-value {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    color: var(--board);
    min-width: 24px;
    text-align: center;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-total span {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.cart-item-total .remove-item {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: var(--rust);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cart-item-total .remove-item:hover {
    color: var(--rust-dark);
}

/* Cart Sidebar Footer */
.cart-sidebar-footer {
    padding: 24px;
    background: var(--cream);
    border-top: 2px solid rgba(43, 35, 32, 0.08);
}

.cart-subtotal,
.cart-delivery {
    display: flex;
    justify-content: space-between;
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.cart-subtotal span:last-child,
.cart-delivery span:last-child {
    font-weight: 600;
    color: var(--board);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--board);
    padding: 12px 0;
    margin: 12px 0 16px;
    border-top: 2px solid rgba(43, 35, 32, 0.1);
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: var(--board);
    color: var(--cream);
    border-radius: var(--radius-sm);
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--gold);
    color: var(--board);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 164, 65, 0.3);
}

/* ===== RESPONSIVE FOR CART SIDEBAR ===== */
@media (max-width: 768px) {
    .cart-sidebar-content {
        max-width: 100%;
    }

    .floating-cart-btn {
        width: 56px;
        height: 56px;
        bottom: 24px;
        right: 24px;
        font-size: 20px;
    }

    .cart-sidebar-header {
        padding: 20px;
    }

    .cart-items-container {
        padding: 16px;
    }

    .cart-sidebar-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .floating-cart-btn {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    .cart-item {
        padding: 12px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* ===== OFFLINE INDICATOR ===== */
.offline-indicator {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--rust);
    color: var(--cream);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    z-index: 9998;
    box-shadow: 0 4px 16px rgba(181, 80, 45, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offline-indicator i {
    font-size: 16px;
}

/* Body class when offline */
body.offline {
    pointer-events: none;
}

body.offline .offline-indicator {
    pointer-events: all;
}

/* PWA Mode specific styles */
body.pwa-mode {
    /* Additional padding for PWA safe area */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

/* Install App Button */
#installAppBtn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--gold);
    color: var(--board);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(217, 164, 65, 0.3);
    z-index: 997;
    transition: all 0.3s;
}

#installAppBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(217, 164, 65, 0.4);
}

#installAppBtn i {
    font-size: 18px;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */

/* Fade in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sec2, .sec3, .sec4, .sec5 {
    animation: fadeInUp 0.8s ease-out;
}

/* Tablet specific */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .center-grid2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .display-grip {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile improvements */
@media (max-width: 480px) {
    /* Header adjustments */
    .logo .name {
        font-size: 1rem;
    }

    /* Section 2 grid */
    .sec2 .center-grid2 {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 15px;
    }

    /* Section 3 */
    .center-grid3 {
        border-width: 10px;
    }

    /* Section 4 */
    .grid4-item {
        padding: 30px;
    }

    .grid4-item div h1 {
        font-size: 28px;
    }

    /* Slider */
    .slider-container {
        padding: 0 10px;
    }

    .slide {
        padding: 30px 20px;
    }

    /* Info grid */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    .footer-container {
        gap: 25px;
    }

    .footer-social {
        gap: 8px;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .head-container {
        padding: 0 15px;
    }

    .logo .name {
        font-size: 0.9rem;
    }

    /* Toast adjustments */
    .toast {
        flex-direction: column;
        gap: 10px;
    }

    .toast-container {
        right: 10px;
        left: 10px;
    }
}

/* Large desktop */
@media (min-width: 1440px) {
    .footer-container,
    .center-grid2 {
        max-width: 1400px;
        margin: 0 auto;
    }

    .menu-grid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch */
    .cart-item:active {
        transform: scale(0.98);
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Can add dark mode overrides here in the future */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    header,
    .floating-cart-btn,
    .cart-sidebar,
    .footer-bottom,
    .btn-install {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white-ghost);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(43, 35, 32, 0.15);
    pointer-events: all;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    max-width: 100%;
}

.toast.show {
    transform: translateX(0);
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-success {
    border-left-color: var(--green);
}

.toast-success .toast-icon {
    color: var(--green);
}

.toast-error {
    border-left-color: var(--rust);
}

.toast-error .toast-icon {
    color: var(--rust);
}

.toast-warning {
    border-left-color: var(--gold);
}

.toast-warning .toast-icon {
    color: var(--gold);
}

.toast-info {
    border-left-color: var(--board);
}

.toast-info .toast-icon {
    color: var(--board);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--board);
    margin-bottom: 2px;
}

.toast-message {
    font-family: var(--body);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: color 0.3s;
}

.toast-close:hover {
    color: var(--rust);
}

/* Toast responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 80px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .toast {
        max-width: 100%;
    }
}

/* ===== LOADING SPINNER ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(247, 239, 225, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--cream-dark);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-small {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.spinner-large {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

.loading-text {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    color: var(--board);
    text-align: center;
}

/* Inline loading (for buttons) */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Page loading state */
.page-loading {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.page-loading .spinner {
    width: 40px;
    height: 40px;
}

.page-loading p {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
}

/* Skeleton loading (for content) */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--cream-dark) 25%,
        var(--cream) 50%,
        var(--cream-dark) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-image {
    width: 100%;
    padding-bottom: 75%;
    margin-bottom: 16px;
}

.skeleton-card {
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

/* ===== POPUP MODAL (Alert/Confirm replacement) ===== */
.popup-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-modal.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 35, 32, 0.75);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    background: var(--white-ghost);
    border-radius: var(--radius);
    max-width: 450px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(43, 35, 32, 0.3);
    z-index: 1;
    animation: popupSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    font-size: 36px;
    color: var(--rust);
}

.popup-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    color: var(--board);
    margin-bottom: 12px;
}

.popup-message {
    font-family: var(--body);
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 28px;
    min-height: 24px;
}

.popup-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.popup-btn {
    flex: 1;
    max-width: 140px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn-primary {
    background: var(--rust);
    color: var(--white-ghost);
}

.popup-btn-primary:hover {
    background: var(--rust-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 80, 45, 0.4);
}

.popup-btn-secondary {
    background: var(--cream);
    color: var(--board);
}

.popup-btn-secondary:hover {
    background: var(--cream-dark);
    transform: translateY(-2px);
}

/* Mobile responsive for popup */
@media (max-width: 480px) {
    .popup-content {
        padding: 32px 24px;
        border-radius: var(--radius) var(--radius) 0 0;
        position: absolute;
        bottom: 0;
        max-width: 100%;
        margin: 0;
    }

    .popup-modal {
        padding: 0;
        align-items: flex-end;
    }

    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-message {
        font-size: 15px;
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-btn {
        max-width: 100%;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   Mobile touch targets and form fields
   Added after auditing the live site on a real browser at 360 and 390px.
   Layout was already sound — no horizontal overflow anywhere — so this
   fixes only what measurement showed: fields that trigger iOS zoom, and
   controls too small to hit reliably.
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* iOS Safari zooms the whole page when a focused field is under 16px.
     Every input on the site measured 13–15px, so every tap on checkout's
     eleven fields kicked the layout sideways. */
  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* Footer and navigation links measured 19–22px tall. Padding rather than
     font-size keeps the type scale intact while making the target hittable;
     the negative margin stops the extra height opening gaps in the layout. */
  .footer-col a,
  .footer-info-item a,
  .footer-bottom a,
  .auth-switch a,
  .forgot-link,
  .auth-home-link {
    display: inline-block;
    padding-block: 10px;
    margin-block: -6px;
  }

  /* The "remember me" box measured 18px. The real container class is
     .checkbox-label — an earlier :has() guess missed it, which the audit
     caught by still reporting 18px. */
  input[type="checkbox"],
  input[type="radio"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }
  .checkbox-label,
  .remember-me,
  label:has(> input[type="checkbox"]) {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
  }

  /* Terms and privacy links sit inline inside the signup checkbox label and
     measured 16px tall — the two links a person must actually read. */
  .checkbox-label a,
  a.link {
    display: inline-block;
    padding-block: 12px;
    margin-block: -8px;
  }

  /* The menu search field measured 22px tall. */
  .search-bar input {
    min-height: 44px;
  }

  /* The floating cart button sat directly on top of each card's "Ajoute"
     button, which is the one control on the page a customer needs. Making the
     action full width moves most of its target clear of the button, and the
     extra page padding stops the last card being covered entirely. */
  .add-item-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .menu-grid,
  .menu-items-grid {
    padding-bottom: 96px;
  }
  .floating-cart-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 16px;
  }

  /* Show/hide password sat at 32px inside the field. */
  .toggle-password {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Shown when a cart is under the restaurant's minimum order. The server
   refuses these outright, so the customer needs to know while they can still
   add something. */
.minimum-order-notice {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(194, 53, 44, 0.08);
    border: 1px solid rgba(194, 53, 44, 0.25);
    color: #a3271f;
    font-size: 14px;
    line-height: 1.5;
}
