
        :root {
            --qist-red: #f3b807;
            --qist-dark-red: #c40024;
            --qist-blue: #0066b3;
            --qist-dark-blue: #00508f;
            --qist-gray: #f5f5f5;
            --qist-dark-gray: #333333;
            --qist-light-gray: #777777;
            --qist-border: #e0e0e0;
            --qist-white: #ffffff;
            --qist-yellow: #f3b807;
            --qist-green: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.5;
        }
        
        /* Top Header */
        .top-header {
            background-color: var(--qist-red);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
        }
        
        .top-header-left {
            display: flex;
            gap: 20px;
        }
        
        .top-header-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
        }
        
        .top-header a:hover {
            text-decoration: underline;
        }
        
        /* Main Header */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 45px;
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--qist-red);

        }
        
        .search-bar {
            flex: 1;
            max-width: 600px;
            margin: 0 30px;
            position: relative;
        }
        
        .search-bar input {
                width: 93%;
    float: right;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--qist-red);
            border-radius: 4px;
            font-size: 16px;
        }
        
        .search-bar button {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 50px;
            background-color: var(--qist-red);
            border: none;
            border-radius: 0 4px 4px 0;
            color: white;
            cursor: pointer;
            font-size: 18px;
        }
        
        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .header-action {
            text-align: center;
            color: var(--qist-dark-gray);
            text-decoration: none;
            font-size: 14px;
        }
        
        .header-action i {
            display: block;
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--qist-red);
        }
        
        .cart-count {
            background-color: var(--qist-red);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -5px;
            right: -5px;
        }
        
        .cart-wrapper {
            position: relative;
        }
        
		/* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--qist-red);
            cursor: pointer;
            margin-right: 15px;
        }
        /* Navigation */
        .main-nav {
            /*background-color: #444;*/
            background-color: white;
            box-shadow: 0 3px 4px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
			
        }
        
        .nav-list img { width: 77px;}
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.3s;
			white-space: nowrap;
			padding-bottom: 0;
			padding-top: 0;
        }
        
        .nav-link:hover {
            /* background-color: var(--qist-dark-blue);*/
        }
        
        .nav-link i {
            margin-right: 8px;
        }
        
        /* Main Content */
                /* Main Content - Add padding to account for fixed headers */
        .main-content {
            max-width: 1200px;
            margin: 12px auto 20px; /* Account for fixed headers */
            padding: 0 15px;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .breadcrumb a {
            color: var(--qist-blue);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: var(--qist-light-gray);
            margin: 0 5px;
        }
        
        /* Page Title */
        .page-title {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .page-title h1 {
            color: var(--qist-dark-gray);
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .page-title p {
            color: var(--qist-light-gray);
            font-size: 15px;
        }
        
        /* Categories and Products Layout */
        .content-wrapper {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 20px;
        }
        
        /* Categories Sidebar */
        .categories-sidebar {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .categories-header {
            background-color: var(--qist-blue);
            color: white;
            padding: 15px;
            font-weight: 600;
            font-size: 16px;
        }
        
        .categories-list {
            list-style: none;
            max-height: 500px;
            overflow-y: auto;
        }
        
        .category-item {
            border-bottom: 1px solid var(--qist-border);
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            color: var(--qist-dark-gray);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .category-link:hover {
            background-color: var(--qist-gray);
            color: var(--qist-red);
        }
        
        .category-link.active {
            background-color: #fff5f7;
            color: var(--qist-red);
            border-left: 3px solid var(--qist-red);
        }
        
        .category-count {
            background-color: var(--qist-gray);
            color: var(--qist-light-gray);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        /* Brands Submenu */
        .brands-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #f9f9f9;
        }
        
        .brands-submenu.active {
            max-height: 500px;
        }
        
        .brand-list {
            list-style: none;
            padding: 10px 15px 10px 30px;
        }
        
        .brand-item {
            margin-bottom: 8px;
        }
        
        .brand-item:last-child {
            margin-bottom: 0;
        }
        
        .brand-link {
            display: block;
            padding: 8px 10px;
            color: var(--qist-light-gray);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .brand-link:hover {
            background-color: var(--qist-gray);
            color: var(--qist-blue);
        }
        
        .brand-link.active {
            background-color: var(--qist-gray);
            color: var(--qist-blue);
            font-weight: 500;
        }
        
        .brand-count {
            float: right;
            background-color: #e0e0e0;
            color: var(--qist-light-gray);
            padding: 1px 6px;
            border-radius: 8px;
            font-size: 11px;
        }
        
        .category-arrow {
            transition: transform 0.3s;
            font-size: 12px;
        }
        
        .category-link.active .category-arrow {
            transform: rotate(180deg);
        }
        
        /* Price Filter */
        .price-filter {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 20px;
            margin-top: 20px;
        }
        
        .price-filter h3 {
            color: var(--qist-dark-gray);
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .price-inputs {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .price-inputs input {
            flex: 1;
            padding: 8px 10px;
            border: 1px solid var(--qist-border);
            border-radius: 4px;
            font-size: 14px;
        }
        
        .price-btn {
            background-color: var(--qist-red);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            width: 100%;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
        }
        
        .price-btn:hover {
            background-color: var(--qist-dark-red);
        }
        
        /* Products Grid */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .products-count {
            color: var(--qist-dark-gray);
            font-weight: 600;
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sort-select {
            padding: 8px 12px;
            border: 1px solid var(--qist-border);
            border-radius: 4px;
            background-color: white;
            color: var(--qist-dark-gray);
            font-size: 14px;
        }
        
        /* Hero Section */
        .hero-section {
            
            grid-template-columns: 250px 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .categories-sidebar {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .categories-sidebar h3 {
            padding: 0 15px 15px;
            color: var(--qist-dark-gray);
            border-bottom: 1px solid var(--qist-border);
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--qist-border);
        }
        
        .category-item a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--qist-dark-gray);
            text-decoration: none;
            font-size: 14px;
        }
        
        .category-item a:hover {
            color: var(--qist-red);
        }
        
        .category-item i {
            color: var(--qist-light-gray);
            font-size: 12px;
        }
        
        .hero-slider {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            height: 390px;
        }
        
        .slide {
            height: 100%;
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            display: flex;
            align-items: center;
            padding: 0 40px;
        }
        
        .slide-content {
            max-width: 500px;
        }
        
        .slide h2 {
            font-size: 32px;
            color: var(--qist-dark-gray);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .slide p {
            color: var(--qist-light-gray);
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .slide-btn {
            background-color: var(--qist-red);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .slide-btn:hover {
            background-color: var(--qist-dark-red);
        }
        
        .slide-image {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 100%;
        }
        
        /* Top Categories Section */
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--qist-border);
        }
        
        .section-title h2 {
            color: var(--qist-dark-gray);
            font-size: 24px;
            font-weight: 700;
        }
        
        .section-title a {
            color: var(--qist-red);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
        }
        
        .section-title a:hover {
            text-decoration: underline;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-card {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 20px 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            border: 1px solid var(--qist-border);
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: var(--qist-red);
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: white;
        }
        
        .category-name {
            color: var(--qist-dark-gray);
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .category-count {
            color: var(--qist-light-gray);
            font-size: 13px;
        }
        
        /* Icon Colors */
        .mobile-icon { background-color: #4CAF50; }
        .laptop-icon { background-color: #2196F3; }
        .tv-icon { background-color: #FF9800; }
        .water-icon { background-color: #00BCD4; }
        .freezer-icon { background-color: #3F51B5; }
        .ac-icon { background-color: #009688; }
        .fan-icon { background-color: #795548; }
        .microwave-icon { background-color: #FF5722; }
        .home-icon { background-color: #E91E63; }
        .solar-icon { background-color: #FFC107; }
        .washing-icon { background-color: #8BC34A; }
        .bike-icon { background-color: #607D8B; }
        .mattress-icon { background-color: #9C27B0; }
        .battery-icon { background-color: #FF9800; }
        .tyre-icon { background-color: #795548; }
        .fridge-icon { background-color: #2196F3; }
        .geyser-icon { background-color: #F44336; }
        .kitchen-icon { background-color: #FF5722; }
        
        /* Featured Products */
        .featured-products {
            margin-bottom: 40px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--qist-border);
            transition: box-shadow 0.3s;
        }
        
        .product-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: var(--qist-red);
        }
        
        .product-image {
            height: 220px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border-bottom: 1px solid var(--qist-border);
            position: relative;
        }
		.product-brand {
            color: var(--qist-blue);
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--qist-red);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            color: var(--qist-dark-gray);
            font-size: 14px;
            margin-bottom: 10px;
            height: 40px;
            overflow: hidden;
            font-weight: 500;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .current-price {
            color: var(--qist-red);
            font-weight: 700;
            font-size: 22px;
            margin-right: 10px;
        }
        
        .original-price {
            color: var(--qist-light-gray);
            text-decoration: line-through;
            font-size: 14px;
        }
        
        .discount {
            background-color: #28a745;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
        }
        .serving{
			
			font-size: 12px;
    display: block;
    color: black;
		}
        .product-meta {
            display: flex;
            justify-content: space-between;
            color: var(--qist-light-gray);
            font-size: 13px;
            margin-bottom: 10px;
        }
        
        .rating {
            color: black;
        }
        .installment-badge {
            background-color: #e8f5e9;
            color: var(--qist-green);
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .product-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn-cart {
            background-color: var(--qist-red);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            flex: 1;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
        }
        
        .btn-cart:hover {
            background-color: var(--qist-dark-red);
        }
        
        .btn-wishlist {
            background-color: white;
            color: var(--qist-red);
            border: 1px solid var(--qist-red);
            padding: 10px;
            border-radius: 4px;
            width: 40px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn-wishlist:hover {
            background-color: #fff5f7;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .pagination-item a {
            display: block;
            padding: 8px 15px;
            background-color: white;
            border: 1px solid var(--qist-border);
            color: var(--qist-dark-gray);
            text-decoration: none;
            border-radius: 4px;
        }
        
        .pagination-item.active a {
            background-color: var(--qist-red);
            color: white;
            border-color: var(--qist-red);
        }
        
        .pagination-item a:hover {
            background-color: var(--qist-gray);
        }
        /* Footer */
        .main-footer {
            background-color: var(--qist-dark-gray);
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .payment-methods i {
            font-size: 30px;
            color: #ddd;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-section {
                grid-template-columns: 1fr;
            }
            
            .categories-sidebar {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
			.list .content-wrapper {
            display: block;
           
        }
		.list .product-title, .home .product-title{
			    font-size: 16px;
		}
		.list .products-header{display: none;}
			.top-header-left{
				
				font-size: 12px;
				font-weight: bold;
			}
			.main-header{
				    padding-top: 1px;
			}
			.top-header-right{display: none;}
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .search-bar {
                order: 3;
                margin: 15px 0 0;
                max-width: 100%;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-list {
                flex-wrap: wrap;
            }
            
            .nav-link {
                
                font-size: 14px;
				padding-left: 1px;
            }
			.oppo-link, .infinx-link{
				padding-left: 0;
    padding-top: 4px;
			}
        }
		/* Hot Products Hero Slider */
.hot-products-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.hot-products-slides {
    height: 100%;
    position: relative;
}

.hot-product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    display: flex;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.hot-product-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hot-product-slide .slide-content {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hot-product-slide .slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 500px;
}

.hot-product-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-badge {
    display: inline-block;
    background-color: var(--qist-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hot-badge i {
    margin-right: 5px;
    animation: flame 1s infinite alternate;
}

@keyframes flame {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.product-price-hero {
    display: flex;
    align-items: center;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.current-price-hero {
    font-size: 36px;
    font-weight: 800;
    color: var(--qist-red);
}

.original-price-hero {
    font-size: 22px;
    color: var(--qist-light-gray);
    text-decoration: line-through;
}

.discount-percent-hero {
    background-color: var(--qist-green);
    color: white;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 18px;
}
button.prev{display: none;}
.flame-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(228, 0, 43, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.slide-indicator.active {
    background-color: var(--qist-red);
    transform: scale(1.2);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--qist-dark-gray);
    transition: all 0.3s;
    z-index: 10;
}

.slide-nav:hover {
    background-color: var(--qist-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--qist-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    width: fit-content;
    margin-top: 20px;
}

.slide-btn:hover {
    background-color: var(--qist-dark-red);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .hot-product-slide {
        flex-direction: column;
    }
    
    .hot-product-slide .slide-content {
        padding: 20px;
        max-width: 100%;
    }
    
    .hot-product-slide .slide-image {
        max-width: 100%;
        height: 200px;
    }
    
    .current-price-hero {
        font-size: 28px;
    }
    
    .original-price-hero {
        font-size: 18px;
    }
    
    .slide-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slide-nav.prev {
        left: 10px;
    }
    
    .slide-nav.next {
        right: 10px;
    }
    
    .flame-overlay {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}
/* Product Detail Container */
        .product-detail-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        /* Product Gallery */
        .product-gallery {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 20px;
        }
        
        .main-image {
            width: 100%;
            height: 400px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .main-image img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .badge-container {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .product-badge {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
        }
        
        .badge-hot {
            background-color: var(--qist-red);
        }
        
        .badge-new {
            background-color: var(--qist-green);
        }
        
        .badge-discount {
            background-color: var(--qist-orange);
        }
        
        .badge-best-seller {
            background-color: var(--qist-blue);
        }
        
        .badge-sale {
            background-color: var(--qist-red);
        }
        
        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .thumbnail {
            height: 80px;
            background-color: var(--qist-gray);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
            overflow: hidden;
        }
        
        .thumbnail.active {
            border-color: var(--qist-red);
        }
        
        .thumbnail:hover {
            border-color: var(--qist-blue);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Product Info */
        .product-info {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 25px;
			    padding-bottom: 7px;
        }
        
        .list .product-title, .home .product-title {
            font-size: 24px;
            font-weight: 700;
			    height: auto;
            color: var(--qist-dark-gray);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .stars {
            color: var(--qist-yellow);
            margin-right: 10px;
        }
        
        .rating-text {
            color: var(--qist-light-gray);
            font-size: 14px;
            margin-right: 15px;
        }
        
        .rating-count {
            color: var(--qist-blue);
            font-size: 14px;
        }
        
       .product .product-price-section {
            background-color: #f8f9fa;
          
            border-radius: 8px;
            margin-bottom: 25px;
			    padding-left: 9px;
        }
        
        .price-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .product .current-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--qist-red);
            margin-right: 15px;
        }
        
        .original-price {
            font-size: 20px;
            color: var(--qist-light-gray);
            text-decoration: line-through;
            margin-right: 15px;
        }
        
        .discount-percent {
            background-color: #ffebee;
            color: var(--qist-red);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 14px;
        }
        
        .save-amount {
            color: var(--qist-green);
            font-weight: 600;
            font-size: 15px;
        }
        
        .product .installment-plan {
            background-color: #e8f5e9;
            padding: 12px 15px;
            border-radius: 6px;
            margin-top: 10px;
			    margin-left: -8px;
        }
        
        .installment-plan h4 {
            color: var(--qist-green);
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .installment-amount {
            font-size: 18px;
            font-weight: 700;
            color: var(--qist-dark-gray);
        }
        
        /* Product Options */
        .product-options {
            margin-bottom: 25px;
        }
        
        .option-group {
            margin-bottom: 20px;
        }
        
        .option-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--qist-dark-gray);
            font-size: 16px;
        }
        
        /* Product Actions */
        .product-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid var(--qist-border);
            border-radius: 6px;
            overflow: hidden;
            width: 120px;
        }
        
        .qty-btn {
            width: 40px;
            height: 50px;
            background-color: var(--qist-gray);
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qty-btn:hover {
            background-color: #e9ecef;
        }
        
        .qty-input {
            width: 40px;
            height: 50px;
            border: none;
            text-align: center;
            font-size: 18px;
            font-weight: 600;
        }
        
        .btn-add-cart {
            flex: 1;
            background-color: var(--qist-red);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 0 20px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 50px;
            transition: background 0.3s;
        }
        
        .btn-add-cart:hover {
            background-color: var(--qist-dark-red);
        }
        
        .btn-buy-now {
    flex: 1;
    background-color: var(--qist-green);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    transition: background 0.3s;
}
        
        .btn-buy-now:hover {
            background-color: #218838;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn-wishlist, .btn-compare {
            width: 50px;
            height: 50px;
            border: 1px solid var(--qist-border);
            border-radius: 6px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: var(--qist-dark-gray);
            transition: all 0.3s;
        }
        
        .btn-wishlist:hover, .btn-compare:hover {
            border-color: var(--qist-red);
            color: var(--qist-red);
            background-color: #fff5f7;
        }
        
        .btn-wishlist.active, .btn-compare.active {
            border-color: var(--qist-red);
            color: var(--qist-red);
            background-color: #fff5f7;
        }
        
        /* Product Highlights */
        .product-highlights {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid var(--qist-border);
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .highlight-icon {
            width: 24px;
            height: 24px;
            background-color: #e3f2fd;
            color: var(--qist-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 12px;
        }
        
        /* Product Tabs */
        .product-tabs {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            overflow: hidden;
        }
        
        .tab-headers {
            display: flex;
            border-bottom: 1px solid var(--qist-border);
            background-color: #f8f9fa;
        }
        
        .tab-header {
            padding: 18px 30px;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .tab-header.active {
            color: var(--qist-red);
            border-bottom: 3px solid var(--qist-red);
            background-color: white;
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: block;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table tr {
            border-bottom: 1px solid var(--qist-border);
        }
        
        .specs-table td {
            padding: 12px 15px;
        }
        
        .specs-table td:first-child {
            font-weight: 600;
            color: var(--qist-dark-gray);
            width: 30%;
        }
        
        .review-item {
            padding: 20px 0;
            border-bottom: 1px solid var(--qist-border);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .reviewer-name {
            font-weight: 600;
        }
        
        .review-date {
            color: var(--qist-light-gray);
            font-size: 14px;
        }
        
        /* Related Products */
        .related-products {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--qist-dark-gray);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--qist-border);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .related-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s;
            text-decoration: none;
            color: inherit;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .related-image {
            height: 180px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .related-info {
            padding: 15px;
        }
        
        .related-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            height: 40px;
            overflow: hidden;
        }
        
        .related-price {
            color: var(--qist-red);
            font-weight: 700;
            font-size: 18px;
        }
        
        /* Mobile Header Actions */
        .mobile-header-actions {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1003;
            padding: 10px 0;
            justify-content: space-around;
        }
        
        .mobile-header-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--qist-dark-gray);
            text-decoration: none;
            font-size: 12px;
        }
        
        .mobile-header-action i {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--qist-red);
        }
        
        .mobile-cart-wrapper {
            position: relative;
        }
        
        .mobile-cart-count {
            background-color: var(--qist-red);
            color: white;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -5px;
            right: -5px;
        }
        
        /* Footer */
        .main-footer {
            background-color: var(--qist-dark-gray);
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .payment-methods i {
            font-size: 30px;
            color: #ddd;
        }
        .product .product-title {
                font-size: 26px;
            }
			/* Add styles for variation blocks */
        .variations-section {
            margin: 20px 0;
            padding: 20px;
			    padding-bottom: 0;
			padding-top: 6px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        
        .variations-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .variation-block {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
            position: relative;
        }
        
        .variation-block:hover {
            border-color: #007bff;
            background: #f0f8ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
        }
        
        .variation-block.selected {
           border-color: #007bff;
            background: #f0f8ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
        }
        
        .variation-block.out-of-stock {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .variation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .variation-name {
            font-weight: 600;
            font-size: 16px;
        }
        
        .variation-price {
            font-weight: 700;
            font-size: 18px;
        }
        
        .variation-discount-price {
            font-weight: 700;
            font-size: 24px;
            color: #28a745;
        }
        
        .variation-original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 20px;
            margin-right: 8px;
        }
        
        .variation-discount {
            background: var(--qist-red);
            color: white;
			display: inline;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .variation-specs {
            font-size: 13px;
            color: #666;
            margin: 8px 0;
            line-height: 1.4;
        }
        
        .variation-block.selected .variation-specs {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .variation-stock {
            margin-top: 8px;
            font-size: 12px;
        }
        
        .stock-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .stock-in {
            background: #d4edda;
            color: #155724;
        }
        
        .stock-low {
            background: #fff3cd;
            color: #856404;
        }
        
        .stock-out {
            background: #f8d7da;
            color: #721c24;
        }
        
        .variation-block.selected .stock-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .best-value {
            position: absolute;
            top: -10px;
            right: 10px;
            background: #ffc107;
            color: #000;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            z-index: 1;
        }
        
        .selected-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #28a745;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .price-update {
            font-size: 18px;
            font-weight: bold;
            color: #28a745;
            margin-top: 10px;
            display: none;
        }
        
        .variation-info {
            margin-top: 15px;
            padding: 15px;
            background: #e8f5e9;
            border-radius: 6px;
            border-left: 4px solid #28a745;
        }
        
        .variation-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }
        
        .detail-item {
            padding: 8px;
            background: white;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        
        .detail-label {
            font-size: 12px;
            color: #666;
            display: block;
        }
        
        .detail-value {
            font-weight: 600;
            color: #333;
        }
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .product-detail-container {
                grid-template-columns: 1fr;
            }
            
            .related-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
 
 
            .product-actions {
                flex-direction: column;
            }
            
            .quantity-selector {
                width: 100%;
            }
            
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
             
            .tab-header {
                padding: 15px;
                border-bottom: 1px solid var(--qist-border);
            }
            
            .tab-header.active {
                border-bottom: 3px solid var(--qist-red);
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .product .product-title {
				
				height: 33px;
			}
            .product .product-title {
                font-size: 20px;
            }
            
            .current-price {
                font-size: 28px;
            }
        }
		/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-pulse {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    animation: ripple 1.5s infinite;
}

/* WhatsApp call button for mobile */
.whatsapp-call-mobile {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 2px solid white;
}

.whatsapp-call-mobile i {
    font-size: 18px;
}

/* WhatsApp chat button (alternative) */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.whatsapp-chat-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    color: white;
}

.whatsapp-chat-btn i {
    font-size: 24px;
}

/* Animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .whatsapp-chat-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
    
    /* Show call button on mobile */
    .whatsapp-call-mobile {
        display: flex;
        animation: slideUp 0.5s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateX(-50%) translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
}

/* Accessibility */
.whatsapp-float:focus,
.whatsapp-chat-btn:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

#product-specs .specs-services{padding:calc(30px/2) 0;background:#fff}#product-specs .desktop-specs{display:block}@media(max-width: 767px){#product-specs .desktop-specs{display:none}}#product-specs .mobile-specs{display:none}@media(max-width: 767px){#product-specs .mobile-specs{display:block}}product-spec-wrapper{position:relative;background:#f1f3f6;padding-bottom:30px}.product-spec-wrapper .product-spec-section{padding-top:calc(30px/2);background:#f1f3f6;overflow:hidden;transition:max-height .6s ease-in-out}.product-spec-wrapper .product-spec-section .column-80{display:block}.product-spec-wrapper .product-spec-section .column-80 .p-spec-table{break-inside:avoid}.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list{display:flex;flex-wrap:wrap;margin:0;padding:0}.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list .spec-term{width:45%;margin:0;padding:5px 10px;border-bottom:1px solid #f1f3f6;color:#9ca0a4;white-space:nowrap}.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list .spec-detail{width:55%;margin:0;padding:5px 10px;border-bottom:1px solid #f1f3f6;color:#202020}.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list .spec-term:last-of-type,.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list .spec-detail:last-of-type{border-bottom:none}.product-spec-wrapper .see-more-container{text-align:center;margin-top:10px}.product-spec-wrapper .see-more-container .see-more-btn{background:none;border:none;color:#000;font-weight:600;font-size:16px;text-decoration:underline;cursor:pointer;padding:8px 0;transition:all .3s ease}.product-spec-wrapper .see-more-container .see-more-btn:hover{color:#48afff}@media(max-width: 767px){.product-spec-wrapper .see-more-container .see-more-btn{font-size:12px}}.spec-fade-enter-active,.spec-fade-leave-active{transition:all .35s ease}.spec-fade-enter-from,.spec-fade-leave-to{opacity:0;transform:translateY(8px)}.spec-fade-enter-to,.spec-fade-leave-from{opacity:1;transform:translateY(0)}@media(min-width: 768px){.column-80{column-count:2}.column-80 .p-spec-table{break-inside:avoid}}#product-accessories .box-items-list .product_info{margin-right:calc(30px*3)}@media(max-width: 767px){#product-accessories .box-items-list .product_info{margin-right:initial}}#product-accessories ul,#product-accessories li{display:flex;align-items:center;justify-content:space-evenly;margin-bottom:initial;width:100%}#product-accessories li{flex-direction:column;list-style-type:none;font-weight:600;align-items:center;margin:0 calc(30px/6);white-space:nowrap}#product-accessories li img{margin-bottom:calc(30px/2)}#product-accessories .product_info img{width:180px;height:150px;object-fit:contain}#product-accessories .product-accessory{width:initial;padding:calc(30px/2) 0 0;height:100px}@media(max-width: 767px){#product-accessories .box-items-group{flex-direction:column}#product-accessories ul{flex-wrap:wrap}}
#product-specs h6	{      padding: 10px;  font-size: 15px;}
#product-specs .p-spec-table	{     margin: 17px;
    background: white;}
	.product-spec-wrapper .product-spec-section .column-80 .p-spec-table .spec-list{font-size: 14px;}