/* =======================================
   Homemade by Ephy
======================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fffdf7;
    color:#222;
}

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:94%;
    max-width:1350px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    z-index:1000;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:50px;
    height:50px;
    object-fit:contain;
    border-radius:50%;
    background:white;
    padding:4px;
}

.logo-area h2{
    color:white;
    font-size:22px;
    font-weight:700;
}

.logo-area p{
    color:white;
    font-size:12px;
    opacity:.9;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#FFD54F;
}

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

.hero{

    min-height:100vh;

    background:
     linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    
        url("images/hero/banner.png");

    background-size:cover;

   background-position:center top;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px;

}

.hero-content{
    max-width:750px;
}

.hero h1{
    color:white;
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:18px;
    max-width:900px;
}

.hero p{
    color:white;
    font-size:18px;
    line-height:1.7;
    max-width:760px;
    margin:0 auto 35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#ff9800;
    color:white;
}

.btn-primary:hover{
    background:#f57c00;
}

.btn-secondary{
    background:white;
    color:#222;
}

.btn-secondary:hover{
    background:#eeeeee;
}

/* ================= BEST SELLERS ================= */

.best-sellers{
    padding:90px 6%;
}

.best-sellers h2{
    text-align:center;
    color:#2E7D32;
    font-size:42px;
    margin-bottom:45px;
}

.seller-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.seller-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.seller-card:hover{
    transform:translateY(-8px);
}

.seller-card img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.seller-card h3{
    margin-top:18px;
    font-size:22px;
}

.seller-card p{
    color:#ff9800;
    font-size:22px;
    font-weight:700;
    margin:12px 0;
}

.seller-card button{
    margin-bottom:22px;
    background:#2E7D32;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
}

.seller-card button:hover{
    background:#1b5e20;
}

/* Make the Classic Sandwich image match the others */

img[src*="classic"]{
    object-fit:contain !important;
    height:170px !important;
    padding:12px;
    background:white;
}

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

@media(max-width:768px){

.nav-links{
    display:none;
}

.logo{
    width:42px;
    height:42px;
}

.logo-area h2{
    font-size:18px;
}

.logo-area p{
    font-size:10px;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

.seller-card img{
    height:140px;
}

}

/* Fruit Cards */

.builder-grid{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    justify-content:center;

}

.builder-card{
    width:180px;
    background:#ffffff;
    border:1px solid #e8ece8;
    border-radius:18px;
    padding:14px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor:pointer;
}

.builder-card:hover{
    transform:translateY(-5px);
    border-color:#c8ddca;
    box-shadow:0 15px 32px rgba(0,0,0,.12);
}

.builder-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    display:block;
    margin:0 auto 12px;
}

.builder-card label{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:8px;
    font-size:16px;
    font-weight:700;
    color:#263238;
}

.builder-card input{
    width:18px;
    height:18px;
    cursor:pointer;
    accent-color:#2e7d32;
}

/* ================= CUP SIZE ================= */

.cup-grid{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.cup-card{
    width:180px;
    height:auto;
    min-height:0;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:16px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    align-self:flex-start;
}

.cup-card img{
    width:90px;
    height:110px;
    object-fit:contain;
    display:block;
    margin:0 auto 10px;
}
.cup-card:hover{
    transform:translateY(-5px);
    border-color:#ffb74d;
    box-shadow:0 15px 32px rgba(0,0,0,.12);
}

.cup-card input{
    margin-bottom:8px;
    accent-color:#2e7d32;
}



.cup-card h3{
    margin:6px 0 4px;
    color:#1f2937;
    font-size:20px;
    font-weight:800;
}

.cup-card p{
    color:#6b7280;
    margin:0 0 6px;
    font-size:15px;
}

.cup-card strong{
    color:#ff9800;
    font-size:22px;
    font-weight:800;
}


/* ================= SUMMARY ================= */

.summary-box{

    max-width:520px;

    margin:40px auto;

    background:#2E7D32;

    color:white;

    border-radius:22px;

    padding:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.summary-box h2{

    font-size:22px;

    margin-bottom:18px;

    color:white;

}

.summary-box p{

    margin-top:20px;

    font-weight:600;

}

.summary-box ul{

    margin:10px 0 20px 20px;

}

.summary-box li{

    margin-bottom:8px;

}

#selectedCup{

    margin-top:10px;

    font-size:18px;

}

#smoothieTotal{

    color:#FFD54F;

    font-size:34px;

    font-weight:700;

}

