 :root {
            --primary: #00B0F0;
            --primary-dark: #00b7ff;
            --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);
             --nav-gap: 220px; 
             --dot-color: rgba(0, 176, 240, 0.3);
            --dot-active-color: #00B0F0;
        }
        .dark-mode {
            --primary: #00d0ff;
            --primary-dark: #00a0c9;
            --primary-light: #00334d;
            --section-bg: #110f0f;
            --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);
            --dot-color: rgba(0, 208, 255, 0.3);
            --dot-active-color: #00d0ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
  scroll-behavior: smooth;
}
        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;
  overflow-x: hidden;
        }
        body {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}
        @font-face {
  font-family: 'Augustine';
  src: url('../fonts/Agustina-Signature.woff2') format('truetype' );
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
        /* 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;
        }
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-lottie {
            width: 300px;
            height: 300px;
        }
        /* Navbar */
.navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  width: 60%;
  transform: translateX(-50%);
  padding: 1.2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  /* 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: 14px 14px 14px 14px;
}
.navbar.hide {
  transform: translate(-50%, calc(-100% - 30px));
}
.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: 1rem;
  padding: 0.5rem 0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInNav 1s forwards;
}
.nav-links li:nth-child(1) a { animation-delay: 0.2s; }
.nav-links li:nth-child(2) a { animation-delay: 0.4s; }
.nav-links li:nth-child(3) a { animation-delay: 0.6s; }
.nav-links li:nth-child(4) a { animation-delay: 0.8s; }
.nav-links li:nth-child(5) a { animation-delay: 1s; }
@keyframes fadeInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.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.2rem;
  cursor: pointer;
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 1.5rem;
  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);
}
@media (max-width: 768px) {
  .navbar {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 1.5rem;
    border-radius: 14px 14px 14px 14px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0.8rem 0;
  }
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.6rem;
  }
  .nav-btns {
    display: flex;
    align-items: center;
  }
  .theme-toggle {
    margin-right: 1rem;
  }
}
        .hamburger {
            display: none;
            cursor: pointer;
        }
/* Search Modal */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }        
     .search-modal.active {
            opacity: 1;
            visibility: visible;
        }
        .search-container {
            width: 90%;
            max-width: 620px;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 22px;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.4s ease;
            box-shadow: 0 20px 50px rgba(0, 176, 240, 0.3);
        }
        .search-modal.active .search-container {
            transform: translateY(0);
        }
        .search-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        .search-title {
            font-size: 1.7rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .close-search {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        .close-search:hover {
            background: var(--primary-dark);
            transform: rotate(90deg);
        }
        .search-input-container {
            position: relative;
            margin-bottom: 25px;
        }
        .search-input {
            width: 100%;
            padding: 12px 18px 12px 45px;
            border-radius: 50px;
            border: 2px solid var(--primary);
            background: rgba(0, 176, 240, 0.1);
            color: var(--text);
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            outline: none;
        }
        .search-input:focus {
            box-shadow: 0 0 0 4px rgba(0, 176, 240, 0.3);
        }
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 1.2rem;
        }
        .search-results {
            max-height: 50vh;
            overflow-y: auto;
            padding-right: 10px;
        }
        .search-result-count {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        .no-results {
            text-align: center;
            padding: 30px 0;
            color: var(--text-light);
        }
        .no-results i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-radius: 15px;
            margin-bottom: 12px;
            background: rgba(0, 176, 240, 0.05);
            border: 1px solid rgba(0, 176, 240, 0.1);
            cursor: pointer;
            transition: var(--transition);
        }
        .search-result-item:hover {
            background: rgba(0, 176, 240, 0.1);
            transform: translateX(5px);
        }
        .result-image {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .result-image img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }
        .result-info {
            flex-grow: 1;
        }
        .result-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text);
        }
        .result-description {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }
            /* Search icon in navbar */
            .search-icon-nav {
                font-size: 1.8rem;
                margin-right: 20px;
                cursor: pointer;
                color: var(--text);
                transition: var(--transition);
            }
            .search-icon-nav:hover {
                color: var(--primary);
                transform: scale(1.1);
            }
            /* Responsive adjustments */
            @media (max-width: 768px) {
                .search-container {
                    width: 95%;
                    padding: 20px;
                }
                .search-title {
                    font-size: 1.5rem;
                }
                .search-input {
                    padding: 12px 15px 12px 45px;
                    font-size: 1rem;
                }
                .search-icon {
                    left: 15px;
                }
                .result-image {
                    width: 60px;
                    height: 60px;
                    margin-right: 15px;
                }
                .result-name {
                    font-size: 1rem;
                }
            }
        /* Hero Section */
     .carousel-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin: 2rem auto;
            perspective: 1000px;
            margin: calc(var(--nav-gap)) auto 0;
        }
        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s ease;
        }
        .carousel-item {
            position: absolute;
            width: 320px;
            height: 460px;
            left: 50%;
            top: 50%;
            margin-left: -160px;
            margin-top: -230px;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.8s ease;
            background: var(--card-bg);
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
            opacity: 0.6;
            filter: blur(2px) grayscale(30%);
            transform: scale(0.85);
            border: 1px solid var(--border);
        }
        .carousel-item.active {
            opacity: 1;
            filter: none;
            z-index: 10;
            transform: scale(1) translateZ(0);
            box-shadow: 0 15px 35px rgba(0, 176, 240, 0.2);
        }
        .carousel-item.prev {
            transform: translateX(-80%) rotateY(20deg) scale(0.9);
        }
        .carousel-item.next {
            transform: translateX(80%) rotateY(-20deg) scale(0.9);
        }
        .product-image {
            height: 310px;
            overflow: hidden;
            position: relative;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .carousel-item.active .product-image img {
            transform: scale(1.05);
        }
        .product-content {
            padding: 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        .product-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        .product-description {
            color: var(--text-light);
            margin-bottom: 0.8rem;
            font-size: 0.82rem;
            line-height: 1.5;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 4rem;
            z-index: 20;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--dot-color);
            cursor: pointer;
            transition: var(--transition);
        }
        .dot.active {
            background: var(--dot-active-color);
            transform: scale(1.2);
        }
        .controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
            z-index: 20;
        }
        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-light);
            border: 1px solid var(--border);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        .control-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        .brand-watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5vw;
            font-weight: 900;
            color: rgba(0, 176, 240, 0.03);
            pointer-events: none;
            z-index: 1;
            user-select: none;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 0 ;
        }
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .carousel-container {
                height: 450px;
            }
            .carousel-item {
                width: 300px;
                height: 400px;
                margin-left: -150px;
                margin-top: -200px;
            }
            .product-image {
                height: 220px;
            }
        }
        @media (max-width: 992px) {
            .carousel-container {
                height: 420px;
            }
            .carousel-item {
                width: 280px;
                height: 380px;
                margin-left: -140px;
                margin-top: -190px;
            }
            .product-image {
                height: 200px;
            }
            .header h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {   
            .carousel-item {
        width: 220px !important;
        height: 280px !important;
        margin-left: -110px !important;
        margin-top: -140px !important;
    }
    .carousel-container {
        height: 320px !important;
    }
    .product-image {
        height: 180px !important;
    }
            .product-content {
                padding: 1.2rem;
            }       
            .product-title {
                font-size: 1.3rem;
            }
            .product-description {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 640px) {
            .carousel-container {
                height: 380px;
            }   
            .carousel-item {
                width: 240px;
                height: 380px;
                margin-left: -120px;
                margin-top: -170px;
            }
            .product-image {
                height: 200px;
            }
            .header h1 {
                font-size: 2rem;
            }
            .brand-watermark {
                font-size: 40vw;
            }
            .product-content {
        padding: 0.8rem; 
    }
    .product-title {
        font-size: 1.1rem; 
        margin-bottom: 0.3rem;
    }
    .product-description {
        font-size: 0.8rem; 
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
        }
        @media (max-width: 480px) {
            body {
                padding: 1.5rem 1rem;
            }
            .carousel-container {
                height: 360px;
            }
            .carousel-item {
                width: 220px;
                height: 360px;
                margin-left: -110px;
                margin-top: -160px;
            }
            .product-image {
                height: 250px;
            }
            .product-content {
                padding: 0.6rem;
            }
            .product-title {
                font-size: 1rem;
            }
            .product-description {
                font-size: 0.75rem;
            }
            .product-price {
                font-size: 1.1rem;
            }
            .control-btn {
                width: 45px;
                height: 45px;
            }
            .dot {
                width: 12px;
                height: 12px;
            }
        }
        /* Sections */
        section {
            padding: 6.5rem 4%;
            background: var(--section-bg);
            transition: var(--transition);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
      .section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00B0F0, #00FFC6, #4A00E0, #00B0F0);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        /* Products */
        .products{
            background: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem 1.8rem;
    margin: 25px auto;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: var(--shadow);
    border: 1px solid var(--border); 
        }
        .products-grid {
           display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}
       .product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
        .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 176, 240, 0.2);
}
        @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-img {
            height: 180px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }
        .product-img img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            transition: var(--transition);
        }
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 1.2rem;
        }
        .product-info h3 {
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }
        .product-info p {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.8rem;
        }
   .view-details {
  position: relative;
  overflow: hidden;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--view-text);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.8s ease;
  cursor: pointer;
  z-index: 1;
  border: 2px solid;
  border-color: #00b7ff;
}
.view-details::before{
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 176, 240, 0.4), rgba(0, 176, 240, 0)); /* ⬅️ Matches your brand primary */
  box-shadow: 0 0 15px rgba(3, 57, 207, 0.955);
  border-radius: 50%;
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 1;
}
.view-details.ripple-animate::before {
  width: 300px;
  height: 300px;
}
        .center-btn {
            text-align: center;
            margin-top: 2rem;
        }
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Adjusted for better fit */
  }
}
@media (max-width: 480px) {
  .products {
    margin: 8px !important;
    padding: 1rem 2px !important;
    border-radius: 14px;
  }
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.2rem !important;
  }
  .product-card {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}
        /* Brands */
        .brands {
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
            background: var(--card-bg);
            margin: 50px;
            border-radius: 30px;
        }
        .brands-container {
            display: flex;
            animation: scrollBrands 30s linear infinite;
            width: max-content;
        }
        .brand-item {
            flex: 0 0 auto;
            margin: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 100px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 1rem;
            border: 1px solid var(--border);
            box-shadow: var(--glass-shadow);
        }
        .brand-item img {
            max-width: 100%;
            max-height: 70px;
            transition: var(--transition);
        }
        @keyframes scrollBrands {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        /* About */
        .about {
            border-radius: 24px;
            margin: 20px;
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            justify-items: center;
            text-align: center;
            align-items: center;
        }
        .about-text {
            color: var(--text);
            text-align: center;
        width: 100%;
        }
        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .about-text h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary);
        }
        .about-text p {
            line-height: 1.6;
            margin-bottom: 1.2rem;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            margin-top: 1.2rem;
        }
        .feature-card {
            background: rgba(0, 176, 240, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 1.2rem;
            border: 1px solid rgba(0, 176, 240, 0.1);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 176, 240, 0.1);
            border-color: var(--primary);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 0.95rem  ;
        }
        .feature-card p {
            margin: 0;
            font-size: 0.75rem;
            color: var(--text-light);
        }
        /* Visit Store Section */
        .store-info {
            border-radius: 30px;
            margin: 15px 0;
        }
        .store-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .store-box {
            flex: 1;
            min-width: 260px;
            max-width: 420px;
            background: var(--glass-bg);
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
            text-align: center;
            backdrop-filter: blur(10px);
        }
        .store-box:hover {
            transform: translateY(-10px);
        }
        .lottie-container {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        .store-box h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text);
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .store-details {
            list-style: none;
            text-align: left;
        }
        .store-details li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }
        .store-details li:last-child {
            border-bottom: none;
        }
        .store-details li span {
            color: var(--text);
            font-weight: 600;
        }
        /* Digital Clock */
        .clock-section {
            text-align: center;
            padding: 40px 0;
            background: var(--primary-light);
        }
        .clock-container {
            display: inline-block;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 35px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .clock-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, var(--primary), transparent, var(--primary-dark));
            animation: rotate 4s linear infinite;
            z-index: -1;
        }
        .clock-container::after {
            content: '';
            position: absolute;
            inset: 4px;
            background: var(--glass-bg);
            border-radius: 16px;
            z-index: -1;
        }
        #digital-clock {
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Courier New', monospace;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }
        .date-display {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 5px;
            font-weight: 500;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @media (max-width: 600px) {
  .clock-container {
    padding: 20px 30px;
    border-radius: 16px;
  }
  #digital-clock {
    font-size: 40px;
    letter-spacing: 2px;
  }
  .date-display {
    font-size: 16px;
  }
}
.map-btn {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--view-text);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.8s ease;
  cursor: pointer;
  z-index: 1;
  border: 2px solid;
  border-color: #00b7ff;
}
.map-btn::before{
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 176, 240, 0.4), rgba(0, 176, 240, 0)); /* ⬅️ Matches your brand primary */
  box-shadow: 0 0 15px rgba(3, 57, 207, 0.955);
  border-radius: 50%;
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 1;
}
.map-btn.ripple-animate::before {
  width: 300px;
  height: 300px;
}
     /* 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.6rem;
            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.2rem;
            line-height: 1.5;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .contact-details {
            margin-bottom: 1.2rem;
        }
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }
        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 0.8rem;
            width: 40px;
            height: 40px;
            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.85rem;
        }
        .chat-btn {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--view-text);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.8s ease;
  cursor: pointer;
  z-index: 1;
  border: 2px solid;
  border-color: #00b7ff;
}
.chat-btn::before{
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 176, 240, 0.4), rgba(0, 176, 240, 0)); /* ⬅️ Matches your brand primary */
  box-shadow: 0 0 15px rgba(3, 57, 207, 0.955);
  border-radius: 50%;
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 1;
}
.chat-btn.ripple-animate::before {
  width: 300px;
  height: 300px;
}
        .chat-btn i {
            margin-right: 0.5rem;
        }

        @media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem; /* Add horizontal space to whole section */
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info {
    padding: 1.5rem;
    box-sizing: border-box;
  }
}
.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;
        }
        /* Footer */
        .footer {
            background: var(--card-bg);
            color: var(--text);
            padding: 3rem 5% 1.5rem;
            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: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
            font-family: 'Augustine', cursive;
        }
        .footer-logo span {
            color: var(--primary);
        }
        .footer-tagline {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-size: 1rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            padding-top: 10px;
        }
        .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.4rem;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            /* background: var(--primary); */
            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: 1.5rem;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        .developer {
            display: block;
            align-items: center;
            margin-top: 1rem;
            padding: 0.8rem;
            background: rgba(0, 176, 240, 0.05);
            border-radius: 10px;
            font-family: 'augustine', sans-serif;
        }
        .developer-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-right: 1rem;
        }
        .developer p {
            font-size: 1.4rem;
            margin-right: 1rem;
        }
        .developer .dev-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  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;
        }
        /* 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);} 
        }
        @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);
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .store-container {
                flex-direction: column;
            }
        }
        @media (max-width: 576px) {
            
            .floating-btns {
                right: 1rem;
                bottom: 1rem;
            }      
            .whatsapp-btn-float, .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
.footer-credit-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.footer-credit-animation dotlottie-player {
  width: 400px;
  height: 140px;
}
.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            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;
            overflow: hidden;
        }
        .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: 80%;
            max-width: 95vw;
            max-height: 95vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
            transform: scale(0.92);
            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: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            height: 100%;
        }
        .product-detail-image img {
            max-width: 90%;
            max-height: 420px;
            object-fit: contain;
            border-radius: 12px;
        }
        .product-detail-info {
            padding: 20px;
        }
        .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;
            display: none !important;
        }
        .product-detail-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
        }
        .product-detail-features {
            margin-bottom: 2rem;
        }
        .product-detail-features h3 {
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 1.1rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .feature-item i {
            color: var(--primary);
            margin-right: 8px;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 176, 240, 0.1);
            border-radius: 50%;
            font-size: 0.9rem;
        }
        .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;
        }
        @media (max-width: 992px) {
            .modal-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                max-height: 85vh;
            }
        }
        .product-card {
  cursor: pointer;
}
.top-radial-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 176, 240, 0.2), transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .store-box, 
  .contact-info {
    width: 100%;
    padding: 25px 15px;
  }
  .products {
    margin: 15px;
    padding: 2rem 1rem;
  }
  .brands {
    margin: 15px;
  }
  .about {
    margin: 15px;
  }
}   
@media (max-width: 768px) {
  /* Center store section */
  .store-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .store-box {
    width: 90%;
    text-align: center;
  }
  .store-details {
    text-align: center;
  }
  .store-details li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .store-details li span {
    display: block;
    margin-bottom: 5px;
  }
  /* Center contact section */
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  } 
  .contact-info {
    width: 90%;
    text-align: center;
  }
  .contact-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  } 
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .chat-btn {
    margin: 0 auto;
  }
  /* Center section titles */
  .section-title {
    padding: 0 15px;
  }
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  section {
    padding: 4rem 5%;
  }
  .products, .brands, .about {
    margin: 15px;
  } 
  .navbar {
    top: 15px;
    width: 90%;
  }
  /* Footer adjustments */
  .footer-logo {
    font-size: 2rem;
  } 
  .footer-tagline {
    padding: 0 15px;
  } 
  .footer-credit-animation dotlottie-player {
    width: 100%;
    max-width: 350px;
  }
  /* Product card adjustments */
  .product-info h3 {
    font-size: 1.2rem;
  } 
  .view-details {
    font-size: 0.9rem;
  }
}
/* For very small screens */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 2rem;
  }
  .store-box, 
  .contact-info {
    width: 100%;
    padding: 25px 15px;
  }
  .products {
    padding: 2rem 1rem;
  } 
  #digital-clock {
    font-size: 32px;
  } 
  .date-display {
    font-size: 14px;
  } 
  .navbar {
    padding: 0.8rem 1rem;
  }  
  .nav-btns .theme-toggle {
    margin-right: 0.8rem;
  } 
 .footer-logo {
    font-size: 1.8rem;
  }  
  .developer .dev-label {
    font-size: 1.2rem;
  }
  .developer p {
    font-size: 1.5rem;
  }
  .floating-btns {
    right: 1rem;
    bottom: 1rem;
  }
}
/* Minor adjustments for tablet */
@media (min-width: 769px) and (max-width: 992px) {
  .store-box {
    min-width: 45%;
  } 
  .contact-info {
    padding: 2rem;
  } 
  .section-title h2 {
    font-size: 2.5rem;
  }
}    
/* Modal image slider styles (added) */
.image-slider {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide {
  display: none;
  width: 100%;
}
.slide.active {
  display: block;
  animation: fadeIn 0.45s ease;
}
.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  transition: all 0.25s ease;
}
.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
/* make sure modal image area centers properly on small screens */
@media (max-width: 992px) {
  .product-detail-image { padding: 16px; }
  .slide img { max-height: 360px; }
}
@media (max-width: 768px) {
    
}
/* Remove backdrop filters on mobile for better performance */
@media (max-width: 768px) {
    .navbar,
    .product-card,
    .feature-card,
    .store-box,
    .contact-info,
    .search-container,
    .modal-content,
    .clock-container,
    .nav-links.active {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--card-bg) !important;
    }
    /* Simplify navbar for mobile */
    .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--card-bg) !important;
        border: 1px solid var(--border);
    }    
    /* Simplify product cards */
    .product-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--card-bg) !important;
    }   
    /* Improve carousel transitions for mobile */
    .carousel-item {
        transition: opacity 0.4s ease, transform 0.4s ease !important;
        will-change: transform, opacity;
    }  
    /* Reduce animation complexity */
    .floating-card {
        animation: none !important;
    }  
    .product-card:hover {
        transform: translateY(-5px) !important;
    }
    /* Simplify section title animations */
    .section-title h2 {
        animation: none !important;
        background: linear-gradient(90deg, var(--primary), var(--primary-dark)) !important;
        background-clip: text !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
}
/* Further optimizations for very low-end devices */
@media (max-width: 480px) {
    /* Reduce transitions even more */
    * {
        transition-duration: 0.2s !important;
    }
    /* Simplify box shadows */
    .product-card,
    .navbar,
    .store-box {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    } 
    /* Optimize carousel for low-end */
    .carousel-container {
        height: 280px !important;
    } 
    .carousel-item {
        width: 260px !important;
        height: 330px !important;
        margin-left: -130px !important;
        margin-top: -165px !important;
    }  
    .product-image {
        height: 200px !important;
    }
}
/* Ensure smooth scrolling but reduce quality for low-end */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    /* html {
        scroll-behavior: smooth;
    } */
}
/* High contrast mode support for better accessibility */
@media (prefers-contrast: high) {
    .product-card,
    .store-box,
    .contact-info {
        border: 2px solid var(--primary) !important;
    }
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}