:root {
  --smp-bg: #f7efe6;
  --smp-card: rgba(255, 252, 247, 0.96);
  --smp-card-soft: #f4eadf;
  --smp-stage: #eadbcb;
  --smp-stage-2: #dbc7b4;
  --smp-gold: #a9763d;
  --smp-gold-soft: #d8ba92;
  --smp-gold-deep: #7b552e;
  --smp-text: #312720;
  --smp-muted: #796654;
  --smp-line: rgba(142, 96, 49, 0.16);
  --smp-dark-line: #403226;
  --smp-danger: #dc2d32;
  --smp-shadow: 0 18px 42px rgba(68, 42, 19, 0.1);
  --smp-shadow-hover: 0 24px 54px rgba(68, 42, 19, 0.16);
  --smp-radius-card: 16px;
  --smp-radius-inner: 10px;
  --smp-radius-mini: 8px;
  --smp-grid-gap: 28px;
  --smp-ease: 0.28s ease;
}

.smp-product-showcase {
  position: relative;
  z-index: 30;
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.55), transparent 25%),
    radial-gradient(circle at 85% 8%, rgba(199, 160, 114, 0.10), transparent 28%),
    linear-gradient(180deg, #fbf5ec 0%, #f4eadf 55%, #fbf7f1 100%);
  overflow: visible;
}

.smp-product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 7% 2%, rgba(202, 172, 132, 0.14), transparent 38%),
    linear-gradient(110deg, rgba(255,255,255,0.24) 0%, transparent 26%, rgba(164,111,55,0.04) 62%, transparent 100%);
  opacity: 0.85;
}

.smp-showcase-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.smp-showcase-head {
  text-align: center;
  margin-bottom: 40px;
}

.smp-showcase-title-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.smp-showcase-title-wrap::before,
.smp-showcase-title-wrap::after {
  content: "";
  position: absolute;
  top: 44px;
  width: min(28vw, 260px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 105, 59, 0.28), transparent);
}

.smp-showcase-title-wrap::before { right: calc(100% + 34px); }
.smp-showcase-title-wrap::after { left: calc(100% + 34px); }

.smp-showcase-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a3784a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.smp-showcase-title {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2e2925;
}

.smp-product-grid {
  width: 100%;
  padding-inline: clamp(18px, 3.5vw, 70px);
  display: grid;
  gap: var(--smp-grid-gap);
  align-items: start;
}

.smp-product-grid--responsive {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1740px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.smp-product-card {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.smp-product-showcase:has(.smp-price-dropdown.is-open) {
  z-index: 1000;
}

.smp-product-card:has(.smp-price-dropdown.is-open),
.smp-product-card:has([data-thumb-row-actions]:not([hidden])) {
  z-index: 1001;
}

.smp-product-data {
  display: none !important;
}

.smp-card-shell {
  width: 100%;
  min-width: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--smp-radius-card);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,244,236,0.98));
  border: 1px solid rgba(159, 112, 62, 0.13);
  box-shadow: var(--smp-shadow), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform var(--smp-ease), box-shadow var(--smp-ease), border-color var(--smp-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.smp-product-card:hover .smp-card-shell {
  transform: translateY(-5px);
  border-color: rgba(123, 85, 46, 0.26);
  box-shadow: var(--smp-shadow-hover), inset 0 1px 0 rgba(255,255,255,0.9);
}

.smp-card-main { min-width: 0; }

.smp-main-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.32), transparent 28%),
    linear-gradient(180deg, var(--smp-stage) 0%, var(--smp-stage-2) 100%);
  border: 1px solid rgba(121, 83, 44, 0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.36), 0 8px 18px rgba(64, 42, 24, 0.06);
}

.smp-main-stage-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smp-main-ring-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0) scale(1.01);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.36s ease;
  will-change: opacity, transform;
}

.smp-product-card:hover .smp-main-ring-image {
  transform: translateZ(0) scale(1.045);
}

.smp-main-ring-image.is-switching {
  opacity: 0;
  transform: translateZ(0) scale(0.98);
}

.smp-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  max-width: calc(100% - 88px);
  padding: 7px 11px;
  border-radius: 7px;
  border: 1px solid rgba(140, 103, 58, 0.16);
  background: rgba(255, 250, 244, 0.93);
  color: var(--smp-gold-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(59, 39, 20, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.smp-card-badge--overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 8;
  pointer-events: none;
}

.smp-brand-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 8;
  width: 43px;
  height: 43px;
  padding: 4px;
  border-radius: 7px;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(113, 76, 39, 0.16);
  box-shadow: 0 8px 18px rgba(59, 39, 20, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.smp-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.smp-visual-nav {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(118, 77, 37, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  color: var(--smp-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(52, 36, 20, 0.11);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--smp-ease), visibility var(--smp-ease), transform var(--smp-ease), box-shadow var(--smp-ease), background var(--smp-ease);
}

.smp-product-card:hover .smp-visual-nav,
.smp-product-card:focus-within .smp-visual-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.smp-visual-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
  box-shadow: 0 16px 28px rgba(52, 36, 20, 0.16);
}

.smp-visual-prev { left: 13px; }
.smp-visual-next { right: 13px; }
.smp-visual-nav i { font-size: 15px; }

.smp-main-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: linear-gradient(180deg, #241913 0%, #3e2a1e 100%);
}

.smp-main-video-wrap[hidden] {
  display: none !important;
}

.smp-main-review-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.smp-video-big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 999px;
  background: rgba(70, 49, 34, 0.62);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 18px 32px rgba(0,0,0,0.16);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform var(--smp-ease), background var(--smp-ease);
}

.smp-video-big-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(46, 33, 24, 0.72);
}

.smp-video-big-play.is-playing {
  opacity: 0;
  pointer-events: none;
}

.smp-main-video-wrap:hover .smp-video-big-play.is-playing {
  opacity: 1;
  pointer-events: auto;
}

