        :root {
            --primary-color: #0250c5;
            --secondary-color: #d43f8d;
            --accent-color: #20bf6b;
            --text-dark: #242424;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Hero section text improvements for better visibility */
        .hero-content h1,
        .hero-content p {
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* Remove the border effect */
        .hero-content h1::after,
        .hero-content p::after {
            content: none;
        }
        
        .product-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .category-btn {
            background: #fff;
            border: 2px solid #0250c5;
            color: #0250c5;
            padding: 10px 20px;
            border-radius: 30px;
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover, .category-btn.active {
            background: #0250c5;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .product-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-image-container {
            height: 250px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            position: relative;
            border: none;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        /* Remove the img tag styles since we're using background images */
        .product-image {
            display: none;
        }
        
        .product-image.error {
            opacity: 0.5;
            background-color: #ffe6e6;
        }
        
        /* Ensure images are always visible by default */
        .product-image:not(.error) {
            opacity: 1 !important;
            display: block !important;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-card:hover .product-image.error {
            transform: scale(1.05);
            opacity: 0.7;
        }
        
        /* Image loading fallback */
        .product-image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
            color: #666;
            font-size: 14px;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
            border: none;
            z-index: 1;
        }
        
        .product-image-placeholder::before {
            content: "📷";
            font-size: 24px;
            margin-right: 8px;
        }
        
        .product-image.loaded + .product-image-placeholder,
        .product-image.error + .product-image-placeholder,
        .product-image {
            opacity: 1;
        }
        
        .product-image.loaded + .product-image-placeholder,
        .product-image.error + .product-image-placeholder {
            opacity: 0;
            pointer-events: none;
        }
        
        .product-image.error + .product-image-placeholder {
            background: #ffe6e6;
            color: #cc0000;
        }
        
        .product-image.error + .product-image-placeholder::before {
            content: "❌";
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-category {
            display: inline-block;
            background: #0250c5;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .product-title {
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #0250c5;
        }
        
        .product-description {
            color: #555;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            background: #0250c5;
            color: #fff;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            border: none;
            cursor: pointer;
            width: 100%;
            transition: opacity 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            opacity: 0.9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }
        
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }
        
        .popup-content {
            background: #fff;
            border-radius: 12px;
            width: 95%;
            max-width: 800px;
            padding: 0;
            position: relative;
            animation: popupAnim 0.4s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        @keyframes popupAnim {
            from { transform: scale(0.8) translateY(50px); opacity: 0; }
            to { transform: scale(1) translateY(0); opacity: 1; }
        }
        
        .close-popup {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .close-popup:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: rotate(90deg);
        }
        
        .popup-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 30px;
            color: white;
            position: relative;
        }
        
        .popup-image {
            height: 250px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-bottom: 25px;
            background-color: #f8f9fa;
        }
        
        .popup-title {
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
            font-size: 1.8rem;
            margin: 0 0 10px 0;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .popup-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }
        
        .popup-body {
            padding: 30px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .popup-section {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .popup-section:last-child {
            border-bottom: none;
            margin-bottom: 10px;
        }
        
        .popup-section h3 {
            color: #0250c5;
            margin-bottom: 15px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
        }
        
        .popup-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #0250c5;
            border-radius: 3px;
        }
        
        .popup-section p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        .popup-section ul {
            padding-left: 0;
            list-style: none;
        }
        
        .popup-section li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .popup-section li:last-child {
            border-bottom: none;
        }
        
        .popup-section li::before {
            content: "✓";
            color: #20bf6b;
            font-weight: bold;
            display: inline-block;
            width: 1.5em;
            margin-right: 10px;
        }
        
        .popup-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .popup-buttons .btn {
            flex: 1;
            padding: 14px 20px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-family: 'Classico URW Bold', 'Poppins', sans-serif;
        }
        
        .popup-buttons .btn-primary {
            background: #0250c5;
            color: #fff;
            box-shadow: 0 4px 15px rgba(2, 80, 197, 0.2);
        }
        
        .popup-buttons .btn-secondary {
            background: #ffffff;
            color: #555;
            border: 1px solid #ddd;
        }
        
        .popup-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
        }
        
        .popup-buttons .btn-secondary:hover {
            background: #e4e6e9;
        }
        
        /* Back to Top Button */
        .bottomtotop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            font-size: 18px;
            color: #fff;
            background: #0250c5;
            border-radius: 50%;
            cursor: pointer;
            z-index: 999;
            transform: rotate(-90deg);
            transition: all 0.3s ease;
            display: none !important;
        }
        
        .bottomtotop.active {
            display: block !important;
        }
        
        .bottomtotop:hover {
            transform: rotate(-90deg) scale(1.1);
        }
        
        /* Social Share Widget */
        .clarion-share-widget {
            text-align: center;
            margin: 24px 0;
        }
        
        .clarion-share-widget span {
            margin-right: 10px;
            font-weight: 600;
        }
        
        .clarion-share-widget a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #0250c5;
            color: #fff;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .clarion-share-widget a:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        .popup-image-gallery {
            margin-bottom: 25px;
        }
        
        .popup-image-main {
            height: 300px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 15px;
            background-color: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .popup-image-thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 5px;
        }
        
        .popup-image-thumbnail {
            width: 80px;
            height: 60px;
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            cursor: pointer;
            border: 2px solid transparent;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .popup-image-thumbnail:hover {
            border-color: #0250c5;
            transform: translateY(-2px);
        }
        
        .popup-image-thumbnail.active {
            border-color: #0250c5;
            box-shadow: 0 0 0 2px rgba(2, 80, 197, 0.3);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .feature-card {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 63, 141, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 63, 141, 0.3);
        }
        
        .feature-icon {
            color: #0250c5;
            font-size: 1.8rem;
            min-width: 50px;
            height: 50px;
            background: rgba(2, 80, 197, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .feature-text {
            color: #242424;
            line-height: 1.6;
            display: flex;
            align-items: center;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .spec-card {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 63, 141, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .spec-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 63, 141, 0.3);
        }
        
        .spec-icon {
            color: #0250c5;
            font-size: 1.8rem;
            min-width: 50px;
            height: 50px;
            background: rgba(2, 80, 197, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .spec-text {
            color: #242424;
            line-height: 1.6;
        }
        
        .spec-text strong {
            color: #0250c5;
            font-weight: 600;
        }
        
        /* Additional image visibility fixes */
        .product-image-container img {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .product-image-container img:not(.error) {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        /* Clarion Product Image Gallery Styles */
        .clarion-product-image-container {
            height: 250px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            position: relative;
            border: none;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        
        /* Image gallery navigation dots */
        .clarion-image-nav-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        
        .clarion-nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .clarion-nav-dot.active {
            background: #0250c5;
            transform: scale(1.2);
        }
        
        .clarion-nav-dot:hover {
            background: #0250c5;
        }
        
        /* Image gallery navigation arrows */
        .clarion-image-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .clarion-image-nav-arrow.left {
            left: 10px;
        }
        
        .clarion-image-nav-arrow.right {
            right: 10px;
        }
        
        .product-card:hover .clarion-image-nav-arrow {
            opacity: 1;
        }
        
        .clarion-image-nav-arrow:hover {
            background: #0250c5;
            color: white;
        }
        
        .clarion-image-nav-arrow i {
            font-size: 14px;
        }