#addSmoothie{

    margin-top:25px;

    width:100%;

    background:#ff9800;

    color:white;

    border:none;

    border-radius:12px;

    padding:16px;

    font-size:18px;

    cursor:pointer;

}

#addSmoothie:hover{

    background:#f57c00;

}

/* =========================================
   PRE-ORDER CART
========================================= */

.cart-section{
    padding:35px 4% 55px;
    background:#fffaf4;
}

.cart-section .section-title{
    text-align:center;
    width:100%;
    max-width:1100px;
    margin:0 auto 28px;
}

.cart-section .section-title h2{
    font-size:38px;
    color:#2e7d32;
    margin-bottom:12px;
}

.cart-section .section-title p{
    font-size:16px;
    color:#666;
    line-height:1.7;
}


/* MAIN CART BOX */

.cart-box{
    width:100%;
    max-width:1300px;
    margin:0 auto;
    background:#ffffff;
    border-radius:30px;
    padding:32px 40px;
    box-shadow:0 16px 38px rgba(15,23,42,.09);
    border:1px solid #e9eee9;
}


/* CART HEADINGS */

.cart-box h3{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:18px;

    margin:0 0 10px;

}

.cart-box h2{
    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:26px;
    color:#222;

    margin-top:20px;
}


/* CART ITEMS */

#smoothieCart,
#sandwichCart{

    background:#fafafa;

    border-radius:14px;

    padding:12px 16px;

    margin-bottom:14px;

    min-height:50px;

    display:flex;

    align-items:center;

    font-size:15px;

    color:#555;

    line-height:1.4;

}


/* ITEMS ADDED TO CART */

.cart-item{
    background:white;
    border:1px solid #eeeeee;
    border-radius:16px;
    padding:18px;
}

.cart-item h4{
    color:#2e7d32;
    font-size:20px;
    margin-bottom:12px;
}

.cart-item p{
    margin:6px 0;
    font-size:15px;
    color:#444;
}


/* DIVIDER */

.cart-box hr{

    margin:18px 0;

    border:none;

    border-top:1px solid #ececec;

}


/* TOTAL */

#cartTotal{
    color:#ff9800;
    font-size:32px;
    font-weight:800;
}


/* PRE-ORDER BUTTON */

#placePreOrder{
    width:100%;
    margin-top:25px;

    background:#2e7d32;
    color:white;

    border:none;
    border-radius:14px;

    padding:17px;

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

    cursor:pointer;

    transition:.3s;
}

#placePreOrder:hover:not(:disabled){
    background:#1b5e20;
    transform:translateY(-2px);
}


/* CLOSED BUTTON */

#placePreOrder:disabled{
    background:#e5e7eb;
    color:#9ca3af;
    cursor:not-allowed;
}


/* PRE-ORDER MESSAGE */

#preOrderNotice{
    margin-top:16px;

    padding:14px 16px;

    background:#fff7ed;

    border:1px solid #fed7aa;

    border-radius:12px;

    color:#9a3412;

    font-size:14px;

    line-height:1.6;

    text-align:center;
}


/* MOBILE */

@media(max-width:600px){

    .cart-section{
        padding:55px 14px;
    }

    .cart-box{
        padding:20px;
        border-radius:20px;
    }

    .cart-section .section-title h2{
        font-size:30px;
    }

    .cart-box h2{
        font-size:22px;
    }

    #cartTotal{
        font-size:26px;
    }

}

/* =========================================
   SANDWICH BUILDER + SUMMARY
   Consolidated from the final working rules
========================================= */

.sandwich-section{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:40px 30px 60px;
}

.sandwich-section .section-title{
    max-width:850px;
    margin:0 auto 40px;
    text-align:center;
}

.sandwich-section .builder-box{
    max-width:1200px;
    margin:0 auto 32px;
    padding:28px;
}

.sandwich-section .builder-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;
}

.sandwich-section .builder-card{
    width:180px;
    min-height:0;
    height:auto;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    padding:14px;
}

.sandwich-section .builder-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin:0 auto 12px;
}

.sandwich-section .builder-card label{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-align:center;
}

.sandwich-section .builder-card span{
    margin-top:8px;
    color:#ff9800;
    font-weight:700;
}

#sandwiches{
    width:100%;
    max-width:none;
    margin:0;
    padding:50px 4%;
    box-sizing:border-box;
}

#sandwiches .builder-box{
    width:100%;
    max-width:1400px;
}

