@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    font-family: "Outfit", sans-serif;
}
body{
    margin:0;
    padding:0;
    font-family: "Outfit", sans-serif;
}

.top-header {
      background: #3a90a9;
      color: #fff;
      padding: 8px 0;
    }
    .top-header .search-bar input {
      border-radius: 20px;
      padding-left: 15px;
    }
    .top-header .search-bar {
      position: relative;
    }
    .top-header .search-bar i {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
    }
    .navbar-custom {
      background: #eaeaea;
    }
    .navbar-custom .nav-link {
      color: #000 !important;
      font-weight: 500;
    }
    .navbar-toggler {
      border: none;
      font-size: 1.2rem;
    }
    
.custom-slide {
      display: flex;
      align-items: center;
      min-height: 300px;
      background: linear-gradient(90deg, #36d1dc, #5b86e5);
      color: #fff;
      padding: 40px;
    }
    .custom-slide h2 {
      font-weight: 700;
    }
    .custom-slide p {
      margin: 15px 0;
    }
    .custom-slide .btn-custom {
      background: #fff;
      color: #000;
      font-weight: 600;
      border-radius: 25px;
      padding: 8px 20px;
    }
    .custom-slide img {
      max-width: 100%;
      height: auto;
    }
    /* Mobile adjustments */
    @media (max-width: 768px) {
      .custom-slide {
        flex-direction: column;
        text-align: center;
      }
      .custom-slide .text-content {
        margin-bottom: 20px;
      }
    }
    
    .marquee-section {
      background: linear-gradient(90deg, #00d2ff, #3a7bd5);
      color: #fff;
      padding: 10px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: inline-flex;
      gap: 50px; /* space between items */
      white-space: nowrap;
      padding-left: 100%;
      animation: scrollText 18s linear infinite;
      font-size: 15px;
      font-weight: 500;
      align-items: center;
    }

    .marquee-section:hover .marquee-track {
      animation-play-state: paused; /* hover par ruk jaayega */
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .marquee-item i {
      color: #fff;
    }

    @keyframes scrollText {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    .brands img{
        width:100%;
    }
    .brand-margin{
        margin:5px;
    }
.best-selling .price{
    font-size:13px;
}    
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-icon-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

.cart-icon-btn i {
  font-size: 16px;
  color: #0d6efd;
}

.cart-icon-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer {
    padding: 40px 5px 20px!important;
}
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.community-card {
  position: relative;
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  border-radius: 12px;
}

.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.community-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-explore {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-explore::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-45deg);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-explore:hover::before {
  left: 200%;
}

.btn-explore:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
  .community-card {
    height: 180px;
  }
}
.category-card {
  position: relative;
  height: 220px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s ease;
}

.category-card .badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

.category-card .category-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.category-card:hover .overlay {
  background: rgba(0,0,0,0.65);
}

/* Shine Effect */
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.category-card:hover::before {
  left: 125%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .category-card {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .category-card {
    height: 150px;
  }
  .category-card .badge-discount {
    font-size: 11px;
    padding: 4px 8px;
  }
  .category-card .category-title {
    font-size: 13px;
  }
}
 .special-section {
      background: #008ca1;
      padding: 40px 20px;
    }

    /* Grid layout */
    .special-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr; /* 3 cols only */
      grid-template-rows: repeat(2, 200px);
      gap: 15px;
    }

    /* Big left block */
    .grid-item.large {
      grid-row: span 2;
    }

    /* Common box */
    .card-box {
      background: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-weight: 600;
      height: 100%;
    }

    /* Product card */
    .product-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      height: 100%;
    }

    .product-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .product-title {
      font-size: 14px;
      font-weight: 600;
      margin: 6px 0;
      color: #222;
    }

    .product-desc {
      font-size: 12px;
      color: #555;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .product-price {
      font-size: 16px;
      font-weight: bold;
      color: #e63946;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .special-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
    }

    @media (max-width: 576px) {
      .special-grid {
        grid-template-columns: 1fr;
      }
    }
    .section-wrapper {
      padding: 30px 20px;
      background: #f9f6f2; /* light beige like screenshot */
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .section-header h6 {
      font-weight: 600;
      margin: 0;
    }

    .section-header a {
      font-weight: 500;
      text-decoration: none;
      color: #333;
      transition: color 0.3s;
    }

    .section-header a:hover {
      color: #0072ff;
    }

    .image-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 140px;
      font-weight: 600;
      color: #999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      color: #0072ff;
    }
    .suggestion-section {
      background: linear-gradient(135deg, #fdfdfd, #f4f4f4);
      padding: 50px 20px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .suggestion-section::before {
      content: "";
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background: rgba(0, 162, 255, 0.1);
      border-radius: 50%;
      z-index: 0;
    }

    .suggestion-section::after {
      content: "";
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255, 0, 100, 0.08);
      border-radius: 50%;
      z-index: 0;
    }

    .suggestion-content {
      position: relative;
      z-index: 1;
    }

    .suggestion-title {
      font-size: 26px;
      font-weight: 700;
      color: #222;
      margin-bottom: 10px;
    }

    .suggestion-subtitle {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .btn-suggest {
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
    }

    .btn-suggest:hover {
      background: linear-gradient(135deg, #0072ff, #004a97);
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(0, 114, 255, 0.4);
    }
        .footer {
      background: #008ea3;
      color: #fff;
      padding: 40px 20px 20px;
    }

    .footer h6 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .footer a {
      display: block;
      color: #fff;
      text-decoration: none;
      margin-bottom: 6px;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer a:hover {
      color: #ffd700;
    }

    .social-icons a {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-right: 8px;
      border-radius: 6px;
      text-align: center;
      line-height: 32px;
      background: #fff;
      color: #008ea3;
      font-size: 16px;
      transition: all 0.3s;
    }

    .social-icons a:hover {
      background: #ffd700;
      color: #000;
    }

    .footer .app-buttons img {
      height: 40px;
      margin-left: 10px;
    }

    .footer .contact-info p {
      margin: 0 0 6px;
      font-size: 14px;
    }

    .footer hr {
      border-color: rgba(255,255,255,0.2);
      margin: 20px 0;
    }