/*=========================================
  Google Font & Global Styles
=========================================*/
:root{
    --primary:#791617;
    --secondary:#F1921F;
    --white:#ffffff;
    --light:#F8F9FA;
    --dark:#000000;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/*=========================================
    STICKY HEADER
=========================================*/

.header-wrapper{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1050;
}
/*=========================================
    TOP BAR
=========================================*/

.top-bar{
    background:var(--secondary);
    color:#fff;
    font-size:.85rem;
    padding:4px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.top-bar-content{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.top-contact a{
    display:flex;
    align-items:center;
    gap:7px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    line-height:1;
    transition:.3s ease;
}

.top-contact a:hover{
    color:var(--primary);
}

.top-contact i{
    width:24px;
    height:24px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    transition:.3s ease;
}

.top-contact a:hover i{
    transform:scale(1.1);
}

.divider{
    display:flex;
    align-items:center;
}

.divider i{
    background:none;
    color:rgba(255,255,255,.45);
    width:auto;
    height:auto;
    font-size:6px;
}

/*=========================================
    NAVBAR
=========================================*/

.navbar{
    background:#fff;
    padding:8px 0;
    min-height:70px;
    box-shadow:0 4px 12px rgba(0,0,0,.10);
    transition:padding .3s ease, box-shadow .3s ease;
}

.navbar.scrolled{
    padding:6px 0;
}
/*=========================================
  LOGO
=========================================*/
.logo{
    height:50px;
    width:100px;
    display:block;
}
/*=========================================
  NAVIGATION
=========================================*/

.navbar-nav{
    align-items:center;
}

.navbar-nav .nav-link{

    color:var(--secondary);
    font-size:16px;
    font-weight:600;
    margin:0 11px;
    padding:10px 0;
    position:relative;
    transition:.3s;
    gap: 1px;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:var(--primary);

}

/* Underline */

.navbar-nav .nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-2px;

    width:0;
    height:1px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

/*=========================================
  SHOP LINK
=========================================*/

.shop-link{

    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;

}

.shop-link i{

    font-size:11px;
    transition:.3s;

}

.dropdown:hover .shop-link i{

    transform:rotate(180deg);

}

/*=========================================
  DROPDOWN
=========================================*/


.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:8px 0;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.dropdown-item{
    font-size:15px;
    font-weight:500;
    padding:12px 20px;
    transition:.3s;

}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;

}
/*=========================================
  DESKTOP DROPDOWN
=========================================*/

.nav-item.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    background:#fff;
    border:none;
    border-radius:12px;
    padding:8px 0;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    z-index:9999;
}

.nav-item.dropdown:hover > .dropdown-menu{
    display:block;
    animation:fadeDown .25s ease;
}

.dropdown-item{
    display:block;
    font-size:15px;
    font-weight:500;
    padding:12px 20px;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;
}
/*=========================================
  CART
=========================================*/

.nav-icon{

    position:relative;

    color:var(--primary);

    font-size:22px;

    transition:.3s;

}

.nav-icon:hover{

    color:var(--secondary);

}

.cart-badge{

    position:absolute;

    top:-8px;
    right:-10px;

    width:18px;
    height:18px;

    background:var(--secondary);

    color:#fff;

    font-size:10px;
    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

}

/*=========================================
  TOGGLER
=========================================*/

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*=========================================
  ANIMATION
=========================================*/

@keyframes fadeDown{

    from{

        opacity:0;
        transform:translateY(10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*=========================================
  HERO SLIDER
=========================================*/

.hero-slider{
    position:relative;
    overflow:hidden;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item{
    height:70vh;
    min-height:520px;
}

.carousel-item{
    position:relative;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    z-index:2;
}

.hero-subtitle{
    display: none;
    color:#F1921F;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.hero-title{
    display: none;
    color:#fff;
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin:20px 0;
}

.hero-text{
    display: none;
    color:#fff;
    font-size:18px;
    line-height:1.8;
    max-width:600px;
}

/*=========================================
  QUALITY PRODUCTS
=========================================*/

.quality-products{
    padding:80px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2{
    font-weight:800;
    font-size:3rem;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/*=========================================
    PRODUCTS GRID
=========================================*/

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/*=========================================
    QUALITY CARD
=========================================*/

.quality-card{
    background:#fff;
    border-radius:1px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.06);
    transition:all .3s ease;
    height:100%;
}

.quality-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.quality-card a{
    display:flex;
    flex-direction:column;
    height:100%;
    text-decoration:none;
    color:inherit;
}

/*=========================================
    IMAGE
=========================================*/

.quality-image{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.quality-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    transition:transform .35s ease;
}

.quality-card:hover .quality-image img{
    transform:scale(1.05);
}

/*=========================================
    CONTENT
=========================================*/

.quality-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.quality-content h3{
    font-size:19px;
    font-weight:600;
    color:#222;
    line-height:1.4;
    margin-bottom:12px;

    /* Keeps all product names the same height */
    height:54px;
    display:flex;
    align-items:flex-start;
}

.quality-price{
    color:var(--primary);
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

/*=========================================
    VIEW DETAILS BUTTON
=========================================*/

.quality-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 20px;
    margin-top:auto;
    align-self:center;

    background:var(--primary);
    color:#fff;

    border-radius:10px;
    font-size:14px;
    font-weight:600;
    line-height:1;

    transition:all .3s ease;
}

.quality-btn span{
    font-size:15px;
    transition:transform .3s ease;
}

.quality-card:hover .quality-btn{
    background:var(--secondary);
    color:#fff;
}

.quality-card:hover .quality-btn span{
    transform:translateX(4px);
}

/*=========================================
    VIEW ALL BUTTON
=========================================*/

.view-all-products{
    text-align:center;
    margin-top:50px;
}

.btn-view-all{
    display:inline-block;
    padding:14px 36px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    border-radius:1px;
    font-weight:600;
    transition:.3s ease;
}

.btn-view-all:hover{
    background:#111;
    color:#fff;
}

/*=========================================
    GUARANTEES
=========================================*/

.guarantees{
    padding:80px 0;
    background:#fff;
}

.guarantees-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.guarantee-card{
    background:var(--primary);
    color:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:1px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.guarantee-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.guarantee-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .35s ease;
}

.guarantee-icon i{
    font-size:34px;
    color:#fff;
    transition:.35s ease;
}

/* Only the icon changes on hover */
.guarantee-card:hover .guarantee-icon{
    background:var(--secondary);
    transform:rotateY(180deg);
}

.guarantee-card h3{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.guarantee-card p{
    color:rgba(255,255,255,.9);
    line-height:1.8;
    margin:0;
}

/*=========================================
    FOOTER
=========================================*/

.footer{
    background:var(--primary);
    color:var(--white);
    padding:70px 0 30px;
}

.footer-logo{
    width: 250px!important;
    max-height:100px;
    margin-bottom:20px;
}

.footer h5{
    color:var(--white);
    font-size:1.25rem;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer h5::after{
    content:"";
    display:block;
    width:50px;
    height:3px;
    background:var(--secondary);
    margin-top:10px;
    border-radius:10px;
}

.footer p{
    color:rgba(255,255,255,.85);
    line-height:1.7;
    margin:0;
}

.footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s ease;
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:6px;
}

/*=========================================
    FOOTER CONTACT
=========================================*/

.footer .contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin:12px 0;
}

.footer .contact-item .icon{
    width:45px;
    height:45px;
    min-width:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--secondary);
    color:var(--white);
    border-radius:50%;
    font-size:1.1rem;
    transition:.35s ease;
}

.footer .contact-item:hover .icon{
    background:var(--white);
    color:var(--primary);
    transform:translateY(-3px);
}

.footer .contact-item h3{
    margin:0 0 2px;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    line-height:1.2;
}

.footer .contact-item p{
    margin:0;
    color:rgba(255,255,255,.85);
    font-size:.92rem;
    line-height:1.5;
}

.footer .contact-link{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s ease;
}

.footer .contact-link:hover{
    color:var(--secondary);
}

/*=========================================
    SOCIAL LINKS
=========================================*/

.social-links{
    list-style:none;
    margin:80px 0 0;
    padding:0;
    display:flex;
    align-items:center;
    gap:18px;
}

.social-links li{
    margin:0;
}

.social-links a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--primary);
    border-radius:50%;
    text-decoration:none;
    transition:.3s ease;
}

.social-links a i{
    font-size:1.5rem;
}

.social-links a:hover{
    background:var(--secondary);
    color:var(--white);
    transform:translateY(-4px);
}

.footer hr{
    border:0;
    border-top:1px solid rgba(255,255,255,.15);
    margin:40px 0 20px;
}

/*=========================================
  SCROLL TO TOP
=========================================*/

#scrollTop{

    position:fixed;

    right:25px;
    bottom:90px; /* moved above 3CX chat */

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    line-height:1;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:all .3s ease;

    z-index:99999;
}
#scrollTop.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

#scrollTop:hover{

    background:var(--secondary);
    transform:translateY(-4px);

}

#scrollTop i{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    line-height:1;

}
@media(max-width:768px){

    #scrollTop{
        right:20px;
        bottom:85px;
    }

}