#sandwiches .sandwich-summary{
    width:100% !important;
    max-width:1400px !important;
    margin:25px auto 0 !important;
    padding:22px 34px !important;
    height:auto !important;
    min-height:0 !important;
    display:grid !important;
    grid-template-columns:1fr 1fr;
    column-gap:55px;
    row-gap:8px;
    background:#2e7d32;
    color:white;
    border-radius:24px;
    box-sizing:border-box;
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

#sandwiches .sandwich-summary > h2:first-child{
    grid-column:1 / -1;
    margin:0 0 8px !important;
    font-size:26px;
}

#sandwiches .sandwich-summary p{
    margin:4px 0 0 !important;
    font-size:16px;
    font-weight:700;
}

#sandwiches #selectedBread,
#sandwiches #selectedSauce{
    margin:0 0 5px !important;
    font-size:16px;
}

#sandwiches .sandwich-summary ul{
    margin:2px 0 6px 22px !important;
    padding:0;
}

#sandwiches .sandwich-summary li{
    margin:0 !important;
    font-size:15px;
}

#sandwiches .summary-total{
    grid-column:1 / -1;
    width:100%;
    margin:10px 0 0 !important;
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    font-size:25px;
}

#sandwiches #sandwichTotal{
    color:#ffd54f;
    font-size:32px;
    font-weight:800;
}

#sandwiches #addSandwich{
    grid-column:1 / -1;
    display:block;
    width:100%;
    margin:8px 0 0 !important;
    padding:14px 20px;
    border:none;
    border-radius:14px;
    background:#ff9800;
    color:white;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
    transition:.25s ease;
}

#sandwiches #addSandwich:hover{
    background:#f57c00;
    transform:translateY(-2px);
}

@media(max-width:700px){
    .sandwich-section{
        padding:50px 14px;
    }

    .sandwich-section .builder-box{
        padding:18px 14px;
    }

    .sandwich-section .builder-grid{
        gap:14px;
    }

    .sandwich-section .builder-card{
        width:calc(50% - 8px);
        min-height:0;
        height:auto;
    }

    .sandwich-section .builder-card img{
        width:95px;
        height:95px;
    }

    #sandwiches{
        padding:30px 12px;
    }

    #sandwiches .sandwich-summary{
        width:100% !important;
        grid-template-columns:1fr;
        padding:18px !important;
    }

    #sandwiches .summary-total{
        font-size:22px;
    }

    #sandwiches #sandwichTotal{
        font-size:28px;
    }
}

/* =========================================
   SMOOTHIE SUMMARY
   Consolidated from the final working rules
========================================= */

#smoothies .summary-box{
    width:100% !important;
    max-width:1400px !important;
    margin:25px auto 0 !important;
    padding:22px 34px !important;
    height:auto !important;
    min-height:0 !important;
    display:grid !important;
    grid-template-columns:1fr 1fr;
    column-gap:55px;
    row-gap:8px;
    background:#2e7d32;
    color:white;
    border-radius:24px;
    box-sizing:border-box;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

#smoothies .summary-box > h2:first-child{
    grid-column:1 / -1;
    margin:0 0 8px !important;
    font-size:26px;
}

#smoothies .summary-box p{
    margin:4px 0 0 !important;
    font-size:16px;
    font-weight:700;
}

#smoothies .summary-box ul{
    margin:2px 0 6px 22px !important;
    padding:0;
}

#smoothies .summary-box li{
    margin:0 !important;
    font-size:15px;
}

#smoothies #selectedCup{
    margin:0 0 5px !important;
    font-size:16px;
}

#smoothies .summary-box h2:last-of-type{
    grid-column:1 / -1;
    width:100%;
    margin:10px 0 0 !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:25px;
}

#smoothies #smoothieTotal{
    color:#ffd54f;
    font-size:32px;
    font-weight:800;
}

#smoothies #addSmoothie{
    grid-column:1 / -1;
    width:100%;
    margin:8px 0 0 !important;
    padding:14px 20px;
    border:none;
    border-radius:14px;
    background:#ff9800;
    color:white;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}

#smoothies #addSmoothie:hover{
    background:#f57c00;
}

@media(max-width:700px){
    #smoothies .summary-box{
        width:100% !important;
        grid-template-columns:1fr;
        padding:18px !important;
    }
}

/* =========================================
   FINAL BUILDER ALIGNMENT
   Applies to ALL steps
========================================= */

