/* =============================================
   Custom Stylesheet for ElectroVerse
   ============================================= */

:root {
    --primary-color: #FFC107;
    --secondary-color: #000;
    --light-color: #CCCCCC;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.2;
}

/* =============================================
   NAVIGATION BAR
   ============================================= */

.navbar {
    padding: 1rem 0;
    background: transparent;
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    position: relative;
    transition: color 0.3s ease;
    font-size: 18px;
}

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

.cart-icon {
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-color);
}
.header .navbar-light {
    background-color: transparent;
}
.header {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}
.header .navbar-nav {
    gap: 70px;
}
.header-icon-btns {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}
.header .dropdown .dropdown-toggle:after {
    border: 1px solid #000000;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border-left: none;
    border-top: none;
    position: relative;
    right: 0;
}

.header .dropdown .dropdown-toggle {
    padding-right: 16px;
}

.header .navbar-nav .dropdown-menu {
    background: #000000;
    padding: 5px 0;
}

.header .navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px 15px;
    color: #ffffff;
}

.header .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #2b2b2b;
}

.top-strip {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
}
.top-strip .contact-info {
    gap: 35px;
}
.top-strip .contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.header .social-icons a svg path {
    fill: #ffffff;
}

.header .social-icons a {
    padding: 0;
}

.header .social-icons {
    gap: 35px;
}
/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    background: #FFFBF0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-section:after {
    content: "";
    background: #F6B912;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(50% - 367px);
    height: 100%;
    z-index: -1;
}

.hero-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 60px;
}

