/* ========== HEADER ========== */
.sh-header-main {
  background-color: #ffffff;
  box-shadow:0 3px 5px rgba(57, 63, 72, 0.3) !important;
  color:#000000 !important
}

/* ========== DISCOUNT TAGS ========== */
.sh-product-card-discount-tag,
.sh-product-discount-tag {
  top: 22px !important;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 12% 50%, 0% 0%);
  width: 64px;
  text-align: center;
  font-weight: 500;
  border-radius: 0;
  background-color: #E02858;
  color: white;
  font-size: 12px;
}

/* ========== HIDE UNNECESSARY ICONS/TEXT IN BANNERS ========== */
.sh-banner-collection-card > a > div > div > p,
.sh-banner-collection-card > a > div > div > p > svg,
.sh-mini-banner-collection-card > a > div > div > div > svg,
.sh-mini-banner-collection-card > a > div > div > div > p {
  display: none;
}

/* ========== PRODUCT BUTTONS ========== */
.sh-product-buy-now-button {
  background: #E02858;
  color: #fff;
  border: 1px solid #E02858;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.sh-product-buy-now-button:hover {
  background: #fff;
  color: #E02858;
}

.sh-product-plus-minus-button {
  background-color: #E02858;
  color: #fff;
  border: 1px solid #E02858;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
}

.sh-product-plus-minus-button:hover {
  background-color: #fff;
  color: #E02858;
}

/* ========== SOLID BUTTON (SECONDARY STYLE) ========== */
.sh-solid-button {
  border-radius: 6px;
  border: 1px solid #E02858 !important;
  background-color: #fff;
  color: #E02858;
  padding: 10px 18px;
  font-weight: 500;
}

.sh-solid-button:hover {
  background-color: #E02858 !important;
  color: #fff !important;
}

/* ========== ABOUT PAGE IMAGE ========== */
.sh-aboutus-page img {
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  border-radius: 12px;
}

/* ========== PRODUCT CARDS ========== */
.sh-product-card {
   box-shadow: #0000003d 0 3px 8px;
   border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 6px;
  background: #fff;
  border:1px solid #f0f0f0;
}

.sh-product-card:hover {
/*  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);*/
  transform: translateY(-4px);
}

.pr-card-content{
  display: flex;
  align-items: center;
}


/* ========== PRODUCT IMAGE ========== */
.pr-long-card .pr-image {
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.pr-long-card:hover .pr-image {
  transform: scale(1.05);
}

/* Optional: Add smooth font family */
body {
  font-family: 'Jost', 'Segoe UI', sans-serif;
}