.smp-video-control-bar {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 8;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.smp-video-control-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(77, 54, 37, 0.62);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--smp-ease), background var(--smp-ease);
}

.smp-video-control-btn:hover {
  transform: translateY(-2px);
  background: rgba(55, 39, 27, 0.74);
}

.smp-thumb-row {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.smp-thumb-row-actions[hidden],
.smp-thumb-row-product[hidden] {
  display: none !important;
}

.smp-thumb-item {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(154, 112, 67, 0.13);
  background: linear-gradient(180deg, #f5ecdf 0%, #e8d8c6 100%);
  color: var(--smp-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 7px 15px rgba(51, 35, 19, 0.05), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform var(--smp-ease), border-color var(--smp-ease), box-shadow var(--smp-ease), background var(--smp-ease), color var(--smp-ease);
}

.smp-thumb-item:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 62, 30, 0.28);
  box-shadow: 0 12px 22px rgba(51, 35, 19, 0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}

.smp-thumb-item-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smp-thumb-item-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  transform: translateZ(0) scale(1.02);
  transform-origin: center;
}

.smp-media-thumb.is-active,
.smp-thumb-item-video.is-active-video {
  border-color: var(--smp-dark-line);
  box-shadow: 0 0 0 2px rgba(64, 50, 38, 0.12), 0 14px 22px rgba(51,35,19,0.11);
}

.smp-thumb-item-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,25,18,0.02), rgba(38,25,18,0.22));
}

.smp-video-thumb-image {
  object-fit: cover !important;
}

