 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     line-height: 1.6;
     color: #333;
 }

 .hero-section {
     background: url('../img/home/hero_background.png') no-repeat  bottom center ,
         linear-gradient(to top, rgba(255, 250, 106, 22%), rgba(255, 250, 106, 22%));
     background-size: cover;
     min-height: 500px;
     /* display: flex; */
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
 }



 .hero-content h1 {
     font-size: 3rem;
     color: #051769;
     margin-top: 4rem;
     margin-bottom: 1rem;
     font-weight: 700;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
 }

 .hero-content p {
     font-size: 1.2rem;
     color: #051769;
     max-width: 700px;
     margin: 0 auto;
 }




   .fish-categories {
            margin-bottom: 50px;
            position: relative;
        }

        .categories-container {
            overflow: hidden;
            padding: 0 50px;
        }

        .categories-scroll {
            display: flex;
            gap: 40px;
            transition: transform 0.3s ease;
            align-items: center;
            justify-content: space-between;
        }

        .category-item {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            /* min-width: 80px; */
        }

        .category-item:hover {
            transform: translateY(-5px);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 12px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.3s ease;
        }

        .category-item:hover .category-icon {
            transform: scale(1.1);
        }

        .category-label {
            font-size: 12px;
            font-weight: 500;
            color: #666;
            text-transform: capitalize;
        }
        .feature-product-icon {
            width: 90px;
            height: 65px;
            /* background: #4ecdc4; */
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #051769;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: #2a4d7a;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }
 
.categories-scroll {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.category-item {
  /* min-width: 10%;  */
  text-align: center;
  box-sizing: border-box;
  margin-right: 40px;
}

        /* Product Cards - Grid Layout */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* Discount Badge */
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #FFD700;
            color: #333;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 20px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-badge::before {
            content: '🔥';
            font-size: 14px;
        }

        /* Product info overlay */
        .product-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 15px 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: #fff;
            z-index: 2;
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .product-price {
            margin-bottom: 12px;
        }

        .current-price {
            font-weight: 700;
            color:  #FFE066;
            font-size: 16px;
        }

        /* Actions */
        .product-actions {
            display: flex;
            gap: 8px;
        }

        .product-actions .btn {
            padding: 8px 12px;
            font-size: 12px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-primary {
            background:  #051769;
            color: white;
            flex: 1;
        }

        .btn-primary:hover {
            background: #3db8b3;
        }

        .btn-cart {
            background: rgba(255,255,255,0.2);
            color: #fff;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .btn-cart:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Pagination Dots */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination-dot.active {
            background:  #051769;
            transform: scale(1.3);
        }

        .pagination-dot:hover {
            background:  #051769;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .categories-scroll {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
                padding: 0 20px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .categories-container {
                padding: 0 45px;
            }
        }

        @media (max-width: 480px) {
            .categories-scroll {
                gap: 15px;
            }

            .category-icon {
                width: 60px;
                height: 60px;
            }

            .category-icon img {
                width: 65px;
                height: 55px;
            }
        }

 /* Mobile Responsive */

 @media (max-width: 768px) {
    
     .hero-content h1 {
         font-size: 2rem;
     }

     .hero-content p {
         font-size: 1rem;
         padding: 0 20px;
     }

   
 }

 