
  /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

/* slider style  */

.slider-container {
            position: relative;
            width: 100%;
            /* height: 30%; */
            /* max-width: 1200px; */
            margin: auto;
            overflow: hidden;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            text-align: center;
            color: white;
        }
        .slide img {
            width: 100%;
            /* height: 60%; */
            display: block;
        }
        .slide-content {
            position: absolute;
            bottom: 20%;
            left: 50%;
            transform: translate(-50%, 0);
            text-align: center;
            animation: slideUp 1s ease-in-out forwards;
            opacity: 0;
        }
        .slide-content h2 {
            margin: 0 0 10px;
            font-size: 28px;
        }
        .slide-content p {
            margin: 0 0 15px;
            font-size: 18px;
        }
        .slide-content a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ff6347;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        .dots {
            text-align: center;
            margin-top: 10px;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 5px;
            background-color: gray;
            border-radius: 50%;
            cursor: pointer;
        }
        .dot.active {
            background-color: #ff6347;
        }
        @keyframes slideUp {
            0% {
                transform: translate(-50%, 50%);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, 0);
                opacity: 1;
            }
        }
        @media (max-width: 768px) {
            .navigation {
                display: none;
            }
            .slide-content h2 {
                font-size: 20px;
            }
            .slide-content p {
                font-size: 14px;
            }
            .slide-content a {
                padding: 8px 16px;
                font-size: 14px;
            }
        }



/* category box style */
.category-section {
      padding: 20px;
    }

    .category-title {
      font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
    }

    .categories {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 15px;
      scrollbar-width: thin;
      scrollbar-color: #888 transparent;
    }

    .categories::-webkit-scrollbar {
      height: 8px;
    }

    .categories::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 4px;
    }

    .categories::-webkit-scrollbar-track {
      background: transparent;
    }

    .category-card {
      min-width: 120px;
      flex: 0 0 auto;
      text-align: center;
      background-color: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .category-card:hover {
      transform: translateY(-5px);
    }

    .category-card img {
      width: 110px;
      height: 150px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 1px;
    }

    .category-card p {
      font-size: 1rem;
      color: #333;
      margin: 0;
    }
    /* style for tab */
    @media(min-width: 550px)
    {
        .category-card {
        min-width: 200px; 
      }
    }



    

    /* Further adjustments for larger screens */
    @media (min-width: 1200px) {
      .category-title {
        font-size: 2.5rem;
      }

      .category-card {
        padding: 20px;
      }

      .category-card img {
        width: 130px;
        height: 200px;
      }

      .category-card p {
        font-size: 1.2rem;
      }
    }


/* product box style */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background-color: #cebecd42;

}
.product-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}
.product-item img:hover {
    transform: scale(1.05);
}
.product-item h3 {
    font-size: 1.1rem;
}
.product-item p {
    color: #d1cece;
    font-size: 1rem;
}

/* media qurary for product box */

@media (max-width: 480px) {
   
    .product-grid {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
        
        gap: 1rem;
    }
    .products h2, .featured-products h2 {
        font-size: 1.5rem;
    }
    .product-item h3 {
        font-size: 1rem;
    }
    .product-item {
        width: 45%;
    }
    .product-item p {
        font-size: 0.9rem;
    }
  
}


/* footer section style */


    /* Sticky Bottom Navigation Bar */
    .sticky-bottom-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 8px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }

  .sticky-bar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #333;
      font-size: 12px;
      position: relative;
      padding: 5px 10px;
  }

  .sticky-bar-item i {
      font-size: 20px;
      margin-bottom: 3px;
  }

  .sticky-bar-item.active {
      color: #ff6b6b;
  }

  .cart-count {
      position: absolute;
      top: -5px;
      right: 0;
      background: #ff6b6b;
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
  }

  /* Add this to prevent content from being hidden behind sticky bar */
  body {
      padding-bottom: 70px;
  }