.hero-title {
    font-size: 92px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 42px;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-desc {
    color: var(--text-light);
    font-size: 18px;
    margin: 15px 0 45px;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
.hero-section .hero-image-wrapper {
    margin-right: -15%;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn.btn-yellow {
    background-color: var(--primary-color) !important;
    color: var(--text-dark) !important;
    border: none;
    transition: all 0.3s ease;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-yellow:hover {
    background-color: #ffb800 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn.btn-dark {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-dark:hover {
    background-color: #ffb800 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* =============================================
   BRANDS SECTION
   ============================================= */

.brands-section {
    padding: 45px 0;
    background: #F8F8F8;
}

.brand-logo {
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    max-width: 145px;
    object-fit: contain;
    margin: 0 auto;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =============================================
   TOP CATEGORY SECTION
   ============================================= */

.top-category {
    padding: 4rem 0;
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

 .category-card {
        background: #F8F8F8;
        border-radius: 18px;
        padding: 20px;
    }

    .category-card .ca-watch-row {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 20px;
        height: 428px;
    }

    .category-card .ca-watch-row img {
        width: 100%;
        object-fit: contain;
    }

    .category-card .ca-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .category-card .ca-card-text h3 {
        margin: 0;
        font-size: 45px;
        font-weight: 600;
        color: #000;
    }

    .category-card .ca-card-text p {
        margin: 6px 0 0;
        font-size: 35px;
        font-weight: 600;
        color: #000;
    }

    .arrow-btn {
        width: 42px;
        height: 42px;
        background: #f4b400;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
    }

    .arrow-btn:hover {
        transform: translateX(4px);
    }

    .arrow-btn span {
        color: #000;
        line-height: 0;
    }

    .category-card-2 {
        background: #F8F8F8;
        width: 100%;
        border-radius: 18px;
        padding: 30px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bc2-banner-left h2 {
        font-size: 45px;
        margin: 0 0 10px;
        font-weight: 600;
        color: #000;
    }
    .bc2-banner-left p {
        font-size: 26px;
        margin: 0 0 28px;
        font-weight: 600;
        color: #000;
    }
    .bc2-banner-right img {
        height: 220px;
        object-fit: contain;
        width: 150px;
    }
    .mb_30 {
        margin-bottom: 30px;
    }
    .product-card .product-img {
        text-align: center;
        padding: 40px 10px 20px;
    }
    .product-subtitle {
        background-color: var(--primary-color);
        padding: 5px 20px;
        border-radius: 4px;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
    }
    
/* =============================================
   NEW ARRIVAL SECTION
   ============================================= */

.new-arrival {
    padding: 4rem 0;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #ffb800;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 80%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.sale-badge {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.product-info {
    padding: 1.2rem;
    text-align: center;
}

.product-info h6 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    /* text-align: center; */
    font-size: 22px;
}

.product-info p {
    margin-bottom: 1rem;
}

.price {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 25px;
}

.add-to-cart-btn {
    display: inline-block;
    background-color: transparent;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}
/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
    padding: 4rem 0;
    background-color: #151515;
    position: relative;
    z-index: 2;
}
.bg-fixed {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.feature-item {
    padding: 32px;
}

.feature-item .feature-icon {
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 25px;
}

.feature-item p {
    color: #ccc;
}

.feature-item span {
    background: var(--primary-color);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */

.categories-section {
    padding: 4rem 0;
}

.category-icon-box {
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid var(--light-color);
}

.category-icon-box:hover {
    background-color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-icon-box .icon img {
    height: 75px;
    max-width: 80%;
    object-fit: contain;
}

.category-icon-box p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 25px;
}

.category-icon-box:hover p {
    color: var(--text-dark);
}

/* =============================================
   PROMO SECTION
   ============================================= */

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

.promo-card {
    background-color: #F6F8FF;
    padding: 30px;
    border-radius: var(--border-radius);
}
.promo-label {
    display: inline-block;
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.promo-label.text-red {
    color: #D31E1E;
}

.promo-card h3 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    margin-top: 10px;
}

.price-range {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 40px;
}
.price-range del {
  color: #555555;
}

.promo-card .btn {
    margin-top: 1rem;
}
.promo-card.bg-light-green .img-fluid {
    max-width: 56%;
}
/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: #252525;
    padding: 3rem 0 0rem;
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.footer p,
.footer a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.quick-links a {
    color: #ffffff;
    transition: color 0.3s ease;
    padding: 6px 0;
    display: inline-block;
}

.footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    padding: 5px;
    background: #ffffff;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer .input-group {
    max-width: 300px;
}

.footer .form-control {
    border: none;
    padding: 0.7rem;
}

.footer .btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--text-dark);
    padding: 0.7rem 1rem;
}

.footer .btn-primary:hover {
    background-color: #ffb800;
}
.quick-links {
    list-style: disc !important;
    padding-left: 18px !important;
}
.copyright-wrapper {
    background-color: #111111;
    padding: 1rem 0;
    margin-top: 2rem;
}
.bg-light-green {
    background-color: #FFFFF0 !important;
}
.newsletter-wrapper .btn:hover {
    transform: none;
    background: #000000;
    border: none;
}
.newsletter-wrapper .form-control:focus {
    box-shadow: none;
}
#collapseSearch {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    z-index: 9;
    top: 44px;
    background: #ffffff;
    z-index: 9999;
}

.search-wrapper .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: none !important;
    font-size: 20px;
    padding-left: 15px;
    padding-right: 15px;
}
.search-wrapper.input-group>.form-control {
    padding: 12px 20px;
}
.search-wrapper.input-group>.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #aeaeae;
}
#collapseSearch .btn-search-close {position: absolute;top: 5px;right: 15px;background: transparent;border: none;font-size: 30px;line-height: 1;color: #000000;line-height: 1;color: #cfcfcf;background: transparent;padding: 5px 10px !important;}
#collapseSearch .container {
    position: relative !important;
    padding-right: 60px !important;
}
#collapseSearch .btn-search-close:hover {
    color: #000000;
    transform: none;
}
/* Product details  */
   .header.inner-header {
            background-color: #FFFBF0;
            position: relative;
        }
      
        /* Breadcrumb */
        .breadcrumb-section {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item {
            font-size: 16px;
            color: #666;
        }

        .breadcrumb-item.active {
            color: var(--text-color);
            font-weight: 600;
        }

        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
        }

        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }

        /* Product Section */
        .product-section {
            padding: 40px 0;
        }

        .product-image-container {
            background-color: var(--light-gray);
            padding: 0;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .product-main-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            border: 1px solid #CCCCCC;
            border-radius: 8px;
            width: 100%;
        }

        .product-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .thumbnail {
            border: 2px solid #CCCCCC;
            padding: 8px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
            background-color: white;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border-color: var(--primary-color);
            background-color: var(--light-gray);
        }

        .thumbnail img {
            width: 100%;
            height: auto;
        }

        /* Product Details */
        .product-details {
            padding-left: 20px;
        }

        .product-title {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark-color);
        }

        .product-meta {
            font-size: 16px;
            color: #888888;
            margin-bottom: 15px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .stars {
            display: flex;
            gap: 2px;
            color: var(--primary-color);
            font-size: 14px;
            width: 100%;
            margin: 0 0 10px;
        }

        .stock-badge {
            display: inline-flex;
            background-color: #FFF1C9;
            color: #F6B912;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            gap: 5px;
        }

        .price-section {
            margin: 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .price-display {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-color);
        }

        .original-price {
            font-size: 18px;
            color: #999;
            text-decoration: line-through;
        }

        .product-info i {
            color: var(--primary-color);
            width: 16px;
        }

        /* Quantity & Cart */
        .quantity-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 25px 0;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #CCCCCC;
            border-radius: 4px;
            overflow: hidden;
            width: fit-content;
            background: #F8F8F8;
        }

        .qty-btn {
            background-color: #F8F8F8;
            border: none;
            padding: 10px 12px;
            cursor: pointer;
            font-size: 18px;
            line-height: 1;
            color: var(--text-color);
            transition: background-color 0.3s;
        }

        .qty-btn:hover {
            background-color: var(--light-gray);
        }

        .qty-input {
            border: none;
            text-align: center;
            width: 50px;
            font-weight: 600;
            background: #F8F8F8;
        }

        .qty-input:focus {
            outline: none;
        }

        .add-to-cart-btn {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 40px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            flex: 1;
        }

        .add-to-cart-btn:hover {
            background-color: #ffb800;
            color: white;
            text-decoration: none;
        }

        /* Delivery Info */
        .delivery-info {
            background-color: var(--light-gray);
            padding: 16px 0 0;
            border-radius: 4px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            border-top: 1px solid #CCCCCC;
        }

        .delivery-info i {
            font-size: 24px;
            color: var(--primary-color);
        }

        .delivery-text h6 {
            font-weight: 600;
            margin: 0;
            font-size: 18px;
            padding-right: 15px;
            border-right: 1px solid #d5d5d5;
            align-self: center;
        }

        .delivery-text p {
            margin: 0;
            font-size: 18px;
            color: #666;
        }

        /* Tabs */
        .tab-section .nav-tabs {
            border-bottom: 2px solid #e1e1e1;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .tab-section .nav-tabs .nav-link {
            color: var(--text-color);
            border: none;
            padding: 15px 20px;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            position: relative;
            bottom: -2px;
            transition: all 0.3s;
            font-size: 25px;
        }

        .nav-tabs .nav-link:hover {
            color: var(--primary-color);
        }

        .tab-section .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background-color: transparent;
            border-color: var(--primary-color);
        }

        /* Description Section */
        .description-content {
            line-height: 1.8;
            color: #666;
            font-size: 14px;
        }

        .description-content h5 {
            color: var(--dark-color);
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .description-content ul {
            margin-left: 0;
            margin-bottom: 15px;
        }

        .description-content li {
            margin-bottom: 8px;
        }

        /* Related Products */
        .related-products-section {
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        .product-dotlist-info {
            display: flex;
            gap: 8px;
            font-size: 16px;
            line-height: 1.2;
            font-weight: 500;
            color: #888888;
            padding: 5px;
        }
        .product-dotlist-info-wrapper {
            padding: 10px;
            background: #F8F8F8;
        }
        .delivery-info .delivery-text {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .delivery-info svg {flex-shrink: 0;width: 26px;height: 26px;}

        .delivery-info .delivery-text {
            text-align: left;
            display: block;
            padding-left: 10px;
        }

        .delivery-info .delivery-text h6 {
            border: none;
            margin: 0 0 4px;
        }

        .delivery-text p {
            font-size: 16px;
        }
        .header {
    background: transparent;
}
.header .navbar-toggler:hover, 
.header .navbar-toggler:focus {
    background: transparent;
}

.description-content th, .description-content table, .description-content td {
    --go-table--border-color: #dbdbdb;
    border-width: 1px;
}
.quantity-selector input.qty-input {
    background: transparent;
    text-align: center;
    padding-left:  12px !important;
    padding-right: 0 !important;
}

.product-card .add-to-cart-btn {
    max-width: 86%;
}

/* End product details  */
/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1600px) {
    .promo-card h3 {
        font-size: 35px;
    }
    .price-range {
        font-size: 30px;
    }
    .promo-label {
        font-size: 22px;
    }
    .hero-section .hero-image-wrapper {
        margin: 0;
    }
    .hero-title {
        font-size: 82px;
    }

    .hero-label {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 38px;
    }
}
@media (max-width: 1500px) {
    .promo-card h3 {
        font-size: 28px;
    }
    .price-range {
        font-size: 24px;
    }
    .promo-label {
        font-size: 20px;
    }
    .hero-title {
        font-size: 75px;
    }
    .hero-label {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 34px;
    }
}


@media (max-width: 1199px) {
    .category-icon-box p {
        font-size: 20px;
    }
    .hero-title {
        font-size: 65px;
    }
    .hero-label {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 30px;
    }

    .bc2-banner-left h2 {
        font-size: 34px;
    }

    .bc2-banner-left p {
        font-size: 22px;
    }

    .category-card .ca-card-text h3 {
        font-size: 40px;
    }

    .category-card .ca-card-text p {
        font-size: 30px;
    }

    .bc2-banner-right img {
        max-height: 180px;
    }

    .category-card .ca-watch-row {
        min-height: 360px;
    }
}
@media (max-width: 991px) {
      .category-icon-box p {
        font-size: 18px;
    }
    .category-icon-box .icon img {
        height: 40px;
    }
   .hero-image {
        height: 250px;
        margin-top: 60px;
    }

    
    .header .navbar-toggler {
        position: absolute;
        top: 17px;
        right: 15px;
        border-radius: 0px;
        border-style: none;
    }
    .header .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    #navbarNav {
        background: #ffffff;
        position: absolute;
        width: 100%;
        max-height: 100vh;
        top: 65px;
        left: 0;
    }
    .header .navbar>.container {
        position: relative;
        padding-right: 80px;
    }
    .header .navbar-nav {
        gap: 5px;
        padding: 15px;
        max-height: calc(100vh - 175px);
        overflow-y: auto;
    }
    .header .navbar-brand img {
        height: 50px;
    }
    .hero-section:after {
        width: calc(50% - 288px);
    }
    .header .navbar-nav .dropdown-menu {
        width: 100%;
        background: #ededed;
        border-color: #ededed;
    }

    .header .navbar-nav .nav-item {
        width: 100%;
    }

    .header .navbar-nav .dropdown-menu .dropdown-item {
        color: #000000;
    }

    .header .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: #d7d7d7;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 170px;
        padding-bottom: 50px;
        padding-right: 85px !important;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 38px;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .category-icon-box {
        padding: 1.5rem 0.5rem;
    }

    .promo-card {
        margin-bottom: 2rem;
    }

    .footer {
    }

    .footer .col-md-6 {
        margin-bottom: 1rem;
    }

    .footer .text-md-end {
        text-align: center !important;
    }
    .feature-item p br {
        display: none;
    }
     .categories-row .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    .hero-section:after {
        width: calc(50% - 195px);
    }
    .header-icon-btns {
        gap: 0px;
    } 
    .header .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .brand-logo {
        height: 40px;
    }
    .category-card-2 {
        padding: 20px 20px;
    }

    .category-card .ca-watch-row {
        min-height: auto;
    }

    .category-card .ca-card-text h3 {
        font-size: 34px;
    }

    .category-card .ca-card-text p {
        font-size: 26px;
    }

    .bc2-banner-left h2 {
        font-size: 28px;
    }

    .bc2-banner-left p {
        font-size: 18px;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

    .arrow-btn svg {
        width: 16px;
        height: 16px;
    }
     .product-details {
            padding-left: 0;
            margin-top: 30px;
        }

        .product-title {
            font-size: 20px;
        }

        .current-price {
            font-size: 24px;
        }

        .product-thumbnails {
            grid-template-columns: repeat(3, 1fr);
        }

        .quantity-section {
            flex-direction: column;
            align-items: stretch;
        }
.header .navbar-brand img {
    height: 60px;
}
     
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 34px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }

    .brand-logo {
        height: 34px;
    }

    .category-icon-box .icon {
        font-size: 2rem;
    }
    .categories-row .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .hero-section:after {
        width: 76px;
    }
   .header .social-icons {
        display: none !IMPORTANT;
   }
    .product-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .product-title {
                font-size: 18px;
            }

            .current-price {
                font-size: 20px;
            }

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

            .nav-tabs {
                flex-wrap: wrap;
            }

            .nav-tabs .nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }
}

/* =============================================
   UTILITIES & ANIMATIONS
   ============================================= */

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button animations */
.btn {
    transition: all 0.3s ease;
}

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

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* =============================================
   CUSTOM SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #dadada;
}

::-webkit-scrollbar-thumb {
    background: #919191;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #686868;
}