#sh-social-icon-whatsapp>svg {
	display: none;
}


#sh-social-icon-whatsapp {
	background: none;
	border-radius: 0px;
	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>svg {
	display: none;
}

#sh-social-icon-facebook {
	background: none;
	border-radius: 0px;
	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>svg {
	display: none
}

#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>svg {
	display: none;
}


#sh-social-icon-twitter {
	background-color: #1da1f2;
}
.sh-footer-main
{
background-color:#000;
color:#fff;
}
.sh-product-card:hover {
    border-radius: 8px !important;
    
  }
.sh-product-card {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
#cat-scroll-scroller
{
justify-content: center;
}
.pr-long-col-media {
    object-fit: contain;
}
.sh-bottom-nav-main {
    background-color: #000;
}
.sh-header-location-icon {
    fill: #000000 !important;
}
.sh-header-account-icon {
    stroke: #000000 !important;
}
.sh-header-cart-icon {
    stroke: #000000 !important;
    fill: none !important
}
.sh-header-arrow-icon {
    fill: #000000 !important;
}
.sh-header-search-icon {
    stroke: #000000 !important;
}
.sh-header-main
{
background-color:#fff;
font-size: 20px;
}
/* 🔴 Product Card Discount Tag */
.sh-product-card-discount-tag,
.sh-product-discount-tag {
  position: absolute; /* required for left/top to work */
  top: 0;
  left: 0;
  right: auto;
  
  background-color: rgba(255, 0, 0, 0.5);
  color: #ffffff;
  font-weight: 500 !important;
  border-radius: 8px 0px 8px 0px !important;
  padding: 4px 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(2px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start; /* ensure left text alignment */
  z-index: 5;

  /* 💡 Animate only text color alpha */
  animation: blinkTextOnly 10s infinite;
}

/* 🧠 Keyframes — visible 95%, invisible 5% (≈0.5s blink per 10s) */
@keyframes blinkTextOnly {
  0%, 94%, 100% {
    color: rgba(255, 255, 255, 1); /* visible text */
  }
  95%, 99% {
    color: rgba(255, 255, 255, 0); /* invisible text */
  }
}

/* 🧩 Accessibility — stop blinking for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sh-product-card-discount-tag,
  .sh-product-discount-tag {
    animation: none;
  }
}

/* 🌟 Base Button */
.sh-product-plus-minus-button {
  background-color: #FFB81C; /* Main yellow color */
  border: 2px solid #FFB81C;
  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; /* space between icon and text */
  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: #FAD14A; /* Slightly brighter */
  border-color: #FAD14A;
  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: #E6B800; /* Deeper tone when pressed */
  border-color: #E6B800;
  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: #888888;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

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

/* Example HTML:
<button class="sh-product-plus-minus-button">
  <i class="fas fa-cart-plus"></i> Add to Cart
</button>
*/


.cat-card-img {
  border: none;
  object-fit: cover;
  border-radius: 20px;
}

@media screen and (max-width: 600px) {
  .cat-card-img {
    border: none;
    object-fit: cover;
    border-radius: 15px;
  }
  .cat-card-letter-container {
    border: 7px solid rgb(255, 255, 255);
    border-radius: 15px;
  }
}