
        :root {
            --primary-color: #1d47bd;
            --primary-light: #1d47bf;
            --secondary-color: #f4f0ed;
            --dark-color: #2c3e50;
            --light-color: #ffffff;
            --accent-color: #f39c12;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }
        
        /* Shipping Banner */
        .shipping-banner {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            text-align: center;
            font-weight: 500;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { background-color: var(--primary-color); }
            50% { background-color: var(--primary-light); }
            100% { background-color: var(--primary-color); }
        }
        
        .shipping-banner i {
            margin-left: 8px;
        }
        
        /* Header Styles */
        .navbar {
            background-color: var(--light-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            margin-left: 15px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav {
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }
        
        /* Trust Badges */
        .trust-badges {
            color: #000;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .trust-badge {
            background-color: var(--light-color);
            border-radius: 20px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            animation: fadeInUp 1s;
        }
        
        .trust-badge i {
            color: var(--primary-color);
            margin-left: 8px;
            font-size: 18px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/banner-jotiyaonline.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .highlighted {
            background-color: var(--primary-color);
            background-repeat: no-repeat;
            background-size: 100% 100%;
            background-position: 0 0;
            padding: 0 0.2em;
            border-radius: 0.2em;
            color: #ffffff;
        }
        
        /* Products Section */
        .products-section {
            padding: 60px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--dark-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: -10px;
            width: 70px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* Improved Products Section */
   .section-header-review {
  text-align: center;
  padding: 1rem; /* adds breathing space */
}

.section-header-h2 {
  color: #fff;
  font-size: 2rem;      /* default for desktops */
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-header-p {
  color: #fff;
  font-size: 1rem;      /* default for desktops */
  line-height: 1.6;
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  .section-header-h2 {
    font-size: 1.5rem;  /* smaller on tablets */
  }
  .section-header-p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-header-h2 {
    font-size: 1.2rem;  /* smaller on phones */
  }
  .section-header-p {
    font-size: 0.8rem;
  }
}


        .section-header {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .search-input {
            border-radius: 20px 0 0 20px;
            border-right: none;
            padding: 10px 15px;
        }
        
        .search-btn {
            border-radius: 0 20px 20px 0;
            padding: 10px 20px;
        }
        
        .filter-btn {
            border-radius: 20px;
            margin-left: 10px;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-badge.bg-success {
            background-color: #28a745;
        }
        
        .product-badge.bg-danger {
            background-color: #dc3545;
        }
        
        .product-img-container {
            position: relative;
            overflow: hidden;
        }
        
        .product-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        
        .product-actions {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            right: 15px;
        }
        
        .action-btn {
            width: 36px;
            height: 36px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #555;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .action-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-rating {
            color: #ffc107;
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .rating-count {
            color: #777;
            font-size: 12px;
            margin-right: 5px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
            flex-grow: 1;
        }
        
        .product-price {
            margin-bottom: 15px;
        }
        
        .current-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 18px;
        }
        
        .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 14px;
            margin-right: 8px;
        }
        
        .add-to-cart {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .add-to-cart:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
        }
        
        .view-more-btn {
            padding: 10px 30px;
            border-width: 2px;
            transition: all 0.3s ease;
        }
        
        .view-more-btn:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        /* Pagination Styles */
        .pagination {
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-link {
            color: var(--primary-color);
            border: 1px solid #dee2e6;
            padding: 0.5rem 0.75rem;
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        /* Filter Dropdown */
        .filter-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 20px;
            width: 280px;
            z-index: 1000;
            margin-top: 10px;
            display: none;
        }
        
        .filter-dropdown.show {
            display: block;
        }
        
        .filter-option {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-option:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .filter-title {
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark-color);
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .filter-title i {
            margin-left: 8px;
            color: var(--primary-color);
        }
        
        .filter-options-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .filter-check {
            display: flex;
            align-items: center;
        }
        
        .filter-check input {
            margin-left: 8px;
        }
        
        .filter-check label {
            margin-bottom: 0;
            cursor: pointer;
        }
        
        .price-range {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .price-inputs {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .price-input {
            flex: 1;
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 8px 12px;
        }
        
        .price-slider {
            width: 100%;
            margin: 10px 0;
        }
        
        .filter-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        /* Mobile Filter Modal */
        .filter-modal {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            height: 100%;
            background: white;
            z-index: 1100;
            overflow-y: auto;
            padding: 20px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }
        
        .filter-modal.show {
            transform: translateX(0);
        }
        
        .filter-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-modal-title {
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }
        
        .filter-modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .filter-modal-body {
            padding-bottom: 80px;
        }
        
        .filter-modal-footer {
            position: fixed;
            bottom: 0;
            right: 0;
            width: 85%;
            background: white;
            padding: 15px 20px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }
        
        .filter-modal-footer .btn {
            flex: 1;
        }
        
        .filter-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1090;
            display: none;
        }
        
        .filter-overlay.show {
            display: block;
        }
        
        /* Active Filters Bar */
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
            align-items: center;
        }
        
        .filter-tag {
            background: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .filter-tag-remove {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
            padding: 0;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .clear-filters {
            color: var(--primary-color);
            background: none;
            border: none;
            font-size: 14px;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-left: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }
        
        /* Video Reviews Carousel Styles - Custom for JotiyaOnline */
        .reviews-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 0;
            overflow: hidden;
        }

        .review-videos {
            display: flex;
            gap: 15px;
            padding: 10px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            margin: 0 50px;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
        }

        .review-videos::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari */
        }

        .video-wrapper {
            flex: 0 0 calc(33.333% - 10px);
            scroll-snap-align: start;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            aspect-ratio: 9/16;
            min-width: 280px;
            max-height: 500px;
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
           
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-left {
            color:#000;
            right: 0;
        }

        .arrow-right {
            color:#000;
            left: 0;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            padding: 10px 0;
            gap: 8px;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: #333;
            transform: scale(1.2);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .video-wrapper {
                flex: 0 0 calc(50% - 10px);
                min-width: 200px;
            }
            
            .nav-arrow {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
            .video-wrapper {
                flex: 0 0 calc(100% - 10px);
            }
            
            .review-videos {
                margin: 0 30px;
            }
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 100px;
            left: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            font-size: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 999;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            color: white;
        }
        
        /* Back to Top Button Styles */
        .back-to-top-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 999;
            transition: all 0.3s;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .back-to-top-btn:hover {
            background-color: var(--primary-light);
            transform: translateY(-5px);
        }
        
        /* Shipping banner text animation */
        .shipping-banner {
            background-color: #f8f9fa;
            padding: 10px 20px;
            font-size: 16px;
            text-align: center;
            transition: opacity 0.5s ease-in-out;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .product-card {
                margin-bottom: 20px;
            }
            
            .navbar-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-box {
                width: 100%;
            }
            
            .product-img {
                height: 180px;
            }
            
            .product-actions {
                opacity: 1;
                right: 10px;
                flex-direction: row;
                top: auto;
                bottom: 10px;
                transform: none;
            }
            
            .action-btn {
                margin-bottom: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            
            .filter-dropdown {
                width: 100%;
                right: 0;
                left: 0;
            }
            
            .filter-container {
                width: 100%;
            }
            
            .filter-btn {
                width: 100%;
                margin: 10px 0;
            }
            
            .video-reel {
                margin-bottom: 20px;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .play-button i {
                font-size: 20px;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 25px;
                line-height: 50px;
                bottom: 80px;
                left: 15px;
            }
            
            .back-to-top-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .lead {
                font-size: 1rem;
            }
            
            .mb-5 {
                margin-bottom: 1.5rem !important;
            }
            
            .trust-badges {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
                margin: 16px 0;
            }
            
            .trust-badge {
                background-color: var(--light-color);
                border-radius: 20px;
                padding: 2px 1px;
                display: flex;
                align-items: center;
                box-shadow: 0 3px 10px rgba(0,0,0,0.1);
                animation: fadeInUp 1s;
            }
            
            .trust-badge i {
                color: var(--primary-color);
                margin-left: 8px;
                font-size: 14px;
            }
            
            .display-4 {
                font-size: 1.5rem;
            }
            
            .filter-actions {
                flex-direction: column;
            }
        }
