*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}

/* NAVBAR */

.custom-navbar{
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 9999;
}

body{
    padding-top: 92px;
}

@media(max-width:991px){

    body{
        padding-top: 85px;
    }

    .navbar-collapse{
        background: #ffffff;
        padding: 18px;
        border-radius: 16px;
        margin-top: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

}

.nav-logo{
    height: 58px;
    width: auto;
}

.navbar-toggler-icon{
    filter: invert(1);
}

.navbar-nav{
    gap: 28px;
}

.nav-link{
    color: #333 !important;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-link:hover{
    color: #d8a52f !important;
}

.dropdown-menu{
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    padding: 10px;
}

.dropdown-item{
    padding: 10px 15px;
    border-radius: 8px;
    color: #333;
}

.dropdown-item:hover{
    background: #d8a52f;
    color: #ffffff;
}

/* Desktop hover dropdown */
@media(min-width: 992px){
    .shop-dropdown:hover .dropdown-menu{
        display: block;
        margin-top: 0;
    }
}

/* HERO */

.hero-section{
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
        url("../images/hero-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 90px;
    color: #ffffff;
}

.hero-content{
    max-width: 950px;
    margin: auto;
}

.hero-content h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 25px;
}

.hero-content p{
    font-size: 1.35rem;
    max-width: 790px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero-buttons .btn{
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
}

.hero-btn-gold{
    background: #dfaa34;
    color: #ffffff;
    border: 2px solid #dfaa34;
}

.hero-btn-gold:hover{
    background: #ffffff;
    color: #222;
    border-color: #ffffff;
}

.hero-btn-outline{
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-outline:hover{
    background: #dfaa34;
    color: #ffffff;
    border-color: #dfaa34;
}

/* MOBILE */

@media(max-width: 991px){
    .navbar-collapse{
        margin-top: 15px;
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
    }

    .navbar-nav{
        gap: 5px;
    }

    .nav-link{
        padding: 10px 0;
    }

    .hero-content h1{
        font-size: 2.8rem;
    }

    .hero-content p{
        font-size: 1rem;
    }
}
/* ABOUT / BRANDS */

.about-section{
    padding: 90px 0;
    background: #ffffff;
}

.section-heading{
    max-width: 780px;
    margin: 0 auto 50px;
}

.section-heading span{
    color: #dfaa34;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h2{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 12px 0;
    color: #222;
}

.section-heading p{
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.brand-box{
    display: block;
    height: 100%;
    text-align: center;
    background: #ffffff;
    padding: 28px 18px;
    border-radius: 18px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.brand-box:hover{
    transform: translateY(-8px);
    color: #222;
}

.brand-box img{
    width: 105px;
    height: 105px;
    object-fit: contain;
    margin-bottom: 18px;
}

.brand-box h5{
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-box p{
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

@media(max-width: 768px){
    .section-heading h2{
        font-size: 2.1rem;
    }

    .brand-box{
        padding: 22px 12px;
    }
}
.categories-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.category-block{
    padding-top: 90px;
    margin-top: -40px;
    margin-bottom: 80px;
}

.category-header{
    margin-bottom: 35px;
}

.category-header h3{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
}

.category-header p{
    color: #666;
    max-width: 650px;
    margin: 10px auto 0;
}

.product-card{
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.product-card:hover{
    transform: translateY(-8px);
}

.product-carousel img{
    height: 280px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color: rgba(0,0,0,0.65);
    border-radius: 50%;
    padding: 16px;
}

.product-content{
    padding: 20px;
}

.product-content h4{
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-content p{
    color: #666;
    line-height: 1.6;
    font-size: 0.92rem;
}

.product-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-price{
    color: #f4511e;
    font-size: 1rem;
    font-weight: 800;
}

.stock-badge{
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
}

.in-stock{
    background: #dcfce7;
    color: #15803d;
}

.out-stock{
    background: #fee2e2;
    color: #b91c1c;
}

.product-btn{
    width: 100%;
    background: #f4511e;
    color: #fff;
    border-radius: 40px;
    padding: 11px;
    font-weight: 700;
}

.product-btn:hover{
    background: #26343c;
    color: #fff;
}

.product-btn.disabled{
    background: #999;
    border: none;
}

/* FLOATING CART */

.floating-cart-btn{
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: none;
    background: #f4511e;
    color: #fff;
    font-size: 1.5rem;
    z-index: 1001;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.floating-cart-btn span{
    position: absolute;
    top: -6px;
    right: -4px;
    background: #000;
    color: #fff;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* CART DRAWER */

.cart-drawer{
    position: fixed;
    top: 0;
    right: -430px;
    width: 430px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
}

.cart-drawer.active{
    right: 0;
}

.cart-header{
    background: #26343c;
    color: #fff;
    padding: 28px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3{
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.cart-header button{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
}

.cart-body{
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.empty-cart-text{
    color: #777;
    text-align: center;
    margin-top: 40px;
}

.cart-item{
    border-bottom: 1px solid #eee;
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.cart-item h4{
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.cart-item-price{
    color: #f4511e;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.cart-controls{
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-controls button{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 1rem;
}

.cart-controls .remove-item{
    color: #999;
}

.cart-footer{
    border-top: 1px solid #eee;
    padding: 24px;
    background: #fff;
}

.cart-footer h4{
    font-size: 1.45rem;
    margin-bottom: 20px;
}

.cart-footer h4 span{
    font-weight: 800;
}

.submit-order-btn{
    width: 100%;
    border: none;
    background: #f4511e;
    color: #fff;
    padding: 16px;
    font-weight: 800;
    font-size: 1.1rem;
}

.continue-shopping-btn{
    width: 100%;
    border: none;
    background: transparent;
    color: #666;
    padding: 16px;
    font-size: 1rem;
}

.cart-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1002;
    display: none;
}

.cart-overlay.active{
    display: block;
}

@media(max-width: 768px){
    .product-carousel img{
        height: 220px;
    }

    .product-content{
        padding: 14px;
    }

    .product-content h4{
        font-size: 0.95rem;
    }

    .product-content p{
        font-size: 0.82rem;
    }

    .floating-cart-btn{
        width: 64px;
        height: 64px;
        right: 18px;
        bottom: 18px;
    }
}
.gallery-section{
    padding: 100px 0;
    background: #ffffff;
}

.gallery-card{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    background: #fff;
}

.gallery-link{
    display: block;
}

.gallery-carousel img{
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.gallery-card .carousel-control-prev,
.gallery-card .carousel-control-next{
    width: 45px;
    z-index: 5;
}

.gallery-card .carousel-control-prev-icon,
.gallery-card .carousel-control-next-icon{
    background-color: rgba(0,0,0,0.65);
    border-radius: 50%;
    padding: 17px;
}

@media(max-width: 768px){
    .gallery-carousel img{
        height: 240px;
    }
}
/* VIDEO SECTION */

.videos-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.video-card{
    display: block;
    text-decoration: none;
    color: #222;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.video-card:hover{
    transform: translateY(-8px);
    color: #222;
}

.video-image{
    position: relative;
    overflow: hidden;
}

.video-image img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.play-icon{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i{
    width: 80px;
    height: 80px;
    background: rgba(244,81,30,0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.video-content{
    padding: 22px;
}

.video-content h4{
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

@media(max-width:768px){

    .video-image img{
        height: 220px;
    }

    .play-icon i{
        width: 65px;
        height: 65px;
        font-size: 1.2rem;
    }

}
/* TESTIMONIALS */

.testimonials-section{
    padding: 100px 0;
    background: #ffffff;
}

.testimonial-card{
    max-width: 850px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.testimonial-card img{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card h4{
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonial-stars{
    margin-bottom: 20px;
}

.testimonial-stars i{
    color: #f4511e;
    margin: 0 2px;
}

.testimonial-card p{
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next{
    width: 60px;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon{
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    padding: 20px;
}

@media(max-width:768px){

    .testimonial-card{
        padding: 35px 20px;
    }

    .testimonial-card p{
        font-size: 0.95rem;
    }

}
/* BLOG SECTION */

.blog-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.blog-card{
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    height: 100%;
}

.blog-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-content{
    padding: 24px;
}

.blog-content h4{
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-content p{
    color: #666;
    line-height: 1.7;
}

.blog-btn{
    background: #f4511e;
    color: #fff;
    border-radius: 40px;
    padding: 11px 25px;
    font-weight: 700;
}

.blog-btn:hover{
    background: #26343c;
    color: #fff;
}

/* BLOG MODAL */

.blog-modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal-overlay.active{
    display: flex;
}

.blog-modal{
    width: 850px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    position: relative;
}

.blog-modal-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f4511e;
    color: #fff;
    z-index: 2;
}

.blog-modal img{
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.blog-modal-content{
    padding: 35px;
}

.blog-modal-content h3{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.blog-modal-content p{
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-share-btn{
    border: none;
    background: #26343c;
    color: #fff;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
}

@media(max-width:768px){
    .blog-modal img{
        height: 240px;
    }

    .blog-modal-content{
        padding: 24px;
    }

    .blog-modal-content h3{
        font-size: 1.5rem;
    }
}
/* CONTACT SECTION */

.contact-section{
    padding: 100px 0;
    background: #f8f8f8;
}

.contact-info-card,
.contact-form-card{
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.contact-info-card h3,
.contact-form-card h3{
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

.contact-info-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon{
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #f4511e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i{
    color: #fff;
    font-size: 1.2rem;
}

.contact-info-item h5{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-item p{
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-socials{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.contact-socials a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4511e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-socials a:hover{
    background: #26343c;
    transform: translateY(-4px);
}

.contact-socials i{
    font-size: 1.15rem;
}

.contact-form-card form input,
.contact-form-card form textarea{
    width: 100%;
    border: 1px solid #ddd;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    outline: none;
    font-size: 0.95rem;
}

.contact-form-card form input:focus,
.contact-form-card form textarea:focus{
    border-color: #f4511e;
}

.contact-btn{
    width: 100%;
    background: #f4511e;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.contact-btn:hover{
    background: #26343c;
    color: #fff;
}

@media(max-width:768px){

    .contact-info-card,
    .contact-form-card{
        padding: 28px 20px;
    }

}
/* FOOTER */

.main-footer{
    background: #1f2a30;
    color: #fff;
    padding-top: 90px;
}

.footer-brand img{
    width: 180px;
    margin-bottom: 25px;
}

.footer-brand p{
    color: #d6d6d6;
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-socials{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-socials a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f4511e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-socials a:hover{
    background: #fff;
    color: #1f2a30;
    transform: translateY(-4px);
}

.footer-links h4{
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li{
    margin-bottom: 14px;
}

.footer-links ul li a{
    color: #d6d6d6;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links ul li a:hover{
    color: #f4511e;
    padding-left: 6px;
}

.footer-contact{
    margin-top: 30px;
}

.footer-contact p{
    color: #d6d6d6;
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-contact i{
    color: #f4511e;
    margin-right: 8px;
}

.footer-bottom{
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p{
    margin: 0;
    color: #cfcfcf;
}
.dev-credit{
    margin-top: 10px !important;
    font-size: 0.95rem;
    color: #bfbfbf;
}

.dev-credit a{
    color: #f4511e;
    text-decoration: none;
    font-weight: 700;
}

.dev-credit a:hover{
    color: #fff;
}
.legal-section{
    padding: 160px 0 100px;
    background: #fff;
}

.legal-section h1{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.legal-section h3{
    margin-top: 28px;
    font-weight: 800;
}

.legal-section p{
    color: #555;
    line-height: 1.9;
}
.back-to-top{
    position: fixed;
    right: 28px;
    bottom: 115px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #26343c;
    color: #fff;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top.show{
    display: flex;
}

@media(max-width:768px){

    .main-footer{
        text-align: center;
    }

    .footer-socials{
        justify-content: center;
    }

}.reveal{
    opacity: 0;
    transform: translateY(35px);
    transition: 0.7s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}