body {
	
	background-color: #1a1818;
}



        .resetDiv {
            width: 100%;
            text-align: center;
            background-color: #201a4f;
            box-sizing: border-box;
            color: white;
            font-weight: bold;
            border-radius: 10px;
            padding: 10px;
        }
        .resetDiv:hover {
            background-color: #e81c26;
            transition: 500ms;
        }


        .shop-banner {
        width: 100%;
        height: 220px;
        background: url('images/shop-bg.jpg') center center / cover no-repeat;
        position: relative;
        }

/* Dark overlay effect */
.shop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 50, 0.75); /* dark blue overlay */
}

/* Center content */
.shop-banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SHOP text style */
.shop-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}

.shop-banner {
    height: 220px;
    background: linear-gradient(135deg, #020024, #090979, #000000);
    position: relative;
}

@media (max-width: 768px) {
    .shop-banner {
        height: 150px;
    }

    .shop-banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .shop-top-bar {
        min-height: auto;
    }

    .shop-top-right {
        position: static;
        text-align: center;
        margin-top: 20px;
    }

    .search-box {
        max-width: 100%;
    }

    .shop-title {
        font-size: 30px;
    }
}

/* *************************** */

.shop-top {
    padding: 30px 0 20px;
}

.shop-top-bar {
    position: relative;
    min-height: 140px;
}

.shop-top-center {
    text-align: center;
}

.shop-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color:#fff;
}

.search-box {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
    font-size: 14px;
}

.search-box button {
    width: 50px;
    border: none;
    background: #eef1f4;
    cursor: pointer;
}

.search-box button i {
    color: #666;
}

.shop-top-right {
    position: absolute;
    top: 0;
    right: 0;
}

.sort-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f3f5f8;
    padding: 14px 18px;
    border-radius: 10px;
}

.sort-box label {
    margin: 0;
    font-weight: 500;
    color: #666;
}

.sort-box select {
    border: none;
    background: transparent;
    outline: none;
    font-weight: 500;
    cursor: pointer;
}

/* ************************ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.product-card {
    position: relative;
    background: #1a1818;
    border: 1.5px solid #9d4948;
    border-radius: 14px;
    padding: 18px 18px 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(252, 169, 169, 0.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #9d4948;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
    z-index: 2;
}

.product-image-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-info h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
    margin: 0 0 14px;
    min-height: 90px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid #9d4948;
    border-radius: 999px;
    color: #c7716f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    transition: 0.3s ease;
}

.view-btn i {
    font-size: 14px;
}

.view-btn:hover {
    background: #9d4948;
    color: #fff;
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-info h3 {
        font-size: 22px;
        min-height: 80px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image-box {
        height: 230px;
    }

    .product-info h3 {
        font-size: 20px;
        min-height: auto;
    }

    .product-price {
        font-size: 18px;
    }

    .view-btn {
        font-size: 15px;
        padding: 9px 16px;
    }
}

/* ------------------------ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a {
    width: 48px;
    height: 48px;
    border: 1.5px solid #9d4948;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
    background: #fff;
}

/* Hover */
.pagination a:hover {
    background: #9d4948;
    color: #fff;
}

/* Active */
.pagination a.active {
    background: #1e1b4b;   /* dark blue */
    color: #fff;
    border-color: #1e1b4b;
}

/* Dots */
.pagination .dots {
    font-size: 20px;
    color: #555;
}


/* ---------------------- */
.shop-content-section {
    padding: 40px 0;
}

.shop-sidebar {
    padding-right: 20px;
}

.sidebar-block {
    margin-bottom: 35px;
}

.sidebar-block h3 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block ul li {
    margin-bottom: 10px;
}

.sidebar-block ul li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.sidebar-block ul li a:hover {
    color: #9d4948;
}

.price-range {
    width: 100%;
    accent-color: #9d4948;
}

.price-value {
    font-size: 13px;
    color: #fff;
    margin: 10px 0 15px;
}

.reset-btn {
    width: 100%;
    border: none;
    background: #9d4948;
    color: #fff;
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 3px;
}

.reset-btn:hover {
    background: #ec8381;
}

.menu-section {
    padding-left: 10px;
}

.menu-grid {
    margin-top: 35px;
}

.menu-grid > div {
    margin-bottom: 30px;
}

.menu-box {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 20px;
    min-height: 235px;
    border: 1px solid #f2f2f2;
    width: 100%;
}

.menu-img {
    width: 40%;
    text-align: center;
    flex-shrink: 0;
}

.menu-img img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.menu-content {
    width: 60%;
}

.menu-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 12px;
    color: #222;
}

.menu-content h3 span {
    float: right;
    color: #9d4948;
    font-size: 15px;
    font-weight: 700;
}

.menu-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

.menu-content a {
    display: inline-block;
    min-width: 115px;
    text-align: center;
    padding: 10px 18px;
    border: 1px solid #9d4948;
    color: #222;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu-content a:hover {
    background: #9d4948;
    color: #fff;
}

@media (max-width: 991px) {
    .shop-sidebar {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .menu-section {
        padding-left: 0;
    }

    .menu-box {
        gap: 15px;
        padding: 20px 15px;
        min-height: auto;
    }

    .menu-content h3 span {
        float: none;
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    .menu-box {
        flex-direction: column;
        text-align: center;
    }

    .menu-img,
    .menu-content {
        width: 100%;
    }

    .menu-img {
        margin-bottom: 15px;
    }

    .menu-content h3 span {
        float: none;
        display: block;
        margin-top: 6px;
    }

    .menu-content a {
        margin: 0 auto;
    }
}


@media (max-width: 768px) {
    .pagination a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* /*************** */
    .cart-nav {
    position: relative;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    color: #2b2b74;
    padding: 18px 15px !important;
}

.cart-icon i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: 8px;
    right: 6px;
    background: #9d4948;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

