*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:linear-gradient(135deg,#b84400,#ff7b00);
    min-height:100vh;
}

/* HEADER */

header{
    background:#fff;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo{
    font-size:38px;
    font-weight:700;
    color:#f37021;
}

.logo i{
    margin-right:10px;
}

.header-right{
    display:flex;
    gap:20px;
    align-items:center;
}

.search-box{
    position:relative;
}

.search-box input{
    width:280px;
    height:45px;
    border:none;
    background:#f7f7f7;
    border-radius:8px;
    padding-left:40px;
}

.search-box i{
    position:absolute;
    left:15px;
    top:14px;
    color:#999;
}

.login-btn{
    background:#f6f6f6;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    color:#f37021;
    font-weight:600;
    cursor:pointer;
}

/* HERO */

.hero{
    padding:50px 15px;
}

.main-card{
    max-width:1100px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* TITLE */

.main-card h1{
    text-align:center;
    font-size:55px;
    color:#1d2434;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:40px;
}

/* CATEGORIES */

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:50px;
}

.category-card{
    background:#fff7f0;
    border:1px solid #ffe0c8;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    background:#f37021;
    transform:translateY(-7px);
    color:#fff;
}

.category-card:hover i{
    color:#fff;
}

.category-card i{
    font-size:50px;
    color:#f37021;
    margin-bottom:15px;
}

.category-card h3{
    font-size:24px;
}




.catalogue-section{
    margin-top:40px;
    text-align:center;
    border-top:1px solid #eee;
    padding-top:40px;
}

.catalogue-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    background:linear-gradient(135deg,#f37021,#ff9f43);
    color:white;
    padding:18px 45px;
    border-radius:50px;
    font-size:20px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 25px rgba(243,112,33,.35);
}

.catalogue-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 20px 40px rgba(243,112,33,.45);
}

.stats{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.stat{
    text-align:center;
}

.stat h3{
    font-size:32px;
    color:#f37021;
    margin-bottom:5px;
}

.stat p{
    color:#666;
}



/* FEATURES */

.features{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.feature-box{
    background:#fff7f0;
    border-radius:15px;
    padding:20px;
    text-align:center;
}

.feature-box i{
    color:#f37021;
    font-size:30px;
    margin-bottom:10px;
}

.feature-box h3{
    margin-bottom:5px;
}


/*----social media icons ---*/
.header-right{
    display:flex;
    align-items:center;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#fff7f0;
    border:1px solid #ffe2cd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f37021;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#f37021;
    color:#fff;
    transform:translateY(-3px);
}
/*----ends social media icons ---*/



.contact-info{
    font-size:18px;
    font-weight:600;
    color:#1d2434;
}

.contact-info i{
    color:#f37021;
    margin-right:8px;
}







.category-img{
    height:220px;
    overflow:hidden;
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.category-card:hover img{
    transform:scale(1.08);
}







/*---footer---*/

footer{
    background:#1d2434;
    color:#fff;
    margin-top:60px;
    padding:50px 20px 25px;
}

.footer-content{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    color:#f37021;
    margin-bottom:15px;
}

.footer-logo i{
    margin-right:10px;
}

.footer-content p{
    color:#cfcfcf;
    margin-bottom:25px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#f37021;
    transform:translateY(-3px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    color:#aaa;
    font-size:14px;
}
/*--- end of footer---*/
/* RESPONSIVE */

@media(max-width:991px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features{
        grid-template-columns:1fr;
    }

    .main-card h1{
        font-size:42px;
    }
}

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    .header-right{
        width:100%;
        flex-direction:column;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        width:100%;
    }

    .row{
        flex-direction:column;
    }

    .main-card{
        padding:25px;
    }
    .catalogue-btn{
        width:100%;
        justify-content:center;
        font-size:18px;
    }

    .stats{
        gap:25px;
    }
}

@media(max-width:576px){

    .category-grid{
        grid-template-columns:1fr;
    }

    .main-card h1{
        font-size:32px;
    }

    .order-title{
        font-size:28px;
    }
}






/*-------catalogue.html ------------*/


shadow:0 2px 10px rgba(0,0,0,.08);position:sticky;top:0;z-index:100}
.logo{font-size:34px;font-weight:700;color:#f37021}
.contact{font-weight:600}
.social a{margin:0 8px;color:#f37021}
.cart-btn{background:#f37021;color:#fff;padding:10px 18px;border-radius:30px;cursor:pointer}
.hero h1{font-size:48px}
.container{display:flex;gap:20px;padding:20px}
.sidebar{width:260px;background:#fff;border-radius:12px;padding:15px;height:calc(100vh - 140px);overflow:auto;position:sticky;top:90px}
.sidebar h3{margin-bottom:15px}
.cat{padding:12px;border-radius:8px;cursor:pointer;margin-bottom:8px;background:#fff7f0}
.cat:hover,.cat.active{background:#f37021;color:#fff}
.content{flex:1}
.toolbar{display:flex;gap:10px;justify-content:space-between;margin-bottom:15px}
.toolbar input,.toolbar select{padding:10px;border:1px solid #ddd;border-radius:8px}
.products{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,.08)}
.card img{width:100%;height:220px;object-fit:cover}
.info{padding:15px}
.badge{display:inline-block;background:#f37021;color:#fff;padding:4px 8px;border-radius:4px;font-size:12px}
.price{font-size:24px;font-weight:700;margin:8px 0}
.stock{color:green;font-size:14px}
.desc{color:#666;height:48px}
.add{width:100%;background:#2c1b47;color:#fff;border:none;padding:12px;border-radius:8px;margin-top:10px;cursor:pointer}
.cart-panel{position:fixed;right:-420px;top:0;width:400px;max-width:100%;height:100%;background:#fff;box-shadow:-5px 0 20px rgba(0,0,0,.2);transition:.3s;padding:20px;z-index:999}
.cart-panel.open{right:0}
.cart-header{display:flex;justify-content:space-between}
.cart-items{max-height:65vh;overflow:auto;margin-top:15px}
.cart-item{display:flex;justify-content:space-between;margin-bottom:12px;border-bottom:1px solid #eee;padding-bottom:8px}
.qty button{padding:4px 10px}
.checkout{width:100%;padding:14px;background:#f37021;color:#fff;border:none;border-radius:8px}

@media(max-width:900px){
.container{flex-direction:column}
.sidebar{width:100%;height:auto;position:static}
.hero h1{font-size:32px}
}







.modal{
    display:none; /* Hidden initially */
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.modal-content{
    width:500px;
    max-width:90%;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.modal-content h2{
    margin-bottom:20px;
    color:#1d2434;
}

.modal-content input,
.modal-content textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.modal-content button{
    width:100%;
    background:#f37021;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
}

.slip-content{
    width:600px;
    max-width:95%;
    background:#fff;
    padding:25px;
    border-radius:15px;
}

.close-btn{
    float:right;
    cursor:pointer;
    font-size:22px;
    font-weight:bold;
}



.slip-content{
    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:15px;
    padding:30px;
    max-height:90vh;
    overflow:auto;
}

.download-btn{
    width:100%;
    padding:15px;
    background:#f37021;
    color:#fff;
    border:none;
    border-radius:8px;
    margin-top:20px;
    cursor:pointer;
}

#slipModal{
    display:none;
}

.modal{
    display:none;
}