.builder-box{
    width:100% !important;
    max-width:1400px !important;

    margin:35px auto !important;
    padding:28px 30px !important;

    box-sizing:border-box;
}


/* STEP NUMBER */

.builder-box > h3{
    width:100%;

    margin:0 0 6px !important;

    text-align:center !important;

    font-size:28px !important;
    font-weight:800;

    color:#2e7d32 !important;
}


/* STEP DESCRIPTION */

.builder-box > h4{
    width:100%;

    margin:0 0 28px !important;

    text-align:center !important;

    font-size:20px !important;
    font-weight:700;

    color:#222 !important;
}


/* ALL CARD ROWS */

.builder-box .builder-grid{
    width:100% !important;
    display:flex !important;
    flex-wrap:wrap;
    justify-content:center !important;
    align-items:flex-start !important;
    gap:22px !important;
}


/* ALL FOOD CARDS */

.builder-box .builder-card{
    width:180px !important;
    min-height:0 !important;
    height:auto !important;
    padding:14px !important;
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    background:#ffffff;
    border:1px solid #e8ece8;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}


/* ALL CARD IMAGES */

.builder-box .builder-card img{
    width:120px !important;
    height:120px !important;

    object-fit:contain;

    display:block;

    margin:0 auto 12px !important;
}


/* CARD LABELS */

.builder-box .builder-card label{
    width:100%;

    min-height:42px;

    margin:0 !important;

    display:flex !important;

    justify-content:center;
    align-items:center;

    gap:8px;

    text-align:center;

    font-size:16px !important;
    font-weight:600;
}


/* PRICES */

.builder-box .builder-card span{
    margin-top:8px;

    color:#ff9800;

    font-size:15px;

    font-weight:700;
}


/* CUP SECTION */

.builder-box .cup-grid{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:22px;
}


.builder-box .cup-card{
    width:180px;
    min-height:0;
    height:auto;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    align-self:flex-start;
    text-align:center;
}


/* MOBILE */

@media(max-width:700px){

    .builder-box{
        margin:25px auto !important;

        padding:20px 12px !important;
    }


    .builder-box > h3{
        font-size:23px !important;
    }


    .builder-box > h4{
        font-size:17px !important;

        margin-bottom:20px !important;
    }


    .builder-box .builder-grid{
        gap:14px !important;
    }


    .builder-box .builder-card{
        width:calc(50% - 8px) !important;

        min-height:0 !important;
        height:auto !important;

        padding:10px !important;
    }


    .builder-box .builder-card img{
        width:90px !important;
        height:90px !important;
    }


    .builder-box .builder-card label{
        min-height:36px;

        font-size:14px !important;
    }


    .builder-box .cup-card{
        width:calc(50% - 8px);

        min-height:0;
        height:auto;
    }

}

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

.contact-section{

    padding:20px 20px 60px;

    margin-top:-40px;

    background:#fffaf4;

}

.contact-banner{

    text-align:center;

    margin-bottom:18px;

}

.contact-logo{

    width:120px;

    height:120px;

    object-fit:contain;

    display:block;

    margin:auto;

}


.contact-title{

    text-align:center;

    margin-bottom:20px;

}

.contact-title h2{

    font-size:32px;

    color:#2e7d32;

    margin-bottom:10px;

}

.contact-title p{

    font-size:16px;

    color:#666;

}

.contact-grid{

    max-width:900px;

    margin:auto;

    display:grid;

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

    gap:20px;

}

.contact-card{
    background:#ffffff;
    border:1px solid #edf0ed;
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    text-decoration:none;
    color:#222;
    box-shadow:0 10px 24px rgba(15,23,42,.08);
    transition:transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(15,23,42,.12);
}

.contact-icon{

    font-size:52px;

    margin-bottom:18px;

}

.contact-icon i{

    transition:.3s;

}

.phone i{

    color:#2e7d32;

}

.whatsapp i{

    color:#25D366;

}

.instagram i{

    color:#E1306C;

}

.tiktok i{

    color:#000;

}

.contact-card:hover i{

    transform:scale(1.15);

}

@media(max-width:768px){

.contact-grid{

    grid-template-columns:1fr;

}

.contact-card{

    padding:22px;

}

.contact-title h2{

    font-size:28px;

}

.contact-icon{

    font-size:34px;

}

.contact-card h3{

    font-size:20px;

}

}

/* ================= SELECTION FEEDBACK ================= */
.builder-card:has(input:checked),
.cup-card:has(input:checked){
    border-color:#2e7d32 !important;
    box-shadow:0 0 0 2px rgba(46,125,50,.12), 0 14px 30px rgba(0,0,0,.10);
}

/* =========================================
   PRE-ORDER CUSTOMER FORM
========================================= */

.preorder-form{

    display:none;

    max-width:700px;

    margin:28px auto 0;

    padding:28px;

    background:white;

    border:1px solid #eeeeee;

    border-radius:22px;

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

}

.preorder-form.active{

    display:block;

}

.preorder-form h3{

    margin-bottom:22px;

    color:#2e7d32;

    font-size:24px;

    text-align:center;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    display:block;

    margin-bottom:7px;

    color:#222;

    font-size:15px;

    font-weight:700;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:14px 15px;

    border:1px solid #dddddd;

    border-radius:12px;

    font-family:inherit;

    font-size:15px;

    outline:none;

    background:#fff;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#2e7d32;

    box-shadow:0 0 0 3px rgba(46,125,50,.10);

}

#confirmPreOrder{

    width:100%;

    margin-top:8px;

    padding:15px;

    border:none;

    border-radius:14px;

    background:#2e7d32;

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

}

