
        :root {
            --primary-color: #4a6bff;
            --primary-dark: #3a56cc;
            --secondary-color: #ff6b6b;
            --secondary-dark: #e05555;
            --dark-color: #2c3e50;
            --dark-light: #34495e;
            --light-color: #f8f9fa;
            --light-dark: #e9ecef;
            --accent-color: #f39c12;
            --accent-dark: #da8c10;
            --success-color: #2ecc71;
            --success-dark: #27ae60;
            --warning-color: #f1c40f;
            --danger-color: #e74c3c;
            --info-color: #3498db;
            --text-color: #333;
            --text-light: #777;
            --text-lighter: #999;
            --border-color: #ddd;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --font-primary: 'Tajawal', sans-serif;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            max-width: 100%;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-color);
            background-color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            outline: none;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .highlight {
            background-color: #FFD700;
            color: black;
        }

        .highlight-q {
            color: black;
            background-color: #ffffff; 
        }

        /* Top Banner */
        .top-banner {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            text-align: center;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
            right: 0;
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--secondary-color);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--dark-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* Product Card */
        .product-card {
            max-width: 1200px;
            margin: 10px auto 50px;
            padding: 0 15px;
        }
        
        .flex-box {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .left {
            flex: 1;
        }
        
        .right {
            flex: 1;
        }
        
   .main-image {
  background-color: #FFFACD;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.main-image img {
  width: 100%;
  height: 100%;
 
  object-position: center;     /* centers it */
  background-color: transparent; /* not needed, in case */
 
  transition: var(--transition);
  display: block;              /* remove default inline spacing */
}


        
        .main-image:hover img {
            transform: scale(1.05);
        }
        
        .view-large-btn {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .view-large-btn:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }

        .thumbnails {
            padding: 3%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .thumbnail {
            cursor: pointer;
            width: 100px;
            height: auto;
        }
        
        .thumbnail-images {
            display: flex;
            gap: 55px;
            margin-top: 15px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: var(--primary-color);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .pname {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .quantity {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            width: fit-content;
            margin: 20px auto;
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            border: none;
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            cursor: pointer;
            transition: background-color 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            background-color: #e0e0e0;
        }

        #quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: none;
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
            background-color: #fff;
            outline: none;
            border-left: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
        }
        
        .btn-box {
            margin-bottom: 30px;
        }
        
        .buy-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 100%;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .buy-btn:hover {
            background-color: var(--primary-dark);
            box-shadow: var(--box-shadow-hover);
            transform: translateY(-3px);
        }

        .limited-quantity {
            font-size: 1rem;
            font-weight: 600;
            color: #ff4d4f;
            text-align: center;
            border-bottom: 2px solid #ff4d4f;
            padding-bottom: 4px;
            display: inline-block;
            direction: rtl;
            margin: 10px auto;
        }

        /* Guarantee Banner */
        .guarantee-banner {
            display: inline-block;
            width: 80%;
            padding: 10px;
            border: 2px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            text-align: center;
        }

        /* Product Details */
        .product-details {
            background-color: white;
            border-radius: 8px;
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .product-details h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        
        .product-details p, .product-details li {
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.7;
        }
        
        .product-details ul {
            padding-right: 20px;
        }
        
        .product-details li {
            position: relative;
            margin-bottom: 10px;
        }
        
        .product-details li::before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: -1em;
        }
        
        /* Review Videos here */
          /* Review Videos Container */
        .reviews-container {
            position: relative;
            margin: 30px auto;
            max-width: 95%;
            overflow: hidden;
        }
        
        /* Review Videos Carousel */
        .review-videos {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 15px;
            padding: 20px 10px;
            scroll-behavior: smooth;
        }
        
        .review-videos::-webkit-scrollbar {
            display: none;
        }
        
        .video-wrapper {
            flex: 0 0 auto;
            width: 300px;
            scroll-snap-align: start;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .video-wrapper iframe {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 10px;
        }
        
        /* Navigation arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0.9;
        }
        
        .nav-arrow:hover {
            background-color: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.1);
        }
        
        .arrow-left {
            right: 15px;
        }
        
        .arrow-right {
            left: 15px;
        }
        
        /* Indicator dots */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator-dot.active {
            background-color: #FFCC33; /* bright, warm gold */
            transform: scale(1.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .video-wrapper {
                width: 250px;
            }
            
            .video-wrapper iframe {
                height: 400px;
            }
            
            .nav-arrow {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 480px) {
            .video-wrapper {
                width: 220px;
            }
            
            .video-wrapper iframe {
                height: 350px;
            }
            
            .nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
            
            .indicator-dot {
                width: 10px;
                height: 10px;
            }
        }
       
        /* FAQ */
        .faq {
            margin: 40px 0;
        }
        
        .faq h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px;
            background-color: var(--light-color);
            cursor: pointer;
            font-weight: 500;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-question.active + .faq-answer {
            padding: 15px;
            max-height: 500px;
        }
        
        /* Social Media */
        .social-media {
            text-align: center;
            margin: 40px 0;
        }

        .social-media h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .social-media ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: inline-block;
        }

        .social-media ul li {
            display: inline-block;
            margin: 0 10px;
            list-style: none;
        }
        
        .social-media a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .facebook {
            color: #3b5998;
            background-color: rgba(59, 89, 152, 0.1);
        }
        
        .youtube {
            color: #ff0000;
            background-color: rgba(255, 0, 0, 0.1);
        }
        
        .pinterest {
            color: #bd081c;
            background-color: rgba(189, 8, 28, 0.1);
        }
        
        .instagram {
            color: #e1306c;
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-color: rgba(224, 48, 108, 0.1);
        }
        
        .social-media a:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 40px;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 15px;
            border-radius: 50%;
            user-select: none;
        }
        
        .left-arrow {
            right: 30px;
        }
        
        .right-arrow {
            left: 30px;
        }
        
        /* Order Popup */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        
        .popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .popup-content h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            text-align: center;
        }
        
        .popup-content img {
            width: 50%;
            height: 50px;
            object-fit: contain;
            border-radius: 4px;
            display: block;
            margin: 0 auto;
        }
        
        .popup-content p {
            margin-bottom: 15px;
        }
        
        .popup-content p strong {
            color: var(--primary-color);
        }
        
        .input-group {
            margin-bottom: 15px;
            position: relative;
        }
        
        .input-group i {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: var(--primary-color);
        }
        
        .input-group input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        
        .input-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
        }
        
        .button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 2px;
        }
        
        .close-btn {
    background-color: #f8d7da; /* Soft red tone for attention */
    color: #721c24;            /* Dark red text */
    border: none;
    padding: 10px 20px;
    border-radius: 30px;       /* Pill shape for a soft look */
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.close-btn:hover {
    background-color: #f1b0b7;
    color: #721c24;
    transform: translateY(-2px);
}

        
     .form-group button {
    background-color: #28a745; /* Trust-building green */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 60px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    width: 100%; /* Full-width for mobile */
}

.form-group button:hover {
    background-color: #218838; /* Slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

        
        .spinner {
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 2px solid white;
            width: 16px;
            height: 16px;
            animation: spin 1s linear infinite;
        }
        
        .hidden {
            display: none;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .feedback-message {
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .feedback-message.success {
            background-color: rgba(40, 167, 69, 0.2);
            color: var(--success-color);
        }
        
        .feedback-message.error {
            background-color: rgba(220, 53, 69, 0.2);
            color: var(--danger-color);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        .footer-logo h3 {
            font-size: 1.5rem;
        }

        .footer-section p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: white;
            padding-right: 5px;
        }

        .contact-info-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .contact-info-list i {
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .contact-info-list span,
        .contact-info-list a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .contact-info-list a:hover {
            color: white;
        }

        .newsletter-title {
            margin-top: 30px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-family: var(--font-primary);
        }

        .newsletter-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: var(--primary-dark);
        }

        .map-container {
            height: 200px;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
        }

        .copyright {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: white;
            transform: translateY(-3px);
        }
        
        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 99;
            transition: var(--transition);
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Back to Top Button */
        #back-to-top {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
        }

        /* Animation for Buy Button */
        @keyframes moveAttention {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(10px);
            }
        }

        /* Apply animation only on large screens */
        @media (min-width: 992px) {
            .buy-btn {
                animation: moveAttention 2s infinite ease-in-out;
            }
        }

        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        #back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
        }
        
        /* Sticky Buy Button for Mobile */
        .sticky-buy-container {
            position: fixed;
            bottom: -100px;
            left: 0;
            right: 0;
            z-index: 98;
            padding: 0 15px;
            display: flex;
            justify-content: center;
            transition: bottom 0.5s ease-out;
        }

        .sticky-buy-content {
            background: linear-gradient(135deg, #4a6bff 0%, #3a56cc 100%);
            border-radius: 30px;
            padding: 2px;
            box-shadow: 0 5px 20px rgba(74, 107, 255, 0.3);
        }

        .sticky-buy-btn {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .sticky-buy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .sticky-buy-btn i {
            font-size: 1.2rem;
        } /* Show sticky buy button on mobile */
            .sticky-buy-container.visible {
                bottom: 20px;
            }

        /* Responsive Design */
        @media (max-width: 992px) {
            .flex-box {
                flex-direction: column;
            }
            
            .main-image {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                justify-content: center;
                padding: 20px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.show {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .product-card {
                margin-top: 10px;
            }
            
            .pname {
                font-size: 1.5rem;
            }
            
            .price {
                font-size: 1.8rem;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                left: 20px;
            }
            
            #back-to-top {
                width: 45px;
                height: 45px;
                bottom: 80px;
                left: 20px;
            }

           
        }
        
        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.2rem;
            }
            .main-image {
                height: 250px;
            }
            .thumbnail {
                width: 60px;
                height: 60px;
            }
            .popup-content {
                padding: 20px;
            }
              .form-group button {
    background-color: #28a745; /* Trust-building green */
    color: #fff;
    font-size: 13px;
   
} .close-btn {
  
    padding: 8px 16px;
    border-radius: 20px;       /* Pill shape for a soft look */
    font-size: 13px;
    font-weight: bold;
   
}
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1rem;
            }
            .nav-link {
                font-size: 1rem;
                padding: 5px;
            }
            .pname {
                font-size: 1rem;
                font-weight: 500;
                margin-bottom: 10px;
                color: var(--dark-color);
            }
            .price {
                font-size: 0.9rem;
            }
            .buy-btn {
                padding: 12px 25px;
            }
            .guarantee-banner {
                object-fit: fill;
                width: 100%;
            }
            .product-details {
                padding: 15px;
                margin-bottom: 15px;
                border-radius: 4px;
            }
            .flex-box {
                gap: 8px;
                margin-bottom: 50px;
            }
            .quantity {
                margin: 16px auto;
                box-shadow: none;
                border-radius: 4px;
            }
            .quantity-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            #quantity-input {
                width: 50px;
                height: 36px;
                font-size: 1rem;
            }#banner-text{
                font-size: 0.8rem;
                
            }
        }

        /* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-button {
    background-color: white;
    color: var(--dark-color);
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.language-button:hover {
    background-color: var(--light-color);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
    min-width: 120px;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

.language-option {
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.language-option:hover {
    background-color: var(--light-color);
}

.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
}




/* Choise list  input */
/* Container styling */
.custom-select {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 250px;
  display: inline-block;
}

/* Base reset + appearance removal */
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
}

