

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: clip;
  margin: 0;
  padding: 0;
}



/* ── MAIN LAYOUT: 2-col on desktop ── */
.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
  background: #fff;
  padding: 24px;
}

.product-detail-col {
  min-width: 0;
}

/* ── STICKY PRICE SIDEBAR ── */
.product-price-sidebar {
  position: static;
  margin-top: 45px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sidebar-product-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #5824c9;
  line-height: 1;
}

.sidebar-mrp-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-mrp {
  font-size: 0.9375rem;
  color: #999;
  text-decoration: line-through;
}

.sidebar-discount-badge {
  color: var(--badge-color);
  background: var(--badge-bg);
  border: 1px solid var(--badge-color-33);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}

.sidebar-save-text {
  font-size: 0.8125rem;
  color: #27ae60;
  font-weight: 600;
}

.sidebar-recommendation {
  background: #f8f8ff;
  border: 1px solid #ede8ff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rec-color);
  flex-shrink: 0;
}

.sidebar-rec-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar-rec-label {
  font-size: 0.900rem;
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--rec-color);
}

.sidebar-rec-sub {
  font-size: 0.6875rem;
  color: #888;
}

.sidebar-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFC107;
  color: #3d4152;
  border: none;
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.sidebar-btn-buy:hover {
  background: #fbe57f;
  border-color: #fbe57f;
  color: #3d4152;
}

.sidebar-btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #5824c9;
  border-radius: 10px;
  padding: 13px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: #5824c9;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sidebar-btn-wishlist:hover {
  background: #fbe57f;
  border-color: #fbe57f;
  color: #3d4152;
}

.sidebar-share-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #888;
  font-weight: 500;
  width: 100%;
}

.sidebar-share-label::before,
.sidebar-share-label::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-share-label::before {
  margin-right: 10px;
}

.sidebar-share-label::after {
  margin-left: 10px;
}

.sidebar-share-icons {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

/* ── PRODUCT MAIN (left col): gallery + info stacked ── */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .product-main {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
}

/* ── GALLERY: thumbnails left, main image right ── */
.gallery-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1px;
  align-items: flex-start;
  max-width: 100%;
  overflow: hidden;
}

.gallery-main {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 377px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.gallery-main img {
  max-height: 320px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

.gallery-main img:hover {
  transform: scale(1.05);
}

/* ── PRODUCT INFO (right of gallery) ── */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.title-row h1 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
}

/* ── RATING ROW ── */
.rating-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  width: 100%;
  margin-top: 6px;
}

.rating-score {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
}

.stars {
  display: flex;
  gap: 1px;
  align-items: center;
}

.star {
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
  color: #d1cfc8;
}

.star-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #E8A020;
}

.rating-count {
  font-size: 0.8125rem;
  color: #888;
}

/* ── Store badge in rating row ── */
.store-badge-pill {
  margin-left: auto;
  background: #ffc107;
  color: #333;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 100px;
  border-top-right-radius: 0;
  white-space: nowrap;
}

/* ── PRICE ROW (inside product-info) ── */
.price-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.2;
}
.discount-pct {
  font-size: 2rem;
  font-weight: 300;
  color: #e53935;
}

.current-price {
  font-size: 2rem;
  font-weight: 450;
  color: #111;
}

.rupee {
  
  font-size: 2rem;
  font-weight: 400;
}

.mrp-row {
  width: 100%;
  margin-top: 2px;
  font-size: 0.82rem;
  color: #888;
}

.mrp-label {
  margin-right: 2px;
}

.mrp {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.discount-badge {
  color: var(--badge-color);
  background: var(--badge-bg);
  border: 1px solid var(--badge-color-33);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.discount-orange {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 14px;
  color: currentColor;
  flex-shrink: 0;
}

.discount-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.51 18.61'><polygon points='7.57,7.80 4.94,6.91 5.81,0 1.55,8.54 4.18,9.43 3.36,13.30 0,13.29 4.72,18.61 9.51,13.32 5.69,13.31'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.51 18.61'><polygon points='7.57,7.80 4.94,6.91 5.81,0 1.55,8.54 4.18,9.43 3.36,13.30 0,13.29 4.72,18.61 9.51,13.32 5.69,13.31'/></svg>") no-repeat center / contain;
  background: currentColor;
  transform: rotate(var(--arrow-rotate));
}

.save-text {
  font-size: 1rem;
  color: #27ae60;
  font-weight: 500;
}

/* ── INSIGHTS CARD ── */
.insights-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 16px;
}

.insights-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.insight-item {
  text-align: center;
}

.insight-label {
  font-size: 0.6875rem;
  color: #888;
  margin-bottom: 2px;
}

.insight-value {
  font-size: 1rem;
  font-weight: 700;
}

/* ── EMOJI METER ── */
.recommendation-box {
  border-radius: 12px;
  padding: 14px 16px;
}

.recommendation-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.03em;
}

.emoji-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emoji-faces-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  padding: 0 4px;
}

.emoji-face-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 4px;
}

.emoji-face-item svg {
  width: 28px;
  height: 28px;
  transition: all 0.25s ease;
  opacity: 0.3;
}

.emoji-face-item.active svg {
  width: 42px;
  height: 42px;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

.emoji-face-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s ease;
}

.emoji-face-item.active::after {
  background: var(--rec-color);
}

.emoji-bar-track {
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  background: #eee;
  margin-top: 4px;
}

.emoji-bar-gradient {
  height: 100%;
  background: linear-gradient(to right, #e74c3c 0%, #e67e22 25%, #f1c40f 50%, #8bc34a 75%, #27ae60 100%);
}

.emoji-rec-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rec-color);
  margin-top: 6px;
}

.emoji-rec-sub {
  font-size: 0.6875rem;
  color: #888;
}

/* ── CTA GROUP (inside product-info, hidden on desktop — shown in sidebar) ── */
.cta-group {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.btn-buy {
  flex: 1;
  background: #FFC107;
  color: #3d4152;
  border: none;
  border-radius: 10px;
  padding: 13px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-wishlist {
  flex: 1;
  background: #fff;
  border: 1.5px solid #5824c9;
  border-radius: 10px;
  padding: 13px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: #5824c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-wishlist:hover {
  background: #fbe57f;
  border-color: #fbe57f;
  color: #3d4152;
}

.btn-wishlist.active {
  border-color: #5824c9;
  color: #5824c9;
}

.btn-wishlist:hover .default-text { opacity: 0; }

.btn-wishlist .hover-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-wishlist:hover .hover-text { opacity: 1; }

/* ── SHARE ICONS ── */
.share-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #888;
  text-align: center;
}

.share-title::before,
.share-title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
  margin: 0 10px;
}

.share-icons {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-around;
}

.share-icon i, .share-icon svg {
  font-size: 1.125rem;
}

/* ── PRICE ALERT ── */
.price-alert-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff8ee;
  border: 1px solid #f39c12;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.price-alert-btn.active {
  background: #eaf7f0;
  border-color: #27ae60;
}

.alert-icon { font-size: 1.125rem; }

.alert-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0;
}

.alert-sub {
  font-size: 0.6875rem;
  color: #888;
  margin: 0;
}

/* ── ACCORDION (Description, Specs, etc.) ── */
.info-grid {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}

.accordion-card {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.accordion-card:last-child { border-bottom: none; }

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-header h2 {
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0;
  color: #1a1a1a;
}

.accordion-icon {
  font-size: 1.375rem;
  color: #aaa;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  color: #5824c9;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px !important;
}

.accordion-body.open {
  max-height: 600px;
  padding: 0 20px 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  align-items: flex-start;
}

.check-mark {
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
}

.desc-list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desc-list li {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #444;
}

/* ── SIMILAR PRODUCTS (Swiper) ── */
.ad-res-product-img-new {
  position: relative;
}

.new-img-top {
  height: 190px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.new-img-top img {
  max-height: 155px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

.new-img-top img:hover { transform: scale(1.06); }

.roobae-product-action {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.gridSlider__products:hover .roobae-product-action { opacity: 1; }

.post-grid-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.title-roobae-deal a:hover { color: #5824c9; }

.rb-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cur-price {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #e74c3c;
}

.cur-price small {
  font-size: 0.75rem !important;
  color: #e74c3c !important;
  font-weight: 600;
  text-decoration: none;
}

.off-price {
  font-size: 0.75rem;
  color: rgb(0 0 0);
  text-decoration: none;
}

.off-price .mrpcurrency {
  font-size: 0.625rem !important;
  color: rgb(0 0 0);
  text-decoration: none;
}

.discount-rb span {
  font-size: 0.75rem;
  font-weight: 700;
}

.text-success { color: #27ae60 !important; }

.text-warning {
  color: #f39c12 !important;
  background: rgba(243, 156, 18, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}

.text-danger { color: #e74c3c !important; }

.list-grid-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0px solid #f0f0f0;
  padding-top: 7px;
  margin-top: auto;
}

.ptime a {
  font-size: 0.625rem;
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.store-new-style a {
  font-size: 0.625rem;
  color: #555;
  text-decoration: none;
  font-weight: 600;
}

.swiper { width: 100%; overflow: hidden; }
.swiper-slide { height: auto; width: auto; }

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after { display: none; }

.swiper-button-next svg,
.swiper-button-prev svg { width: 18px; height: 18px; }

.swiper-button-disabled { opacity: 0.3; cursor: not-allowed; }

.swiper-scrollbar {
  background: #e0e0e0;
  height: 3px;
  margin-top: 15px;
}

/* ── COMMENTS ── */
.comments-section {
  background: #fff;
  border-radius: 12px;
  margin-top: 5px;
}

.comment-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #fafafa;
}

.comment-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  outline: none;
  min-width: 0;
}

.comment-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #5824c9;
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child { border-bottom: none; }

.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}

.comment-bodies {
  flex: 1;
  min-width: 0;
}

.comment-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  gap: 8px;
}

.comment-author {
  font-size: 0.8125rem;
  font-weight: 700;
}

.comment-time {
  font-size: 0.75rem;
  color: #aaa;
  white-space: nowrap;
}

.comment-text {
  font-size: 0.8125rem;
  color: #444;
  margin-bottom: 8px;
  word-break: break-word;
}

.comment-actions { display: flex; gap: 16px; }

.comment-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #888;
}

.comment-action-btn.liked {
  color: #5824c9;
  font-weight: 600;
}

/* ── TOASTS ── */
.copy-toast,
.wishlist-toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  background: #5824c9;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(88, 36, 201, 0.35);
}

.copy-toast.show,
.wishlist-toast.show {
  visibility: visible;
  animation: toastBounceIn .5s ease forwards;
}

.wishlist-toast.hide {
  animation: toastBounceOut .3s ease forwards;
}

@keyframes toastBounceIn {
  0%   { opacity: 0; transform: translateX(-50%) translateY(60px) scale(.85); }
  60%  { opacity: 1; transform: translateX(-50%) translateY(-8px) scale(1.03); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes toastBounceOut {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(30px); }
}

/* ── THUMBNAIL CAROUSEL ── */
.thumbnails-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 74px;
  flex-shrink: 1;
}

.thumbnails-viewport {
  overflow: hidden;
  height: 340px;
  width: 100%;
  flex-shrink: 0;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
  will-change: transform;
}

.thumb-btn {
  width: 68px;
  height: 82px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  padding: 2px;
  background: #f8f9ff;
  cursor: pointer;
  overflow: hidden;
}

.thumb-btn.active { border: 2px solid #5824c9; }

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.thumb-nav-btn {
  width: 68px;
  height: 26px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  color: #555;
  padding: 0;
}

.thumb-nav-btn:hover:not(:disabled) {
  background: #f3f0ff;
  border-color: #5824c9;
  color: #5824c9;
}

.thumb-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.thumb-nav-btn.thumb-hidden { visibility: hidden; pointer-events: none; }

/* ── STORE BADGE (similar products) ── */
.store-badge {
  position: absolute;
  z-index: 2;
  background: #ffc107;
  padding: 2px 9px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 100px;
  border-top-right-radius: 0px;
}

.store-badge a {
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #333;
}

.d-flex-li-item { display: block !important; }

.price-verdict {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-top: 6px;
}

.bar-track {
  flex: 1;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #E8A020;
  border-radius: 2px;
}

/* ── METER ── */
.meter-wrapper {
  position: relative;
  width: 96%;
  padding-top: 55px;
  padding-bottom:18px;
}

.cart-icon-wrapper {
  position: absolute;
  top: -3px;
  left: 0%;
  transform: translateX(-50%);
  transition: left 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}

.meter-bar-track {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: #eee;
  overflow: visible;
}

.meter-bar-gradient {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(to right, #e74c3c 0%, #e67e22 25%, #f1c40f 50%, #8bc34a 75%, #27ae60 100%);
}

.meter-indicator {
  position: absolute;
  top: -6px;
  left: 0%;
  transform: translateX(-50%);
  transition: left 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.meter-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #27ae60;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #27ae60, 0 2px 8px rgba(0,0,0,0.15);
}

.visit-store {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 5px;
  margin-top: 5px;
  background-color: #fbe57f;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.visit-store:hover {
  background-color: #6B7280;
  color: #fff;
}

.visit-store .store-link {
  color: inherit;
  text-decoration: none;
}

.tax-info {
  font-size: 12px;
  color: #5633a2;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.more-btn {
  background: none;
  border: none;
  color: #5633a2;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 0;
  margin-top: 5px;
}

.more-btn:hover {
  text-decoration: underline;
}

.breadcrumb {
  --bs-breadcrumb-divider: ">";
}

/* ══════════════════════════════════════════════════════
   SEO KEYWORD SECTIONS — NEW STYLES
══════════════════════════════════════════════════════ */

/* Trust badges row (below title) */
.seo-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}

.seo-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.seo-trust-badge.blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.seo-trust-badge.orange {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}

/* You Save box */
.seo-savings-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 6px 0;
}

.seo-savings-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #15803d;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.seo-savings-detail {
  font-size: 0.8125rem;
  color: #166534;
  margin: 0;
  line-height: 1.5;
}

/* Seller info box */
.seo-seller-box {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 4px 0;
}

.seo-seller-heading {
  font-size: 0.8913rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seo-seller-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.seo-seller-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seo-seller-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.seo-seller-badge.gold {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fde68a;
}

.seo-seller-badge.purple {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #d8b4fe;
}

.seo-seller-badge.green {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #86efac;
}

/* Limited time offer strip */
.seo-limited-offer {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1.5px solid #fb923c;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 8px 0 4px;
}

.seo-limited-heading {
  font-size: 0.8913rem;
  font-weight: 700;
  color: #c2410c;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.seo-offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.seo-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #fdba74;
  color: #9a3412;
}

/* Similar products SEO header */
.seo-similar-header {
  padding: 4px 0 14px;
}

.seo-similar-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-similar-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5824c9;
  background: #f3e8ff;
  padding: 2px 8px;
  border-radius: 6px;
}

.seo-similar-subheading {
  font-size: 0.8125rem;
  color: #666;
  margin: 4px 0 10px;
  line-height: 1.5;
}

.seo-similar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.seo-similar-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.seo-similar-pill.red {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
}

.seo-similar-pill.green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.seo-similar-pill.blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.seo-similar-pill.amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

/* ══════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════ */

@media (max-width: 900px) {
  .product-page-layout {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 0;
  }

  .product-price-sidebar {
    display: none;
  }

  .product-main {
    overflow: hidden;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 901px) {
  .cta-group-inline { display: none; }
  .share-section-inline { display: none; }
  .price-alert-inline { display: none; }
}

@media (max-width: 900px) {
  .cta-group-inline { display: flex; }
  .share-section-inline { display: block; }
  .price-alert-inline { display: flex; }
}

@media (max-width: 780px) {
  .product-main { gap: 12px; overflow: hidden; }

  .gallery-main {
    height: 300px;
  }

  .gallery-main img { max-height: 260px; }
}

@media (max-width: 600px) {
  .product-main { padding: 0; gap: 10px; overflow: hidden; }

  .gallery-main {
    flex: none;
    height: 250px;
    width: 100%;
    border-radius: 8px;
  }

  .gallery-main img { max-height: 210px; }

  .thumb-btn { width: 58px; height: 70px; }

  .title-row h1 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .current-price { font-size: 2rem; }
  .mrp { font-size: 0.875rem; }

  .price-row { gap: 7px; }

  .cta-group {
    flex-direction: column;
    gap: 8px;
  }

  .btn-buy,
  .btn-wishlist {
    flex: none;
    width: 100% !important;
    padding: 12px;
    font-size: 0.875rem;
  }

  .share-icons {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
  }

  .price-alert-btn { padding: 9px 12px; }

  .accordion-header { padding: 14px; }

  .accordion-body.open { padding: 0 14px 14px; }

  .info-grid {
    margin-top: 12px;
    gap: 0;
  }

  .new-img-top { height: 125px; }
  .new-img-top img { max-height: 125px; }

  .gallery-wrapper {
    flex-direction: column;
    overflow: hidden;
    gap: 5px;
  }

  .thumbnails-wrapper {
    flex-direction: row;
    width: 100%;
    height: auto;
    order: 2;
  }

  .thumbnails-viewport {
    width: auto;
    flex: 1;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .thumbnails-viewport::-webkit-scrollbar { display: none; }

  .thumbnails {
    flex-direction: row;
  }

  .thumb-btn { scroll-snap-align: start; width: 60px; height: 72px; }
  .thumb-nav-btn { width: 4px; height: 72px; }

  .container { padding-top: 14px; }

  .boxcomponentArea-Slider-1 { margin-top: 0 !important; }

  .text-center-btn h2 { font-size: 1.125rem !important; }

  .store-badge{
    margin-left:69%;
    margin-top:11px;
  }

  /* SEO mobile tweaks */
  .seo-trust-badges { gap: 6px; }
  .seo-trust-badge { font-size: 0.67rem; padding: 3px 8px; }
  .seo-savings-heading { font-size: 0.9rem; }
  .seo-seller-badges { gap: 5px; font-size: 0.7rem; }
  .seo-seller-badge { font-size: 0.7rem; }
  .seo-offer-pills { gap: 5px; }
  .seo-similar-heading { font-size: 1rem; }
  .end-buy-now {width: 100% !important;
                max-width: 100% !important; }
  h1 {
      font-size: 1.4rem !important;
      margin: 0.44em 0px;
      text-align: justify;
  }
  h2 {

      text-align: justify;
      font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .mt-2 { margin-top: 0rem !important; }
  .share-container { padding: 0px !important; margin: 0.2rem !important; }
  .seo-trust-badge { font-size: 0.65rem; padding: 3px 7px; }
  .seo-seller-badge { font-size: 0.7rem; }
  .end-buy-now {width: 100% !important;
                max-width: 100% !important; }
  h1 {
      font-size: 1.5em !important;
      margin: 0.44em 0px;
      text-align: justify;
  }
  h2 {

      text-align: justify;
  }
}

@media (max-width: 380px) {
  .emoji-face-item.active svg { width: 33px; height: 33px; }
  .title-row h1 { font-size: 0.9375rem; }
  .end-buy-now {width: 100% !important;
                max-width: 100% !important; }

  .current-price { font-size: 2rem; }
  .mrp { font-size: 0.8125rem; }
  .gallery-main { flex: none; height: 220px; }
  .gallery-main img { max-height: 190px; }
  .thumb-btn { width: 50px; height: 60px; }
  .thumb-nav-btn { height: 60px; }
  .insight-label { font-size: 0.625rem; }
  .insight-value { font-size: 0.75rem; }
  .insights-title { font-size: 0.75rem; }
  .btn-buy, .btn-wishlist { font-size: 0.8125rem; padding: 11px; }
  h1 {
      font-size: 1.8em !important;
      margin: 0.44em 0px;
      text-align: justify;
  }
  h2 {

      text-align: justify;
      font-size: 0.9rem !important;
  }
}

@media (max-width: 768px) {
  .profit-sucess {
    margin-left: 0% !important;
    margin-right: 0;
    padding: 0px;
    justify-content: left !important;
  }

}

@media (max-width: 600px) {
  .cart-icon-wrapper img { width: 70px; position: relative; top: -3px;}
  .meter-indicator { top: -4px; }
  .meter-dot { width: 12px; height: 12px; }
  .meter-wrapper { padding-top: 60px; }
  .end-buy-now {width: 100%; }
}

/* ── Wrapper Row ── */
.seo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  margin: 16px 0;
}

/* ── Each box takes equal width ── */
.seo-savings-box,
.seo-seller-box,
.seo-limited-offer {
  flex: 1 1 0;
  min-width: 200px;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 600px) {
  .seo-row {
    flex-direction: column;
  }
}

.seo-deal-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 10px;
}
.seo-timer-label {
  font-size: 0.82rem;
  color: #b45309;
  font-weight: 500;
}
.seo-timer-display {
  font-size: 1.1rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  background: #fef2f2;
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid #fca5a5;
}

.sidebar-share-tagline {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  line-height: 1.4;
}
.product-stats-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.product-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.80rem;
  color: #555;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}

.product-stat i {
  font-size: 0.72rem;
  color: #e47911; /* Amazon-style orange accent */
}

.kw-section-container {
  width: 100%;
  max-width: 1320px;
  margin: 20px auto;
  padding: 20px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
}

.kw-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kw-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.kw-tag {
  display: inline-block;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.8125rem;
  color: #374151;
  background: #fff;
  white-space: normal;
  max-width: 100%;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s;
}

.kw-tag:hover {
  border-color: #5824c9;
  background: #f5f0ff;
  color: #5824c9;
}

.kw-tags-summary {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.kw-tags-summary strong {
  color: #111827;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .kw-section-container {
    margin: 12px 0;
    border-radius: 8px;
    padding: 14px 12px;
  }

  .kw-section-title {
    font-size: 0.9375rem;
    margin-bottom: 12px;
  }

  .kw-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    max-width: 100%;
  }

  .kw-tags-wrapper {
    gap: 6px;
    margin-bottom: 12px;
  }

  .kw-tags-summary {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

@media (max-width: 380px) {
  .kw-tag {
    font-size: 0.6875rem;
    padding: 4px 8px;
    max-width: 100%;
  }
}

.end-buy-now {
  display: block;
  width: 400px;
  margin: 14px auto 0;
  padding: 11px 20px;
  background: #FFC107;
  border: 2px solid #FFC107;
  color: #3d4152;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-sizing: border-box;
}

.end-buy-now:hover {
  background: #fbe57f;
  border-color: #fbe57f;
  color: #3d4152;
}

#page-loader {
  pointer-events: none !important;
  z-index: -1 !important;
}

#page-loader.hidden {
  display: none !important;
  pointer-events: none !important;
}

/* ============================================================
   CUSTOM TOOLTIP (fixes the broken "i" icon hover)
   The original page relied on Bootstrap's JS tooltip plugin via
   data-bs-toggle="tooltip", but Bootstrap's JS was never loaded
   on this page, so $(...).tooltip() silently failed and hover
   never showed anything. This is a lightweight, dependency-free
   CSS+JS tooltip that uses the same title text (moved into a
   data-tooltip attribute by the included JS) so no Bootstrap/jQuery
   plugin is required for it to work.
   ============================================================ */
.rb-tooltip-wrap {
  position: relative;
  display: inline-block;
}

.rb-tooltip-wrap .rb-tooltip-bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  width: 260px;
  max-width: 80vw;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10000;
  white-space: normal;
}

.rb-tooltip-wrap .rb-tooltip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.rb-tooltip-wrap:hover .rb-tooltip-bubble,
.rb-tooltip-wrap:focus-within .rb-tooltip-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .rb-tooltip-wrap .rb-tooltip-bubble {
    width: 220px;
    left: auto;
    right: -10px;
    transform: translateY(4px);
  }
  .rb-tooltip-wrap .rb-tooltip-bubble::after {
    left: auto;
    right: 14px;
    transform: none;
  }
  .rb-tooltip-wrap:hover .rb-tooltip-bubble,
  .rb-tooltip-wrap:focus-within .rb-tooltip-bubble {
    transform: translateY(0);
  }
}

/* ── TOOLTIP FIX: prevent clip inside swiper cards ── */

/* 1. Allow swiper slides to overflow so tooltip isn't clipped */
.myRelatedSwiperSliderProduct .swiper-wrapper {
  overflow: visible;
}

.myRelatedSwiperSliderProduct .swiper-slide {
  overflow: visible;
}

/* 2. Allow the card itself to overflow */
.gridSlider,
.gridSlider__products,
.right-dis-post {
  overflow: visible !important;
}

/* 3. Force tooltip ABOVE everything with fixed stacking */
.rb-tooltip-wrap .rb-tooltip-bubble {
  z-index: 99999;
  position: absolute;
  /* Flip to show ABOVE the icon instead of bleeding sideways */
  bottom: calc(100% + 8px);
  left: auto;
  right: -10px;         /* anchor to the right so it doesn't go off-card */
  transform: translateX(0) translateY(4px);
  width: 240px;
}

/* Arrow points to right side now */
.rb-tooltip-wrap .rb-tooltip-bubble::after {
  left: auto;
  right: 14px;
  transform: none;
}

.rb-tooltip-wrap:hover .rb-tooltip-bubble,
.rb-tooltip-wrap:focus-within .rb-tooltip-bubble {
  transform: translateX(0) translateY(0);
}