/* Top Marquee */
.top-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #0b2d3a;
  padding: 4px 0; /* thinner strip */
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 30s linear infinite; /* slower */
}

.ticker-content {
  display: flex;
}

.ticker-content span {
  margin-right: 50px;
  font-size: 14px;
  font-weight: 700; /* bold */
  color: #ffffff;
}

/* Shark Tank highlight color */
.ticker-content span b {
  color: #00cfff; /* bluish highlight like screenshot */
  font-weight: 700;
}

.ticker-content span b i {
  color: #fce97e; /* yellow */
  font-style: normal; /* italic remove */
  font-weight: 700;
}

/* Smooth infinite animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-60%);
  }
}

/* Cards After Hero */
.category-section {
  background: #2d4820;
  padding: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #1b2e04;
  box-shadow: 0px 6px 0px #1b2e04;
  background: #c0d2a3;
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px;
}

.arrow-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #3d5f39;
  border: 2px solid #1b2e04;
  border-radius: 50%;
  padding: 10px;
  color: #c3d3a9;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #1b2e04;
  color: #fff;
}

.category-section {
  background: #2d4820;
  padding: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* responsive */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #1b2e04;
  box-shadow: 0px 6px 0px #1b2e04;
  background: #c0d2a3;
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  display: block;
}

.arrow-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #3d5f39;
  border: 2px solid #1b2e04;
  border-radius: 50%;
  padding: 10px 12px;
  color: #c3d3a9;
  font-size: 18px;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #1b2e04;
  color: white;
}
/* Shop What You See */
.product-mini-img {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.blog-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-header h2 {
  font-size: 26px;
  font-weight: bold;
}

.blog-header a {
  text-decoration: underline;
  font-size: 14px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.blog-card h3 {
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.payment-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: center;
  width: 70%;
}

.payment-grid img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Navbar Menu */

.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 999;
  transition: 0.3s;
  padding: 20px;
}

.side-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
}

#closeMenu {
  cursor: pointer;
  font-size: 20px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

/* overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.584);
  display: none;
  z-index: 998;
}

#overlay.active {
  display: block;
}
.menu-logo {
  height: 28px;
  object-fit: contain;
}
/* MAIN ITEMS (bade wale) */
.menu-main {
  font-size: 22px;
  font-weight: 600;
  padding: 9px 0;
}

/* SUB ITEMS (chhote wale) */
.menu-sub {
  font-size: 18px;
  padding: 7px 0;
  color: #262626;
}
.menu-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.menu-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.menu-social a:hover {
  background: #2d4820;
}

/* Banner k upper se overlay remove */

.banner-section {
  position: relative;
  z-index: 1; /* sabke upar */
}

.bannerSwiper {
  width: 100%;
  height: auto;
}

.bannerSwiper img {
  width: 100%;
  height: auto;
  display: block;
}

/* buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  z-index: 10000;
}

/* Cart  */

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 350px;
  height: 100%;
  background: white;
  z-index: 9999;
  transition: 0.3s;
  padding: 20px;
}

.cart-sidebar.active {
  right: 0;
}

#cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998;
}

#cartOverlay.active {
  display: block;
}

/* Cart  */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  gap: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cart-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.qty button {
  width: 25px;
  height: 25px;
  border: none;
  background: #eee;
  cursor: pointer;
}

/* footerlinks */

.plus-icon-custom {
  min-width: 40px;
}

.plus-icon-custom span {
  font-size: 32px; /* size bada */
  font-weight: 999; /* bold */
  display: inline-block;
  transform: translateX(5px); /* thoda right push */
}


