/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
 
    /* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.logo-img {
  width: 70px;
  height: 45px;
  margin-right: 10px;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 5px;
  width: 20%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.search-bar input {
  border: none;
  outline: none;
  padding: 10px;
  width: 90%;
  font-size: 16px;
  border-radius: 30px 0 0 30px;
}

.search-bar button {
  background: #f39c12;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 0 30px 30px 0;
  transition: background 0.3s;
}

.search-bar button i {
  font-size: 18px;
  color: white;
}

.search-bar button:hover {
  background: #e67e22;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #f39c12;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    align-items: flex-start;
  }

  .logo {
    width: 100%;
    justify-content: space-between;
  }

  .search-bar {
    width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    margin-left: 0;
  }

  .hamburger {
    display: block;
  }
}


/* Container */
.container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* Products Section */
.products {
  flex: 3;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Product Title */
.products h2 {
  margin-bottom: 15px;
  text-align: left;
}

/* Scroll Container */
.scroll-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Product List Container */
.product-list-container {
  overflow-x: auto;
  max-width: 100%;
  scroll-behavior: smooth;
  white-space: nowrap;
}

/* Hide scrollbar */
.product-list-container::-webkit-scrollbar {
  display: none;
}

/* Product List */
.product-list {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

/* Individual Product */
.product {
  text-align: center;
  width: 180px;
  flex-shrink: 0;
}

.product img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

/* Scroll Buttons */
.scroll-button {
  background-color: #0f0777;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-button:hover {
  background-color: #09054d;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .products {
    flex: 1;
    padding: 15px;
  }

  .products h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .scroll-container {
    flex-direction: column;
    align-items: center;
  }

  .scroll-button {
    display: none; /* Hide arrows on mobile for touch scroll */
  }

  .product-list {
    gap: 10px;
  }

  .product {
    width: 150px;
  }

  .product img {
    width: 150px;
    height: 150px;
  }

  .ad-section {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .ad-section img {
    height: 100px;
  }
}


 .contai {
      padding: 20px;
    }

    .products h2 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .carousel-wrapper {
      position: relative;
    }

    .product-list {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 16px;
      padding-bottom: 10px;
    }

    .product {
      min-width: 160px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px;
      flex-shrink: 0;
      text-align: center;
    }

   .product {
  width: 160px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25);
}

/* Product Image */
.product img {
  width: 100%;
  height: 140px;   /* 🔹 increased for better visibility */
  object-fit: contain; /* Keeps images proportional */
  border-radius: 6px;
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 8px;
}

/* Product Title */
.product h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 8px 0 4px 0;
  line-height: 1.3;
  height: 38px; /* 🔹 keeps product titles aligned */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product Price */
.product .price {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  margin: 4px 0;
}

/* Old Price (strikethrough) */
.product .old-price {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
  margin-left: 5px;
}

/* Discount Tag */
.product .discount {
  font-size: 13px;
  color: #28a745;
  font-weight: 600;
}

/* Add to Cart Button */
.product button {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product button:hover {
  background: #e64a19;
}


    .product p {
      font-size: 14px;
      margin: 5px 0;
    }

    .product strong {
      color: #ff5722;
      font-size: 15px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 8px 12px;
      cursor: pointer;
      z-index: 1;
      border-radius: 50%;
    }

    .arrow.left {
      left: -10px;
    }

    .arrow.right {
      right: -10px;
    }

    @media (min-width: 768px) {
      .product {
        min-width: 200px;
      }

      .arrow {
        display: none;
      }
    }


 /* Footer Base Styles */
.footer {
    background: #181818;
    color: #ffffff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

/* Mobile Responsive View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 10px;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .social-icons a {
        font-size: 18px;
        margin: 0 8px;
    }
}


.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ffcc00;
}
section#auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: #f0f0f0;
}

.wrapper {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.title-text {
  display: flex;
  width: 200%;
}

.title {
  width: 50%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.slide-controls {
  display: flex;
  position: relative;
  margin: 20px 0;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.slide-controls .slide {
  width: 100%;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  font-weight: 500;
}

.slider-tab {
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #a445b2, #fa4299);
  border-radius: 5px;
  z-index: 0;
  transition: all 0.4s ease;
  left: 0;
}

input[type="radio"] {
  display: none;
}

#signup:checked ~ label.signup {
  color: #fff;
}

#signup:checked ~ label.login {
  color: #000;
}

#signup:checked ~ .slider-tab {
  left: 50%;
}

#login:checked ~ label.signup {
  color: #000;
}

#login:checked ~ label.login {
  color: #fff;
}

.form-container {
  overflow: hidden;
}

.form-inner {
  display: flex;
  width: 200%;
  transition: all 0.4s ease;
}

.form-inner form {
  width: 50%;
}

.field {
  margin-top: 20px;
  width: 100%;
}

.field input {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.field input:focus {
  border-color: #fa4299;
}

.show-pass {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.show-pass input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #fa4299; /* for modern browsers */
  cursor: pointer;
}

.show-pass label {
  cursor: pointer;
}


.pass-link,
.signup-link {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.pass-link a,
.signup-link a {
  text-decoration: none;
  color: #fa4299;
}

.pass-link a:hover,
.signup-link a:hover {
  text-decoration: underline;
}

.btn {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.btn-layer {
  position: absolute;
  width: 300%;
  height: 100%;
  left: -100%;
  background: linear-gradient(to right, #a445b2, #fa4299, #a445b2);
  transition: all 0.4s ease;
  border-radius: 5px;
}

.btn:hover .btn-layer {
  left: 0;
}

.btn input[type="submit"] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 14px 0;
  border-radius: 5px;
}
  
  /* Main container */
.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #3a1d0f; /* Background similar to the image */
  }
  
  /* Feature card styling */
  .feature-card {
    background-color: #4a2a1a;
    color: white;
    border-radius: 12px;
    padding: 20px;
    width: 22%;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect */
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  }
  
  /* Icon styling */
  .icon {
    font-size: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  /* Headings */
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  /* Paragraph text */
  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .features-container {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-card {
      width: 90%;
      margin-bottom: 20px;
    }
  }
  
  /* Main container */
.offerings-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  /* Left heading */
  .offerings-text h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    max-width: 500px;
    line-height: 1.4;
  }
  
  /* Right stats section */
  .offerings-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
  
  /* Each stat item */
  .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #ddd;
    padding-left: 10px;
  }
  
  /* Stat numbers */
  .stat-number {
    font-size: 1.5rem;
    color: #ff6a00;
    font-weight: bold;
  }
  
  /* Stat labels */
  .stat-label {
    font-size: 1rem;
    color: #555;
    margin: 0;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .offerings-section {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .offerings-stats {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 20px;
    }
  
    .offerings-text h1 {
      font-size: 1.5rem;
    }
  }

/* === Main container === */
  .category-carousel {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* === Scrollable wrapper with snap === */
.categories-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  padding: 15px 25px;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x mandatory; /* 🔹 Snap scroll */
}

.categories-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* === Category item (Square) === */
.category-item {
  flex: 0 0 auto; /* 🔹 Prevent shrinking */
  scroll-snap-align: start; /* 🔹 Snap one-by-one */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 140px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.category-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #ffffff, #f9fcff);
  box-shadow: 0 8px 18px rgba(0, 123, 255, 0.2);
  border-color: #007bff;
}

/* === Icon === */
.category-item .icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #007bff;
  transition: color 0.3s ease;
}

.category-item:hover .icon {
  color: #ff5722;
}

/* === Text === */
.category-item span {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #444;
  transition: color 0.3s ease;
}

.category-item:hover span {
  color: #007bff;
}


  
   .factory-section {
      padding: 40px 20px;
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
    }

    .factory-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #222;
      text-align: center;
    }

    /* Cards container */
    .factory-cards {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Individual card */
    .factory-card {
      position: relative;
      width: 400px;
      height: 400px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .factory-card:hover {
      transform: scale(1.03);
    }

    /* Overlay for text */
    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 15px;
      background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
      color: #fff;
    }

    /* Top label */
    .card-label {
      font-size: 1rem;
      font-weight: bold;
    }

    /* Bottom link */
    .card-link {
      font-size: 1rem;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      border-bottom: 2px solid #fff;
      width: fit-content;
      transition: color 0.3s ease;
    }

    .card-link:hover {
      color: #ff6a00;
      border-bottom-color: #ff6a00;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .factory-card {
        width: 150%;
        height: 300px;
      }

      .factory-section h2 {
        font-size: 1.5rem;
      }

      .card-label {
        font-size: 0.9rem;
      }

      .card-link {
        font-size: 0.9rem;
      }
    }
  
    .hero {
      padding: 20px;
      text-align: left;
    }

    .hero h1 {
      font-size: 2rem;
      max-width: 100%;
      margin-bottom: 30px;
      line-height: 1.3;
    }

    .cards-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 10px;
      color: #ccc;
    }

    .card h2 {
      font-size: 1.4rem;
      margin: 10px 0;
      display: flex;
      align-items: center;
      gap: 5px;
      color: #00f2ff;
    }

    .highlight {
      color: #00bfff;
      font-weight: bold;
    }

    .icon {
      font-size: 1.5rem;
      color: #ffc107;
    }

    .card p {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 15px;
      color: #ddd;
    }

    .card-buttons {
      display: flex;
      flex-direction: row;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 10px 18px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      transition: background 0.3s, color 0.3s;
    }

    .btn:hover {
      background: white;
      color: #333;
    }

    a {
      color: #00e6e6;
      text-decoration: underline;
      font-size: 0.95rem;
    }

    a:hover {
      text-decoration: none;
    }

    /* Mobile responsiveness */
    @media (min-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .cards-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .card {
        width: 48%;
      }
    }
 .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }

    /* Middle Section */
    .middle-section {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .small-product {
      width: 100%;
      max-width: 180px;
      height: auto;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .small-product:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .new-this-week {
      display: flex;
      gap: 10px;
      align-items: center;
      width: 100%;
      background: white;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .new-this-week h4 {
      margin: 0;
      font-size: 1.1rem;
    }

    .new-this-week p {
      margin: 0;
      color: gray;
      font-size: 0.9rem;
    }

    /* Right Section */
    .right-section {
      text-align: center;
    }

    .right-section h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }


/* Supplier Section */
.supplier-section {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.supplier-header {
  text-align: center;
  margin-bottom: 20px;
}

.supplier-header h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  color: #333;
}

/* Supplier Container */
.supplier-container {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  gap: 10px;
}

/* Navigation Buttons */
.nav-button {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  position: absolute;
  z-index: 10;
}

.nav-button.left {
  left: -30px;
}

.nav-button.right {
  right: -30px;
}

.nav-button:hover {
  background-color: #003d80;
}

/* Supplier List */
.supplier-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 0;
  gap: 20px;
  white-space: nowrap;
  max-width: 90%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.supplier-list::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome & Safari */
}

/* Supplier Item */
.supplier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supplier-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Flag Icon */
.flag-icon {
  width: 70px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  padding: 10px;
  object-fit: contain;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Country Name */
.supplier-item span {
  font-size: 16px;
  font-weight: bold;
  color: #0056b3;
}


.section-title {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  background: #ffffff;
  border: 2px solid #000;
  padding: 12px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

.tab.active {
  background: #000;
  color: white;
}

.tab:hover {
  background: black;
  color: white;
}


/* Add padding to the left side */
.product-list-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-left: 20px; /* Adds left padding */
}


.product-list {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

.product1 {
  background: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.product1 img {
  width: 150px;
  height: 150px;
  border-radius: 5px;
}

.product1 p {
  font-size: 11px;
  margin: 10px 0;
}

.product1 strong {
  display: block;
  font-size: 16px;
  color: black;
}

.product1 small {
  font-size: 12px;
  color: gray;
}



.container {
  max-width: 1200px;
  margin: auto;
}

.nav-tabs {
  border: none;
}

.nav-tabs .nav-item {
  margin-bottom: 10px;
}

.nav-tabs .nav-link {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 20px;
  color: #333;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Tab Content Styling */
.tab-content {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details h3 {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.details p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.details .fst-italic {
  font-style: italic;
  color: #888;
  margin-bottom: 10px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .col-lg-3 {
      text-align: center;
      margin-bottom: 20px;
  }
  .nav-tabs .nav-link {
      width: 100%;
  }
}
@media (max-width: 768px) {
  .auction-container {
    padding: 10px;
    text-align: center;
  }

  .auction-container h1 {
    font-size: 2rem;
    padding-left: 0;
    text-align: center;
  }

  .auction-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .auction-card {
    width: 90%;
    padding: 12px;
  }

  .auction-img {
    height: 140px;
  }

  .auction-card h3 {
    font-size: 1rem;
  }

  .current-bid {
    font-size: 0.95rem;
  }

  .timer {
    font-size: 0.85rem;
  }

  .bid-btn {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}

/* ----------------------------------
   #checkout
------------------------------------- */
 .checkout-container {
    display: flex;
    max-width: 1600px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.checkout-form {
    width: 50%;
    padding: 20px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.city-state {
    display: flex;
    gap: 10px;
}

.city-state input, .city-state select {
    flex: 1;
}

label {
    font-size: 14px;
    display: block;
    margin: 10px 0;
}

.order-summary {
    width: 50%;
    padding: 20px;
    background: #fafafa;
    border-left: 1px solid #ddd;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.cart-item p {
    flex-grow: 1;
}

.apply-btn {
    width: 100%;
    background: #ddd;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.price-details p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 5px 0;
}

.price-details h3 {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.buy-now {
    width: 100%;
    background: #0073e6;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 5px;
}
.shipping-box, .payment-box, .billing-box {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding-left: 20px; /* Added */
}

p.secure-text {
  font-size: 14px;
  color: gray;
  padding-left: 20px; /* Added */
}

.payment-option, .billing-option {
  display: block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  background-color: #eef4ff;
  cursor: pointer;
  padding-left: 20px; /* Added */
}

.payment-option input, .billing-option input {
  margin-right: 10px;
}

.complete-order {
  width: 100%;
  padding: 12px;
  background-color: #0d6efd;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding-left: 20px; /* Added */
}

.complete-order:hover {
  background-color: #025ce2;
}
/*-------------------------
#collections
---------------------------*/

/* Product Grid */
.product2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts column width dynamically */
  gap: 20px; /* Increased gap between products */
  padding-left: 50px; /* Added left padding */
  padding-right:50px; /* Added right padding */
}

/* Product Card */
.product2 {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  position: relative;
  width: 280px;  /* Increased width */
  height:400px;/*creased height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Product Image */
.image img {
  width: 100%;
  height: 150px; /* Fixed height for image */
  object-fit: cover; /* Ensures proper image fitting */
  border-radius: 8px;
}

/* Sale Badge */
.sale-badge {
  position:absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* Product Text */
.title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.brand {
  color:black;
  font-size: 20px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #e60000;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusting for smaller screens */
  }

  .product {
      width: 220px;  /* Reduce width for mobile */
      height: 350px; /* Reduce height for mobile */
  }

  .image img {
      height: 160px; /* Adjust image height */
  }
}
.pagination {
  display: flex;
  justify-content: center; /* Centers the pagination */
  align-items: center;
  list-style: none;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px; /* Increase box roundness */
  gap: 12px;
}

.pagination li {
  display: inline-block;
  padding: 12px 18px; /* Increase padding to make buttons bigger */
  font-size: 20px; /* Increase font size */
  cursor: pointer;
  border-radius: 6px; /* Rounded corners */
  color: blue;
  transition: background 0.3s ease;
}

.pagination li.active {
  font-weight: bold;
  border-bottom: 3px solid black; /* Thicker bottom border */
  color: black;
}

.pagination li:hover {
  background: #ddd;
}

.pagination li.disabled {
  color: blue;
  cursor: not-allowed;
}

.contain {
  max-width: 1900px;
  margin: auto;
}

h5 {
  font-size: 24px;
  font-weight: bold;
}

.school-bag-section {
  border-top: 2px solid #ccc;
  padding-top: 10px;
}

.bag-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 90px;
}

.bag-item {
  flex: 1;
  text-align: center;
  max-width: 200px;
}

.bag-item img {
  width: 150px;  /* Set fixed width */
  height:200px; /* Set fixed height */
  object-fit: cover; /* Ensures image fills the box while maintaining aspect ratio */
  transition: transform 0.3s ease-in-out;
}


.bag-item img:hover {
  transform: scale(1.1);
}
/* General Styling */
.contain {
  max-width:1900px;
  text-align: center;
  padding: 20px;
}

h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Earphone Section */
.earphone-section {
  border-top: 2px solid #ccc;
  padding-top: 20px;
}

.earphone-list {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

/* Earphone Items */
.earphone-item {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.earphone-item img {
  width: 170px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.earphone-item:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.earphone-item img:hover {
  transform: scale(1.05);
}
/* Container styling */
.contain {
  width: 90%;
  max-width: 1900px;
  margin: 30px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Heading style */
h5 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 3px solid #ff5722;
  display: inline-block;
  padding-bottom: 5px;
}

/* Section background */
.appliance-section {
  padding: 20px 0;
  background: #ffffff;
  border-radius: 10px;
}

/* Flexbox for appliances */
.appliance-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
}

/* Individual appliance item */
.appliance-item {
  width: 200px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #ddd;
}

.appliance-item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/* Name below appliance */
.appliance-item p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-top: 10px;
}

/* Hover effects */
.appliance-item:hover {
  transform: translateY(-5px);
  border-color: #ff5722;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.appliance-item img:hover {
  transform: scale(1.1);
}
  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; /* aligns to right on desktop */
    align-items: center;
    gap: 15px;
    padding: 20px;
    max-width: 100%;
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .social-icons {
      justify-content: center; /* center on mobile */
    }
  }

  .social-icons a {
    text-decoration: none;
    font-size: 24px;
  }

  
    .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .card img.card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content,
    .card-text {
      padding: 20px;
    }

    .card-title {
      color: aqua;
      margin-bottom: 10px;
    }

    .read-more-btn {
      margin-top: 15px;
      padding: 10px 15px;
      background-color: red;
      color: #fff;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
    }

    .read-more-btn .caret {
      margin-left: 8px;
      font-weight: bold;
    }

    .card h2 {
      font-size: 1.25rem;
      margin: 0;
    }

    .card p {
      font-size: 1rem;
      line-height: 1.5;
      color: #333;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .card {
        flex: 1 1 calc(33% - 20px);
        max-width: calc(33% - 20px);
      }

      .card img.card-image {
        height: 180px;
      }

      .card h2 {
        font-size: 1.2rem;
      }
    }

 