#confirmPreOrder:hover{

    background:#1b5e20;

}

/* =========================================
   ORDER SUCCESS
========================================= */

.order-success{

    display:none;

    max-width:700px;

    margin:25px auto 0;

    padding:24px;

    text-align:center;

    background:#ecfdf5;

    border:1px solid #bbf7d0;

    border-radius:20px;

    color:#166534;

}

.order-success.active{

    display:block;

}

.order-success h3{

    margin-bottom:12px;

    font-size:24px;

}

.order-success p{

    margin:8px 0;

    line-height:1.6;

}

#orderReferenceText{

    color:#2e7d32;

    font-size:18px;

}

.payment-instructions{

    margin:20px 0;

    padding:20px;

    background:white;

    border:1px solid #bbf7d0;

    border-radius:16px;

}

.payment-instructions h4{

    margin-bottom:12px;

    color:#2e7d32;

    font-size:20px;

}

.payment-instructions p{

    margin:8px 0;

    color:#333;

}

#copyMomoNumber{

    margin-top:14px;

    padding:12px 18px;

    border:none;

    border-radius:12px;

    background:#2e7d32;

    color:white;

    font-weight:700;

    cursor:pointer;

}

#copyMomoNumber:hover{

    background:#1b5e20;

}

/* =========================================
   ITEM FLY TO CART ANIMATION
========================================= */

.cart-fly-item{
    position:fixed;
    z-index:9999;
    pointer-events:none;

    background:#ffffff;
    border:2px solid #16a34a;
    border-radius:50%;

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.18);

    transition:
    left 0.65s ease-in,
    top 0.65s ease-in,
    transform 0.65s ease-in,
    opacity 0.65s ease-in;
}

/* =========================================
   READY-MADE SANDWICHES
========================================= */

.ready-sandwich-section{
    padding:70px 30px;
    background:#fffdf8;
}

.ready-sandwich-section .section-title{
    text-align:center;
    margin-bottom:35px;
}

.ready-sandwich-section .section-title h2{
    color:#2e7d32;
    font-size:34px;
    margin-bottom:8px;
}

.ready-sandwich-section .section-title p{
    color:#666;
    font-size:16px;
}

.ready-sandwich-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1200px;
    margin:0 auto;
}

.ready-sandwich-card{
    background:white;
    border:1px solid #eeeeee;
    border-radius:22px;
    padding:18px;
    text-align:center;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    transition:.3s ease;
}

.ready-sandwich-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 34px rgba(0,0,0,.12);
}

.ready-sandwich-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:16px;
}

.ready-sandwich-card h3{
    color:#222;
    font-size:21px;
    margin-bottom:8px;
}

.ready-sandwich-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    min-height:68px;
}

.ready-sandwich-btn{
    width:100%;
    margin-top:14px;
    padding:13px;
    border:none;
    border-radius:12px;
    background:#ff9800;
    color:white;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.ready-sandwich-btn:hover{
    background:#e68900;
    transform:translateY(-2px);
}

@media(max-width:900px){

    .ready-sandwich-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:560px){

    .ready-sandwich-section{
        padding:50px 16px;
    }

    .ready-sandwich-grid{
        grid-template-columns:1fr;
    }

    .ready-sandwich-card img{
        height:210px;
    }

}

/* =========================================
   EPHY'S SPECIAL - EQUAL CARD SIZES
========================================= */

.ready-sandwich-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    align-items:stretch;
}

