@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
    --primary-color: #0d0c0c;
    --secondary-color: #51504f;
    --accent-color: #920c1a;
    --light-bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --text-white: #EFEFEF;
}

body {
    background: var(--light-bg);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

p {
    color: var(--text-light) !important;
    margin: 0 !important;
}

h2 {
    font-family: "Bebas Neue", sans-serif !important;
}

/* Theme Button */
.theme-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.theme-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* ADD TO CART BUTTON */
.add-to-cart-button {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.add-to-cart-button:hover {
    background: #0096c7;
}


/* BUY NOW BUTTON */
.buy-now-button {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.buy-now-button:hover {
    background: #e85d04;
}


/* WHITE BG BUTTON */
.white-bg-button {
    background: white;
    border: 1px solid white;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 10px;
}

.white-bg-button:hover {
    background: var(--secondary-color);
    border: 2px solid white;
    color: white !important;
}

/* Top Nav */
.top-nav {
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    height: 50px;
}

.top-nav-left {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.top-nav-right {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.top-nav-left p {
    color: white !important;
}

.top-nav-right p {
    color: white !important;
}

/* Main Nav */
.navbar {
    height: 100px;
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: white;
}

.logo {
    height: 80px;
}

/* Search Bar Box */
.search-bar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 6px 14px;
    width: 100%;
}

/* Input Styling */
.search-input {
    border: none;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    width: 100%;
    padding: 8px;
    outline: none;
    font-size: 16px;
}

/* Search Icon Button */
.search-icon {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Links Right Side */
.nav-link-custom {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.nav-link-custom i {
    color: var(--primary-color);
}

/* Bottom Nav */
.bottom-nav {
    background-color: var(--primary-color);
    position: sticky !important;
    top: 100px;
    z-index: 999;
}

.nav-link {
    color: white !important;
    text-decoration: none !important;
    padding: 10px 45px !important;
    display: inline-block !important;
}

.nav-link:hover {
    background-color: #051c33 !important;
    transition: 0.3s;
}

.nav-item .active {
    background-color: #003f7f !important;
}

.banner-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.deals-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.mt-30 {
    margin-top: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.category {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.category-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 10px;
}

.category h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category p {
    padding-bottom: 50px;
}

.categorySwiper .swiper-slide {
    text-align: center;
}

.categorySwiper .swiper-slide img {
    width: 100%;
    height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.categorySwiper .swiper-slide img:hover {
    transform: scale(1.1);
}

.categorySwiper .swiper-slide p {
    margin-top: 5px;
    font-weight: 500;
    color: black;
}

/* Move pagination a bit down */
.categorySwiper .swiper-pagination {
    bottom: 25px !important;
    /* adjust value as needed */
}

/* Active bullet color */
.categorySwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* active bullet color */
}

/* Scroller */
.scroll-wrapper {
    padding: 30px;
    color: var(--primary-color);
    overflow: hidden;
}

.scroll-text {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-size: 40px;
    font-weight: 600;
}

.scroll-text span {
    padding-right: 50px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-wrapper:hover .scroll-text {
    animation-play-state: paused;
}

.scroll-text img {
    width: 200px;
    height: 100%;
}

.scroll-text span img {
    transition: transform 0.3s ease;
}

.scroll-text span img:hover {
    transform: scale(1.1);
}

/* Featured Products */
.featured-products {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.featured-products-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.featured-products-top h2 {
    color: var(--primary-color);
    margin-bottom: -5px;
}

.featured-products-bottom p {
    color: black;
    font-size: 14px;
    line-height: 18px;
}

.featured-product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.featured-product-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-card {
    background: white;
    padding: 20px;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.featured-product-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    margin-bottom: 10px;
}

.featured-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.featured-product-card img:hover {
    transform: scale(1.1);
}

.featured-product-description {
    text-align: left;
    margin-bottom: 10px !important;
}

.featured-product-price,
.product-detail-price,
.similar-product-card .sp-price {
color: var(--secondary-color);
}


.featured-product-price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.featuredProductsSwiper {
    padding-bottom: 40px !important;
    /* adjust as needed */
}

/* Move pagination a bit down */
.featuredProductsSwiper .swiper-pagination {
    bottom: 15px !important;
    /* adjust value as needed */
}

/* Active bullet color */
.featuredProductsSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* active bullet color */
}

/* Best Sellers */
.best-seller-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.best-seller {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.best-seller-top h2 {
    color: var(--primary-color);
    margin-bottom: -5px;
}

.best-seller-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

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

.best-seller-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 160px;
    margin-bottom: 10px;
}

.best-seller-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.best-seller-card img:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 100;
}

.product-name {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}

.price {
    margin: 8px 0;
}

.price .new {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.price .old {
    margin-left: 6px;
    text-decoration: line-through;
    color: #777;
}

.price .off {
    margin-left: 6px;
    color: #00a000;
    font-weight: 600;
}

.rating {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 10px;
}

.best-seller-card .add-to-cart-button {
    width: 100%;
}

.bestSellerSwiper {
    padding-bottom: 40px !important;
    /* adjust as needed */
}

/* Move pagination a bit down */
.bestSellerSwiper .swiper-pagination {
    bottom: 15px !important;
    /* adjust value as needed */
}

/* Active bullet color */
.bestSellerSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* active bullet color */
}

/* .add-cart-btn {
    width: 100%;
    background: #FF8C00;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-cart-btn:hover {
    background: #E57A00;
} */

/* .gaming-zone {
    background-image: url("/assets/img/spiral-bg.webp");
    background-size: cover;
    background-position: center;
} */
.gaming-zone {
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
    /* optional: makes content readable */
}

.gaming-zone .container-fluid {
    position: relative;
    z-index: 10;
}

.gaming-zone h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gaming-zone p {
    color: var(--secondary-color) !important;
    margin-top: -10px !important;
}

.gaming-zone-left-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    margin-bottom: 10px;
}

.gaming-zone-left img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    margin-bottom: 10px;
}

.gaming-zone-left img:hover {
    transform: scale(1.1);
}

.gaming-zone-right-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    margin-bottom: 10px;
}

.gaming-zone-right img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.gaming-zone-right img:hover {
    transform: scale(1.1);
}

.gaming-zone-right-item1,
.gaming-zone-right-item2,
.gaming-zone-right-item3,
.gaming-zone-right-item4 {
    margin-bottom: 20px;
}

/* Accessories */
.accessories {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.accessories h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.accessories-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    margin-bottom: 10px;
}

.accessories-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.accessories-card img:hover {
    transform: scale(1.1);
}

.featuredProductsSwiper .swiper-slide {
    height: auto !important;
}

.bestSellerSwiper .swiper-slide {
    height: auto !important;
}

.accessoriesSwiper .swiper-slide {
    height: auto !important;
}

.accessories-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.accessoriesSwiper {
    padding-bottom: 40px !important;
    /* adjust as needed */
}

/* Move pagination a bit down */
.accessoriesSwiper .swiper-pagination {
    bottom: 15px !important;
    /* adjust value as needed */
}

/* Active bullet color */
.accessoriesSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* active bullet color */
}

.accessories-buttons {
    margin-top: auto !important;
    display: flex;
    gap: 10px;
}

.accessoriesSwiper .swiper-wrapper {
    align-items: stretch !important;
}

/* Blogs */
.blogs-top {
    display: flex;
    justify-content: space-between;
}

.blogs-top h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Custom styled buttons */
.blog-nav {
    position: relative;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px !important;
    height: 45px !important;
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99 !important;
    border-radius: 10px;
}

.custom-prev:hover {
    background: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

.custom-next:hover {
    background: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

/* Remove Swiper default arrow */
.custom-prev::after,
.custom-next::after {
    content: "" !important;
    background-image: none !important;
}

/* Add your own arrow */
.custom-prev::before,
.custom-next::before {
    font-size: 22px;
    color: white;
    position: absolute;
    margin-top: -5px;
}

.custom-prev::before {
    content: "←";
}

.custom-next::before {
    content: "→";
}

/* Position inside slider */
.custom-prev {
    left: -120px !important;
}

.custom-next {
    right: -10px;
}

.blogSwiper .swiper-slide {
    height: auto !important;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    margin-bottom: 5px;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.blog-card img:hover {
    transform: scale(1.1);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-read {
    margin-top: auto !important;
    display: block;
    text-align: right;
    color: var(--secondary-color);
}

.blog-content a {
    transition: 0.3s ease;
}

.blog-content a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

.blogs-top h2 {
    color: var(--primary-color);
}

.blogSwiper {
    padding-bottom: 40px !important;
    /* adjust as needed */
}

/* Move pagination a bit down */
.blogSwiper .swiper-pagination {
    bottom: 15px !important;
    /* adjust value as needed */
}

/* Active bullet color */
.blogSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* active bullet color */
}

.benifits img {
    width: 70px;
    height: 70px;
}

.benifits {
    text-align: center;
}

/* Contact Us */
.map-container iframe {
    border-radius: 10px !important;
    width: 100%;
    height: 450px;
}

.contact-us-right {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border-radius: 10px;
}

.contact-us-right h3 {
    color: var(--primary-color);
}

p {
    color: black !important;
}

/* footer */
.footer-logo {
    width: 350px;
    margin-left: -30px;
}

.footer {
    background: #020617;
    color: white;
}

.footer p {
    color: white !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: bold;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline !important;
}

.footer-mid {
    padding-left: 20px;
}

.footer-description {
    text-align: justify;
}

a {
    text-decoration: none !important;
}

.footer-top {
    align-items: center;
    padding-left: 20px;
}

.red-theme-btn {
    background: var(--secondary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
}

.red-theme-btn:hover {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.footer-newsletter .red-theme-btn {
    margin-left: 20px;
}

.footer-newsletter input {
    padding: 6px 15px;
    border-radius: 8px;
    border: none;
    width: 300px;
    font-size: 16px;
}

.footer-links:hover {
    color: var(--secondary-color) !important;
}

.benifits-item1,
.benifits-item2,
.benifits-item3 {
    margin-bottom: 30px;
}

.benifits h3 {
    font-size: 20px;
}

.benifits-inner {
    background: #f2f7fb;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
}

.benifits-inner-text {
    text-align: left;
}

.footer-socials img {
    width: 40px;
    height: 40px;
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-socials img:hover {
    transform: scale(1.1);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.deals img {
    border-radius: 10px;
}

.category img {
    border-radius: 10px;
}

.category p {
    font-size: 18px;
    text-align: left;
    margin-top: 5px !important;
    margin-left: 5px !important;
}

/* Product Page */
.product-details {
    display: flex;
    gap: 50px;
    position: relative;
    /* IMPORTANT for zoom preview overlay */
    align-items: flex-start;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-details-left {
    width: 40%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: fit-content;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky !important;
    top: 100px;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s ease;
}

.thumbnails img.active {
    border-color: #ffdeea;
    transform: scale(1.3);
    border: 1px solid var(--primary-color);
}

.main-img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Right Section */
.product-details-right {
    width: 60%;
    flex: 1;
}

.product-detail-category {
    color: var(--secondary-color) !important;
    font-size: 14px;
}

.product-detail-title {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0 15px;
    color: var(--primary-color);
}

.product-detail-rating {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-detail-rating i {
    color: #FFC107;
    margin-right: 2px;
}

.product-detail-brand img {
    width: 50px;
}

.product-detail-stock span {
    color: #28a745;
    font-weight: bold;
}

.product-detail-features {
    margin: 10px 0;
}

.product-detail-features li {
    margin-bottom: 5px;
}

.product-detail-price-section {
    margin: 20px 0;
}

.product-detail-product-detail-price {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.product-detail-price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.product-detail-old-price {
    margin-left: 15px;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.product-detail-options label,
.product-detail-quantity-section label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
}

select {
    padding: 5px;
    width: 150px;
    border-radius: 10px;
    border: 1px solid var(--light-bg);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-detail-quantity-section {
    margin-top: 10px;
}

.product-detail-qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-qty-box input {
    width: 30px;
    padding: 3px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.product-detail-qty-btn {
    cursor: pointer;
    border: none;
    font-size: 24px;
    background: white;
    color: gray;
}

.product-detail-qty-btn:hover {
    color: var(--primary-color);
}

.product-details-right .add-to-cart-button {
    margin-top: 10px !important;
}

/* ------------------------------ */
/* 🔍 ZOOM FUNCTIONALITY CSS FIXED */
/* ------------------------------ */

.zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(2px);
    display: none;
    pointer-events: none;
    z-index: 9999;
    /* IMPORTANT */
}

.zoom-preview {
    position: fixed;
    top: 200px;
    right: 300px;
    width: 450px;
    height: 450px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 999;
    /* makes it overlap right section */
    display: none;
}

.zoomed-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.product-tabs {
    width: 100%;
    background: #f1f8ff;
    padding: 20px;
    border-radius: 10px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
}

.tab-btn.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.tab-box {
    display: none;
    padding: 20px 0;
}

.tab-box.active {
    display: block;
}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.reviews-left {
    width: 60%;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.reviews-right {
    width: 40%;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.review-form .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.review-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 8px;
}

.star {
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.star:hover {
    color: orange;
}

.review-form input,
.review-form textarea,
.review-form select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.submit-review {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-review:hover {
    background: #e05800;
}

.similar-products {
    margin-top: 50px;
    background-image: url("/assets/img/spiral-bg.webp");
    background-size: cover;
    background-position: center;
}

.similar-products .section-title {
    color: var(--primary-color);
}

.similar-product-card {
    text-decoration: none;
    color: #000;
    background: var(--light-bg) !important;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

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

.similar-product-card .sp-image {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-product-card .sp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-product-card .sp-title {
    font-size: 16px;
    margin-top: 10px;
    color: var(--primary-color);
}

.similar-product-card .sp-price {
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 0;
    margin-top: 10px !important;
}

.similar-product-card p {
    font-size: 14px;
    line-height: 18px;
}

.similar-product-card .add-to-cart-button {
    margin-top: 10px;
    width: 100%;
}

/* Laptop Banner */
.laptop-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url("./assets/img/banner/banner-bg.jpg") no-repeat center center/cover;
    color: white;
}

/* Dark overlay for readability */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.banner-flex {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 100px;
    overflow: visible;
}

.banner-left {
    position: relative;
    width: 40%;
    overflow: visible;
}

.banner-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    overflow: visible;
}

.banner-right {
    width: 60%;
    padding-left: 40px;
    margin-top: -50px;
}

.banner-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-right p {
    font-size: 18px;
    margin-bottom: 25px !important;
    color: white !important;
}

.banner-buttons a {
    display: inline-block;
    padding: 12px 28px;
    margin-right: 12px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.middle-video {
    position: relative;
    width: 100%;
    height: 400px;
    /* adjust this value to decrease/increase height */
    overflow: hidden;
}

.middle-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures the video covers the container without distortion */
}

/* Overlay Content */
.video-content {
    position: absolute;
    top: 50%;
    left: 10%;
    /* content at middle-left */
    transform: translateY(-50%);
    color: white;
    max-width: 400px;
}

.video-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.video-content p {
    font-size: 1.1rem;
    margin-bottom: 20px !important;
    color: white !important;
}

.electronics-section {
    padding: 40px 0;
    background: #f4f6f9;
}

.electronics-container {
    display: flex;
    gap: 20px;
}

.electronics-banner {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
}

.electronics-banner.left {
    background: linear-gradient(135deg, #1c92d2, #f2fcfe);
}

.electronics-banner.left .electronics-text {
    text-align: left;
}

.electronics-banner.right {
    background: linear-gradient(270deg, #5a0000, #b80000, #ff1000);
}

.electronics-banner.right .electronics-text {
    text-align: right;
}

.electronics-text h2 {
    font-size: 32px;
    color: var(--light-bg);
    line-height: 30px;
    margin-bottom: 10px;
}

.electronics-text p {
    color: white !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
}

.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
    transition: 0.3s;
}

.shop-btn:hover {
    background: #222;
}

.electronics-banner-left {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.electronics-image img {
    width: 450px;
    transition: 0.5s ease;
}

.electronics-banner:hover .electronics-image img {
    transform: scale(1.15);
}

.tech-featured-section {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(135deg,
            #ff1000,
            /* pure color */
            #ff3c1f,
            /* lighter tone */
            #ff6a47
            /* even lighter tone */
        );
}

.tech-wrapper {
    display: flex;
    align-items: center;
}

.tech-left img {
    width: 100%;
    transition: 0.3s ease;
}

.tech-left img:hover {
    transform: scale(1.05);
}

.tech-content {
    text-align: center;
}

.tech-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-bg) !important;
}

.tech-content p {
    margin-top: 12px;
    color: white !important;
    text-align: justify;
    margin-bottom: 25px !important;
}

.tech-right img {
    width: 100%;
    overflow: visible;
    height: 150px !important;
    object-fit: cover;
    transition: 0.3s ease;
}

.tech-right img:hover {
    transform: scale(1.08);
}

.promo-banner {
    width: 100%;
    background: linear-gradient(90deg, #003d73, #005aa8, #4fa3ff);

    padding: 50px 0;
    position: relative;
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-img.left img {
    position: absolute;
    bottom: 0;
    width: 480px;
}

.promo-img.right img {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 350px;
}

.promo-content {
    text-align: center;
    max-width: 600px;
}

.promo-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px !important;
    color: var(--light-bg);
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 10px !important;
    color: white !important;
}

.promo-content h5 {
    margin-bottom: 30px !important;
    color: var(--light-bg);
}

.promo-content .theme-btn {
    background: white;
    border: 2px solid var(--light-bg);
    color: var(--primary-color);
}

.promo-content .theme-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--light-bg);
    color: white !important;
}

.you-may-like {
    background: #f9f9f9;
}

.ym-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ym-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ym-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.ym-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ym-desc {
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 5px;
}

.ym-price {
    font-size: 16px;
    font-weight: bold;
    color: #005aa8;
    margin-bottom: 12px;
}

/* Products Page */
/* .breadcrumb-section {
    height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #d8ecff, #a9d4ff, #cfe7ff);
    border-radius: 10px;
    margin-bottom: 50px;
} */

.breadcrumb-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb-left {
    margin-left: 100px;
}

.breadcrumb-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.breadcrumb li {
    font-size: 16px;
    color: white;
}

.breadcrumb li+li::before {
    content: "›";
    margin: 0 8px;
    color: white;
}

.breadcrumb a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

/* Products Wrapper */
.products-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: calc(100vh - 180px);
    overflow-y: auto;
    position: sticky;
    top: 160px;
}

.filter-box {
    margin-bottom: 25px;
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-title .reset-price {
    font-size: 0.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    font-weight: normal;
    text-decoration: underline;
}

.filter-title .reset-price:hover {
    color: #1d4ed8;
}

.filter-list {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.filter-list::-webkit-scrollbar {
    width: 5px;
}

.filter-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.filter-list li {
    margin: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-list li:hover {
    color: var(--primary-color);
}

.filter-list input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
    cursor: pointer;
    width: 16px;
    height: 16px;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-filter input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-inputs input {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.price-inputs span {
    font-weight: bold;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover {
    background: #1d4ed8;
}

/* Main Products */
.products-content {
    flex: 1;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.top-bar h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
}

.sort-view {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-options {
    display: flex;
    background: #f1f5f9;
    border-radius: var(--border-radius);
    padding: 4px;
}

.view-options button {
    padding: 8px 15px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: #64748b;
}

.view-options button.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sort-view select {
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    background: white;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    width: fit-content;
}

#sortSelect:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
    /* optional: keep normal border */
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 6px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    flex-grow: 0;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 0;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--secondary-color);
    flex-grow: 0;
    margin-bottom: 10px !important;
}

.product-specs {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 0;
}

.product-specs span {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.view-details-btn {
    margin-top: auto;
    padding: 12px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.view-details-btn:hover {
    background: #1d4ed8;
}

/* LIST VIEW */
.product-grid.list-view {
    display: block;
}

.product-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    text-align: left;
    padding: 20px;
    margin-bottom: 20px;
    height: auto;
}

.product-grid.list-view .product-card img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0;
}

.product-grid.list-view .product-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-grid.list-view .product-card .product-title {
    margin-top: 0;
}

.product-grid.list-view .product-card .view-details-btn {
    width: auto;
    min-width: 150px;
    margin-top: auto;
    align-self: flex-start;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 8px;
}

.pagination button {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.pagination button:hover:not(:disabled) {
    background: #f1f5f9;
}

.pagination button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-size: 0.9rem;
    color: #666;
    margin: 0 15px;
}

.clear-filter {
    color: var(--secondary-color);
    font-size: 12px;
}

.product-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* allow content to stretch */
}

.product-buttons {
    margin-top: auto !important;
    /* pushes buttons to bottom */
    display: flex;
    justify-content: space-between;
}

.wishlist {
    display: flex;
}

/* .add-to-wishlist {
    width: 50px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-wishlist:hover {
    background-color: #fff5f5;
    color: #ff5252;
    border-color: #ffcdd2;
}

.add-to-wishlist.active {
    background-color: #ffebee;
    color: #ff5252;
    border-color: #ff5252;
}

.add-to-wishlist.active:hover {
    background-color: #ffcdd2;
} */

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-toast.success {
    border-left: 5px solid #4caf50;
}

.notification-toast.warning {
    border-left: 5px solid #ff9800;
}

.notification-icon {
    font-size: 24px;
}

.notification-toast.success .notification-icon {
    color: #4caf50;
}

.notification-toast.warning .notification-icon {
    color: #ff9800;
}

.notification-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.notification-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.close-notification {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

.close-notification:hover {
    color: #333;
}

/* Cart */

.cart-header {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: var(--border-color);
    transform: scale(1.05);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 5px;
    font-weight: 600;
}

.summary-card {
    position: sticky;
    top: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.summary-card .card-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-checkout {
    background: var(--secondary-color) !important;
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.badge-discount {
    background: linear-gradient(135deg, var(--success-color) 0%, #34d399 100%);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.savings-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.cart-item-actions {
    opacity: 0;
    transition: opacity 0.3s;
}

.cart-item:hover .cart-item-actions {
    opacity: 1;
}

.payment-methods i {
    font-size: 1.5rem;
    margin: 0 5px;
    opacity: 0.7;
}

.promo-code {
    position: relative;
}

.promo-code input {
    padding-right: 80px;
}

.promo-code .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
}

.mini-cart {
    position: fixed;
    /* or fixed */
    top: 130px;
    right: 130px;
    z-index: 9999;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 20px;
    padding-top: 40px;
    max-height: 60vh;
    /* important */
    overflow-y: auto;
}

#guestCartBtn {
    border: none;
    background: none;
    position: relative;
}

#guestCartCount {
    position: absolute;
    top: -4px;
    /* adjust */
    left: 16px;
    /* adjust */
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mini-cart-close {
    position: absolute;
    /* relative to .mini-cart */
    top: 2px;
    right: 2px;
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    color: var(--secondary-color);
}

.mini-cart-remove {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    align-self: flex-end;
}

.mini-cart-link {
    display: flex;
    align-items: center;
}

.wishlist-button {
    width: 20%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light-bg);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.wishlist-button i {
    font-size: 18px;
    color: var(--secondary-color);
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Active state */

.wishlist-button.active i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
    background: #fff;
    color: #000;
}

/* MEGA MENU PARENT */
.mega-dropdown {
    position: static;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: linear-gradient(135deg, #cce6ff, #e6f2ff);
    display: none;
    border-top: 2px solid #c62828;
    z-index: 999;
}

/* SHOW ON HOVER */
.mega-dropdown:hover .mega-menu {
    display: block;
}

/* CONTENT */
.mega-content {
    background-color: var(--primary-color);
    width: 900px;
    margin: auto;
    padding: 25px 15px;
}

/* COLUMN STYLING */
.mega-content h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.mega-content a {
    display: block;
    font-size: 13px;
    padding: 4px 0;
    color: var(--text-white);
    text-decoration: none;
}

.mega-content a:hover {
    color: var(--accent-color);
}

.mega-dropdown:hover,
.mega-dropdown:hover>.nav-link {
    background-color: var(--primary-color);
}

/* IMPORTANT: keep background when hovering mega-menu */
.mega-dropdown:hover .mega-menu {
    display: block;
}

.sign-up-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.sign-up {
    color: var(--primary-color);
}

.eye-button {
    background: none;
    border: none;
}

.login-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.sign-in {
    color: var(--primary-color);
}

.input-group {
    position: relative;
}

.input-group .form-control {
    width: 100%;
    padding-right: 45px;
    /* space for eye icon */
    border-radius: 10px !important;
}

.eye-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6c757d;
    z-index: 5;
}

.eye-button i {
    font-size: 1.1rem;
}

/* ===== PRICE FILTER ===== */
.price-filter {
    padding-top: 10px;
}

/* Custom slider wrapper */
.custom-range {
    position: relative;
    height: 40px;
    width: 100%;
}

/* Base track */
.custom-range .track {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 10px;
}

/* Selected range */
.custom-range .range {
    position: absolute;
    top: 18px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Range inputs */
.custom-range input[type="range"] {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    appearance: none;
    background: none;
    pointer-events: none;
}

/* Thumbs */
.custom-range input::-webkit-slider-thumb {
    appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.custom-range input::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Price inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.price-inputs input {
    width: 90px;
}

/* Price inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 55px;
}

.price-inputs input {
    width: 90px;
    padding: 6px 8px;
    font-size: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.price-inputs span {
    font-weight: 500;
}

.price-inputs .theme-btn {
    margin-left: auto;
    padding: 6px 14px;
    font-size: 0.9rem;
}

.cart-container {
    margin-bottom: 50px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* + and - buttons */
.qty-btn {
    width: 24px;
    /* smaller bg */
    height: 24px;
    border: 1px solid #bbb;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    /* smaller symbol */
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-btn:active {
    transform: scale(0.95);
}

/* Quantity number */
.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

/* Remove (X) button */
.remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    color: var(--secondary-color);
    background: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-left: 10px;
}

.remove-btn:hover {
    transform: scale(1.1);
}

.card-body .buy-now-button {
    display: flex;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.payment-methods img {
    width: 50px;
}

.breadcrumb-section-cart {
    background-image: url("/assets/img/cart-breadcrumb.jpg");
    /* or {{ asset() }} if inline style */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    border-radius: 0;
    margin-bottom: 50px;
}

.breadcrumb-section {
    background-image: url("/assets/img/breadcrumb.jpg");
    /* or {{ asset() }} if inline style */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    border-radius: 0;
    margin-bottom: 50px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: -10px;
}

.modal-content p {
    color: gray !important;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
    color: var(--secondary-color);
}

.top-nav-right a {
    color: white;
}

.dashboard-sidebar {
    background: var(--primary-color);
    color: white;
    height: 100%;
    padding: 20px;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dashboard-sidebar-header {
    font-size: 28px !important;
    font-weight: 600;
}

.dashboard-sidebar .nav .nav-item a {
    color: white !important;
    text-align: left !important;
    font-weight: 500;
    padding: 10px !important;
}

.dashboard-sidebar .nav .nav-item button {
    color: white !important;
    text-align: left !important;
    font-weight: 500;
    padding: 10px !important;
}

.featured-products-buttons {
    margin-top: auto !important;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.featured-products-buttons .add-to-cart-button {
    width: 80%;
}

@media (width < 1400px) {
    .category-img {
        height: 150px;
    }

    .categorySwiper .swiper-slide img {
        height: 150px;
        width: 150px;
    }

    .electronics-image img {
        width: 350px;
    }

    .dashboard-sidebar-header {
        font-size: 25px !important;
    }
}

@media (width < 1200px) {
    .electronics-image img {
        width: 250px;
    }

    .dashboard-sidebar-header {
        font-size: 19px !important;
    }

    .breadcrumb-left {
        margin-left: 20px !important;
    }

    .breadcrumb-section {
        background-position: 60% center;
        margin-bottom: 30px;
    }
}

@media (width < 992px) {
    .logo {
        height: 50px;
    }

    .banner-img {
        height: 400px;
    }

    .category-img {
        height: 100px;
    }

    .categorySwiper .swiper-slide img {
        height: 120px;
        width: 130px;
    }

    .laptop-banner {
        height: 250px;
    }

    .banner-left img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        overflow: visible;
        margin-top: 30px;
    }

    .banner-right {
        padding-left: 0;
        margin-top: 30px;
    }

    .banner-right h2 {
        font-size: 30px;
    }

    .banner-buttons .theme-btn {
        font-size: 12px;
    }

    .banner-buttons .buy-now-button {
        font-size: 12px;
    }

    .gaming-zone-left-img {
        height: 300px;
    }

    .gaming-zone-left img {
        height: 300px;
    }

    .gaming-zone-right-img {
        height: 100px;
    }

    .gaming-zone-right img {
        height: 100px;
    }

    .right {
        display: none;
    }

    .electronics-image img {
        width: 400px;
    }

    .tech-left {
        display: none;
    }

    .tech-right {
        display: none;
    }

    .promo-img {
        display: none;
    }

    .promo-container {
        justify-content: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-socials {
        margin-bottom: 30px;
    }

    .breadcrumb-section {
        padding: 50px 0;
    }

    .image-wrapper {
        height: 250px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .reviews-left {
        width: 50%;
    }

    .reviews-right {
        width: 50%;
        height: fit-content !important;
    }

    .mini-cart {
        right: 30px;
    }
}

@media (width < 769px) {
    .search-bar {
        width: 130px;
    }

    .bottom-nav .nav {
        width: 100%;
        justify-content: space-between;
        /* or center if you prefer */
    }

    .bottom-nav .nav-item {
        text-align: center;
    }

    .bottom-nav .nav-link {
        width: 100%;
        padding: 12px 30px !important;
    }
}

.mobile-search {
    position: static;
}

@media (width < 576px) {
    .top-nav {
        display: none;
    }

    /* .search-bar-input {
        display: none;
    } */
    .my-cart {
        display: none;
    }

    .my-account {
        display: none;
    }

    .bottom-nav {
        display: none;
    }

    .banner-img {
        height: 200px;
    }

    .banner-left {
        display: none;
    }

    .banner-right {
        width: 100%;
        padding-left: 40px;
        padding-top: 10px;
    }

    .gaming-zone-left {
        margin-bottom: 30px;
    }

    .electronics-image {
        display: none;
    }

    .footer-newsletter input {
        margin-bottom: 10px;
    }

    .footer-newsletter .red-theme-btn {
        margin-left: 0;
    }

    .footer-top {
        padding-left: 0;
    }

    .footer-mid {
        padding-left: 0;
    }

    .footer-bottom {
        padding-left: 0;
    }

    .accounts {
        margin-top: 30px !important;
    }

    .visit-our-store {
        margin-top: 30px !important;
    }

    .footer-bottom {
        display: block;
        padding-left: 10px;
        text-align: center;
    }

    .benifits-item4,
    .benifits-item5,
    .benifits-item6 {
        margin-bottom: 30px;
    }

    /* Navbar layout: logo left, icons right */
    .navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Move search below navbar */
    .mobile-search {
        width: 100%;
        margin: 0 !important;
        padding: 10px 15px;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        order: 3;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hidden state */
    .mobile-search.hide-search {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    /* Full width input */
    .search-bar {
        width: 100%;
        height: 40px;
    }

    .search-input {
        width: 100%;
    }

    /* Remove extra right spacing */
    .nav-link-custom.me-5 {
        margin-right: 0 !important;
    }

    /* Hide text if needed (icons only) */
    .my-cart,
    .my-account {
        display: none;
    }

    .banner-img {
        margin-top: 40px;
    }

    .logo {
        height: 60px;
        margin-left: -20px;
        margin-top: 10px;
    }

    #guestCartBtn {
        margin-right: -65px;
    }

    .account-button {
        margin-left: 60px;
    }

    .scroll-text img {
        width: 100px;
        height: 100%;
    }

    .breadcrumb-section {
        margin-top: 40px;
        height: 200px;
    }

    .breadcrumb-section-cart {
        margin-top: 40px;
        height: 200px;
    }

    .breadcrumb-left {
        margin-left: 20px;
    }

    .breadcrumb-section {
        background-position: 40% center;
        margin-bottom: 30px;
    }

    .breadcrumb-section-cart {
        background-position: 80% center;
        margin-bottom: 30px;
    }

    .breadcrumb-left h1 {
        font-size: 40px;
    }

    .my-dashboard {
        margin-top: 40px;
    }

    .dashboard-sidebar {
        height: 320px !important;
        margin-top: 40px !important;
    }

    .dashboard-sidebar-header {
        padding-top: 10px;
    }

    .my-dashboard {
        background: white;
        position: relative;
        z-index: 999;
        margin-top: 10px;
    }

    .dashboard-sidebar-header {
        font-size: 30px !important;
    }

    .products-wrapper {
        flex-direction: column;
    }

    .sidebar {
        order: 2;
        position: static;
        max-height: none;
        overflow: visible;
        width: 100%;
        height: 100%;
    }

    .products-content {
        order: 1;
    }

    .top-bar {
        display: block;
    }

    .product-details {
        display: block;
    }

    .product-details-left {
        position: relative !important;
        width: 100%;
        top: 0;
    }

    .product-details-right {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    #continue-shopping {
        display: none;
    }

    .mini-cart {
        right: 0;
    }
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: var(--primary-color);
    color: white;
    z-index: 1050;
    padding: 20px;
    transition: right 1s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .close-nav {
    font-size: 28px;
    background: none;
    border: none;
    float: right;
    color: var(--secondary-color);
    font-weight: 700;
}

.mobile-menu {
    list-style: none;
    padding: 40px 0 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    font-weight: 500;
    color: white !important;
}

.mobile-actions a {
    color: white;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1040;
}

.mobile-overlay.active {
    display: block;
}

.mobile-hamburger i {
    color: var(--primary-color);
    font-size: 32px !important;
}

.w-80 {
    width: fit-content !important;
}

.top-nav-left a {
    color: inherit;
}

.load-more-wrapper {
    display: flex;
    justify-content: left;
    margin: 10px 10px;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.load-more-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Refresh Icon */
.load-icon {
    font-size: 18px;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* Rotate icon on hover */
.load-more-btn:hover .load-icon {
    transform: rotate(360deg);
}

/* Loading state (future JS ready) */
.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.load-more-btn.loading .load-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars i {
    font-size: 20px;
}

#output {
    font-size: 22px;
    color: white;
    margin-left: 0;
    margin-top: 10px;
}

.tab-box h3 {
    color: var(--primary-color);
    margin-left: 10px;
}

.reviews-left i {
    color: #ff9800;
}

.reviews-left h6 {
    margin-right: 10px !important;
}


@media(width<380px) {
    .laptop-banner {
        height: 320px;
    }
}

@media(width<365px) {
    .banner-right {
        padding-left: 10px;
    }

    .laptop-banner {
        height: 250px;
    }
}

@media(width<350px) {
    .laptop-banner {
        height: 330px;
    }
}


.checkout-bg {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.checkout-bg h3 {
    color: var(--primary-color);
}

.checkout-bg h4 {
    color: var(--primary-color);
}



.card-content .wishlist-button {
    background: white;
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}



.deal-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

/* .deals-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
} */

/* Explore button */
.deal-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1000;
    /* keeps glightbox working */
}

/* Hover effect */
.deal-card:hover .deal-btn {
    background: var(--primary-color);
    transform: translateY(-2px);
}
