* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6fb;
    color: #111827;
}

/* ================= CONTAINER ================= */

.container {
    max-width: 1200px;
}

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

.navbar {
    background: #111827;
    padding: 18px 0;
}

.navbar-brand {
    font-size: 32px;
    font-weight: 700;
    color: white !important;
    letter-spacing: 1px;
}

.nav-link {
    color: #d1d5db !important;
    font-weight: 500;
    transition: .3s;
}

.nav-link:hover {
    color: white !important;
}

/* ================= CART ================= */

.cart-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    position: relative;
    transition: .3s;
}

.cart-btn:hover {
    transform: translateY(-3px);
}

.cart-btn span {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ec4899;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-wrapper {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding-bottom: 20px;
}

.hero-section {
    min-height: 30vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-text {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 17px;
    max-width: 520px;
}

.hero-btn {
    background: white;
    color: #111827;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-outline-btn {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-outline-btn:hover {
    background: white;
    color: #111827;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 30px;
}

.floating-card {
    position: absolute;
    bottom: 25px;
    left: -30px;
    background: white;
    color: #111827;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ================= PAGE ================= */

.page-title {
    font-size: 38px;
    font-weight: 700;
}

.page-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* ================= SEARCH ================= */

.search-box {
    border-radius: 50px;
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
}

.search-box:focus {
    box-shadow: none;
    border-color: #8b5cf6;
}
/* ================= FILTER ================= */

.filter-btn {
    border: none;
    background: #f3f4f6;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    transition: .3s;
}

.filter-btn:hover {
    background: #e5e7eb;
}

.filter-btn.active {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    color: white;
}

/* ================= PRODUCT ================= */

.product-card {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: white;
    transition: .3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 20px;
}

.product-card h4 {
    font-size: 20px;
    font-weight: 600;
}

.badge-category {
    display: inline-block;
    background: #ede9fe;
    color: #8b5cf6;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    width: 100px;
    text-align: center;
}

.price {
    color: #8b5cf6;
    font-size: 24px;
    font-weight: 700;
}

/* ================= BUTTON ================= */

.btn-dark-custom {
    border: none;
    background: #111827;
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    transition: .3s;
}

.btn-dark-custom:hover {
    background: black;
}

/* ================= ADD TO CART BUTTON ================= */

.add-cart-btn {
    border: none;
    background: none;
    font-size: 28px;
    margin-right: 10px;
    color: #111827;
    transition: .3s;
}

.add-cart-btn:hover {
    transform: scale(1.1);
    color: #8b5cf6;
}

/* ================= MODAL ================= */

.modal-content {
    border: none;
    border-radius: 24px;
}

.modal-product-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

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

.size-badge {
    border: 2px solid #111827;
    background: white;
    color: #111827;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}

.size-badge:hover {
    background: #111827;
    color: white;
}

.active-size {
    background: #111827;
    color: white;
}

/* ================= PAGINATION ================= */

.pagination .page-link {
    border: none;
    margin: 0 4px;
    border-radius: 10px;
    color: #111827;
    padding: 10px 16px;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    color: white;
}

.pagination .page-link:hover {
    background: #111827;
    color: white;
}

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

.contact-section {
    background: #f8fafc;
    padding-bottom: 80px;
}

.contact-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-badge {
    background: #111827;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
}

.contact-text {
    color: #6b7280;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
}

.address-link,
.phone-link,
.email-link {
    color: #6b7280;
    text-decoration: none;
}

.address-link:hover,
.phone-link:hover,
.email-link:hover {
    color: #111827;
}

/* ================= CART MODAL ================= */

.cart-item {
    transition: .3s;
}

.cart-item:hover {
    transform: translateY(-2px);
}

.cart-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .hero-title {
        font-size: 46px;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-image {
        height: 320px;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
    }

    .contact-box {
        padding: 35px;
    }

    .contact-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 30px;
    }

}
/* ================= UI PATCH ================= */

.stats-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.why-section {
    background: #f9fafb;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: .2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 28px;
    margin-bottom: 10px;
}

.promo-banner {
    background: #111827;
}

.review-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
}