.ready-sandwich-card{
    display:flex;
    flex-direction:column;

    height:100%;
    min-height:570px;

    padding:26px;

    box-sizing:border-box;
}


/* SAME IMAGE SIZE */

.ready-sandwich-card img{
    width:100%;
    height:285px;

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

    border-radius:18px;

    display:block;

    margin-bottom:24px;
}


/* SAME TITLE AREA */

.ready-sandwich-card h3{
    min-height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 0 12px;

    text-align:center;
}


/* SAME DESCRIPTION AREA */

.ready-sandwich-card p{
    min-height:76px;

    margin:0 0 20px;

    display:flex;
    align-items:flex-start;
    justify-content:center;

    text-align:center;
}


/* KEEP ALL BUTTONS AT SAME LEVEL */

.ready-sandwich-card .ready-sandwich-btn{
    margin-top:auto;

    width:100%;
    min-height:62px;
}


/* TABLET */

@media(max-width:900px){

    .ready-sandwich-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}


/* MOBILE */

@media(max-width:560px){

    .ready-sandwich-grid{
        grid-template-columns:1fr;
    }

    .ready-sandwich-card{
        min-height:auto;
    }

    .ready-sandwich-card img{
        height:240px;
    }

}

/* =========================================
   EPHY'S SPECIAL - COMPACT CARD STYLE
========================================= */

.ready-sandwich-section{
    padding:45px 20px;
    background:#fffdf8;
}

.ready-sandwich-section .section-title{
    text-align:center;
    margin-bottom:25px;
}

.ready-sandwich-section .section-title h2{
    margin:0 0 8px;
    font-size:30px;
    color:#2e7d32;
}

.ready-sandwich-section .section-title p{
    margin:0;
    font-size:15px;
    color:#666;
}


/* 4 CARDS ON DESKTOP */

.ready-sandwich-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;

    max-width:1050px;
    margin:0 auto;
}


/* SAME SIZE AS THE SMALL BUILDER / BOOSTER CARDS */

.ready-sandwich-card{
    background:white;

    border:1px solid #eeeeee;
    border-radius:18px;

    padding:12px;

    text-align:center;

    display:flex;
    flex-direction:column;

    min-height:320px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.07);

    transition:.25s ease;
}

.ready-sandwich-card:hover{
    transform:translateY(-4px);

    box-shadow:
        0 12px 24px rgba(0,0,0,.10);
}


/* ALL 4 IMAGES SAME SIZE */

.ready-sandwich-card img{
    width:100%;
    height:135px;

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

    border-radius:12px;

    margin:0 0 12px;

    display:block;
}


/* TITLE */

.ready-sandwich-card h3{
    margin:0 0 7px;

    font-size:17px;
    font-weight:800;

    color:#222;

    line-height:1.3;
}


/* DESCRIPTION */

.ready-sandwich-card p{
    margin:0 0 12px;

    font-size:12px;
    line-height:1.5;

    color:#666;

    min-height:54px;
}


/* BUTTON */

.ready-sandwich-btn{
    width:100%;

    margin-top:auto;

    padding:10px 8px;

    border:none;
    border-radius:10px;

    background:#ff9800;
    color:white;

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

    cursor:pointer;

    transition:.2s ease;
}

.ready-sandwich-btn:hover{
    background:#e68900;
    transform:translateY(-2px);
}


/* TABLET */

@media(max-width:900px){

    .ready-sandwich-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}


/* PHONE */

@media(max-width:560px){

    .ready-sandwich-section{
        padding:35px 12px;
    }

    .ready-sandwich-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .ready-sandwich-card{
        min-height:280px;
        padding:9px;
        border-radius:14px;
    }

    .ready-sandwich-card img{
        height:105px;
        border-radius:9px;
    }

    .ready-sandwich-card h3{
        font-size:14px;
    }

    .ready-sandwich-card p{
        font-size:11px;
        min-height:48px;
    }

    .ready-sandwich-btn{
        font-size:11px;
        padding:8px 5px;
    }

}

/* =========================================
   EPHY'S SPECIAL PRICE TAG
========================================= */

.special-price{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    align-self:center;

    background:#e8f5e9;
    color:#2e7d32;

    border:1px solid #c8e6c9;
    border-radius:20px;

    padding:6px 14px;
    margin:0 0 12px;

    font-size:15px;
    font-weight:800;
}