.smp-thumb-video-icon {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--smp-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.smp-thumb-item-whatsapp,
.smp-thumb-item-wishlist,
.smp-thumb-item-cart,
.smp-thumb-item-youtube,
.smp-thumb-item-view,
.smp-thumb-item-related {
  font-size: 24px;
  background: linear-gradient(180deg, #f3e7d8 0%, #e4d1ba 100%);
}

.smp-thumb-item-whatsapp { font-size: 28px; }
.smp-thumb-item-whatsapp i { color: #876232; }
.smp-thumb-item-youtube i { color: #906232; }

.smp-thumb-item-related i {
  transform: scaleX(-1) rotate(-180deg);
}

.smp-thumb-item-wishlist.is-saved,
.smp-thumb-item-cart.is-added {
  color: #fff;
  background: linear-gradient(180deg, #9b713f, #6f4d2a);
}

.smp-card-footer {
  position: relative;
  z-index: 12;
}

.smp-card-footer-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: 10px;
  align-items: stretch;
}

.smp-footer-code-box,
.smp-footer-menu-btn,
.smp-price-toggle {
  height: 62px;
  border-radius: 10px;
}

.smp-footer-code-box {
  width: 72px;
  min-width: 72px;
  background: linear-gradient(180deg, #ead9c3 0%, #dec8ad 100%);
  border: 1px solid rgba(142, 96, 49, 0.15);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 7px 14px rgba(52,36,20,0.05);
}

.smp-footer-code-text,
.smp-footer-code-cart {
  grid-area: 1 / 1;
}

.smp-footer-code-text {
  display: block;
  max-width: 100%;
  padding: 0 6px;
  color: var(--smp-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: smpCodeCartCodeLoop 8s infinite ease-in-out;
}

.smp-footer-code-cart {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  background: transparent;
  color: var(--smp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  pointer-events: none;
  animation: smpCodeCartIconLoop 8s infinite ease-in-out;
}

.smp-footer-code-cart:hover {
  color: var(--smp-gold-deep);
}

.smp-footer-code-cart.is-added {
  color: #fff;
  background: linear-gradient(180deg, #9b713f, #6f4d2a);
}

@keyframes smpCodeCartCodeLoop {
  0%, 45% { opacity: 1; transform: translateY(0) scale(1); }
  50%, 95% { opacity: 0; transform: translateY(-8px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes smpCodeCartIconLoop {
  0%, 45% { opacity: 0; transform: translateY(8px) scale(0.92); pointer-events: none; }
  50%, 95% { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  100% { opacity: 0; transform: translateY(8px) scale(0.92); pointer-events: none; }
}

.smp-product-rate[hidden] {
  display: none !important;
}

.smp-footer-price-box,
.smp-price-dropdown {
  position: relative;
  min-width: 0;
  z-index: 16;
}

.smp-price-toggle {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid rgba(142, 96, 49, 0.14);
  background: linear-gradient(180deg, #fbf6ef 0%, #f0e3d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.64), 0 7px 14px rgba(52,36,20,0.05);
  transition: transform var(--smp-ease), box-shadow var(--smp-ease), border-color var(--smp-ease);
}

.smp-price-toggle:hover,
.smp-price-dropdown.is-open .smp-price-toggle {
  transform: translateY(-1px);
  border-color: rgba(123, 85, 46, 0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74), 0 12px 20px rgba(52,36,20,0.08);
}

.smp-price-toggle-text {
  flex: 0 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  color: var(--smp-text);
}

.smp-rs-text {
  color: var(--smp-gold-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.smp-rupee-flag {
  display: inline-block;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 0 rgba(0,0,0,0);
}

.smp-price-toggle-icon {
  flex: 0 0 auto;
  color: var(--smp-gold-deep);
  font-size: 13px;
  transition: transform var(--smp-ease);
}

.smp-price-dropdown.is-open .smp-price-toggle-icon {
  transform: rotate(180deg);
}

.smp-price-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  right: auto;
  z-index: 99999;
  width: calc(100vw - 40px);
  min-width: 100%;
  max-width: 330px;
  padding: 10px;
  border-radius: 13px;
  background: linear-gradient(180deg, #fffbf5 0%, #f2e4d4 100%);
  border: 1px solid rgba(142, 96, 49, 0.18);
  box-shadow: 0 20px 36px rgba(52, 36, 20, 0.16), inset 0 1px 0 rgba(255,255,255,0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity var(--smp-ease), visibility var(--smp-ease), transform var(--smp-ease);
}

.smp-price-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fffbf5;
  border-left: 1px solid rgba(142, 96, 49, 0.18);
  border-top: 1px solid rgba(142, 96, 49, 0.18);
  border-radius: 3px 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}

.smp-price-dropdown.is-open .smp-price-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.smp-price-item {
  width: max-content;
  min-width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(142, 96, 49, 0.11);
  border-radius: 10px;
  background: linear-gradient(180deg, #f2e4d4 0%, #e2ccb4 100%);
  color: var(--smp-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 6px 12px rgba(52,36,20,0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.smp-price-item + .smp-price-item { margin-top: 8px; }
.smp-price-item:hover { transform: translateY(-1px); background: linear-gradient(180deg, #f6e9d8 0%, #e8d3ba 100%); }
.smp-price-item:focus { outline: none; }

.smp-price-item-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #725f4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.smp-price-item-rupee { font-size: 18px; }
.smp-price-item-rate,
.smp-price-item-purity {
  color: var(--smp-text);
  letter-spacing: 0.2px;
}

.smp-price-item-whatsapp {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.86);
  color: #1fa463;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(31, 164, 99, 0.18);
}

.smp-price-item--whatsapp:hover .smp-price-item-whatsapp {
  transform: scale(1.05);
}

.smp-bis-symbol {
  width: 32px;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

.smp-footer-menu-btn {
  width: 72px;
  min-width: 72px;
  border: 1px solid rgba(142, 96, 49, 0.12);
  background: linear-gradient(180deg, #ead8bf 0%, #dcc3a7 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 8px 16px rgba(52,36,20,0.06);
  transition: transform var(--smp-ease), box-shadow var(--smp-ease), background var(--smp-ease);
}

.smp-footer-menu-btn:hover,
.smp-footer-menu-btn[aria-expanded="true"] {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48), 0 12px 22px rgba(52,36,20,0.1);
}

.smp-footer-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.smp-footer-menu-icon span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--smp-gold-deep);
  transition: transform var(--smp-ease), opacity var(--smp-ease), background var(--smp-ease);
}

.smp-footer-menu-btn[aria-expanded="true"] .smp-footer-menu-icon span {
  background: var(--smp-danger);
}

.smp-footer-menu-btn[aria-expanded="true"] .smp-footer-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.smp-footer-menu-btn[aria-expanded="true"] .smp-footer-menu-icon span:nth-child(2) {
  opacity: 0;
}

.smp-footer-menu-btn[aria-expanded="true"] .smp-footer-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rm-toast-wrap {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 5000;
  width: min(420px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.rm-toast {
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(148, 102, 56, 0.16);
  box-shadow: 0 18px 38px rgba(56, 37, 20, 0.16), inset 0 1px 0 rgba(255,255,255,0.78);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translate3d(-22px, 12px, 0) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rm-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.rm-toast__image {
  width: 58px;
  height: 58px;
  border-radius: 9px;
  object-fit: cover;
  background: #f1e5d8;
  border: 1px solid rgba(148, 102, 56, 0.12);
}

.rm-toast__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rm-toast__title {
  color: var(--smp-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rm-toast__message {
  color: var(--smp-muted);
  font-size: 14px;
  line-height: 1.2;
}

.rm-toast__status {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #a87b49, #74502c);
  box-shadow: 0 10px 18px rgba(100, 69, 36, 0.18);
}

.smp-empty-products {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(142, 96, 49, 0.16);
  color: var(--smp-muted);
  text-align: center;
  box-shadow: var(--smp-shadow);
}

.smp-product-showcase,
.smp-product-grid,
.smp-product-card,
.smp-card-shell,
.smp-card-main,
.smp-card-footer,
.smp-footer-price-box,
.smp-price-dropdown {
  overflow: visible !important;
}

.smp-price-dropdown.is-open,
.smp-price-dropdown.is-open .smp-price-menu {
  z-index: 9999;
}

@media (max-width: 1399px) {
  :root { --smp-grid-gap: 22px; }
  .smp-card-shell { padding: 12px; }
  .smp-card-footer-row { grid-template-columns: 66px minmax(0, 1fr) 66px; }
  .smp-footer-code-box,
  .smp-footer-menu-btn { width: 66px; min-width: 66px; }
  .smp-footer-code-box,
  .smp-footer-menu-btn,
  .smp-price-toggle { height: 58px; }
  .smp-footer-code-text { font-size: 16px; }
}

@media (max-width: 767px) {
  .smp-product-showcase { padding: 54px 0 72px; }
  .smp-showcase-head { margin-bottom: 28px; }
  .smp-showcase-title-wrap::before,
  .smp-showcase-title-wrap::after { display: none; }
  .smp-product-grid { padding-inline: 16px; gap: 20px; }
  .smp-card-shell { padding: 12px; border-radius: 14px; }
  .smp-main-stage { border-radius: 11px; }
  .smp-thumb-row { gap: 8px; }
  .smp-thumb-item { border-radius: 7px; }
  .smp-card-footer-row { grid-template-columns: 62px minmax(0, 1fr) 62px; gap: 8px; }
  .smp-footer-code-box,
  .smp-footer-menu-btn { width: 62px; min-width: 62px; }
  .smp-footer-code-box,
  .smp-footer-menu-btn,
  .smp-price-toggle { height: 56px; }
  .smp-visual-nav { width: 36px; height: 36px; }
  .smp-card-badge { font-size: 9px; min-height: 24px; padding: 6px 8px; }
  .smp-brand-mark { width: 38px; height: 38px; }
  .rm-toast-wrap { left: 14px; bottom: 14px; width: calc(100vw - 28px); }
}

@media (max-width: 420px) {
  .smp-product-grid--responsive { grid-template-columns: 1fr; }
  .smp-card-footer-row { grid-template-columns: 58px minmax(0, 1fr) 58px; }
  .smp-footer-code-box,
  .smp-footer-menu-btn { width: 58px; min-width: 58px; }
  .smp-rs-text { font-size: 15px; }
  .smp-rupee-flag { font-size: 18px; }
}

/* =========================================================
   RAJMUDRA PRODUCT SECTION FINAL OVERRIDE
   Keeps approved layout; fixes toast conflicts + counts UI support
========================================================= */

.smp-product-showcase {
  padding-top: clamp(118px, 9vw, 150px) !important;
  padding-bottom: clamp(78px, 7vw, 110px) !important;
}

.smp-product-grid {
  padding-inline: clamp(18px, 3vw, 56px) !important;
  gap: clamp(22px, 2.2vw, 34px) !important;
}

.smp-product-grid--responsive {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

@media (min-width: 620px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 992px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1820px) {
  .smp-product-grid--responsive {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

.smp-card-shell {
  padding: clamp(13px, 1vw, 16px) !important;
  gap: 13px !important;
  border-radius: 13px !important;
}

.smp-main-stage {
  border-radius: 10px !important;
}

.smp-main-ring-image,
.smp-main-review-video {
  object-fit: cover !important;
}

.smp-thumb-row {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(8px, 0.72vw, 11px) !important;
  width: 100% !important;
}

.smp-thumb-item {
  aspect-ratio: 1 / 1 !important;
  min-width: 0 !important;
  border-radius: 7px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.32), transparent 36%),
    linear-gradient(180deg, #f7eee3 0%, #e8d7c2 100%) !important;
  border: 1px solid rgba(151, 102, 52, 0.16) !important;
}

.smp-thumb-item-media {
  inset: 0 !important;
}

.smp-thumb-item-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.smp-media-thumb.is-active,
.smp-thumb-item-video.is-active-video {
  border-color: #241b15 !important;
  box-shadow:
    0 0 0 2px rgba(36, 27, 21, 0.18),
    0 12px 22px rgba(45, 28, 13, 0.14) !important;
}

.smp-thumb-item-video {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.52), transparent 34%),
    linear-gradient(180deg, #f5eadc 0%, #dfc9ae 100%) !important;
}

.smp-thumb-item-video .smp-thumb-item-media {
  display: none !important;
}

.smp-thumb-item-video::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(67, 43, 24, 0.02), rgba(67, 43, 24, 0.10));
  pointer-events: none;
}

.smp-thumb-video-icon {
  position: relative !important;
  z-index: 3 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  background: rgba(255, 252, 247, 0.94) !important;
  color: #7b552e !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  box-shadow: 0 8px 18px rgba(63, 39, 19, 0.16) !important;
}

.smp-thumb-item-whatsapp {
  font-size: clamp(24px, 1.6vw, 29px) !important;
}

.smp-card-footer-row {
  grid-template-columns: 72px minmax(0, 1fr) 72px !important;
  gap: 10px !important;
}

.smp-footer-code-box,
.smp-footer-menu-btn,
.smp-price-toggle {
  height: 62px !important;
  border-radius: 9px !important;
}

.smp-footer-code-box,
.smp-footer-menu-btn {
  width: 72px !important;
  min-width: 72px !important;
}

/* New unique toast classes avoid old cached rm-toast styles */
.rmp-toast-stack {
  position: fixed !important;
  left: 24px !important;
  right: auto !important;
  top: auto !important;
  bottom: 24px !important;
  z-index: 99999 !important;
  width: min(430px, calc(100vw - 48px)) !important;
  display: flex !important;
  flex-direction: column-reverse !important;
  gap: 12px !important;
  pointer-events: none !important;
}

.rmp-toast {
  min-height: 82px !important;
  padding: 12px 14px !important;
  border-radius: 13px !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.72), transparent 36%),
    linear-gradient(180deg, rgba(255,252,247,0.98), rgba(244,233,219,0.98)) !important;
  border: 1px solid rgba(144, 97, 49, 0.18) !important;
  box-shadow:
    0 18px 42px rgba(56, 37, 20, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.86) !important;
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) 44px !important;
  gap: 14px !important;
  align-items: center !important;
  opacity: 0 !important;
  transform: translate3d(-22px, 12px, 0) scale(0.97) !important;
  transition: opacity 0.28s ease, transform 0.28s ease !important;
  pointer-events: auto !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.rmp-toast.is-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.rmp-toast__image {
  width: 58px !important;
  height: 58px !important;
  border-radius: 9px !important;
  object-fit: cover !important;
  background: #f1e5d8 !important;
  border: 1px solid rgba(148, 102, 56, 0.14) !important;
}

.rmp-toast__content {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.rmp-toast__title {
  color: #2f261f !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.25px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.rmp-toast__message {
  color: #765f49 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.rmp-toast__status {
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #a77a46, #74502b) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  box-shadow: 0 10px 18px rgba(103, 69, 35, 0.22) !important;
}

@media (max-width: 767px) {
  .smp-product-showcase {
    padding-top: 104px !important;
  }

  .smp-product-grid {
    padding-inline: 14px !important;
    gap: 18px !important;
  }

  .smp-card-footer-row {
    grid-template-columns: 62px minmax(0, 1fr) 62px !important;
    gap: 8px !important;
  }

  .smp-footer-code-box,
  .smp-footer-menu-btn {
    width: 62px !important;
    min-width: 62px !important;
  }

  .smp-footer-code-box,
  .smp-footer-menu-btn,
  .smp-price-toggle {
    height: 56px !important;
  }

  .rmp-toast-stack {
    left: 14px !important;
    bottom: 14px !important;
    width: calc(100vw - 28px) !important;
  }
}

/* =========================================================
   Product action icon final theme fix
   Keeps wishlist/cart icons visible after saved/added.
========================================================= */
.smp-thumb-item-wishlist,
.smp-thumb-item-cart,
.smp-thumb-item-youtube,
.smp-thumb-item-view,
.smp-thumb-item-related,
.smp-thumb-item-whatsapp {
  color: #7b552e !important;
}

.smp-thumb-item-wishlist i,
.smp-thumb-item-cart i,
.smp-thumb-item-youtube i,
.smp-thumb-item-view i,
.smp-thumb-item-related i,
.smp-thumb-item-whatsapp i {
  color: #7b552e !important;
  opacity: 1 !important;
}

.smp-thumb-item-wishlist.is-saved,
.smp-thumb-item-cart.is-added {
  color: #7b552e !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.38), transparent 36%),
    linear-gradient(180deg, #f7eee3 0%, #e8d7c2 100%) !important;
  border-color: rgba(123, 85, 46, 0.35) !important;
  box-shadow:
    0 0 0 2px rgba(123, 85, 46, 0.13),
    0 11px 20px rgba(51, 35, 19, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.60) !important;
}

.smp-thumb-item-wishlist.is-saved i,
.smp-thumb-item-cart.is-added i {
  color: #7b552e !important;
  opacity: 1 !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.45));
}

.smp-thumb-item-wishlist.is-saved:hover,
.smp-thumb-item-cart.is-added:hover {
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.45), transparent 36%),
    linear-gradient(180deg, #f4e5d3 0%, #dcc2a5 100%) !important;
  border-color: rgba(91, 63, 34, 0.42) !important;
}

/* =========================================================
   METAL-WISE MEDIA UPDATE — DESIGN-SAFE OVERRIDES
   Keeps original card design and forces all product media boxes
   to stay perfectly square.
========================================================= */
.smp-main-stage,
.smp-thumb-item,
.smp-footer-code-box,
.smp-footer-menu-btn {
  aspect-ratio: 1 / 1;
}

.smp-main-ring-image,
.smp-main-review-video,
.smp-thumb-item-media img,
.smp-video-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smp-media-thumb.is-active {
  border-color: var(--smp-dark-line);
  box-shadow: 0 0 0 2px rgba(64, 50, 38, 0.12), 0 14px 22px rgba(51,35,19,0.11);
}

/* Metal-wise video thumbnail: keep the 4th thumbnail square and image-based */
.smp-thumb-item-video .smp-thumb-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smp-thumb-item-video.is-active-video {
  border-color: var(--smp-dark-line);
  box-shadow: 0 0 0 2px rgba(64, 50, 38, 0.12), 0 14px 22px rgba(51,35,19,0.11);
}

/* =========================================================
   Highlighted animated WhatsApp button inside price dropdown
   Text stays only: "Whatsapp"
========================================================= */
.smp-price-item--whatsapp {
  position: relative;
  overflow: hidden;
  border-color: rgba(169, 118, 61, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.98) 0%, rgba(237, 218, 194, 0.98) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(117, 75, 34, 0.10) !important;
}

.smp-price-item--whatsapp::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: rotate(18deg);
  animation: smpWhatsappDropdownShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.smp-price-item--whatsapp:hover,
.smp-price-item--whatsapp:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(123, 85, 46, 0.45) !important;
  background:
    linear-gradient(180deg, #dcb372 0%, #bf8644 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(118, 77, 37, 0.22) !important;
}

.smp-price-item--whatsapp:hover .smp-price-item-purity,
.smp-price-item--whatsapp:hover .smp-price-item-rupee,
.smp-price-item--whatsapp:focus-visible .smp-price-item-purity,
.smp-price-item--whatsapp:focus-visible .smp-price-item-rupee {
  color: #fff !important;
  -webkit-text-fill-color: currentColor;
}

.smp-price-item--whatsapp .smp-price-item-whatsapp {
  width: auto !important;
  min-width: 118px;
  height: 34px !important;
  padding: 0 14px;
  gap: 8px;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #d8ad6a 0%, #bd8240 100%) !important;
  color: #fff !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 16px rgba(112, 72, 32, 0.24),
    0 0 0 3px rgba(216, 173, 106, 0.18) !important;
  transform-origin: center;
  animation: smpWhatsappDropdownPulse 2.25s ease-in-out infinite;
}

.smp-price-item--whatsapp .smp-price-item-whatsapp i,
.smp-price-item--whatsapp .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp .smp-price-item-whatsapp-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.smp-price-item--whatsapp .smp-price-item-whatsapp-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.smp-price-item--whatsapp .smp-price-item-whatsapp-text {
  display: inline-block;
}

.smp-price-item--whatsapp:hover .smp-price-item-whatsapp,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp {
  background: linear-gradient(180deg, #ffffff 0%, #fff5e6 100%) !important;
  color: #9a682d !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(75, 48, 20, 0.20),
    0 0 0 3px rgba(255, 255, 255, 0.22) !important;
  transform: scale(1.035);
}

.smp-price-item--whatsapp:hover .smp-price-item-whatsapp i,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp-text,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp i,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp-text {
  color: #9a682d !important;
  -webkit-text-fill-color: #9a682d;
}

@keyframes smpWhatsappDropdownPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 8px 16px rgba(112, 72, 32, 0.24),
      0 0 0 3px rgba(216, 173, 106, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 12px 22px rgba(112, 72, 32, 0.30),
      0 0 0 6px rgba(216, 173, 106, 0.10);
  }
}

@keyframes smpWhatsappDropdownShine {
  0%, 45% { left: -70%; opacity: 0; }
  55% { opacity: 1; }
  100% { left: 128%; opacity: 0; }
}

@media (max-width: 420px) {
  .smp-price-item--whatsapp .smp-price-item-whatsapp {
    min-width: 104px;
    height: 32px !important;
    padding: 0 11px;
    font-size: 10px !important;
  }

  .smp-price-item-text {
    gap: 6px;
  }
}

/* =========================================================
   FINAL FIX: same dropdown row look + same hover for all rows
   Silver, Whatsapp rows, and Alloys now share the same card style.
========================================================= */
.smp-price-menu {
  overflow: visible !important;
}

.smp-price-item,
.smp-price-item--whatsapp {
  width: 100% !important;
  min-width: 100% !important;
  min-height: 54px !important;
  padding: 10px 13px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(169, 118, 61, 0.34) !important;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98) 0%, rgba(237, 218, 194, 0.98) 100%) !important;
  color: var(--smp-text) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(117, 75, 34, 0.10) !important;
  transform: translateY(0) !important;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease !important;
}

.smp-price-item:hover,
.smp-price-item:focus-visible,
.smp-price-item--whatsapp:hover,
.smp-price-item--whatsapp:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(123, 85, 46, 0.45) !important;
  background: linear-gradient(180deg, #dcb372 0%, #bf8644 100%) !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(118, 77, 37, 0.22) !important;
}

.smp-price-item:focus-visible,
.smp-price-item--whatsapp:focus-visible {
  outline: none !important;
}

.smp-price-item-text {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  color: var(--smp-text) !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.smp-price-item:hover .smp-price-item-text,
.smp-price-item:focus-visible .smp-price-item-text,
.smp-price-item:hover .smp-price-item-rate,
.smp-price-item:hover .smp-price-item-purity,
.smp-price-item:hover .smp-price-item-rupee,
.smp-price-item:focus-visible .smp-price-item-rate,
.smp-price-item:focus-visible .smp-price-item-purity,
.smp-price-item:focus-visible .smp-price-item-rupee {
  color: #fff !important;
  -webkit-text-fill-color: currentColor !important;
}

.smp-price-item-rate,
.smp-price-item-purity {
  color: var(--smp-text) !important;
  font-weight: 900 !important;
  letter-spacing: 0.15px !important;
}

.smp-price-item-rupee {
  flex: 0 0 auto !important;
  font-size: 18px !important;
}

.smp-bis-symbol {
  flex: 0 0 auto !important;
  width: 31px !important;
  height: auto !important;
  object-fit: contain !important;
}

.smp-price-item--whatsapp::before {
  display: none !important;
}

.smp-price-item .smp-price-item-whatsapp,
.smp-price-item--whatsapp .smp-price-item-whatsapp {
  width: auto !important;
  min-width: 130px !important;
  height: 34px !important;
  padding: 0 15px !important;
  gap: 8px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #d8ad6a 0%, #bd8240 100%) !important;
  color: #fff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.9px !important;
  text-transform: uppercase !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 16px rgba(112, 72, 32, 0.24),
    0 0 0 3px rgba(216, 173, 106, 0.18) !important;
  transform-origin: center !important;
  animation: smpWhatsappDropdownPulseSame 2.25s ease-in-out infinite !important;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease !important;
}

.smp-price-item .smp-price-item-whatsapp i,
.smp-price-item .smp-price-item-whatsapp-icon,
.smp-price-item .smp-price-item-whatsapp-text,
.smp-price-item--whatsapp .smp-price-item-whatsapp i,
.smp-price-item--whatsapp .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp .smp-price-item-whatsapp-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.smp-price-item .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp .smp-price-item-whatsapp-icon {
  width: 17px !important;
  height: 17px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.smp-price-item:hover .smp-price-item-whatsapp,
.smp-price-item:focus-visible .smp-price-item-whatsapp,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp {
  background: linear-gradient(180deg, #ffffff 0%, #fff5e6 100%) !important;
  color: #9a682d !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(75, 48, 20, 0.20),
    0 0 0 3px rgba(255, 255, 255, 0.22) !important;
  transform: scale(1.035) !important;
}

.smp-price-item:hover .smp-price-item-whatsapp i,
.smp-price-item:hover .smp-price-item-whatsapp-icon,
.smp-price-item:hover .smp-price-item-whatsapp-text,
.smp-price-item:focus-visible .smp-price-item-whatsapp i,
.smp-price-item:focus-visible .smp-price-item-whatsapp-icon,
.smp-price-item:focus-visible .smp-price-item-whatsapp-text,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp i,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp:hover .smp-price-item-whatsapp-text,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp i,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp:focus-visible .smp-price-item-whatsapp-text {
  color: #9a682d !important;
  -webkit-text-fill-color: #9a682d !important;
}

@keyframes smpWhatsappDropdownPulseSame {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 8px 16px rgba(112, 72, 32, 0.24),
      0 0 0 3px rgba(216, 173, 106, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 12px 22px rgba(112, 72, 32, 0.30),
      0 0 0 6px rgba(216, 173, 106, 0.10);
  }
}

@media (max-width: 420px) {
  .smp-price-item,
  .smp-price-item--whatsapp {
    min-height: 52px !important;
    padding: 9px 10px !important;
  }

  .smp-price-item-text {
    gap: 7px !important;
    font-size: 12px !important;
  }

  .smp-price-item .smp-price-item-whatsapp,
  .smp-price-item--whatsapp .smp-price-item-whatsapp {
    min-width: 112px !important;
    height: 32px !important;
    padding: 0 11px !important;
    font-size: 10px !important;
  }

  .smp-bis-symbol {
    width: 28px !important;
  }
}

/* =========================================================
   SIMILAR PRODUCTS FILTER BAR + PAGE COMPATIBILITY
   Kept because product-section.css does not have search/filter UI.
========================================================= */

.smp-filter-bar {
  width: calc(100% - clamp(28px, 5vw, 112px));
  margin: 0 auto 18px;
  padding: clamp(14px, 1.5vw, 22px);
  border-radius: 13px;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(159, 112, 62, 0.13);
  box-shadow: 0 18px 38px rgba(68, 42, 19, 0.07), inset 0 1px 0 rgba(255,255,255,0.78);
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(170px, 0.8fr) minmax(160px, 0.8fr);
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.smp-search-wrap {
  position: relative;
  min-width: 0;
}

.smp-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--smp-gold-deep);
  font-size: 14px;
  pointer-events: none;
}

.smp-search-input,
.smp-filter-select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(142, 96, 49, 0.15);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffbf5 0%, #f3e7d8 100%);
  color: var(--smp-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 7px 14px rgba(52,36,20,0.04);
  transition: border-color var(--smp-ease), box-shadow var(--smp-ease), transform var(--smp-ease);
}

.smp-search-input {
  padding: 0 16px 0 46px;
}

.smp-filter-select {
  padding: 0 38px 0 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--smp-gold-deep) 50%),
    linear-gradient(135deg, var(--smp-gold-deep) 50%, transparent 50%),
    linear-gradient(180deg, #fffbf5 0%, #f3e7d8 100%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.smp-search-input::placeholder { color: #8c7a68; }
.smp-search-input:focus,
.smp-filter-select:focus {
  border-color: rgba(123, 85, 46, 0.32);
  box-shadow: 0 0 0 4px rgba(169, 118, 61, 0.09), inset 0 1px 0 rgba(255,255,255,0.8);
}

.smp-result-row {
  width: calc(100% - clamp(28px, 5vw, 112px));
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--smp-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.smp-result-row strong { color: var(--smp-gold-deep); }

.smp-reset-filter-btn,
.smp-load-more-btn {
  border: 1px solid rgba(142, 96, 49, 0.16);
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #f6eadb 0%, #dfc6aa 100%);
  color: var(--smp-gold-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 9px 18px rgba(52,36,20,0.06);
  transition: transform var(--smp-ease), box-shadow var(--smp-ease), border-color var(--smp-ease);
}

.smp-reset-filter-btn:hover,
.smp-load-more-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 85, 46, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 13px 23px rgba(52,36,20,0.10);
}

.smp-empty-state {
  width: calc(100% - clamp(28px, 5vw, 112px));
  margin: 0 auto 24px;
  padding: 24px;
  border-radius: 13px;
  background: rgba(255, 252, 247, 0.94);
  border: 1px dashed rgba(142, 96, 49, 0.28);
  color: var(--smp-muted);
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.smp-empty-state[hidden] { display: none !important; }

.smp-product-card.is-hidden-by-page,
.smp-product-card.is-hidden-by-filter {
  display: none !important;
}

.smp-showcase-copy {
  width: min(680px, 100%);
  margin: 16px auto 0;
  color: var(--smp-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.smp-showcase-head {
  width: min(960px, calc(100% - 30px));
  margin-left: auto !important;
  margin-right: auto !important;
}

.smp-filter-bar {
  grid-template-columns: minmax(240px, 1.4fr) minmax(170px, 0.8fr) minmax(160px, 0.8fr) !important;
}

.smp-filter-bar .smp-search-wrap,
.smp-filter-bar .smp-filter-select {
  min-width: 0;
}

.smp-empty-state[hidden],
.smp-load-more-wrap[hidden] {
  display: none !important;
}

.smp-load-more-wrap {
  width: 100%;
  padding: 36px 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1180px) {
  .smp-filter-bar {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}

@media (max-width: 767px) {
  .smp-filter-bar {
    width: calc(100% - 32px) !important;
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }

  .smp-result-row {
    width: calc(100% - 32px) !important;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}


/* Toast aliases used by similar-products.js */
.rmp-toast-stack {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 5000;
  width: min(420px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.rmp-toast {
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(148, 102, 56, 0.16);
  box-shadow: 0 18px 38px rgba(56, 37, 20, 0.16), inset 0 1px 0 rgba(255,255,255,0.78);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translate3d(-22px, 12px, 0) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rmp-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.rmp-toast__image {
  width: 58px;
  height: 58px;
  border-radius: 9px;
  object-fit: cover;
  background: #f1e5d8;
  border: 1px solid rgba(148, 102, 56, 0.12);
}

.rmp-toast__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rmp-toast__title {
  color: var(--smp-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rmp-toast__message {
  color: var(--smp-muted);
  font-size: 14px;
  line-height: 1.2;
}

.rmp-toast__status {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #a87b49, #74502c);
  box-shadow: 0 10px 18px rgba(100, 69, 36, 0.18);
}

@media (max-width: 767px) {
  .rmp-toast-stack {
    left: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }
}

/* Updated cart button states for similar-products add-to-cart behavior */
.smp-footer-code-cart:disabled,
.smp-thumb-item-cart:disabled,
.smp-thumb-item-wishlist:disabled {
  cursor: wait;
  opacity: 0.72;
}

.smp-footer-code-box.smp-footer-box-square {
  text-decoration: none;
}

/* Similar Products coin support final fixes */
.smp-price-item--coin .smp-price-item-purity {
  color: var(--smp-text);
}

.smp-price-item-whatsapp {
  color: var(--smp-gold-deep) !important;
  box-shadow: inset 0 0 0 1px rgba(135, 98, 50, 0.20) !important;
}

.smp-thumb-item-whatsapp i,
.smp-footer-code-cart .fa-whatsapp {
  color: #876232 !important;
}

/* ===== Similar page final fixes: compact top space + product-section metal behavior ===== */
.smp-product-showcase {
  padding-top: clamp(26px, 3.2vw, 46px) !important;
  padding-bottom: 58px !important;
}

.smp-showcase-head {
  margin-bottom: 26px !important;
}

.smp-showcase-copy {
  margin: 12px auto 0;
  max-width: 760px;
  color: #796654;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.smp-filter-bar {
  margin-bottom: 22px !important;
}

.smp-result-row {
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}

.smp-active-metal-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 9;
  min-height: 27px;
  padding: 7px 11px;
  border-radius: 7px;
  border: 1px solid rgba(142, 96, 49, 0.24);
  background: rgba(255, 250, 244, 0.96);
  color: var(--smp-gold-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(59, 39, 20, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.smp-active-metal-tag[hidden] { display: none !important; }

.smp-active-metal-tag[data-metal-type="platinum"],
.smp-active-metal-tag[data-metal-type="petimun"],
.smp-active-metal-tag[data-metal-type="pletinum"] {
  border-color: rgba(108, 116, 128, 0.34) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(230,233,234,0.96)) !important;
  color: #5e6670 !important;
}

.smp-active-metal-tag[data-metal-type="silver"] {
  border-color: rgba(133, 143, 154, 0.34) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235,235,231,0.96)) !important;
  color: #71614f !important;
}

.smp-media-thumb[data-metal-type*="gold"] {
  border-color: rgba(169, 118, 61, 0.36);
  background: linear-gradient(180deg, #f7ead1 0%, #d9b674 100%);
}

.smp-media-thumb[data-metal-type="silver"] {
  border-color: rgba(133, 143, 154, 0.38);
  background: linear-gradient(180deg, #f8f8f6 0%, #cfd4d5 100%);
}

.smp-media-thumb[data-metal-type="platinum"],
.smp-media-thumb[data-metal-type="petimun"],
.smp-media-thumb[data-metal-type="pletinum"] {
  border-color: rgba(108, 116, 128, 0.38);
  background: linear-gradient(180deg, #f0f3f4 0%, #b8c0c4 100%);
}

.smp-metal-thumb-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-height: 19px;
  padding: 4px 3px;
  background: linear-gradient(180deg, rgba(248, 236, 220, 0.96) 0%, rgba(221, 196, 164, 0.96) 100%);
  color: var(--smp-gold-deep);
  border-top: 1px solid rgba(142, 96, 49, 0.18);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.smp-media-thumb.is-active,
.smp-thumb-item-video.is-active-video {
  border-color: rgba(169, 118, 61, 0.52) !important;
  box-shadow:
    0 0 0 2px rgba(169, 118, 61, 0.22),
    0 10px 18px rgba(52, 36, 20, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.58) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.36), transparent 36%),
    linear-gradient(180deg, #f7eee3 0%, #e7d2b8 100%) !important;
}

.smp-media-thumb.is-active::before,
.smp-thumb-item-video.is-active-video::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 244, 0.70);
  border-radius: 5px;
  pointer-events: none;
}

.smp-media-thumb.is-active .smp-metal-thumb-label {
  background: linear-gradient(180deg, rgba(255, 246, 232, 0.98) 0%, rgba(213, 181, 139, 0.98) 100%) !important;
  color: #6f4d2a !important;
}

.smp-media-thumb[data-metal-type="platinum"] .smp-metal-thumb-label,
.smp-media-thumb[data-metal-type="petimun"] .smp-metal-thumb-label,
.smp-media-thumb[data-metal-type="pletinum"] .smp-metal-thumb-label {
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.98) 0%, rgba(214, 202, 184, 0.98) 100%) !important;
  color: #6b5a45 !important;
  border-top-color: rgba(130, 108, 78, 0.22) !important;
}

.smp-media-thumb[data-metal-type="silver"] .smp-metal-thumb-label {
  background: linear-gradient(180deg, rgba(249, 246, 239, 0.98) 0%, rgba(219, 209, 194, 0.98) 100%) !important;
  color: #71614f !important;
}

.smp-footer-code-cart.smp-is-whatsapp-action,
.smp-thumb-item-cart.smp-is-whatsapp-action,
.smp-thumb-item-whatsapp,
.smp-thumb-item-whatsapp:hover,
.smp-price-item .smp-price-item-whatsapp,
.smp-price-item--whatsapp .smp-price-item-whatsapp {
  color: var(--smp-gold-deep) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.38), transparent 36%),
    linear-gradient(180deg, #ead8bf 0%, #dcc3a7 100%) !important;
  border-color: rgba(142, 96, 49, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.46), 0 8px 16px rgba(52,36,20,0.06) !important;
}

.smp-footer-code-cart.smp-is-whatsapp-action i,
.smp-thumb-item-cart.smp-is-whatsapp-action i,
.smp-thumb-item-whatsapp i,
.smp-price-item .smp-price-item-whatsapp i,
.smp-price-item--whatsapp .smp-price-item-whatsapp i,
.smp-price-item .smp-price-item-whatsapp-icon,
.smp-price-item--whatsapp .smp-price-item-whatsapp-icon,
.smp-price-item .smp-price-item-whatsapp-text,
.smp-price-item--whatsapp .smp-price-item-whatsapp-text {
  color: var(--smp-gold-deep) !important;
  -webkit-text-fill-color: var(--smp-gold-deep) !important;
}

.smp-footer-code-cart.smp-is-whatsapp-action:hover,
.smp-thumb-item-cart.smp-is-whatsapp-action:hover,
.smp-thumb-item-whatsapp:hover {
  color: var(--smp-gold-deep) !important;
  background: linear-gradient(180deg, #f0dfc8 0%, #dfc4a4 100%) !important;
  transform: translateY(-1px);
}

.smp-price-item-whatsapp {
  min-width: 112px;
  gap: 6px;
  padding: 4px 10px;
}

.smp-price-item-whatsapp-text {
  display: inline-block !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .smp-product-showcase { padding-top: 22px !important; }
  .smp-showcase-title { font-size: clamp(32px, 12vw, 50px); }
  .smp-showcase-head { margin-bottom: 20px !important; }
}

/* Set 16: Similar-products drawer integration hotfix */
.smp-product-card[data-drawer-syncing="1"] .smp-cart-action,
.smp-product-card[data-drawer-syncing="1"] [data-cart-add],
.smp-product-card[data-drawer-syncing="1"] [data-wishlist-add] {
    pointer-events: none;
    opacity: .72;
}

.smp-is-whatsapp-action {
    background: linear-gradient(135deg, #128c7e, #25d366) !important;
    border-color: rgba(37, 211, 102, .45) !important;
    color: #fff !important;
}

.smp-product-card .smp-code-only,
.smp-product-card [data-product-code-display] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: .04em;
}
