*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* =========================
TOP BAR
========================= */

.top-bar{
    background:#071c12;
    color:#f5d77a;
    padding:10px 0;
    font-size:14px;
    border-bottom:1px solid rgba(212,175,55,0.2);
}

.top-bar a{
    color:#f5d77a;
    margin-left:12px;
    transition:0.3s;
}

.top-bar a:hover{
    color:#fff;
}

/* =========================
HEADER
========================= */

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#0b2417;
    box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.navbar{
    padding:15px 0;
}

.navbar-brand img{
    height:58px;
}

.desktop-menu{
    display:flex;
    align-items:center;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:30px;
}

.main-menu li{
    position:relative;
}

.main-menu li a{
    color:#fff;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.main-menu li a:hover{
    color:#d4af37;
}

/* Dropdown */

.submenu{
    position:absolute;
    top:120%;
    left:0;
    width:240px;
    background:#102d1e;
    border-radius:15px;
    padding:15px 0;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.submenu li{
    padding:0;
}

.submenu li a{
    display:block;
    padding:12px 22px;
    color:#fff;
}

.submenu li a:hover{
    background:rgba(212,175,55,0.1);
    color:#d4af37;
}

.has-submenu:hover .submenu{
    top:100%;
    opacity:1;
    visibility:visible;
}

/* Header Buttons */

.header-buttons{
    display:flex;
    gap:12px;
    margin-left:35px;
}

.btn-login,
.btn-register,
.btn-dashboard{
    padding:12px 26px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.btn-login{
    border:2px solid #d4af37;
    color:#d4af37;
}

.btn-login:hover{
    background:#d4af37;
    color:#071c12;
}

.btn-register,
.btn-dashboard{
    background:linear-gradient(135deg,#d4af37,#f5d77a);
    color:#071c12;
}

.btn-register:hover,
.btn-dashboard:hover{
    transform:translateY(-3px);
}

/* =========================
MOBILE SIDEBAR
========================= */

.mobile-toggle{
    display:none;
    border:none;
    background:none;
    color:#fff;
    font-size:30px;
}

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-100%;
    width:320px;
    height:100%;
    background:#071c12;
    z-index:99999;
    transition:0.4s;
    overflow-y:auto;
    padding:25px;
}

.mobile-sidebar.active{
    left:0;
}

.sidebar-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    opacity:0;
    visibility:hidden;
    z-index:9999;
    transition:0.4s;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.sidebar-header img{
    height:55px;
}

.sidebar-header button{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
}

.mobile-menu li{
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.mobile-menu li a,
.dropdown-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.mobile-submenu{
    display:none;
    padding-left:15px;
}

.mobile-dropdown.active .mobile-submenu{
    display:block;
}

.mobile-submenu li a{
    color:#d4af37;
    padding:10px 0;
}

.mobile-buttons{
    margin-top:30px;
}

/* =========================
HERO SLIDER
========================= */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
}

/* Hero Image */

.hero-slide {
    width: 100%;
    height: 100vh;
    min-height: 280px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-slide img {
    width: 100%;
    height: auto;
}

/* Navigation Arrows */

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    width: 45px;
    height: 45px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    font-weight: bold;
}

/* Pagination */

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff !important;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* =========================
TABLET
========================= */

@media (max-width: 991px) {

    .hero-slide {
        height: 65vh;
        min-height: 420px;
        background-position: center;
    }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767px) {

    .hero-slide {

        height: 38vh;
        min-height: 220px;

        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;

    }

    .swiper-button-next,
    .swiper-button-prev {

        width: 35px;
        height: 35px;

    }

    .swiper-button-next::after,
    .swiper-button-prev::after {

        font-size: 16px;

    }

    .swiper-pagination-bullet {

        width: 8px;
        height: 8px;

    }

}

/* =========================
FEATURES
========================= */

.features-section{
    padding:90px 0;
    background:#f8f9fa;
}

.feature-box{
    background:#fff;
    border-radius:25px;
    padding:45px 35px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:22px;
}

.feature-box h4{
    font-weight:700;
    margin-bottom:15px;
}

/* =========================
ABOUT SECTION
========================= */

.about-section{
    padding:100px 0;
}

.section-title{
    color:#d4af37;
    font-weight:700;
    margin-bottom:12px;
    letter-spacing:1px;
}

.about-section h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:25px;
    color:#071c12;
}

.about-section p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
}

/* =========================
FOOTER
========================= */

.footer{
    background:#071c12;
    color:#fff;
    padding:90px 0 20px;
}

.footer-logo{
    height:60px;
    margin-bottom:25px;
}

.footer h5{
    color:#d4af37;
    margin-bottom:25px;
    font-weight:700;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#ddd;
    transition:0.3s;
}

.footer ul li a:hover{
    color:#d4af37;
}

.footer p{
    color:#ccc;
    line-height:1.8;
}

.footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,0.08);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .desktop-menu{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero-section{
        padding:90px 0;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .about-section{
        text-align:center;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .feature-box{
        margin-bottom:20px;
    }

    .mobile-sidebar{
        width:290px;
    }

}

/* =========================
PRODUCT SECTION
========================= */

.product-section {
    background: #f8f9fa;
}

.product-card {

    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

/* Product Image */

.product-image {

    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

}

.product-image img {

    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.4s;

}

.product-card:hover img {

    transform: scale(1.08);

}

/* Content */

.product-content {

    padding: 15px;

}

.product-content h4 {

    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    min-height: 40px;

}

.product-content p {

    font-size: 13px;
    color: #666;
    line-height: 1.5;
    min-height: 60px;

}

/* Rating */

.product-rating {

    color: #ffb400;
    font-size: 14px;
    margin-bottom: 12px;

}

.product-rating span {

    color: #555;
    margin-left: 5px;

}

/* Button */

.product-btn {

    display: block;
    width: 100%;
    text-align: center;
    background: #0d6efd;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;

}

.product-btn:hover {

    background: #000;
    color: #fff;

}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .product-image {

        height: 140px;

    }

    .product-content {

        padding: 12px;

    }

    .product-content h4 {

        font-size: 14px;
        min-height: 35px;

    }

    .product-content p {

        font-size: 12px;
        min-height: 50px;

    }

    .product-btn {

        font-size: 12px;
        padding: 8px;

    }

}