/* ================================
   🔹 SOCIAL ICONS
================================ */
#sh-social-icon-whatsapp > svg,
#sh-social-icon-facebook > svg,
#sh-social-icon-instagram > svg,
#sh-social-icon-twitter > svg {
  display: none;
}

#sh-social-icon-whatsapp {
  background: none;
  border-radius: 0;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/767px-WhatsApp.svg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#sh-social-icon-facebook {
  background: none;
  border-radius: 0;
  background-image: url(https://cdn0.iconfinder.com/data/icons/social-messaging-ui-color-shapes-2-free/128/social-facebook-2019-circle-512.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#sh-social-icon-instagram {
  background: none;
  border-radius: 50%;
  background-image: url(https://toppng.com/uploads/preview/instagram-logo-circle-11549679754rhbcorxntv.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#sh-social-icon-twitter {
  background-color: #1da1f2;
}

/* ================================
   🔹 FOOTER
================================ */
.sh-footer-main {
  background-color: #000;
  color: #fff;
}

.sh-footer-icon {
  color: #fff !important;
}

/* ================================
   🔹 PRODUCT CARD
================================ */
.sh-product-card {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  transition: 0.2s;
}

.sh-product-card:hover {
  border-radius: 8px !important;
}

/* ================================
   🔹 DISCOUNT TAG — Text Slide-In
================================ */
.sh-product-card-discount-tag,
.sh-product-discount-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 0, 0, 0.5); /* Semi-transparent red */
  border-radius: 8px 0px 8px 0px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 50%; /* ✅ Increased by 10% */
  text-align: center;
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrap your text inside a span for the animation */
.sh-product-card-discount-tag span,
.sh-product-discount-tag span {
  display: inline-block;
  color: #fff;
  animation: discountTextSlide 10s infinite ease-in-out;
  white-space: nowrap;
}



/* ================================
   🔹 PRODUCT BUTTONS (PLUS/MINUS)
================================ */
.sh-product-plus-minus-button {
  background-color: #fdbd10; /* ✅ same as header */
  border: 2px solid #fdbd10;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover State */
.sh-product-plus-minus-button:hover {
  background-color: #ffce2e; /* slightly brighter yellow */
  border-color: #ffce2e;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* Active (Pressed) State */
.sh-product-plus-minus-button:active {
  background-color: #e6ad00;
  border-color: #e6ad00;
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Disabled State */
.sh-product-plus-minus-button:disabled {
  background-color: #f5e27a;
  border-color: #f5e27a;
  color: #888;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Optional icon inside button */
.sh-product-plus-minus-button i {
  font-size: 18px;
  color: inherit;
}

/* ================================
   🔹 HEADER
================================ */
.sh-header-main {
  background-color: #fdbd10 !important; /* ✅ Updated color */
  font-size: 20px;
  color: #000; /* readable on yellow */
}

/* Header Icons */
.sh-header-location-icon {
  fill: #000 !important;
}
.sh-header-account-icon {
  stroke: #000 !important;
}
.sh-header-cart-icon {
  stroke: #000 !important;
  fill: none !important;
}
.sh-header-arrow-icon {
  fill: #000 !important;
}
.sh-header-search-icon {
  stroke: #000 !important;
}

/* ================================
   🔹 BOTTOM NAVIGATION
================================ */
.sh-bottom-nav-main {
  background-color: #000;
}

/* ================================
   🔹 CATEGORY IMAGES
================================ */
.cat-card-img {
  border: none;
  object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 600px) {
  .cat-card-img {
    border: none;
    object-fit: cover;
    border-radius: 8px;
  }

  .cat-card-letter-container {
    border: 7px solid #fff;
    border-radius: 7px;
  }
}

/* ================================
   🔹 ROW TITLE DIVIDER
================================ */
.sh-row-title-divider {
  display: none !important;
}

/* ================================
   🔹 MISC
================================ */
#cat-scroll-scroller {
  justify-content: center;
}

.pr-long-col-media {
  object-fit: contain;
}
