:root {
  --primary: #C49A3A;
  --primary-dark: #b08a2e;
  --navy: #002d6b;
  --white: #ffffff;
}


/*
 * Product grid layout
 *
 * Display products in three columns on desktop, two columns on tablet,
 * and a single column on small screens. The gap remains consistent
 * across breakpoints to maintain visual breathing room. Adjusting the
 * breakpoints ensures the cards look balanced on a variety of devices.
 */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.productCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  transition:.25s;
  position:relative;
}
.productCard:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(0,0,0,.12)}

.badge{
  position:absolute;top:12px;left:12px;
  background:var(--red);color:#fff;
  padding:6px 10px;border-radius:999px;
  font-size:12px;font-weight:1000;
  z-index:2; /* ensure badge appears above image */
}

.pImg{background:#fff}
.pImg img{width:100%;height:240px;object-fit:contain;padding:14px}

.pBody{padding:12px;text-align:center}
.pTitle{font-size:18px;font-weight:1000;color:var(--red);margin:8px 0 6px}
.priceBar{
  background:#000;color:#fff;font-weight:1000;
  padding:8px;border-radius:10px;margin:10px 0
}
.pSystems{color:var(--red);font-weight:900;font-size:13px;margin:8px 0 10px}
.specRow{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  font-size:13px;color:#111;margin:8px 0 12px
}
.specBox{border-left:1px solid var(--border)}
.specBox:first-child{border-left:none}
.specBox b{display:block;margin-top:2px}

.pActions{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.iconAction{
  border:1px solid var(--border);
  background:#fff;border-radius:12px;
  padding:8px 10px;cursor:pointer;font-weight:1000
}
.iconAction:hover{border-color:#d1d5db}

.product-main {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 30px;
}

.product-gallery {
  display: flex;
  gap: 12px;
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid #ddd;
  cursor: pointer;
}

.main-image {
  position: relative;
  border: 1px solid #eee;
  padding: 10px;
}

.main-image img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.zoom-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.product-info h1 {
  font-size: 32px;
}

.factory-badge {
  background: #002d6b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin: 20px 0;
}

.feature-icons div {
  background: #002d6b;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.trust-icons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

/* ===== CTA VERTICAL SPACING FIX ===== */

.purchase-box {
  display: flex;
  flex-direction: column;
  gap: 12px;              /* 🔥 controls vertical spacing */
}

.price {
  font-size: 28px;
  font-weight: bold;
}

.qty {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}

.btn-cart {
  background: var(--primary);
  color: #fff;
}

.btn-checkout {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
}

.btn-whatsapp {
  background: green;
  color: #fff;
  padding: 14px;
  width: 100%;
}

/* PRODUCT TITLE & FACTORY CARD */

.product-info h1 {
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 28px;
  margin-bottom: 14px;
}

/* ===============================
   PRODUCT TITLE BAR SIZE FIX
================================ */
.product-info h1 {
  background: #C49A3A;
  color: #fff;
  padding: 14px 22px;     /* reduced */
  font-size: 22px;        /* reduced */
  border-radius: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}


.factory-badge {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
  background: #fff;
}


/* FEATURE CARDS */

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.feature-icons div {
  background: #002d6b;
  color: #fff;
  padding: 16px 10px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
}

.feature-icons div b {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 6px;
}

.feature-icons div span {
  font-size: 16px;
}

/* ===============================
   FEATURE CARDS SIZE FIX
================================ */
.feature-icons {
  gap: 12px;
}

.feature-icons > div {
  padding: 8px 10px;     /* reduced */
  min-width: 80px;       /* smaller */
  border-radius: 14px;
}

.feature-icons b {
  font-size: 13px;        /* label smaller */
}

.feature-icons span {
  font-size: 15px;        /* value smaller */
  margin-top: 4px;
}




/* Product rating */

.rating {
  color: var(--primary);
  font-size: 20px;
  margin: 10px 0 16px;
}


/* TRUST SIGNAL CARDS */

.trust-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.trust-icons div {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #002d6b;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}


/* PRICE BOX WITH MULTI-CURRENCY */

.price-box {
  border: 2px solid var(--primary);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  background: #fff;
}

/* currency tabs CSS */

.currency-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.currency-tabs button {
  all: unset;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  font-weight: 700;
  color: #002d6b;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .25s ease;
}

.currency-tabs button img {
  width: 22px;
  height: auto;
  border-radius: 2px;
}

.currency-tabs button.active {
  background: #C49A3A;
  color: #fff;
}

.currency-tabs button.active img {
  filter: brightness(1.2);
}

.currency-tabs button:hover {
  background: var(--primary);
  color: #fff;
}

.currency-tabs button.active {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}


.currency-tabs span {
  border: 2px solid var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  color: #002d6b;
  background: #fff;
}

.price {
  font-size: 32px;
  font-weight: 800;
}

.price span {
  color: red;
}


/* CTA BUTTON COLORS */

.btn-cart {
  background: var(--primary);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
}

.btn-cart:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: #0a8f08;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}


/* Generic card animation */
.feature-icons div,
.trust-icons div,
.price-box {
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-icons div:hover,
.trust-icons div:hover,
.price-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}


/* Product Image + Gallery Hover Animation */

.product-gallery img {
  transition: transform .4s ease, box-shadow .4s ease;
}

.product-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

/* Active thumbnail */
.thumbs img {
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid transparent;
}

.thumbs img:hover {
  border-color: var(--primary);
}



/* QUANTITY (+ / −) BEAUTIFUL DESIGN + ANIMATION */

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.qty button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .3s;
}

.qty button:hover {
  transform: scale(1.15);
  background: var(--primary-dark);
}

.qty input {
  width: 70px;
  text-align: center;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  padding: 6px;
}



/* Product Checkout Buttun CSS */


.btn-checkout {
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  margin-top: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
}


/* BUTTON ANIMATION (ADD TO CART + CONTACT) */
.btn-cart,
.btn-whatsapp {
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-cart:hover,
.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}


/* Product Page Currency section */

.currency-tabs span {
  cursor: pointer;
  transition: all .3s ease;
}

.currency-tabs span:hover {
  background: var(--primary);
  color: #fff;
}

.currency-tabs span.active {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}


/* 2-COLUMN BUTTON LAYOUT (CSS) */

/* CTA BUTTON GRID */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch; /* KEY FIX */
}

/* Equal height buttons */
.cta-grid button {
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover animation */
.cta-grid button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

/* Mobile: stack vertically */
@media (max-width: 640px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}


/* FORCE SAME BASE FOR CTA BUTTONS */
.cta-grid button {
  height: 58px;                 /* SAME HEIGHT */
  padding: 0;                   /* RESET */
  line-height: 58px;            /* PERFECT VERTICAL CENTER */
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* MOBILE STACK (PERFECT) */

@media (max-width: 640px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FORCE CTA BUTTON ALIGNMENT (FINAL FIX) ===== */

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

/* HARD RESET BUTTONS */
.cta-grid button {
  all: unset;                    /* 🔥 RESETS EVERYTHING */
  height: 60px;
  width: 100%;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ADD TO CART */
.cta-grid .btn-cart {
  background: var(--primary);
  color: #fff;
}

/* CHECKOUT */
.cta-grid .btn-checkout {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
}

/* HOVER EFFECT */
.cta-grid button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,.28);
}

/* MOBILE STACK */
@media (max-width: 640px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}


/* PRODUCT TRUST & SHARE SECTION */

.product-trust-share{
  margin-top:40px;
  padding:24px;
  border:1px solid #2a5bd7;
  border-radius:18px;
  background:#fff;
}

.trust-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.trust-box h3{
  color:#C49A3A;
  font-weight:700;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:8px;
}

.logo-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.logo-row img{
  height:34px;
  padding:6px 10px;
  border:1px solid #ddd;
  border-radius:10px;
  background:#fff;
  transition:.3s;
}

.logo-row img:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.ssl-badge{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  font-weight:600;
}

.meta-row{
  margin-top:20px;
  padding:14px;
  border:1px solid #2a5bd7;
  border-radius:14px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.meta-row a{
  color:#2a5bd7;
  font-weight:600;
}

.meta-actions button{
  background:none;
  border:none;
  font-weight:600;
  cursor:pointer;
}

.share-row{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:center;
}

.share-row a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
}

.share-row a:hover{
  background:#C49A3A;
  color:#fff;
}

/* Lazy animation */
.lazy-section{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.lazy-section.visible{
  opacity:1;
  transform:none;
}

/* Mobile */
@media(max-width:768px){
  .trust-row{
    grid-template-columns:1fr;
  }
}


/* Lazy animation */
.lazy-section{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.lazy-section.visible{
  opacity:1;
  transform:none;
}

/* Mobile */
@media(max-width:768px){
  .trust-row{
    grid-template-columns:1fr;
  }
}


/* Lazy section base */
.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Activated */
.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ===============================
   TRUST & PAYMENT IMAGE SIZING
================================ */

/* Shipping logos */
.product-trust-share .logo-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Payment method logos */
.product-trust-share .logo-row.payment img {
  height: 34px;
}

/* Secure payment illustration (card + lock image) */
.product-trust-share .secure-illustration img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
}

/* SSL badge image */
.product-trust-share .ssl-badge img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Optional: tighten spacing */
.product-trust-share .ssl-badge {
  margin-top: 12px;
}


/* Fix ONLY the big Secure Payment illustration */
/* .product-trust-share .trust-box:nth-child(2) > img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
} */


/* Main trust row layout */
.product-trust-share .trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}


.ssl-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ssl-header img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.ssl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ssl-title {
  font-size: 18px;
  font-weight: 700;
  color: #C49A3A; /* your primary color */
}

.ssl-sub {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}


@media (max-width: 768px) {

  .cta-grid {
    grid-template-columns: 1fr;   /* stack buttons */
  }

  .btn-cart,
  .btn-checkout,
  .btn-whatsapp {
    width: 100%;
    height: 46px;
    font-size: 14px;
  }

  .qty {
    justify-content: center;
  }

  .qty button {
    width: 34px;
    height: 34px;
  }

  .qty input {
    width: 56px;
    height: 34px;
  }
}


/* ===============================
   MOBILE FIX – SHIPPING & PAYMENT LOGOS
   (ADD ONLY – NOTHING REMOVED)
================================ */

@media (max-width: 768px) {

  /* Shipping logos */
  .product-trust-share .logo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .product-trust-share .logo-row img {
    height: 28px;          /* smaller */
    padding: 6px;
    max-width: 100%;
  }

  /* Payment logos */
  .product-trust-share .logo-row.payment {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Secure payment section spacing */
  .product-trust-share {
    padding: 16px;
  }

  /* Prevent giant vertical gaps */
  .trust-row {
    gap: 20px;
  }
}


/* ===============================
   MOBILE PRODUCT LAYOUT FIX
================================ */
@media (max-width: 768px) {

  .product-main {
    grid-template-columns: 1fr;   /* SINGLE COLUMN */
    gap: 20px;
  }

  .product-gallery {
    flex-direction: row;
    justify-content: center;
  }

  .thumbs {
    flex-direction: row;
    justify-content: center;
  }

  .thumbs img {
    width: 56px;
    height: 56px;
  }

  .main-image img {
    height: 260px;
  }
}


/* ===============================
   MOBILE CURRENCY FIX
================================ */
@media (max-width: 768px) {

  .currency-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .currency-tabs button {
    padding: 6px 12px;
    font-size: 13px;
  }

  .currency-tabs button img {
    width: 18px;
  }

  .price {
    font-size: 24px;
  }
}


/* ===============================
   MOBILE CTA BUTTON SIZE FIX
================================ */
@media (max-width: 768px) {

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-grid button {
    height: 44px;
    font-size: 14px;
    border-radius: 14px;
  }

  .btn-whatsapp {
    height: 44px;
    font-size: 14px;
    padding: 0;
  }

  .qty {
    justify-content: center;
  }
}


/* ===============================
   MOBILE TRUST SECTION FIX
================================ */
@media (max-width: 768px) {

  .product-trust-share {
    padding: 16px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
  }

  .logo-row img {
    height: 26px;
  }

  .share-row {
    gap: 8px;
  }

  .share-row a {
    width: 32px;
    height: 32px;
  }
}


/* =========================================
   🔥 TRUE MOBILE OPTIMIZATION (SAFE OVERRIDES)
========================================= */
@media (max-width: 768px) {

  /* ===== PRODUCT LAYOUT ===== */
  .product-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* ===== PRODUCT IMAGES ===== */
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .thumbs {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    order: 2;
  }

  .thumbs img {
    width: 54px;
    height: 54px;
  }

  .main-image img {
    height: 260px;
  }

  /* ===== TITLE & DESCRIPTION ===== */
  .product-info h1 {
    font-size: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
  }

  .factory-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  .short-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== FEATURE CARDS ===== */
  .feature-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
  }

  .feature-icons > div {
    padding: 8px;
    border-radius: 12px;
  }

  .feature-icons b {
    font-size: 12px;
  }

  .feature-icons span {
    font-size: 14px;
  }

  /* ===== SYSTEM / DETECT TEXT ===== */
  .info-block {
    font-size: 14px;
    line-height: 1.4;
  }

  /* ===== TRUST CARDS ===== */
  .trust-icons {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-icons div {
    padding: 12px;
    font-size: 13px;
    border-radius: 14px;
  }

  /* ===== PRICE + CURRENCY ===== */
  .price-box {
    padding: 14px;
    border-radius: 18px;
  }

  .currency-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .currency-tabs button {
    padding: 6px 12px;
    font-size: 13px;
  }

  .currency-tabs button img {
    width: 18px;
  }

  .price {
    font-size: 22px;
  }

  /* ===== QUANTITY ===== */
  .qty {
    justify-content: center;
    gap: 6px;
  }

  .qty button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .qty input {
    width: 48px;
    height: 30px;
    font-size: 14px;
  }

  /* ===== CTA BUTTONS ===== */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-grid button {
    height: 44px;
    font-size: 14px;
    border-radius: 14px;
  }

  .btn-whatsapp {
    height: 44px;
    font-size: 14px;
    padding: 0;
  }

  /* ===== TRUST & PAYMENT SECTION ===== */
  .product-trust-share {
    padding: 16px;
    margin-top: 28px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-row img {
    height: 28px;
  }

  .ssl-header img {
    height: 36px;
  }

  .ssl-title {
    font-size: 16px;
  }

  .ssl-sub {
    font-size: 13px;
  }
}



/* =========================================
   ✅ FINAL MOBILE FIX – SHIPPING & PAYMENT
========================================= */
@media (max-width: 768px) {

  /* FULL WIDTH CONTAINER FIX */
  .product-trust-share {
    padding: 16px 12px;
    border-radius: 16px;
    overflow: hidden;
  }

  /* FORCE STACK (NO SIDE-BY-SIDE) */
  .product-trust-share .trust-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* SECTION HEADERS CENTERED */
  .trust-box h3 {
    justify-content: center;
    text-align: center;
    font-size: 16px;
  }

  /* SHIPPING & PAYMENT LOGOS GRID */
  .logo-row {
    justify-content: center;
    gap: 10px;
  }

  .logo-row img {
    height: 26px;
    padding: 6px;
  }

  /* PAYMENT ICON GRID FIX */
  .logo-row.payment {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
  }

  .logo-row.payment img {
    height: 28px;
  }

  /* SSL BLOCK CENTERING */
  .ssl-header {
    justify-content: center;
    text-align: center;
  }

  .ssl-text {
    align-items: center;
  }

  .ssl-title {
    font-size: 15px;
  }

  .ssl-sub {
    font-size: 13px;
  }

  /* REMOVE SIDE OVERFLOW */
  .product-trust-share * {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* SOCIAL SHARE ICON COLORS */
.share-row a {
  font-size: 16px;
  color: #555;
}

.share-row a:hover {
  color: #fff;
}

.share-row a:nth-child(2):hover { background:#1877f2; } /* Facebook */
.share-row a:nth-child(3):hover { background:#000; }    /* X */
.share-row a:nth-child(4):hover { background:#e60023; } /* Pinterest */
.share-row a:nth-child(5):hover { background:#0a66c2; } /* LinkedIn */
.share-row a:nth-child(6):hover { background:#25d366; } /* WhatsApp */



/* =====================================
   FINAL CTA BUTTON SIZE REDUCTION
   (DESKTOP + MOBILE SAFE)
===================================== */

/* Desktop & Mobile base */
.cta-grid button,
.btn-whatsapp {
  height: 44px;                /* 🔥 smaller height */
  font-size: 14px;             /* 🔥 smaller text */
  font-weight: 700;
  border-radius: 14px;
}

/* Reduce padding visually */
.cta-grid button {
  padding: 0 14px;
}

/* WhatsApp button */
.btn-whatsapp {
  margin-top: 6px;             /* tighter spacing */
}

/* Quantity section spacing */
.qty {
  margin: 10px 0 6px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {

  /* Stack CTA cleanly */
  .cta-grid {
    gap: 10px;
  }

  .cta-grid button,
  .btn-whatsapp {
    height: 40px;              /* 🔥 mobile smaller */
    font-size: 13px;
    border-radius: 12px;
  }

  /* Quantity controls smaller */
  .qty button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .qty input {
    width: 48px;
    height: 30px;
    font-size: 14px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 420px) {

  .cta-grid button,
  .btn-whatsapp {
    height: 38px;
    font-size: 12.5px;
  }
}



/* FORCE product trust section visible */
.product-trust-share {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}





.product-image-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px; /* creates space so badge never overlaps image */
}

.product-image-box img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 15px;

  background: #c49a3a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;

  padding: 6px 14px;
  border-radius: 20px;
  z-index: 10;
}
