 :root {
            --primary: #00B0F0;
            --primary-dark: #0091c9;
            --primary-light: #e6f7ff;
            --section-bg: #f8f9fa;
            --card-bg: #ffffff;
            --text: #2c3e50;
            --text-light: #7f8c8d;
            --border: #e0e0e0;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .dark-mode {
            --primary: #00d0ff;
            --primary-dark: #00a0c9;
            --primary-light: #00334d;
            --section-bg: #282727;
            --card-bg: #1e1e1e;
            --text: #f5f5f5;
            --text-light: #b0b0b0;
            --border: #333333;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --glass-bg: rgba(30, 30, 30, 0.7);
            --glass-border: rgba(100, 255, 255, 0.1);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--section-bg);
            color: var(--text);
            overflow-x: hidden;
            background-attachment: fixed;
            transition: var(--transition);
            line-height: 1.6;
        }
          @font-face {
  font-family: 'Augustine';
  src: url('../fonts/Agustina-Signature.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--section-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 5px;
            background: var(--primary);
            width: 0%;
            z-index: 1000;
            transition: width 0.2s ease;
            box-shadow: 0 0 15px var(--primary);
            z-index: 2000;
        }
        .lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

        /* Products Preloader */
       /* Preloader Layout */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 0.3s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 🔁 Replaces spinner with a bar that fills in 3 seconds */
.loader-bar {
    width: 0%;
    height: 6px;
    background-color: var(--primary);
    animation: loadBar 5s ease forwards;
    box-shadow: 0 0 20px var(--primary);
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

@keyframes loadBar {
    from {
        width: 0%;
    }
    to {
        width: 400px; /* or use 80% if you want wider on big screens */
    }
}

        .loader-text {
            margin-bottom: 25px;
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-light);
            text-align: center;
            font-family: 'Augustine', cursive;
        }

        .loader-text span {
            color: var(--primary);
        }
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 0.6rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: (--card-bg);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border-radius: 0 0 14px 14px;
        }

        .navbar.hide {
            transform: translateY(-100%);
        }
        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 1.2rem;
        }

        .nav-links a {
            color: var(--text);
            position: relative;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            padding: 0.5rem 0;
            transition: all 0.4s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease, left 0.3s ease;
            border-radius: 4px;
        }

        .nav-links a:hover::after {
            width: 100%;
            left: 0;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: scale(1.06);
            letter-spacing: 1px;
        }

        /* Nav Buttons */
        .nav-btns {
            display: flex;
            align-items: center;
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            padding: 0.6rem;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            margin-right: 1.5rem;
            height: 2.8rem;
            width: 2.8rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 6px 16px rgba(0, 176, 240, 0.15);
        }

        .theme-toggle:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.15);
        }

        .cta-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 176, 240, 0.3);
        }

        .cta-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 176, 240, 0.4);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        /* Products Hero */
        .products-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('../images/NE\ poster.webp') no-repeat center center/cover;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 5%;
            margin-top: 80px;
        }

        .products-hero-content {
            max-width: 800px;
            color: white;
        }

        .products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, var(--primary) 40%, var(--primary-dark) 80%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: glass-gradient-move 4s linear infinite;
    text-shadow: 0 4px 32px rgba(0, 176, 240, 0.18), 0 1px 2px rgba(0,0,0,0.18);
    letter-spacing: 1.5px;
    filter: drop-shadow(0 2px 24px rgba(0,176,240,0.10));
}

@keyframes glass-gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.products-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eaf6fb;
    text-shadow: 0 2px 16px rgba(0,176,240,0.18), 0 1px 2px rgba(0,0,0,0.10);
    letter-spacing: 0.5px;
}

        /* Products Filter Section */
        .products-filter-container {
            padding: 3rem 5%;
            background: var(--card-bg);
            box-shadow: var(--shadow);
            border-radius: 15px;
            margin: -50px 5% 50px;
            position: relative;
            z-index: 10;
        }

        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .filter-group {
            flex: 1;
            min-width: 250px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
        }

        .filter-group select, .filter-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--card-bg);
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
        }

        .filter-group select:focus, .filter-group input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.2);
        }

        .search-container {
            position: relative;
            margin-top: 25px;
        }

        .search-container input {
            padding-left: 45px;
        }

        .search-container i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 0 5%;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            animation: neon-glow 3s infinite alternate;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 176, 240, 0.4);
        }

        @keyframes neon-glow {
            0% {
                box-shadow: 0 0 5px rgba(0, 176, 240, 0.5), 
                            0 0 20px rgba(0, 176, 240, 0.3);
            }
            100% {
                box-shadow: 0 0 10px rgba(0, 176, 240, 0.8), 
                            0 0 30px rgba(0, 176, 240, 0.5);
            }
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-img {
            height: 240px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .product-img img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 0.7rem 0.7rem 0.9rem 0.7rem;
        }

        .product-info h3 {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.3rem;
        }

        .product-info p {
            color: var(--text-light);
            margin-bottom: 0.7rem;
            font-size: 0.75rem;
            line-height: 1.3;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }

        .view-details {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            font-family: 'montserrat', sans-serif;
        }

        .view-details:hover {
            background: var(--primary);
            color: white;
        }

       .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
    padding: 0 5%;
    flex-wrap: wrap;
    position: relative;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--border);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.pagination-btn:hover::before {
    left: 100%;
}