@media(max-width:560px){

    .special-price{
        font-size:13px;
        padding:5px 11px;
        margin-bottom:9px;
    }

}

/* =========================================
   FRUIT PRICE TAG
========================================= */

.fruit-price{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    margin-top:7px;

    padding:4px 10px;

    background:#e8f5e9;

    color:#2e7d32;

    border:1px solid #c8e6c9;

    border-radius:20px;

    font-size:13px;

    font-weight:800;

}

/* =========================================
   COMPACT SANDWICH SUMMARY
========================================= */

.summary-box{
    max-width:780px;
    margin:25px auto 0;
    padding:26px 34px;

    border-radius:24px;

    min-height:auto;
}

.summary-box h2{
    margin:8px 0 14px;

    font-size:28px;
    line-height:1.2;
}

.summary-box p{
    margin:12px 0 4px;

    font-size:16px;
    line-height:1.35;
}

.summary-box ul{
    margin:4px 0 8px;
    padding-left:20px;
}

.summary-box li{
    margin:2px 0;
    line-height:1.3;
}

#selectedBread,
#selectedSauce{
    margin-top:2px;
    margin-bottom:8px;
}

#sandwichTotal{
    font-size:34px;
    font-weight:800;
}

#addSandwich{
    margin-top:18px;
}

/* =========================================
   HOMEMADE BY EPHY - PREMIUM NAVBAR
========================================= */

header{
    background:
        linear-gradient(
            120deg,
            #14532d 0%,
            #2e7d32 32%,
            #f59e0b 70%,
            #ea580c 100%
        );

    padding:14px 22px;

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

    position:relative;
    z-index:1000;
}


/* MAIN NAVBAR */

.navbar{
    max-width:1500px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 24px;

    border-radius:24px;

    background:
        rgba(255,255,255,.12);

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

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18);

    backdrop-filter:blur(8px);
}


/* LOGO */

.navbar img{
    background:#ffffff;

    border-radius:50%;

    padding:5px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.18);
}


/* BUSINESS NAME */

.navbar h1{
    color:#ffffff;

    font-weight:900;

    text-shadow:
        0 2px 5px rgba(0,0,0,.25);
}


/* TAGLINE */

.navbar p{
    color:#fff7d6;

    font-weight:600;
}


/* NAV LINKS CONTAINER */

.navbar nav{
    display:flex;
    align-items:center;
    gap:10px;
}


/* NAVIGATION BUTTONS */

.navbar nav a{
    color:#ffffff;

    text-decoration:none;

    font-weight:800;

    padding:11px 17px;

    border-radius:14px;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;

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


/* INDIVIDUAL COLOURS */

.navbar nav a:nth-child(1){
    background:#15803d;
}

.navbar nav a:nth-child(2){
    background:#db2777;
}

.navbar nav a:nth-child(3){
    background:#f59e0b;
}

.navbar nav a:nth-child(4){
    background:#7e22ce;
}


/* HOVER */

.navbar nav a:hover{
    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 8px 18px rgba(0,0,0,.22);

    filter:brightness(1.08);
}


/* MOBILE */

@media(max-width:768px){

    header{
        padding:10px;
    }

    .navbar{
        padding:12px;

        border-radius:18px;

        flex-direction:column;

        gap:14px;
    }

    .navbar nav{
        width:100%;

        display:grid;

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

        gap:8px;
    }

    .navbar nav a{
        text-align:center;

        padding:10px 6px;

        font-size:14px;
    }

}

/* =========================================
   HOMEMADE BY EPHY - COLORFUL PREMIUM NAVBAR
========================================= */

.navbar{

    max-width:1750px;

    margin:14px auto;

    padding:18px 24px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    border-radius:28px;

    background:
        linear-gradient(
            100deg,
            #1b7a2a 0%,
            #49a514 25%,
            #f59e0b 65%,
            #ef4444 100%
        );

    border:2px solid rgba(255,255,255,.35);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18),
        inset 0 2px 0 rgba(255,255,255,.25);

}


/* =========================================
   LOGO AREA
========================================= */

.logo-area{

    display:flex;

    align-items:center;

    gap:16px;

}


.logo{

    width:78px;

    height:78px;

    object-fit:contain;

    background:white;

    border-radius:50%;

    padding:8px;

    border:3px solid #facc15;

    box-shadow:
        0 7px 18px rgba(0,0,0,.22);

}


.logo-area h2{

    margin:0;

    color:white;

    font-size:34px;

    font-weight:900;

    text-shadow:
        0 3px 7px rgba(0,0,0,.28);

}


