  .zirex {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2rem;
            min-height: 80vh;
            padding-top: 200px;
        }

        /* Hero Section with Bottles */
        .zirex__hero {
            grid-row: 1 / 3;
            background-color: #e6e6e8;
            border-radius: 1.5rem;
            padding: 3rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero Content */
        .zirex__hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .zirex__hero-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .zirex__hero-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .zirex__hero-slide--active {
            display: block;
            opacity: 1;
        }

        .zirex__slide-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .zirex__slide-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .zirex__welcome-text {
            color: #1d78d5;
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .zirex__main-heading {
            color: #000000;
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .zirex__description {
            color: #848383;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .zirex__cta-button {
            background-color: #000000;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }

        .zirex__cta-button:hover {
            background-color: #333333;
        }

        /* Bottles Section within Hero */
        .zirex__bottles {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .zirex__bottles-image {
            width: 100%;
            max-width: 300px;
            height: auto;
            object-fit: contain;
        }

        .zirex__navigation-dots {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .zirex__dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d4d4d4;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .zirex__dot--active {
            background-color: #1d78d5;
        }

        /* Hero navigation arrows */
        .zirex__hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 10;
        }

        .zirex__hero-nav:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .zirex__hero-nav--prev {
            left: 20px;
        }

        .zirex__hero-nav--next {
            right: 20px;
        }

        /* Hero dots indicator */
        .zirex__hero-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .zirex__hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d4d4d4;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .zirex__hero-dot--active {
            background-color: #1d78d5;
        }

        /* Product Showcase Sections */
        .zirex__showcase {
            background-color: #e6e6e8;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .zirex__card-title {
            color: #000000;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: left;
            z-index: 2;
            position: relative;
        }

        .zirex__products-display {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            min-height: 200px;
        }

        .zirex__products-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 8px;
        }

        .zirex__enquire-button {
            background-color: #1d78d5;
            color: white;
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
            z-index: 2;
            position: relative;
        }

        .zirex__enquire-button:hover {
            background-color: #1565c0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .zirex {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                gap: 2rem;
            }

            .zirex__hero {
                grid-row: 1;
                grid-template-columns: 1fr;
                padding: 2rem;
                text-align: center;
            }

            .zirex__main-heading {
                font-size: 2.5rem;
            }

            .zirex__bottles {
                margin-top: 2rem;
            }

            .zirex__slide-image {
                height: 120px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            .zirex__hero {
                padding: 1.5rem;
            }

            .zirex__main-heading {
                font-size: 2rem;
            }

            .zirex__hero-nav {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .zirex__slide-image {
                height: 100px;
            }

            .zirex__products-display {
                min-height: 150px;
            }
        }



        /* product list  */


           @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 70px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            animation: slideUp 0.6s ease-out 0.2s both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-item {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: itemAppear 0.6s ease-out both;
        }

        /* Animation delays for 12 items */
        .product-item:nth-child(1) { animation-delay: 0.1s; }
        .product-item:nth-child(2) { animation-delay: 0.2s; }
        .product-item:nth-child(3) { animation-delay: 0.3s; }
        .product-item:nth-child(4) { animation-delay: 0.4s; }
        .product-item:nth-child(5) { animation-delay: 0.5s; }
        .product-item:nth-child(6) { animation-delay: 0.6s; }
        .product-item:nth-child(7) { animation-delay: 0.7s; }
        .product-item:nth-child(8) { animation-delay: 0.8s; }
        .product-item:nth-child(9) { animation-delay: 0.9s; }
        .product-item:nth-child(10) { animation-delay: 1.0s; }
        .product-item:nth-child(11) { animation-delay: 1.1s; }
        .product-item:nth-child(12) { animation-delay: 1.2s; }

        @keyframes itemAppear {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .product-header {
            position: relative;
            background: #fcfcfd;
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 240px;
        }

        .wishlist-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.6;
            background: none;
            border: none;
            padding: 0;
        }

        .wishlist-btn:hover {
            opacity: 1;
            transform: scale(1.1);
            animation: heartBeat 0.6s ease;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1.1); }
            50% { transform: scale(1.2); }
        }

        .wishlist-btn.active {
            fill: #ef4444;
            stroke: #ef4444;
            animation: heartFill 0.4s ease;
        }

        @keyframes heartFill {
            0% { transform: scale(1.1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1.1); }
        }

        .product-img {
            max-width: 100%;
            height: auto;
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .product-item:hover .product-img {
            transform: scale(1.05) rotate(2deg);
        }

        .product-details {
            padding: 16px;
        }

        .product-name {
            font-size: 16px;
            font-weight: 500;
            color: #667085;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .product-item:hover .product-name {
            color: #1d78d5;
        }

        .product-desc {
            font-size: 14px;
            color: #98a2b3;
            margin-bottom: 12px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .rating-stars {
            display: flex;
            gap: 2px;
        }

        .rating-star {
            width: 16px;
            height: 16px;
            transition: all 0.2s ease;
        }

        .rating-star.filled {
            fill: #fdb022;
            stroke: #fdb022;
            animation: starTwinkle 0.6s ease;
        }

        .rating-star.empty {
            fill: none;
            stroke: #d0d5dd;
        }

        @keyframes starTwinkle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .product-item:hover .rating-star.filled {
            animation: starGlow 0.8s ease infinite alternate;
        }

        @keyframes starGlow {
            from { filter: brightness(1); }
            to { filter: brightness(1.2) drop-shadow(0 0 4px #fdb022); }
        }

        .review-text {
            font-size: 14px;
            color: #98a2b3;
        }

        .product-price {
            font-size: 18px;
            font-weight: 600;
            color: #1d78d5;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .product-item:hover .product-price {
            transform: scale(1.05);
            color: #1d78d5;
        }

        .view-details-btn {
            width: 100%;
            background: #1d78d5;
            color: white;
            border: none;
            border-radius: 24px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .view-details-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 ease;
        }

        .view-details-btn:hover::before {
            left: 100%;
        }

        .view-details-btn:hover {
            background: #1d78d5;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(29, 120, 213, 0.3);
        }

        .view-details-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(29, 120, 213, 0.2);
        }

        /* Loading animation */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Badge styles */
        .new-badge {
            position: relative;
        }

        .new-badge::after {
            content: 'NEW';
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 12px;
            animation: pulse 2s infinite;
        }

        .sale-badge {
            position: relative;
        }

        .sale-badge::after {
            content: 'SALE';
            position: absolute;
            top: 8px;
            left: 8px;
            background: #22c55e;
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 12px;
            animation: pulse 2s infinite;
        }

        .best-badge {
            position: relative;
        }

        .best-badge::after {
            content: 'BEST';
            position: absolute;
            top: 8px;
            left: 8px;
            background: #f59e0b;
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 12px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Responsive design */
        @media (max-width: 1023px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            body {
                padding: 16px;
            }
            
            .product-header {
                padding: 24px;
                min-height: 200px;
            }
        }

        @media (max-width: 479px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-header {
                padding: 20px;
                min-height: 180px;
            }
        }


        /* contact   */


         .contact-section {
    background: linear-gradient(to top left, #f9fbfc, #ffffff);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-container {
    max-width: 900px;
    width: 100%;
    text-align: left;
  }

  .contact-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  .contact-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .contact-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .contact-button {
    background-color: #000000;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .contact-button:hover {
    background-color: #222222;
  }

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    background: #f0f0f0;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn.active {
    background: #1a73e8;
    color: white;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .category-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 10px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .category-filter::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile */
  }

  .category-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-item {    
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1a73e8;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f9f9f9;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #333;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.product-rating {
    color: #ffb300;
    margin-bottom: 12px;
    font-size: 14px;
}

.review-count {
    color: #888;
    font-size: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-left: 8px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #0d62c9;
    transform: translateY(-2px);
}
  /* Responsive styles */
  @media (max-width: 768px) {
    .contact-container {
      text-align: center;
    }

    .contact-heading {
      font-size: 2rem;
    }

    .contact-description {
      font-size: 0.95rem;
    }

    .mobile-break {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .contact-heading {
      font-size: 1.7rem;
    }

    .contact-description {
      font-size: 0.9rem;
    }
  }