.pagination-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.15);
}

.pagination-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}

.pagination-btn.prev,
.pagination-btn.next {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.pagination-btn.prev:hover,
.pagination-btn.next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 0 8px;
    font-weight: 600;
}

.pagination-info {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pagination {
        gap: 6px;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .pagination-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .pagination-ellipsis {
        padding: 0 4px;
    }
}
        @media (max-width: 768px) {
  .products {
    margin: 15px auto !important;
    padding: 1.5rem 1rem !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
}

        /* Product Detail Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--primary-dark);
            transform: rotate(90deg);
        }

        .product-detail-image {
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }

        .product-detail-image img {
            max-width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: 15px;
        }

        .product-detail-info {
            padding: 30px;
        }

        .product-detail-info h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .product-detail-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .product-detail-description {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .product-detail-features {
            margin-bottom: 2rem;
        }

        .product-detail-features h3 {
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 1.3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .feature-item i {
            color: var(--primary);
            margin-right: 10px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 176, 240, 0.1);
            border-radius: 50%;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            font-size: 1.1rem;
            margin-top: 20px;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
            margin-right: 0.8rem;
            font-size: 1.5rem;
        }

        .back-to-products {
            display: inline-block;
            margin-top: 30px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .back-to-products:hover {
            text-decoration: underline;
            transform: translateX(-5px);
        }

        .back-to-products i {
            margin-right: 8px;
        }

          /* Contact */

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .contact-info {
            background: var(--glass-bg);
            border: 1px solid var(--border);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            color: var(--text);
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text-light);
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 1rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 176, 240, 0.1);
        }

        .contact-text h4 {
            color: var(--text);
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }

        .contact-text p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .chat-btn {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 176, 240, 0.3);
        }

        .chat-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 176, 240, 0.4);
        }

        .chat-btn i {
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem; /* Add horizontal space to whole section */
    margin: 0 auto;    /* Center the section */
    overflow: hidden;
  }

  .contact-grid {
     grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-info {
     grid-template-columns: 1fr !important;
    gap: 1.2rem;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
    .contact-detail {
         flex-wrap: wrap;
    word-break: break-word;
    width: 100%;
    }
    .contact-text{
    flex: 1;
    min-width: 0;
}

    .contact-icon {
        margin-bottom: 10px;
    }
    .chat-btn{ margin-bottom: 20px;}
}

@media (max-width: 480px) { 
  .contact-info {
    width: 100%;
    padding: 25px 15px;
  }
}
 section {
            padding: 6rem 5%;
            background: var(--section-bg);
            transition: var(--transition);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }


.section-title h2 {
            font-size: 2.5rem;
            color: var(--text);
            font-weight: 800;
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        /* Footer */
        .footer {
            background: var(--card-bg);
            color: var(--text);
            padding: 4rem 5% 2rem;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border);
        }

        .footer::before,
        .footer::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 80px;
            left: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 176, 240, 0.35),
                transparent
            );
            z-index: 0;
            filter: blur(30px);
        }

        .footer::after {
            bottom: -20px;
            background: linear-gradient(to top, rgba(0, 176, 240, 0.35), transparent);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.5rem;
            font-family: 'Augustine', cursive;

        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-tagline {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(0, 176, 240, 0.1);
            color: var(--text);
            border-radius: 50%;
            margin: 0 0.5rem;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: white;
            transform: translateY(-5px);
        }
 .social-links a.whatsapp:hover {
  background: #25D366; /* WhatsApp green */
}
.social-links a.facebook:hover {
  background: #1877F2; /* Facebook blue */
}
.social-links a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}
       .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        .developer {
            display: block;
            align-items: center;
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(0, 176, 240, 0.05);
            border-radius: 10px;
            font-family: 'augustine', sans-serif;
        }

        .developer-logo {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-right: 1rem;
        }

        .developer p {
            font-size: 1.8rem;
            margin-right: 1rem;
        }
        .developer .dev-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
        }
        .developer p strong {
            color: var(--primary);
        }
         .developer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);}
        .developer a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        .footer-credit-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.footer-credit-animation dotlottie-player {
  width: 400px;
  height: 140px;
}
 .footer-logo {
    font-size: 2rem;
  }
  
  .footer-tagline {
    padding: 0 15px;
  }
  
  .footer-credit-animation dotlottie-player {
    width: 100%;
    max-width: 350px;
  }

        /* Floating Buttons */
        .floating-btns {
            position: fixed;
            right: 2rem;
            bottom: 2rem;
            display: flex;
            flex-direction: column;
            z-index: 99;
        }

        .whatsapp-btn-float, .back-to-top {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn-float {
            background: #25D366;
        }

        .back-to-top {
            background: var(--primary);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-btn-float:hover, .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            animation: none;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
            40% {transform: translateY(-20px);} 
            60% {transform: translateY(-10px);} 
        }

        /* Responsive */
        @media (max-width: 992px) {
            .modal-content {
                grid-template-columns: 1fr;
            }
            
            .products-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                background: var(--glass-bg);
                backdrop-filter: blur(15px);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: var(--transition);
                border-bottom: 1px solid var(--glass-border);
                z-index: 99;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .hamburger {
                display: block;
                font-size: 1.8rem;
                color: var(--dark);
            }
            
            .filter-row {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .products-hero {
                height: 50vh;
            }
            
            .products-hero h1 {
                font-size: 2rem;
            }
            
            .modal-content {
                width: 95%;
                max-height: 85vh;
            }
            
            .floating-btns {
                right: 1rem;
                bottom: 1rem;
            }
            
            .whatsapp-btn-float, .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        /* Flush / Ripple Animation for All Buttons */
        .cta-btn, .view-details, .whatsapp-btn {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-btn::after,
        .view-details::after,
        .whatsapp-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.4s;
            z-index: -1;
        }

        .cta-btn:hover::after,
        .view-details:hover::after,
        .whatsapp-btn:hover::after {
            width: 300%;
            height: 300%;
            opacity: 0;
            transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.4s;
        }
         /* Add cursor pointer to product cards */
        .product-card {
            cursor: pointer;
            position: relative;
        }

        /* Prevent button clicks from triggering card click */
        .view-details {
            position: relative;
            z-index: 2;
        }
/* Modal Gallery Styles */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 95%;
    max-width: 1000px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: 2vh auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.zoom-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.zoom-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Image with Zoom */
.modal-main-image {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
}

.modal-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: zoom-in;
}

.modal-main-image img:hover {
    cursor: zoom-in;
}

/* Responsive Modal */
@media (max-width: 992px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-width: 90%;
        margin: 5vh auto;
    }
    
    .modal-main-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 2vh auto;
        max-height: 90vh;
    }
    
    .zoom-controls {
        top: 10px;
        right: 10px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1vh auto;
        gap: 20px;
    }
    
    .modal-main-image {
        padding: 20px;
        min-height: 250px;
    }
    
    .pagination-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .pagination-ellipsis {
        padding: 0 4px;
    }
}