.logo-area p{

    margin:3px 0 0;

    color:#fff8d6;

    font-size:15px;

    font-weight:700;

}


/* =========================================
   NAVIGATION LINKS
========================================= */

.nav-links{

    display:flex;

    align-items:center;

    gap:14px;

    list-style:none;

    margin:0;

    padding:0;

}


.nav-links li{

    margin:0;

}


.nav-links a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:120px;

    padding:14px 18px;

    border-radius:16px;

    text-decoration:none;

    color:white;

    font-size:17px;

    font-weight:900;

    border:2px solid rgba(255,255,255,.28);

    box-shadow:
        0 7px 14px rgba(0,0,0,.20),
        inset 0 2px 0 rgba(255,255,255,.22);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease;

}


/* HOME */

.nav-links li:nth-child(1) a{

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #15803d
        );

}


/* SMOOTHIES */

.nav-links li:nth-child(2) a{

    background:
        linear-gradient(
            135deg,
            #ec4899,
            #db2777
        );

}


/* SANDWICHES */

.nav-links li:nth-child(3) a{

    background:
        linear-gradient(
            135deg,
            #fbbf24,
            #f97316
        );

}


/* CONTACT */

.nav-links li:nth-child(4) a{

    background:
        linear-gradient(
            135deg,
            #9333ea,
            #6b21a8
        );

}


/* HOVER */

.nav-links a:hover{

    transform:
        translateY(-4px)
        scale(1.04);

    filter:brightness(1.08);

    box-shadow:
        0 12px 20px rgba(0,0,0,.28),
        inset 0 2px 0 rgba(255,255,255,.28);

}


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

@media(max-width:900px){

    .navbar{

        flex-direction:column;

        align-items:stretch;

        padding:16px;

    }

    .logo-area{

        justify-content:center;

        text-align:left;

    }

    .nav-links{

        display:grid;

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

        width:90%;

        gap:10px;

    }

    .nav-links a{

        min-width:0;

        width:90%;

        font-size:12px;

        padding:10px 6px;

    }

}


@media(max-width:520px){

    .logo{

        width:30px;

        height:30px;

    }

    .logo-area h2{

        font-size:20px;

    }

    .logo-area p{

        font-size:10px;

    }

}

/* =========================================
   TRIM NAVBAR HEIGHT
========================================= */

.navbar{
    min-height:0 !important;
    height:auto !important;

    padding:10px 22px !important;
    margin:8px auto !important;

    border-radius:24px !important;

    align-items:center !important;
}


/* LEFT BRAND AREA */

.logo-area{
    display:flex !important;
    align-items:center !important;

    gap:14px !important;

    min-width:0;
}


/* SMALLER LOGO */

.logo{
    width:62px !important;
    height:62px !important;

    padding:5px !important;

    flex-shrink:0;
}


/* BRAND NAME */

.logo-area h2{
    margin:0 0 2px !important;

    font-size:30px !important;
    line-height:1.05 !important;

    white-space:nowrap;
}


/* KEEP TAGLINE ON ONE LINE */

.logo-area p{
    margin:0 !important;

    font-size:13px !important;
    line-height:1.2 !important;

    white-space:nowrap !important;
}


/* NAVIGATION */

.nav-links{
    gap:12px !important;

    flex-shrink:0;
}


/* SHORTER BUTTONS */

.nav-links a{
    min-width:110px !important;

    padding:11px 16px !important;

    font-size:15px !important;

    border-radius:15px !important;
}


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

@media(max-width:900px){

    .navbar{
        padding:12px !important;
    }

    .logo-area h2{
        font-size:25px !important;
    }

    .logo-area p{
        white-space:normal !important;
    }

}


@media(max-width:560px){

    .logo{
        width:52px !important;
        height:52px !important;
    }

    .logo-area h2{
        font-size:21px !important;
        white-space:normal;
    }

    .logo-area p{
        font-size:11px !important;
    }

}

/* =========================================
   NAVIGATION ICONS
========================================= */

.nav-links a{

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    gap:8px !important;

}


.nav-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    line-height:1;

    flex-shrink:0;

    transition:
        transform .2s ease;

}


.nav-links a:hover .nav-icon{

    transform:
        scale(1.2)
        rotate(-5deg);

}


/* MOBILE */

@media(max-width:560px){

    .nav-links a{

        gap:5px !important;

    }

    .nav-icon{

        font-size:17px;

    }

}