/*=========================================
    SHOP SIDEBAR
=========================================*/
.card-body h4{
    margin-bottom:20px !important;
    font-size:1.2rem;
}
.category-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.category-item{
    display:block;
    padding:10px 14px;
    text-decoration:none;
    color:#333;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:6px;
    transition:all .3s ease;
    font-size:.95rem;
    font-weight:500;
    line-height:1.3;
}

.category-item:hover{
    background:#F1921F;
    color:#fff;
    border-color:#F1921F;
    transform:translateX(3px);
}

.category-item.active{
    background:var(--primary);
    color:#fff;
    border-color:#791617;
}

/*=========================================
    PAGINATION
=========================================*/

.pagination{
    margin-top:40px;
    gap:8px;
}

.pagination .page-link{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:6px;
    background:#fff;
    color:var(--primary);
    font-weight:600;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.pagination .page-link:hover{
    background:var(--secondary);
    color:#fff;
}

.pagination .page-item.active .page-link{
    background:var(--primary);
    color:#fff;
}

.pagination .page-item.disabled .page-link{
    opacity:.5;
    pointer-events:none;
}

/*=========================================
    PRODUCT CARD
=========================================*/

.product-card{
    border:none;
    border-radius:1px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
    height:440px;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

/* IMAGE */
.product-img,
.product-image{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

/* BODY */
.product-body,
.product-card .card-body{
    padding:12px;
    flex:1;
    display:flex;
    flex-direction:column;
}

/* TITLE */
.product-title,
.product-card h5{
    font-size:18px;
    font-weight:600;
    line-height:1.4;
    min-height:42px;
    margin-bottom:8px;
}

/* PRICE */
.product-price{
    color:var(--primary);
    font-weight:700;
    margin-top:auto;
    margin-bottom:10px;
}

/* FOOTER */
.product-card .card-footer{
    margin-top:auto;
    background:#fff;
    border-top:none;
}
/*=========================================
    PRODUCT CARD FOOTER
=========================================*/

.card-footer{
    background: #fff !important;
    border: none !important;
    padding: 10px 15px 15px;
}

/*=========================================
    ADD TO CART BUTTON
=========================================*/

.btn-cart{
    width: 170px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin: 0 auto;

    padding: 8px 14px;
    border: none;
    border-radius: 6px;

    background: var(--primary);
    color: #fff !important;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
    cursor: pointer;

    box-shadow: 0 4px 12px rgba(121,22,23,.18);
}

.btn-cart i{
    font-size: 13px;
    transition: transform .3s ease;
}

.btn-cart:hover{
    background: var(--secondary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241,146,31,.28);
}

.btn-cart:hover i{
    transform: scale(1.15);
}

.btn-cart:active{
    transform: scale(.97);
}

/*=========================================
    PRODUCT PAGE
=========================================*/


.product-gallery{
    overflow:hidden;
}

.product-image-container{
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    overflow: hidden;
}

.product-main-image{
    width: auto;
    max-width: 100%;
    height: 470px;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}

.product-image-container:hover .product-main-image{
    transform: scale(1.08);
}
.product-thumbnails{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.product-thumb{
    width:80px;
    height:80px;
    object-fit:contain;
    cursor:pointer;
    transition:.3s;
}

.product-thumb:hover{
    transform:scale(1.08);
}
.product-price{
    color:var(--primary);
    font-size:2rem;
    font-weight:700;
}

.btn-cart{
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.btn-cart:hover{
    opacity:.9;
    color:#fff;
}

.badge{
    font-size:.85rem;
    padding:.6rem .9rem;
}

.variation-group{
    margin-bottom:20px;
}

.variation-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.variation-btn:hover{
    border-color:var(--primary);
    color:var(--primary);
}

.variation-btn.active{
    background:#F1921F;
    border-color:#F1921F;
    color:#fff;
}

/*=========================================
    BACK TO SHOP BUTTON
=========================================*/

.btn-back-shop{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 15px;
    background:var(--primary);
    color:#fff;
    border:2px solid var(--primary);
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.btn-back-shop:hover{
    background-color: #F1921F;
    color:#fff;
    border-color:#F1921F;
    transform:translateX(-4px);
}

.btn-back-shop i{
    transition:transform .3s ease;
}

.btn-back-shop:hover i{
    transform:translateX(-4px);
}

/*=========================================
    PRODUCT PAGE ADD TO CART BUTTON
=========================================*/

.product-page-cart-btn{
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(121,22,23,.18);
}

.product-page-cart-btn:hover{
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241,146,31,.28);
}

.product-page-cart-btn:active{
    transform: scale(.98);
}

.product-page-cart-btn i{
    font-size: 14px;
}
/*=========================================
    RELATED PRODUCTS
=========================================*/

.related-products{
    background:#f8f9fa;
}

.related-products h2{
    font-size:2rem;
    font-weight:700;
    color:var(--dark);
}

.related-card{
    border:none;
    border-radius:1px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
    height:450px;
    display:flex;
    flex-direction:column;
}

.related-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.related-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.related-card-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.related-card-body h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}

.related-card-body h5 a{
    color:var(--dark);
    text-decoration:none;
}

.related-card-body h5 a:hover{
    color:var(--primary);
}

.related-price{
    font-size:22px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:20px;
}

.btn-related{
    width: 170px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin: 0 auto;

    padding: 8px 14px;
    border: none;
    border-radius: 6px;

    background: var(--primary);
    color: #fff !important;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
    cursor: pointer;

    box-shadow: 0 4px 12px rgba(121,22,23,.18);
}

.btn-related:hover{
    background:var(--secondary);
    color:#fff;
}

/*=========================================
    CART SIDEBAR
=========================================*/

.cart-sidebar{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-5px 0 25px rgba(0,0,0,.12);
    z-index:9999;
    transition:right .35s ease;

    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

/* AJAX content fills remaining height */
.cart-content{
    flex:1;
    display:flex;
    flex-direction:column;
    min-height:0;
}

/*=========================================
    CART HEADER
=========================================*/

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.cart-header h4{
    margin:0;
    font-weight:700;
}

.cart-close{
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    line-height:1;
}

/*=========================================
    CART BODY
=========================================*/

.cart-body{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

/*=========================================
    CART ITEM
=========================================*/

.cart-item{
    display:flex;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.cart-item:last-child{
    border-bottom:none;
}

.cart-item img{
    width:80px;
    height:80px;
    object-fit:contain;
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    padding:5px;
    flex-shrink:0;
}

.cart-details{
    flex:1;
}

.cart-details h6{
    margin:0 0 6px;
    font-size:15px;
    font-weight:600;
    color:#222;
    line-height:1.4;
}

.cart-price{
    color:var(--primary);
    font-size:16px;
    font-weight:700;
    margin-bottom:12px;
}

/*=========================================
    QUANTITY
=========================================*/

.cart-qty{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.qty-btn{
    width:34px;
    height:34px;
    border:1px solid #ddd;
    background:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    transition:.25s;
}

.qty-btn:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.cart-qty span{
    min-width:24px;
    text-align:center;
    font-size:16px;
    font-weight:700;
}

/*=========================================
    REMOVE BUTTON
=========================================*/

.remove-btn{
    border:none;
    background:none;
    color:#dc3545;
    padding:0;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.remove-btn:hover{
    color:#b71c1c;
}

/*=========================================
    CART FOOTER
=========================================*/

.cart-footer{
    margin-top:auto;
    padding:20px;
    border-top:1px solid #eee;
    background:#fff;
}

.cart-footer h5{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0;
    font-size:20px;
    font-weight:700;
}


.cart-bottom{
    padding:20px;
    border-top:1px solid #eee;
    background:#fff;
}

.cart-bottom .btn-cart{
    width:100%;
}

.cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    z-index:9998;
}

.cart-overlay.active{
    display:block;
}

/*=========================================
    CART NOTIFICATION
=========================================*/

.cart-notification{
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #222;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.cart-notification.show{
    opacity: 1;
    transform: translateY(0);
}

.cart-notification.success{
    background: #28a745;
}

.cart-notification.warning{
    background: #dc3545;
}
/*=========================================
    ABOUT PAGE
=========================================*/

.section-padding{
    padding:80px 0;
}

/*=========================================
    ABOUT HERO
=========================================*/

.about-hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.about-hero-img{
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.about-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.about-hero .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    line-height: normal;
}

.about-content{
    color:#fff;
}

.about-content h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:15px;
}

.about-content p{
    font-size:1.1rem;
    margin:0;
}

/* Section Heading */
.about-subheading{
    display:inline-block;
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.about-heading{
    font-size:38px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:25px;
    line-height:1.3;
}

/*=========================================
    OUR STORY
=========================================*/

.about-page img{
    border-radius:12px;
}

/*=========================================
    VALUES
=========================================*/

.value-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    text-align:center;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(121,22,23,.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.value-icon i{
    font-size:34px;
    color:var(--primary);
}

.value-card h4{
    font-size:24px;
    margin-bottom:15px;
    font-weight:600;
}

.value-card p{
    color:#666;
    margin:0;
    line-height:1.8;
}

/*=========================================
    JOURNEY
=========================================*/

.journey-wrapper{
    max-width:900px;
    margin:auto;
}

.journey-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:30px 0;
    border-bottom:1px solid #eee;
}

.journey-item:last-child{
    border-bottom:none;
}

.journey-number{
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.journey-content h4{
    font-size:24px;
    margin-bottom:10px;
    font-weight:600;
}

.journey-content p{
    color:#666;
    margin:0;
    line-height:1.8;
}

/*=========================================
    STATISTICS
=========================================*/

.stats-section{
    background:var(--primary);
    color:#fff;
    padding:80px 0;
}

.stats-section h2{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.stats-section p{
    margin:0;
    font-size:17px;
}

/*=========================================
    CTA
=========================================*/

.about-cta{
    padding:90px 0;
}

.cta-box{
    background:var(--primary);
    color:#fff;
    border-radius:15px;
    text-align:center;
    padding:70px;
}

.cta-box h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    max-width:650px;
    margin:0 auto 30px;
    opacity:.9;
}

.cta-box .btn{
    margin:8px;
    min-width:180px;
}

/*=========================================
    CONTACT PAGE
=========================================*/

/*=========================================
    QUOTE HERO
=========================================*/

.contact-hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.contact-hero-img{
    display: block;
    width: 100%;
    height: 400px;
}

.contact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.contact-hero .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.contact-content{
    color: #fff;
}

.contact-content h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-content p{
    font-size: 1.1rem;
    margin: 0;
}


/*=========================================
    CONTACT SECTION
=========================================*/

.contact-section{
    padding:80px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
     grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:flex-start;
}

/*=========================================
    FORM
=========================================*/

.contact-form-wrapper{
    width:100%;
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-wrapper h2{
    color:var(--primary);
    font-size:32px;
    margin-bottom:10px;
}

.contact-form-wrapper p{
    color:#666;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.form-group textarea{
    resize:vertical;
    min-height:170px;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 3px rgba(241,146,31,.15);
}

/*=========================================
    BUTTON
=========================================*/

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 35px;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#1EBE5D;
    color:#fff;
}

.contact-btn i{
    font-size:18px;
}

/*=========================================
    CONTACT CARD
=========================================*/

.contact-info{
    width:100%;
    align-self:flex-start;
    position:sticky;
    top:110px;
}

.info-card{
    width:100%;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-item .icon{
    width:60px;
    height:60px;
    min-width:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    font-size:22px;
}

.contact-item h3{
    margin:0 0 8px;
    color:var(--primary);
    font-size:22px;
}

.contact-item p{
    margin:0;
    color:#555;
    line-height:1.8;
}

.info-card hr{
    margin:25px 0;
    border:0;
    border-top:1px solid #eee;
}

/*=========================================
    LINKS
=========================================*/

.contact-link{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.contact-link:hover{
    color:var(--secondary);
}

/*=========================================
    MAP
=========================================*/

.map-section{
    margin-top:40px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/*=========================================
    ALERTS
=========================================*/

.alert{
    padding:15px 18px;
    margin-bottom:25px;
    border-radius:6px;
    font-weight:500;
}

.alert-success{
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
}

.alert-danger{
    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
}


/*=========================================
    TYPEWRITER
=========================================*/

.typewriter h1,
.typewriter p{
    color:#fff;
}

.typewriter h1{
    display:inline-block;
    font-size:3rem;
    font-weight:700;
    margin-bottom:15px;
}

.typewriter p{
    display:block;
    min-height:30px;
    font-size:1.1rem;
    line-height:1.7;
    max-width:650px;
}

.cursor{
    border-right:3px solid var(--secondary);
    animation:blink .8s step-end infinite;
}

@keyframes blink{

    0%,100%{
        border-color:var(--secondary);
    }

    50%{
        border-color:transparent;
    }

}

/*=========================================
    GET QUOTE PAGE
=========================================*/
.quote-hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.quote-hero-img{
    display: block;
    width: 100%;
    height: 400px;
}

.quote-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.quote-hero .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.quote-content{
    color: #fff;
}

.quote-content h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quote-content p{
    font-size: 1.1rem;
    margin: 0;
}

.quote-section{

padding:80px 0;
background:#fff;

}



.quote-wrapper{

max-width:900px;
margin:auto;
background:#f8f9fa;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.form-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;

}



.form-group{

margin-bottom:20px;

}



.form-group label{

display:block;
font-weight:600;
margin-bottom:8px;

}



.form-group input,
.form-group select,
.form-group textarea{


width:100%;
padding:14px;
border:1px solid #ddd;
font-size:15px;
outline:none;

}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

border-color:var(--primary);

}



.quote-submit{

width:100%;
padding:15px;
border:none;
background:var(--primary);
color:#fff;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.3s;

}



.quote-submit:hover{

background: var(--secondary);

}



.quote-submit i{

margin-left:8px;

}

.quote-intro{

text-align:center;
margin-bottom:30px;
color:#555;

}


.quote-wrapper h2{

text-align:center;
font-size:32px;
margin-bottom:10px;
color:var(--primary);

}

/*=========================================
  MOBILE SIDEBAR
=========================================*/

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    max-width:85%;
    height:100vh;
    background:#fff;
    transition:.35s ease;
    z-index:9999;
    overflow-y:auto;
    box-shadow:5px 0 25px rgba(0,0,0,.15);
}

.mobile-sidebar.active{
    left:0;
}

/*=========================================
    HEADER
=========================================*/

.mobile-sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    border-bottom:1px solid #eee;
}

.mobile-logo{
    width:130px;
    height:auto;
}

.mobile-close{
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
    color:var(--primary);
}

/*=========================================
    NAVIGATION
=========================================*/

.mobile-nav{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-nav > li{
    border-bottom:1px solid #f3f3f3;
}

.mobile-nav a{
    display:block;
    padding:16px 20px;
    color:#333;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.mobile-nav a:hover{
    background:#f8f9fa;
    color:var(--primary);
}

/*=========================================
    SHOP ROW
=========================================*/

.mobile-shop{
    display:flex;
    align-items:center;
    border-bottom:1px solid #f3f3f3;
}

.mobile-shop-link{
    flex:1;
    padding:16px 20px;
    color:#333;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.mobile-shop-link:hover{
    background:#f8f9fa;
    color:var(--primary);
}

.mobile-shop-toggle{
    width:56px;
    height:56px;
    border:none;
    border-left:1px solid #eee;
    background:#fff;
    color:var(--secondary);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.mobile-shop-toggle:hover{
    background:#f8f9fa;
    color:var(--primary);
}

.mobile-arrow{
    font-size:13px;
    transition:.3s ease;
}

.mobile-dropdown.active .mobile-arrow{
    transform:rotate(180deg);
}

/*=========================================
    SUBMENU
=========================================*/

.mobile-submenu{
    display:none;
    list-style:none;
    margin:0;
    padding:0;
    background:#fafafa;
}

.mobile-dropdown.active .mobile-submenu{
    display:block;
}

.mobile-submenu li{
    border:none;
}

.mobile-submenu a{
    display:block;
    padding:12px 40px;
    font-size:14px;
    font-weight:500;
    color:#555;
}

.mobile-submenu a:hover{
    background:#f2f2f2;
    color:var(--primary);
}

/*=========================================
    DESKTOP HIDE MOBILE MENU
=========================================*/

@media(min-width:992px){

    .mobile-sidebar,
    .mobile-menu-overlay{
        display:none;
    }

}

/*=========================================
  BLOG
=========================================*/

.blog-section{
    padding:80px 0;
    background:#fff;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.blog-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.blog-image{
    display:flex;
    align-items:center;
    justify-content:center;
    aspect-ratio:1/1;
    background:#fff;
    overflow:hidden;
    padding:15px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.05);
}

/*=========================================
    BLOG HERO
=========================================*/

.blog-hero{
    position:relative;
    width:100%;
    overflow:hidden;
    line-height:0;
}

.blog-hero-img{
    display:block;
    width:100%;
    height:420px;
    object-fit:cover;
}

.blog-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.75) 100%
    );
    z-index:1;
}

.blog-hero .container{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    z-index:2;
    line-height:normal;
    padding:0 20px;
}

.blog-content{
    max-width:800px;
    color:#fff;
}

.blog-content h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
    text-shadow:0 3px 10px rgba(0,0,0,.4);
}

.blog-content p{
    font-size:1.1rem;
    line-height:1.8;
    color:rgba(255,255,255,.95);
    margin:0;
    text-shadow:0 2px 8px rgba(0,0,0,.35);
}

/*=========================================
    BLOG OVERLAY
=========================================*/

.blog-overlay{
    padding:25px;
    background:linear-gradient(
        180deg,
        var(--primary),
        #5f1112
    );
    flex:1;
    display:flex;
    flex-direction:column;
}

.blog-date{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:.9rem;
    font-weight:500;
    margin-bottom:15px;
}

.blog-date i{
    color:var(--secondary);
}

.blog-overlay h3{
    color:#fff;
    font-size:1.45rem;
    font-weight:700;
    line-height:1.45;
    margin:0;
    transition:.3s;
}

.blog-card:hover .blog-overlay h3{
    color:var(--secondary);
}

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    width:fit-content;
    padding:12px 22px;
    background:var(--secondary);
    color:#fff;
    font-size:.9rem;
    font-weight:600;
    border-radius:5px;
    transition:.35s ease;
}

.blog-card:hover .blog-btn{
    background:#fff;
    color:var(--primary);
}

.blog-btn i{
    transition:.35s;
}

.blog-card:hover .blog-btn i{
    transform:translateX(5px);
}

/*=========================================
    EMPTY STATE
=========================================*/

.empty-blog{
    grid-column:1/-1;
    text-align:center;
    padding:80px 20px;
}

.empty-blog h3{
    color:var(--primary);
    margin-bottom:10px;
}

.empty-blog p{
    color:#666;
}

/*=========================================
  =========================================
  ALL RESPONSIVE STYLES
  =========================================
=========================================*/

/*=========================================
    TABLET (max-width: 991px)
=========================================*/

@media (max-width:991px){

    /* ===== NAVBAR ===== */
    .navbar-nav{
        margin-top:15px;
        align-items:flex-start;
    }

    .navbar-nav .nav-link{
        margin:6px 0;
    }

    .dropdown-menu{
        position:static;
        display:none;
        box-shadow:none;
        border:none;
        padding-left:15px;
        animation:none;
    }

    .dropdown-menu.show{
        display:block;
    }

    .dropdown-menu .dropdown-item{
        padding:8px 0;
    }

    .nav-icon{
        margin-top:15px;
        font-size:20px;
    }

    /* ===== GUARANTEES ===== */
    .guarantees-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ===== HERO ===== */
    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item{
        height:60vh;
        min-height:420px;
    }

    .hero-title{
        font-size:46px;
    }

    /* ===== QUALITY PRODUCTS ===== */
    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    /* ===== ABOUT ===== */
    .journey-item{
        gap:20px;
    }

    .about-hero-img{
        max-height:300px;
    }

    .about-content h1{
        font-size:2.5rem;
    }

    /* ===== CONTACT ===== */
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info{
        position:static;
    }

    .contact-form-wrapper{
        padding:30px;
    }

    /* ===== QUOTE ===== */
    .quote-content h1{
        font-size: 2.2rem;
    }

    /* ===== BLOG ===== */
    .blog-grid{
        gap:25px;
    }

    .blog-overlay{
        padding:20px;
    }

    .blog-overlay h3{
        font-size:1.2rem;
    }

    .blog-hero-img{
        height:320px;
    }

    .blog-content h1{
        font-size:2.5rem;
    }

}

/*=========================================
    MOBILE (max-width: 768px)
=========================================*/

@media (max-width:768px){

    /* ===== TOP BAR ===== */
    .top-bar{
        padding:4px 0;
    }

    .top-bar-content{
        justify-content:center;
    }

    .top-contact{
        display:flex;
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:10px;
        flex-wrap:nowrap;
    }

    .top-contact a{
        font-size:.72rem;
        gap:5px;
        white-space:nowrap;
    }

    .top-contact i{
        width:20px;
        height:20px;
        font-size:.65rem;
    }

    .divider{
        display:flex;
    }

    .divider i{
        font-size:4px;
    }

    /* ===== HERO ===== */
    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item{
        height:auto;
        min-height:auto;
    }

    .hero-image{
        display:block;
        width:100%;
        height:auto;
        object-fit:contain;
        margin-top:0;
    }

    .hero-content{
        padding:0 20px;
    }

    .hero-subtitle{
        font-size:14px;
    }

    .hero-title{
        font-size:28px;
        line-height:1.2;
    }

    .hero-text{
        font-size:15px;
        line-height:1.5;
    }

    /* ===== QUALITY PRODUCTS ===== */
    .products-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
        max-width:500px;
        margin:0 auto;
    }

    .quality-card{
        max-width:100%;
    }

    .quality-content h3{
        font-size:16px;
    }

    .quality-price{
        font-size:20px;
    }

    .quality-btn{
        margin-left:0;
        padding:10px 16px;
        font-size:13px;
        width:100%;
        justify-content:center;
        white-space:nowrap;
    }

    .section-title h2{
        font-size:30px;
    }

    /* ===== GUARANTEES ===== */
    .guarantees-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .guarantee-card{
        padding:25px 20px;
    }

    .guarantee-icon{
        width:65px;
        height:65px;
    }

    .guarantee-icon i{
        font-size:28px;
    }

    .guarantee-card h3{
        font-size:18px;
    }

    /* ===== PRODUCT CARDS ===== */
    .product-grid,
    .shop-products .row{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:15px;
        max-width:500px;
        margin:0 auto;
    }

    .product-card{
        height:100%;
        max-width:100%;
        overflow:hidden;
    }

    .product-img,
    .product-image{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .product-title,
    .product-card h5{
        font-size:14px;
        min-height:36px;
    }

    .product-price{
        font-size:17px;
    }

    .btn-cart{
        width:80% !important;
        height:45px;
        font-size:12px;
        padding:0 10px;
        margin:0 auto;
        white-space:nowrap;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:6px;
        border-radius:6px;
    }

    .btn-cart i{
        font-size:18px;
    }

    .card-footer{
        padding:8px 10px 10px;
    }

    /* ===== FOOTER ===== */
    .footer{
        padding:50px 0 25px;
        text-align:center;
    }

    .footer .col-12:first-child{
        margin-bottom:35px;
    }

    .footer-logo{
        display:block;
        margin:0 auto 20px;
        max-height:60px;
    }

    .footer h5{
        font-size:1.15rem;
        margin-bottom:18px;
        text-align:center;
    }

    .footer h5::after{
        margin:10px auto 0;
    }

    .footer .col-6{
        text-align:center;
        margin-bottom:30px;
    }

    .footer-links{
        padding:0;
    }

    .footer-links li{
        margin-bottom:10px;
    }

    .footer-links a:hover{
        padding-left:0;
    }

    .footer .contact-item{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        gap:12px;
        margin:20px 0;
    }

    .footer .contact-item .icon{
        margin:0 auto;
    }

    .footer .contact-item h3,
    .footer .contact-item p,
    .footer .contact-link{
        text-align:center;
    }

    .footer hr{
        margin:20px 0;
    }

    .social-links{
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        width:100%;
        margin:30px auto 0;
        gap:15px;
    }

    .social-links a{
        width:48px;
        height:48px;
    }

    .social-links a i{
        font-size:1.25rem;
    }

    /* ===== ABOUT ===== */
    .section-padding{
        padding:60px 0;
    }

    .about-hero-img{
        max-height:220px;
    }

    .about-content h1{
        font-size:2rem;
    }

    .about-content p{
        font-size:1rem;
    }

    .about-heading{
        font-size:30px;
    }

    .value-card{
        padding:30px 25px;
    }

    .journey-item{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .journey-number{
        margin-bottom:10px;
    }

    .stats-section h2{
        font-size:36px;
    }

    .stats-section .col-md-3{
        margin-bottom:30px;
    }

    .cta-box{
        padding:45px 25px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box .btn{
        width:100%;
        margin:8px 0;
    }

    /* ===== CONTACT ===== */
    .contact-hero{
        position:relative;
        width:100%;
        padding:0;
        margin:0;
        overflow:hidden;
        line-height:0;
    }

    .contact-hero-img{
        display:block;
        width:100%;
        height:auto;
        max-width:100%;
        margin:0;
        padding:0;
    }

    .contact-overlay{
        position:absolute;
        inset:0;
        background:rgba(0,0,0,.55);
    }

    .contact-hero .container{
        position:absolute;
        inset:0;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:0 20px;
        z-index:2;
    }

    .contact-content h1{
        font-size:2rem;
        font-weight:700;
        margin-bottom:10px;
        line-height:1.2;
    }

    .contact-content p{
        font-size:.95rem;
        line-height:1.6;
        margin:0;
    }

    .contact-section{
        padding:60px 0;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-wrapper{
        padding:25px;
    }

    .contact-btn{
        width:100%;
    }

    .contact-item{
        gap:15px;
    }

    .contact-item .icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:20px;
    }

    .map-section iframe{
        height:350px;
    }

    /* ===== QUOTE ===== */
    .quote-hero h1{
        font-size:36px;
    }

    .quote-content h1{
        font-size: 2rem;
    }

    .quote-content p{
        font-size: 1rem;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .quote-wrapper{
        padding:25px;
    }

    /* ===== RELATED PRODUCTS ===== */
    .related-products .row{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:15px;
        max-width:500px;
        margin:0 auto;
    }

    .related-products .row > div{
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .related-card{
        height:100%;
        max-width:100%;
        overflow:hidden;
        display:flex;
        flex-direction:column;
    }

    .related-card img{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .related-card-body{
        padding: 12px;
        flex:1;
        display:flex;
        flex-direction:column;
    }

    .related-card-body h5{
        font-size: 14px;
        margin-bottom: 8px;
        min-height: 36px;
    }

    .related-price{
        font-size: 16px;
        margin-bottom: 12px;
        margin-top:auto;
    }

    .btn-related{
        width:80% !important;
        height:36px;
        font-size:12px;
        padding:0 10px;
        margin:0 auto;
        white-space:nowrap;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:6px;
        border-radius:6px;
        margin-top:auto;
    }

    .btn-related i{
        font-size:12px;
    }

    /* ===== CART SIDEBAR ===== */
    .cart-sidebar{
        width: 100%;
        right: -100%;
    }

    /* ===== TYPEWRITER ===== */
    .typewriter h1{
        font-size:2rem;
    }

    .typewriter p{
        font-size:1rem;
    }

    .cursor{
        border-right:2px solid var(--secondary);
    }

    /* ===== BLOG ===== */
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .blog-image{
        padding:10px;
    }

    .blog-overlay{
        padding:15px;
    }

    .blog-date{
        font-size:.72rem;
        margin-bottom:10px;
    }

    .blog-overlay h3{
        font-size:1rem;
        line-height:1.35;
    }

    .blog-btn{
        margin-top:15px;
        padding:8px 14px;
        font-size:.75rem;
    }

    .blog-hero-img{
        height:260px;
    }

    .blog-content h1{
        font-size:2rem;
    }

    .blog-content p{
        font-size:1rem;
    }

}

/*=========================================
    MOBILE SMALL (max-width: 576px)
=========================================*/

@media (max-width:576px){

    /* ===== GUARANTEES ===== */
    .guarantees-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    /* ===== QUALITY PRODUCTS ===== */
    .products-grid{
        grid-template-columns:1fr;
        gap:20px;
        max-width:340px;
        margin:0 auto;
    }

    .quality-card{
        max-width:340px;
        margin:0 auto;
    }

    .quality-btn{
        white-space:nowrap;
        font-size:12px;
        padding:8px 14px;
        height:38px;
    }

    /* ===== PRODUCT CARDS ===== */
    .product-grid,
    .shop-products .row{
        grid-template-columns:1fr;
        gap:20px;
        max-width:340px;
        margin:0 auto;
    }

    .product-card{
        max-width:340px;
        margin:0 auto;
        height:100%;
    }

    .product-img,
    .product-image{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .product-title,
    .product-card h5{
        font-size:13px;
        min-height:32px;
    }

    .product-price{
        font-size:16px;
    }

    .btn-cart{
        width:70% !important;
        height:45px;
        font-size:11px;
        padding:0 8px;
        gap:4px;
        border-radius:5px;
    }

    .btn-cart i{
        font-size:18px;
    }

    /* ===== FOOTER ===== */
    .footer{
        padding:45px 0 20px;
    }

    .footer-logo{
        max-height:55px;
    }

    .footer h5{
        font-size:1.05rem;
    }

    .footer p{
        font-size:.9rem;
    }

    .footer .contact-item .icon{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:1rem;
    }

    .footer .contact-item h3{
        font-size:.95rem;
    }

    .footer .contact-item p{
        font-size:.85rem;
    }

    .social-links{
        gap:12px;
    }

    .social-links a{
        width:45px;
        height:45px;
    }

    .social-links a i{
        font-size:1.15rem;
    }

    /* ===== ABOUT ===== */
    .about-hero-img{
        max-height:180px;
    }

    .about-content h1{
        font-size:1.7rem;
    }

    .about-content p{
        font-size:.95rem;
    }

    /* ===== CONTACT ===== */
    .contact-section{
        padding:60px 0;
    }

    .contact-form-wrapper,
    .info-card{
        padding:20px;
    }

    .contact-item{
        flex-direction:column;
        gap:12px;
    }

    .contact-item .icon{
        margin:0;
    }

    /* ===== TYPEWRITER ===== */
    .typewriter h1{
        font-size:1.8rem;
    }

    .typewriter p{
        font-size:.9rem;
    }

    /* ===== RELATED PRODUCTS ===== */
    .related-products .row{
        grid-template-columns:1fr 1fr;
        gap:12px;
        max-width:340px;
        margin:0 auto;
    }

    .related-card{
        height:100%;
        max-width:100%;
        margin:0 auto;
        display:flex;
        flex-direction:column;
    }

    .related-card img{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .related-card-body{
        padding: 10px;
        flex:1;
        display:flex;
        flex-direction:column;
    }

    .related-card-body h5{
        font-size:12px;
        min-height:30px;
        margin-bottom:6px;
    }

    .related-price{
        font-size:14px;
        margin-bottom:10px;
        margin-top:auto;
    }

    .btn-related{
        width:80% !important;
        height:32px;
        font-size:11px;
        padding:0 8px;
        gap:4px;
        border-radius:5px;
        margin-top:auto;
    }

    .btn-related i{
        font-size:11px;
    }

    /* ===== BLOG ===== */
    .blog-grid{
        gap:12px;
    }

    .blog-image{
        padding:8px;
    }

    .blog-overlay{
        padding:12px;
    }

    .blog-date{
        font-size:.68rem;
    }

    .blog-overlay h3{
        font-size:.9rem;
    }

    .blog-btn{
        padding:7px 12px;
        font-size:.72rem;
    }

    .blog-hero-img{
        height:220px;
    }

    .blog-content h1{
        font-size:1.7rem;
    }

    .blog-content p{
        font-size:.95rem;
        line-height:1.6;
    }

}

/*=========================================
    MOBILE EXTRA SMALL (max-width: 400px)
=========================================*/

@media (max-width:400px){

    /* ===== QUALITY PRODUCTS ===== */
    .products-grid{
        max-width:280px;
    }

    .quality-card{
        max-width:280px;
    }

    .quality-btn{
        font-size:11px;
        padding:6px 10px;
        height:34px;
        white-space:nowrap;
    }

    /* ===== PRODUCT CARDS ===== */
    .product-grid,
    .shop-products .row{
        max-width:280px;
    }

    .product-card{
        max-width:280px;
    }

    .product-img,
    .product-image{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .product-title,
    .product-card h5{
        font-size:12px;
        min-height:28px;
    }

    .product-price{
        font-size:14px;
    }

    .btn-cart{
        width:65% !important;
        height:45px;
        font-size:10px;
        padding:0 6px;
        gap:3px;
        border-radius:4px;
    }

    .btn-cart i{
        font-size:18px;
    }

    /* ===== RELATED PRODUCTS ===== */
    .related-products .row{
        grid-template-columns:1fr 1fr;
        gap:10px;
        max-width:280px;
        margin:0 auto;
    }

    .related-card{
        height:100%;
        max-width:100%;
        display:flex;
        flex-direction:column;
    }

    .related-card img{
        width:100%;
        height:auto;
        aspect-ratio: 1/1;
        object-fit:cover;
        background: #f8f9fa;
        display:block;
    }

    .related-card-body{
        padding:8px;
        flex:1;
        display:flex;
        flex-direction:column;
    }

    .related-card-body h5{
        font-size:11px;
        min-height:26px;
        margin-bottom:4px;
    }

    .related-price{
        font-size:12px;
        margin-bottom:6px;
        margin-top:auto;
    }

    .btn-related{
        width:80% !important;
        height:28px;
        font-size:10px;
        padding:0 6px;
        gap:3px;
        border-radius:4px;
        margin-top:auto;
    }

    .btn-related i{
        font-size:10px;
    }

}

/*=========================================
    ARTICLE PAGE (standalone stylesheet)
    Load AFTER style.css in header.php
=========================================*/

.article-section{
    padding:80px 0;
    background:#fff;
}

.article-section .article-wrapper{
    max-width:900px;
    margin:auto;
}

.article-section .article-image{
    width:100%;
    height:auto;
    max-height:600px;
    object-fit:contain;
    background:#f8f9fa;
    border-radius:12px;
    margin-bottom:40px;
}

.article-section .article-content{
    font-size:1.08rem;
    line-height:2;
    color:#555;
}

.article-section .article-content p{
    margin-bottom:20px;
}

.article-section .article-content strong{
    font-weight:700;
    color:#000;
}

.article-section .article-content em{
    font-style:italic;
    color:#333;
}

.article-section .article-footer{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.article-section .blog-back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:var(--primary, #791617);
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    border:none;
    transition:.3s ease;
}

.article-section .blog-back-btn:hover{
    background:var(--secondary, #F1921F);
    color:#fff;
}

.article-section .blog-back-btn i{
    transition:transform .3s ease;
}

.article-section .blog-back-btn:hover i{
    transform:translateX(-4px);
}

.article-section .article-content h3.article-heading{
    font-size:1.3rem;
    font-weight:700;
    color:#000;
    margin:35px 0 12px;
    line-height:1.4;
}

.article-section .article-content h3.article-heading:first-child{
    margin-top:0;
}

/*=========================================
    ARTICLE PAGE — RESPONSIVE
=========================================*/

@media (max-width:768px){

    .article-section{
        padding:60px 0;
    }

    .article-section .article-image{
        max-height:320px;
        margin-bottom:25px;
    }

    .article-section .article-content{
        font-size:1rem;
        line-height:1.8;
    }

    .article-section .article-footer{
        margin-top:35px;
    }

    .article-section .blog-back-btn{
        width:100%;
        justify-content:center;
        padding:12px 20px;
    }

}