/* Dark mode support for modal */
/* .dark-mode .modal-main-image {
    background: var(--card-bg);
} */

.dark-mode .zoom-btn {
    background: rgba(30, 30, 30, 0.8);
    color: var(--text);
}

.dark-mode .zoom-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}
.dark-mode .zoom-controls {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}
.modal-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.modal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.modal-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 176, 240, 0.5);
}

.modal-dot:hover::before {
    width: 6px;
    height: 6px;
}

.modal-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(0, 176, 240, 0.7);
}

.modal-dot.active::before {
    width: 4px;
    height: 4px;
    background: white;
}

/* Dark mode specific dot styles */
.dark-mode .modal-dots {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .modal-dot {
    border-color: var(--primary);
}

.dark-mode .modal-dot::before {
    background: var(--primary);
}

.dark-mode .modal-dot.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 208, 255, 0.8);
}

.dark-mode .modal-dot.active::before {
    background: white;
}

/* Enhanced dot animations */
@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 176, 240, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(0, 176, 240, 0);
    }
}

.modal-dot.active {
    animation: dotPulse 2s infinite;
}

/* Responsive dots */
@media (max-width: 768px) {
    .modal-dots {
        gap: 10px;
        padding: 8px;
        margin-top: 15px;
    }
    
    .modal-dot {
        width: 12px;
        height: 12px;
    }
    
    .modal-dot:hover::before {
        width: 4px;
        height: 4px;
    }
    
    .modal-dot.active::before {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .modal-dots {
        gap: 8px;
        padding: 6px;
    }
    
    .modal-dot {
        width: 10px;
        height: 10px;
    }
}
.modal-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}