/* Hide IE dropdown arrow */
.custom-select select::-ms-expand {
  display: none;
}

/* Custom arrow using background SVG */
.custom-select select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}

/* Focus outline + shadow */
.custom-select select:focus {
  outline: none;
  border-color: #6ca0dc;
  box-shadow: 0 0 0 3px rgba(108, 160, 220, 0.3);
}

/* Hover feedback */
.custom-select select:hover {
  border-color: #999;
}

/* Disabled state */
.custom-select select:disabled {
  background-color: #f5f5f5;
  color: #777;
  cursor: not-allowed;
}

/*product list*/
   /* Related Products Horizontal Styles */
    .rp-horizontal-container {
        margin: 50px 0;
        padding: 0 15px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
    }
    
    .rp-title {
        text-align: center;
        margin-bottom: 30px;
        color: #d4a017;
    }
    
    .rp-scroll-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .rp-horizontal-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 0;
        scrollbar-width: none; /* Firefox */
    }
    
    .rp-horizontal-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .rp-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
    
    .rp-card:hover {
        transform: translateY(-5px);
    }
    
    .rp-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .rp-card-content {
        padding: 15px;
    }
    
    .rp-card h3 {
        margin-top: 0;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .rp-price {
        color: #d4a017;
        font-weight: bold;
        font-size: 18px;
    }
    
   
    
    .rp-button {
        background: #d4a017;
        color: white;
        border: none;
        padding: 8px 12px;
        width: 100%;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
    }
    
    /* Scroll Arrows */
    .rp-scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid #ddd;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        display: none;
    }
    
    .rp-scroll-left {
        left: 0;
    }
    
    .rp-scroll-right {
        right: 0;
    }
    
    /* Dots Navigation */
    .rp-dots-container {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
    }
    
    .rp-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
    }
    
    .rp-dot.active {
        background: #d4a017;
    }
    
    /* WhatsApp Button Styles */
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        line-height: 60px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }
    
    /* Show arrows on hover */
    @media (min-width: 768px) {
        .rp-scroll-wrapper:hover .rp-scroll-arrow {
            display: block;
        }
    }
    
    /* Mobile styles */
    @media (max-width: 767px) {
        .rp-card {
            flex: 0 0 200px;
        }
        
        .rp-scroll-arrow {
            display: block;
        }
        
        .rp-horizontal-grid {
            padding: 10px 40px;
        }
    }
    /* WhatsApp Button Styles */
    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        line-height: 60px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }

