﻿/* GLOBAL FONT NORMALIZATION */
        html,
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif !important;
        }

        h1, h2, h3, h4, h5, h6, p, span, label, input, select, textarea, button, a {
            font-family: inherit !important;
        }

        /* Premium Button Touch */
        button,
        .upload-now {
            letter-spacing: 0.5px;
        }

        .product-shape-amount.is-price-loading .single-product-original-price,
        .product-shape-amount.is-price-loading .single-product-discouted-price {
            opacity: 0.45;
        }

        .matrix-price-status {
            display: none;
            font-size: 0.72rem;
            color: #6b7280;
            margin-top: 4px;
        }

        .product-shape-amount.is-price-loading .matrix-price-status,
        .product-shape-amount.is-price-stale .matrix-price-status {
            display: block;
        }

        .product-shape-amount.is-price-stale .matrix-price-status {
            color: #dc2626;
        }

        .matrix-price-status.is-retrying {
            color: #d97706;
        }

        /* âœ… PREMIUM HORIZONTAL TESTIMONIALS */
        .clinte-saction {
            background: #fafafa;
            padding: 60px 0;
        }

        .clinte-saction h5 {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            color: #777;
            margin-bottom: 5px;
        }

        .clinte-saction h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #222;
        }

        /* Horizontal Scroll Container */
        .clinte-saction section.slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 20px;
            /* Space for scrollbar/shadow */
            -webkit-overflow-scrolling: touch;
            /* Smooth scroll iOS */
            scrollbar-width: thin;
            /* Firefox */
        }

        /* Custom Scrollbar for Webkit */
        .clinte-saction section.slider::-webkit-scrollbar {
            height: 6px;
        }

        .clinte-saction section.slider::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .clinte-saction section.slider::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

        .clinte-saction section.slider::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

        /* Cards */
        .clinte-saction section.slider>div {
            flex: 0 0 320px;
            /* Fixed width cards */
            scroll-snap-align: start;
        }

        .slider-box {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #eee;
        }

        .slider-box p {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
            margin-bottom: 20px;
            font-style: italic;
        }

        .name-clinte span {
            font-weight: 700;
            font-size: 14px;
            color: #000;
        }

        .rating-clinte i {
            color: #f4c150;
            font-size: 14px;
            margin-right: 2px;
        }

        /* --- Existing Styles Preserved --- */

        /* 1. Processing Overlay */
        #processingOverlay {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.85);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .processing-box {
            text-align: center;
            font-size: 16px;
            color: #333;
        }

        .processing-box p {
            margin-top: 15px;
            font-weight: 600;
        }

        .spinner {
            width: 52px;
            height: 52px;
            border: 4px solid #e5e5e5;
            border-top: 4px solid #000;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: auto;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* 2. Mobile Sticky Bar */
        .mobile-sticky-bar {
			position: fixed;
			bottom: 0;
			left: 0;
			right: 0;
			background: #fff;
			border-top: 1px solid #ddd;
			padding: 12px 15px;
			display: flex;
			justify-content: space-between;
			align-items: center;

			z-index: 10001; /* ðŸ”¥ ABOVE MODALS & OVERLAYS */
			box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
		}

        .mobile-sticky-bar .price {
            font-size: 18px;
            font-weight: 700;
            color: #000;
        }

        /* 3. Delivery ETA */
        .delivery-eta {
            margin-top: 6px;
            font-size: 14px;
            color: #2e7d32;
            display: block;
            margin-bottom: 5px;
        }

        /* 4. Trust Badges */
        .trust-badges {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #555;
            align-items: center;
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 4px;
            background: #f9f9f9;
            padding: 4px 8px;
            border-radius: 4px;
            border: 1px solid #eee;
        }

        /* 5. Price Update Animation */
        .price-updating {
            opacity: 0.3;
            transform: scale(0.98);
            transition: all 0.2s ease;
        }

        /* 6. Skeleton Loaders */
        .skeleton {
            background: linear-gradient(90deg, #eee, #f5f5f5, #eee);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            display: inline-block;
            border-radius: 4px;
        }

        @keyframes shimmer {
            to {
                background-position: -200% 0;
            }
        }

        /* PREMIUM TRUST BADGES */
        .premium-trust {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .premium-trust .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 1px solid #eaeaea;
            padding: 10px 12px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.2s ease;
        }

        .premium-trust .trust-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        .premium-trust .trust-icon {
            font-size: 20px;
            line-height: 1;
        }

        .premium-trust strong {
            font-size: 13px;
            font-weight: 600;
            color: #111;
            display: block;
        }

        .premium-trust small {
            font-size: 12px;
            color: #4b5563;
            display: block;
        }

        .single-inner-category-page .single-product-original-price {
            color: #111827;
        }

        .single-inner-category-page .single-product-discouted-price {
            color: #374151;
        }

        /* Mobile optimization */
        @media (max-width: 576px) {
            .premium-trust {
                grid-template-columns: 1fr;
            }
        }

        /* PREMIUM RELATED PRODUCTS SECTION */
        .premium-related-section {
            background-color: #f9f9f9;
            /* Light contrast background */
            padding: 70px 0;
            font-family: 'Inter', sans-serif;
        }

        .premium-section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .premium-section-title h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            display: inline-block;
            padding-bottom: 15px;
        }

        .premium-section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #d32f2f;
            /* Your brand accent color */
            border-radius: 2px;
        }

        /* CARD DESIGN */
        .premium-product-card {
            display: block;
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none !important;
            transition: all 0.35s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f0f0;
            height: 100%;
            /* Equal height columns */
            position: relative;
        }

        .premium-product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #e5e5e5;
        }

        /* IMAGE WRAPPER */
        .premium-card-img {
            position: relative;
            width: 100%;
            padding-top: 100%;
            /* 1:1 Aspect Ratio Square */
            overflow: hidden;
            background: #f4f4f4;
        }

        .premium-card-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .premium-product-card:hover .premium-card-img img {
            transform: scale(1.08);
            /* Zoom effect */
        }

        /* CONTENT WRAPPER */
        .premium-card-body {
            padding: 20px 20px 25px 20px;
            text-align: center;
        }

        .premium-card-title {
            font-size: 17px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .premium-card-desc {
            font-size: 13px;
            color: #777;
            margin-bottom: 15px;
            line-height: 1.5;
            height: 42px;
            /* Limits to approx 2 lines */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .premium-card-price {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 14px;
            color: #555;
        }

        .premium-price-val {
            font-size: 18px;
            font-weight: 700;
            color: #d32f2f;
            /* Red/Accent color */
        }

        /* VIEW BTN ON HOVER (Optional decoration) */
        .view-btn-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            color: #000;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }

        .premium-product-card:hover .view-btn-overlay {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* --- PREMIUM SECTION STYLES --- */
        .premium-related-section {
            background-color: #f9f9f9;
            padding: 60px 0;
            font-family: 'Inter', sans-serif;
        }

        .premium-section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .premium-section-title h2 {
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            padding-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .premium-section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #d32f2f;
            /* Brand Color */
            border-radius: 2px;
        }

        /* --- CARD DESIGN --- */
        .premium-product-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
            height: 100%;
        }

        .premium-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #e5e5e5;
        }

        /* Image Wrapper (Square Aspect Ratio) */
        .premium-card-img {
            position: relative;
            width: 100%;
            padding-top: 100%;
            /* 1:1 Square */
            overflow: hidden;
            background: #f4f4f4;
        }

        .premium-card-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .premium-product-card:hover .premium-card-img img {
            transform: scale(1.05);
        }

        /* Hover Button */
        .view-btn-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #000;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .premium-product-card:hover .view-btn-overlay {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Card Content */
        .premium-card-body {
            padding: 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .premium-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .premium-card-desc {
            font-size: 13px;
            color: #777;
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .premium-card-price {
            margin-top: auto;
            font-size: 13px;
            color: #555;
        }

        .premium-price-val {
            font-size: 16px;
            font-weight: 700;
            color: #d32f2f;
            margin-left: 4px;
        }

        /* --- MOBILE SPECIFIC (2 Per Row Optimization) --- */
        @media (max-width: 767px) {
            .premium-related-section {
                padding: 40px 0;
            }

            /* Reduce font sizes for mobile */
            .premium-card-title {
                font-size: 13px;
                white-space: normal;
                /* Allow title to wrap on small screens */
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.3;
                height: 34px;
                /* Fixed height for 2 lines */
            }

            .premium-card-body {
                padding: 10px 8px;
                /* Tighter padding */
            }

            /* Stack price vertically if space is tight */
            .premium-card-price {
                font-size: 12px;
            }

            .premium-price-val {
                font-size: 14px;
                display: block;
                /* Put price on new line on very small screens */
            }
        }

        /* --- PREMIUM TESTIMONIALS SECTION --- */
        .premium-testimonial-section {
            background-color: #f8f9fa;
            /* Light grey background for contrast */
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
            position: relative;
        }

        /* Header & Nav */
        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .sub-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #d32f2f;
            /* Brand Color */
            font-weight: 700;
            margin-bottom: 8px;
        }

        .main-title {
            font-size: 32px;
            font-weight: 800;
            color: #111;
            margin: 0;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
        }

        .nav-btn:hover {
            background: #111;
            border-color: #111;
            color: #fff;
        }

        /* Scroll Container */
        .testimonial-track-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            /* Hide scrollbar for clean look */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE 10+ */
            padding-bottom: 20px;
            /* Space for shadow */
            margin: 0 -15px;
            /* Alignment fix */
            padding: 10px 15px 30px 15px;
        }

        .testimonial-track-container::-webkit-scrollbar {
            display: none;
            /* WebKit */
        }

        .testimonial-track {
            display: flex;
            gap: 24px;
            /* Space between cards */
            width: max-content;
            /* Allows horizontal expansion */
        }

        /* --- CARD SIZING (The Logic for 4 items) --- */
        .testimonial-card-wrap {
            /* Calculation: 
       (100% viewport width) minus (gaps between 4 items) divided by 4 
       1140px container / 4 = approx 285px minus gaps.
    */
            width: 270px;
            flex: 0 0 auto;
            /* Prevents shrinking */
            scroll-snap-align: start;
        }

        /* Card Design */
        .premium-testimonial-card {
            background: #fff;
            padding: 30px 25px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            border: 1px solid #eee;
            transition: transform 0.3s ease;
        }

        .premium-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .quote-icon i {
            font-size: 24px;
            color: #f0f0f0;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .review-text {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
        }

        .card-footer {
            border-top: 1px solid #f5f5f5;
            padding-top: 15px;
            margin-top: auto;
        }

        .client-name {
            font-size: 15px;
            font-weight: 700;
            color: #000;
            margin: 0 0 5px 0;
        }

        .client-rating i.filled {
            color: #FFD700;
            /* Gold */
            font-size: 13px;
        }

        .client-rating i.empty {
            color: #ddd;
            font-size: 13px;
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */

        /* Tablet: Show 2.5 cards */
        @media (max-width: 991px) {
            .testimonial-card-wrap {
                width: 300px;
            }
        }

        /* Mobile: Show 1 card with a peek at the next */
        @media (max-width: 767px) {
            .testimonial-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .main-title {
                font-size: 24px;
            }

            .testimonial-card-wrap {
                width: 85vw;
                /* 85% of screen width */
            }

            .testimonial-track {
                gap: 15px;
            }
        }

        /* ===============================
   PREMIUM SUGGESTION PRODUCTS
   =============================== */

        .suggestion-section {
            padding: 70px 0;
            background: #fafafa;
        }

        .suggestion-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 35px;
            color: #111;
            text-align: center;
        }

        /* Card */
        .suggestion-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: transform .35s ease, box-shadow .35s ease;
            display: flex;
            flex-direction: column;
        }

        .suggestion-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
        }

        /* Image */
        .suggestion-img {
            overflow: hidden;
        }

        .suggestion-img img {
            width: 100%;
            display: block;
            transition: transform .5s ease;
        }

        .suggestion-card:hover img {
            transform: scale(1.06);
        }

        /* Content */
        .suggestion-content {
            padding: 18px 18px 22px;
        }

        .suggestion-content h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #111;
        }

        .suggestion-content p,
        .suggestion-content div {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }

        .suggestion-price {
            margin-top: 10px;
            font-size: 15px;
        }

        .suggestion-price span {
            font-weight: 700;
            color: #d32f2f;
        }

        /* Animation */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp .8s ease forwards;
        }

        .fade-delay-1 {
            animation-delay: .1s;
        }

        .fade-delay-2 {
            animation-delay: .2s;
        }

        .fade-delay-3 {
            animation-delay: .3s;
        }

        .fade-delay-4 {
            animation-delay: .4s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .suggestion-section {
                padding: 45px 0;
            }

            .suggestion-section h2 {
                font-size: 22px;
            }
        }
		
		/* ðŸ”¥ Fix modal layout for file uploads */
		#productUploadModal .modal-dialog {
			height: 90vh;
			margin: 5vh auto;
		}

		#productUploadModal .modal-content {
			height: 100%;
			display: flex;
			flex-direction: column;
		}

		#productUploadModal .modal-body {
			flex: 1 1 auto;
			overflow-y: auto;        /* âœ… scroll here */
			-webkit-overflow-scrolling: touch;
			padding-bottom: 160px;  /* space for footer */
		}

		#productUploadModal .modal-footer {
			position: sticky;
			bottom: 0;
			background: #fff;
			z-index: 10;
			border-top: 1px solid #eee;
		}
		/* ðŸ”¥ Limit Dropzone preview area */
		#product_upload_file {
			max-height: 220px;
			overflow-y: auto;
			border-radius: 10px;
		}

		/* Optional: cleaner preview spacing */
		#product_upload_file .dz-preview {
			margin: 6px;
		}
		#productUploadModal .submit_add_to_cart_btn {
			width: 100%;
			padding: 14px;
			font-size: 16px;
			font-weight: 600;
		}

		/* Uppy: hide Done â€” it clears uploaded previews; use Add To Cart instead */
		#productUploadModal .uppy-StatusBar-actionBtn--done,
		#productUploadModal .uppy-StatusBar-actionBtn[name="done"],
		#drag-drop-area .uppy-StatusBar-actionBtn--done,
		#drag-drop-area .uppy-StatusBar-actionBtn[name="done"] {
			display: none !important;
		}

		#upload_saved_hint {
			display: none;
			margin: 0 0 12px;
			padding: 10px 12px;
			border-radius: 8px;
			background: #ecfdf5;
			color: #047857;
			font-size: 14px;
			font-weight: 600;
		}

		#upload_saved_hint.is-visible {
			display: block;
		}
		
		/* âœ… Hide mobile sticky bar when ANY modal is open */
		body.modal-open .mobile-sticky-bar {
			display: none !important;
		}
		/* ðŸ”¥ Hide chat / floating widgets when modal is open */
			body.modal-open iframe,
			body.modal-open .chat-widget,
			body.modal-open .intercom-launcher,
			body.modal-open .zopim,
			body.modal-open .crisp-client,
			body.modal-open .tawk-widget,
			body.modal-open .help-widget {
				display: none !important;
			}
			
			.premium-trust {
			display: grid;
			/* This creates 2 equal columns on all screens */
			grid-template-columns: repeat(2, 1fr); 
			gap: 10px;
			margin-top: 18px;
		}

		.premium-trust .trust-item {
			display: flex;
			align-items: center;
			gap: 8px;
			background: #fff;
			border: 1px solid #eaeaea;
			padding: 10px 8px;
			border-radius: 10px;
		}

		/* Adjust icon size for smaller screens */
		.premium-trust .trust-icon {
			font-size: 18px;
			flex-shrink: 0;
		}

		.premium-trust strong {
			font-size: 11px; /* Slightly smaller for mobile fit */
			display: block;
			line-height: 1.2;
		}

		.premium-trust small {
			font-size: 10px;
			color: #4b5563;
			display: block;
		}

		/* Desktop sizing */
		@media (min-width: 768px) {
			.premium-trust strong { font-size: 13px; }
			.premium-trust small { font-size: 12px; }
			.premium-trust .trust-icon { font-size: 20px; }
		}
		
		/* --- PREMIUM CUSTOMIZE CARDS --- */
		.custom-features-row {
			margin-top: 15px;
		}

		/* Tighter spacing for mobile to maximize screen real estate */
		.custom-feature-col {
			padding: 0 8px; 
		}
		@media (min-width: 768px) {
			.custom-feature-col {
				padding: 0 15px; 
			}
		}

		/* Main Card Styling */
		.online-customised-card {
			background: #ffffff;
			border-radius: 16px;
			padding: 26px 16px;
			text-align: center;
			border: 1px solid rgba(0, 0, 0, 0.04);
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
			/* Smooth bounce transition */
			transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
			display: flex;
			flex-direction: column;
			align-items: center;
			position: relative;
			overflow: hidden;
			z-index: 1;
		}

		/* Subtle accent background on hover */
		.online-customised-card::before {
			content: '';
			position: absolute;
			top: 0; left: 0; right: 0; bottom: 0;
			background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, rgba(255,255,255,0) 100%);
			opacity: 0;
			transition: opacity 0.4s ease;
			z-index: -1;
		}

		.online-customised-card:hover {
			transform: translateY(-8px);
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
			border-color: rgba(211, 47, 47, 0.15); /* Match your red brand color */
		}

		.online-customised-card:hover::before {
			opacity: 1;
		}

		/* Icon Container with Neumorphic Touch */
		.icon-glow-bg {
			width: 75px;
			height: 75px;
			background: #fcfcfc;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 22px;
			box-shadow: inset 0 0 15px rgba(0,0,0,0.02), 0 8px 16px rgba(0,0,0,0.05);
			transition: transform 0.4s ease;
		}

		.online-customised-card:hover .icon-glow-bg {
			transform: scale(1.1); /* Zooms icon on hover */
		}

		.icon-glow-bg img {
			max-width: 42px;
			max-height: 42px;
			object-fit: contain;
		}

		/* Typography */
		.card-text-content h3 {
			font-size: 16px;
			font-weight: 700;
			color: #1a1a1a;
			margin-bottom: 10px;
			line-height: 1.3;
		}

		.card-text-content p {
			font-size: 13px;
			color: #666;
			line-height: 1.5;
			margin: 0;
		}

		/* Prevents long descriptions from breaking the layout */
		.desc-line-clamp {
			display: -webkit-box;
			-webkit-line-clamp: 3;
			-webkit-box-orient: vertical;
			overflow: hidden;
		}

		/* --- MOBILE OPTIMIZATIONS --- */
		@media (max-width: 576px) {
			.online-customised-card {
				padding: 20px 10px;
				border-radius: 14px;
			}

			.icon-glow-bg {
				width: 55px;
				height: 55px;
				margin-bottom: 15px;
			}

			.icon-glow-bg img {
				max-width: 30px;
				max-height: 30px;
			}

			.card-text-content h3 {
				font-size: 14px;
				margin-bottom: 6px;
			}

			.card-text-content p {
				font-size: 12px;
				-webkit-line-clamp: 2; /* Shorten text to 2 lines on mobile for cleaner look */
			}
		}
		
		/* --- PREMIUM RELATED PRODUCTS SECTION --- */
			.premium-related-section {
				background-color: #fafafa;
				padding: 80px 0;
				font-family: 'Inter', sans-serif;
				overflow: hidden; /* Prevents animation overflow */
			}

			/* Title Styling */
			.premium-section-title {
				margin-bottom: 50px;
				display: flex;
				flex-direction: column;
				align-items: center;
			}

			.premium-section-title h2 {
				font-size: 32px;
				font-weight: 800;
				color: #111;
				letter-spacing: -0.5px;
				margin: 0 0 15px 0;
			}

			.title-accent-line {
				width: 60px;
				height: 3px;
				background: #d32f2f; /* Brand Color */
				border-radius: 3px;
			}

			/* Main Card Styling */
			.premium-product-card {
				background: #ffffff;
				border-radius: 16px;
				overflow: hidden;
				text-decoration: none !important;
				display: flex;
				flex-direction: column;
				border: 1px solid rgba(0,0,0,0.04);
				box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
				transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
			}

			.premium-product-card:hover {
				transform: translateY(-8px);
				box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
				border-color: rgba(0,0,0,0.08);
			}

			/* Image Wrapper & Zoom Effect */
			.premium-card-img {
				position: relative;
				width: 100%;
				padding-top: 100%; /* 1:1 Aspect Ratio */
				overflow: hidden;
				background: #f8f9fa;
			}

			.premium-card-img img {
				position: absolute;
				top: 0; left: 0;
				width: 100%; height: 100%;
				object-fit: cover;
				transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
			}

			.premium-product-card:hover .premium-card-img img {
				transform: scale(1.08);
			}

			/* Slide-Up Hover Button */
			.view-btn-overlay {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				background: rgba(255, 255, 255, 0.95);
				backdrop-filter: blur(5px);
				padding: 15px;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 8px;
				color: #111;
				font-weight: 600;
				font-size: 14px;
				transform: translateY(100%);
				transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
			}

			.premium-product-card:hover .view-btn-overlay {
				transform: translateY(0);
			}

			/* Card Content */
			.premium-card-body {
				padding: 20px;
				display: flex;
				flex-direction: column;
				flex-grow: 1;
			}

			.premium-card-title {
				font-size: 16px;
				font-weight: 700;
				color: #111;
				margin-bottom: 8px;
				line-height: 1.3;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
			}

			.premium-card-desc {
				font-size: 13px;
				color: #666;
				margin-bottom: 15px;
				line-height: 1.5;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
				flex-grow: 1;
			}

			.premium-card-price {
				margin-top: auto;
				display: flex;
				align-items: center;
				gap: 6px;
			}

			.price-label {
				font-size: 12px;
				color: #888;
				text-transform: uppercase;
				letter-spacing: 0.5px;
			}

			.premium-price-val {
				font-size: 18px;
				font-weight: 800;
				color: #d32f2f;
			}

			/* --- SCROLL ANIMATION CLASSES --- */
			.scroll-fade-up {
				opacity: 0;
				transform: translateY(40px);
				transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
			}

			.scroll-fade-up.is-visible {
				opacity: 1;
				transform: translateY(0);
			}

			/* Mobile Adjustments */
			@media (max-width: 767px) {
				.premium-related-section { padding: 50px 0; }
				.premium-section-title h2 { font-size: 24px; }
				.premium-card-body { padding: 15px 12px; }
				.premium-card-title { font-size: 14px; }
				.premium-price-val { font-size: 16px; }
				.price-label { display: none; } /* Saves space on mobile */
			}
			
			/* ðŸ”¥ Force Dropzone UI to override theme conflicts */
			#product_upload_file.dropzone {
				background: #f8f9fa !important; /* Light gray instead of blue */
				border: 2px dashed #0d6efd !important; /* Dashed blue border */
				border-radius: 10px !important;
				min-height: 160px !important;
				display: flex !important;
				flex-wrap: wrap;
				align-items: center;
				justify-content: center;
				padding: 20px !important;
				cursor: pointer;
				box-shadow: none !important;
			}

			/* Ensure the message text is dark and centered */
			#product_upload_file.dropzone .dz-message {
				color: #495057 !important;
				font-size: 16px !important;
				font-weight: 500 !important;
				text-align: center;
				width: 100%;
				margin: 0 !important;
				opacity: 1 !important;
				display: block !important;
			}

			#product_upload_file.dropzone:hover {
				background: #e9ecef !important;
			}

        /* Single product hero: override home-banner width breakpoints from mobile.css */
        .single-product-hero .banner-from-table,
        .single-product-hero .single-inner-category-page {
            width: 100% !important;
            max-width: 100% !important;
            position: static !important;
            right: auto !important;
            left: auto !important;
            top: auto !important;
            display: block !important;
            text-align: left;
            box-sizing: border-box;
        }

        .single-product-hero .tbale-row,
        .single-product-hero .python-page-all-right,
        .single-product-hero .product-from,
        .single-product-hero .card-product-detail {
            width: 100%;
            max-width: 100%;
        }

        .single-product-hero .card-product-detail h1 {
            font-size: clamp(1.35rem, 2.8vw, 1.75rem);
            line-height: 1.3;
            margin: 0 0 10px;
            word-break: normal;
            overflow-wrap: break-word;
        }

        .single-product-hero .python-page-all-right p,
        .single-product-hero .python-page-all-right {
            max-width: 100%;
            overflow-wrap: break-word;
        }

        .single-product-hero .image-display {
            position: relative !important;
            inset: auto !important;
            width: 100%;
            height: 100%;
            flex: 1 1 auto;
            min-height: min(72vw, 520px);
            aspect-ratio: 4 / 3;
            contain: layout style paint;
        }

        .single-product-hero .slider__content,
        .single-product-hero .image-slider {
            min-height: min(72vw, 520px);
        }

        .single-product-hero .product-shape-amount {
            min-height: 3.5rem;
        }

        .single-product-hero .image-display img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @media (max-width: 991.98px) {
            .single-product-hero .row > [class*="col-"] {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .single-product-hero {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
