/* =============================================
   SOVO Light Modern Theme - Main CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --teal:        #00BDA0;
  --teal-d:      #009982;
  --teal-50:     #E6FAF7;
  --teal-100:    #B3EEE5;
  --teal-800:    #085041;
  --text:        #111827;
  --text-2:      #374151;
  --text-3:      #6B7280;
  --text-4:      #9CA3AF;
  --bg:          #F9FAFB;
  --bg-white:    #FFFFFF;
  --bg-2:        #F3F4F6;
  --bg-3:        #E5E7EB;
  --border:      #E5E7EB;
  --border-2:    #D1D5DB;
  --border-teal: rgba(0,189,160,0.25);
  --r:           10px;
  --r-sm:        6px;
  --r-lg:        16px;
  --r-xl:        24px;
  --fn:          'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: var(--fn); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--fn); }
ul, ol { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-3); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── ANNOUNCEMENT BAR ── */
.sovo-announcement {
  background: var(--teal);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.sovo-announcement__track {
  display: inline-flex;
  gap: 32px;
  animation: sovo-marquee 22s linear infinite;
  width: max-content;
}
.sovo-announcement__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #003D35;
  letter-spacing: 0.2px;
}
.sovo-announcement__dot {
  width: 4px; height: 4px;
  background: #003D35;
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
}
@keyframes sovo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.sovo-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.sovo-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sovo-logo {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  line-height: 1;
}
.sovo-logo:hover { color: var(--teal-d); }

/* Search */
.sovo-search {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  height: 42px;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.sovo-search:focus-within { border-color: var(--teal); background: var(--bg-white); }
.sovo-search__icon { padding: 0 12px; color: var(--text-4); font-size: 16px; }
.sovo-search__input {
  flex: 1; border: none; outline: none;
  background: transparent; font-size: 14px;
  color: var(--text); font-family: var(--fn);
}
.sovo-search__input::placeholder { color: var(--text-4); }
.sovo-search__btn {
  background: var(--teal); border: none;
  color: #fff; padding: 0 18px; height: 42px;
  font-size: 13px; font-weight: 700;
  border-radius: 0 50px 50px 0;
  transition: background 0.15s;
}
.sovo-search__btn:hover { background: var(--teal-d); }

/* Header Icons */
.sovo-header__icons { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.sovo-hicon {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  background: none; border: none;
  color: var(--text-3); font-size: 10px;
  font-family: var(--fn); position: relative;
  padding: 4px 6px; border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.sovo-hicon i { font-size: 22px; }
.sovo-hicon:hover { color: var(--teal); background: var(--teal-50); }
.sovo-cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--teal); color: #fff;
  width: 17px; height: 17px; border-radius: 50%;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-white);
}

/* ── NAVIGATION ── */
.sovo-nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.sovo-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.sovo-nav__inner::-webkit-scrollbar { display: none; }
.sovo-nav__item {
  color: var(--text-3); font-size: 13px; font-weight: 500;
  padding: 11px 16px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  background: none; border-left: none; border-right: none; border-top: none;
}
.sovo-nav__item:hover,
.sovo-nav__item.current-menu-item,
.sovo-nav__item.active { color: var(--teal); border-bottom-color: var(--teal); }

/* ── HERO BANNER ── */
.sovo-hero {
  background: var(--bg-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sovo-hero__accent {
  position: absolute; right: -60px; top: -60px;
  width: 380px; height: 380px;
  background: var(--teal-50);
  border-radius: 50%;
  pointer-events: none;
}
.sovo-hero__inner {
  display: flex; align-items: center;
  gap: 32px; position: relative; z-index: 1;
}
.sovo-hero__text { flex: 1; }
.sovo-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-800);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 16px; letter-spacing: 0.3px;
}
.sovo-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; line-height: 1.08;
  color: var(--text); letter-spacing: -1px;
  margin-bottom: 12px;
}
.sovo-hero__title em { color: var(--teal); font-style: normal; }
.sovo-hero__subtitle { font-size: 15px; color: var(--text-3); line-height: 1.65; margin-bottom: 24px; }
.sovo-hero__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sovo-hero__img {
  width: 220px; height: 220px; flex-shrink: 0;
  background: var(--teal-50);
  border: 2px solid var(--teal-100);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; overflow: hidden;
}
.sovo-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; border: none; border-radius: 50px; font-family: var(--fn); font-weight: 700; font-size: 14px; padding: 11px 22px; transition: all 0.15s; cursor: pointer; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-d); }
.btn-outline { background: transparent; color: var(--text-2); border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { font-size: 12px; padding: 8px 16px; }

/* ── TRUST BADGES ── */
.sovo-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.sovo-trust__item {
  padding: 16px 8px;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px; text-align: center;
  border-right: 1px solid var(--border);
}
.sovo-trust__item:last-child { border-right: none; }
.sovo-trust__item i { font-size: 24px; color: var(--teal); }
.sovo-trust__title { font-size: 11px; font-weight: 700; color: var(--text-2); }
.sovo-trust__sub { font-size: 10px; color: var(--text-4); }

/* ── SECTION HEADER ── */
.sovo-section { padding: 32px 0; }
.sovo-section + .sovo-section { border-top: 8px solid var(--bg); }
.sovo-sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sovo-sec-title {
  font-size: 18px; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.sovo-sec-title::before {
  content: '';
  display: inline-block;
  width: 3px; height: 20px;
  background: var(--teal); border-radius: 2px;
}
.sovo-sec-link {
  color: var(--teal); font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--border-teal);
  padding: 6px 13px; border-radius: 50px;
  transition: background 0.15s;
}
.sovo-sec-link:hover { background: var(--teal-50); }

/* ── CATEGORY SCROLL ── */
.sovo-categories { display: flex; overflow-x: auto; scrollbar-width: none; gap: 12px; padding-bottom: 4px; }
.sovo-categories::-webkit-scrollbar { display: none; }
.sovo-cat {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  cursor: pointer; flex-shrink: 0;
  text-decoration: none;
}
.sovo-cat__icon {
  width: 72px; height: 72px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.sovo-cat:hover .sovo-cat__icon {
  border-color: var(--teal);
  background: var(--teal-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sovo-cat__label { font-size: 11px; color: var(--text-3); font-weight: 500; text-align: center; white-space: nowrap; }

/* ── PRODUCT GRID ── */
.sovo-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.sovo-product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.sovo-product-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.sovo-product-card__img {
  background: var(--bg-2);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.sovo-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.sovo-product-card:hover .sovo-product-card__img img { transform: scale(1.04); }
.sovo-badge { position: absolute; top: 10px; left: 10px; font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.sovo-badge--sale { background: var(--teal); color: #fff; }
.sovo-badge--new { background: #FF6B35; color: #fff; }
.sovo-badge--hot { background: #EF4444; color: #fff; }
.sovo-wishlist-btn {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-4);
  transition: color 0.15s, border-color 0.15s;
}
.sovo-wishlist-btn:hover { color: #EF4444; border-color: #FCA5A5; }
.sovo-product-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.sovo-product-card__sku { font-size: 9.5px; color: var(--text-4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.sovo-product-card__name { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 8px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sovo-spec-chips { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.sovo-spec-chip { background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-800); font-size: 9.5px; font-weight: 600; padding: 2px 7px; border-radius: 3px; }
.sovo-product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.sovo-stars { color: #F59E0B; font-size: 12px; }
.sovo-review-count { font-size: 10.5px; color: var(--text-4); }
.sovo-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.sovo-price__current { font-size: 16px; font-weight: 800; color: var(--teal); }
.sovo-price__old { font-size: 12px; color: var(--text-4); text-decoration: line-through; }
.sovo-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.sovo-stock-badge { font-size: 10px; color: #059669; font-weight: 600; background: #D1FAE5; padding: 3px 8px; border-radius: 4px; }
.sovo-atc-btn { background: var(--teal); color: #fff; border: none; font-size: 11px; font-weight: 700; padding: 7px 12px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 4px; transition: background 0.15s; }
.sovo-atc-btn:hover { background: var(--teal-d); }

/* ── PROMO BANNER ── */
.sovo-promo {
  background: var(--text);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  position: relative; overflow: hidden;
  margin: 32px 0;
}
.sovo-promo__ring { position: absolute; left: -50px; top: -50px; width: 200px; height: 200px; border: 50px solid rgba(0,189,160,0.1); border-radius: 50%; }
.sovo-promo__ring2 { position: absolute; right: -30px; bottom: -30px; width: 140px; height: 140px; border: 35px solid rgba(0,189,160,0.07); border-radius: 50%; }
.sovo-promo__eyebrow { font-size: 10px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
.sovo-promo__title { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 5px; }
.sovo-promo__sub { font-size: 13px; color: rgba(255,255,255,0.45); }
.sovo-promo__btn { background: var(--teal); color: #fff; border: none; padding: 12px 22px; border-radius: 50px; font-size: 13px; font-weight: 800; white-space: nowrap; flex-shrink: 0; font-family: var(--fn); z-index: 1; transition: background 0.15s; }
.sovo-promo__btn:hover { background: var(--teal-d); }

/* ── REVIEWS ── */
.sovo-reviews { display: flex; overflow-x: auto; scrollbar-width: none; gap: 14px; padding-bottom: 4px; }
.sovo-reviews::-webkit-scrollbar { display: none; }
.sovo-review-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 16px; min-width: 210px; max-width: 240px; flex-shrink: 0; }
.sovo-review-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sovo-review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-50); border: 1.5px solid var(--teal-100); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--teal-800); flex-shrink: 0; }
.sovo-review-name { font-size: 12.5px; font-weight: 700; color: var(--text); }
.sovo-review-date { font-size: 10px; color: var(--text-4); }
.sovo-review-stars { color: #F59E0B; font-size: 13px; margin-bottom: 6px; }
.sovo-review-body { font-size: 12px; color: var(--text-3); line-height: 1.6; }
.sovo-review-product { font-size: 10.5px; color: var(--teal); margin-top: 8px; font-weight: 600; }

.sovo-review-images { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.sovo-review-images a { display: block; width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-2); }
.sovo-review-images img, .sovo-review-card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.sovo-review-card-images { display: flex; gap: 7px; margin-top: 10px; }
.sovo-review-card-images a { display: block; width: 54px; height: 54px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-2); flex-shrink: 0; }


/* ── NEWSLETTER ── */
.sovo-newsletter { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 24px; text-align: center; }
.sovo-newsletter__title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sovo-newsletter__sub { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.sovo-newsletter__form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.sovo-newsletter__input { flex: 1; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 50px; padding: 11px 16px; font-size: 13px; color: var(--text); outline: none; font-family: var(--fn); transition: border-color 0.15s; }
.sovo-newsletter__input:focus { border-color: var(--teal); }
.sovo-newsletter__input::placeholder { color: var(--text-4); }
.sovo-newsletter__btn { background: var(--teal); color: #fff; border: none; padding: 11px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; font-family: var(--fn); white-space: nowrap; transition: background 0.15s; }
.sovo-newsletter__btn:hover { background: var(--teal-d); }

/* ── BRANDS ROW ── */
.sovo-brands { display: flex; overflow-x: auto; scrollbar-width: none; gap: 10px; padding-bottom: 4px; }
.sovo-brands::-webkit-scrollbar { display: none; }
.sovo-brand-chip { border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--text-3); background: var(--bg-white); white-space: nowrap; transition: all 0.15s; }
.sovo-brand-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-50); }

/* ── FOOTER ── */
.sovo-footer { background: #111827; padding: 40px 0 20px; margin-top: 40px; }
.sovo-footer__logo { font-size: 22px; font-weight: 900; font-style: italic; color: var(--teal); margin-bottom: 6px; display: inline-block; }
.sovo-footer__tagline { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 28px; }
.sovo-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 24px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; }
.sovo-footer__heading { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.sovo-footer__link { display: block; font-size: 12.5px; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color 0.15s; }
.sovo-footer__link:hover { color: var(--teal); }
.sovo-footer__contact { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.sovo-footer__contact i { font-size: 14px; color: var(--teal); flex-shrink: 0; }
.sovo-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.sovo-footer__copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.sovo-socials { display: flex; gap: 8px; }
.sovo-social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.35); transition: all 0.15s; }
.sovo-social-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ── MOBILE BOTTOM NAV ── */
.sovo-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-white); border-top: 1px solid var(--border); z-index: 300; padding: 8px 0 max(10px, env(safe-area-inset-bottom)); }
.sovo-bottom-nav__inner { display: grid; grid-template-columns: repeat(5,1fr); }
.sovo-bn-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10px; color: var(--text-4); background: none; border: none; font-family: var(--fn); padding: 4px 0; }
.sovo-bn-item i { font-size: 22px; }
.sovo-bn-item.active { color: var(--teal); }

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce-message, .woocommerce-info { border-top-color: var(--teal) !important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--teal) !important; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--teal) !important; color: #fff !important; border-radius: 50px !important; font-weight: 700 !important; transition: background 0.15s !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--teal-d) !important; }
.woocommerce .star-rating span::before { color: #F59E0B !important; }
.woocommerce ul.products li.product .price { color: var(--teal) !important; font-weight: 800 !important; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { background: var(--teal) !important; border-radius: 50px !important; }
#add-to-cart-btn, .single_add_to_cart_button { background: var(--teal) !important; border-color: var(--teal) !important; border-radius: 50px !important; color: #fff !important; font-weight: 700 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .sovo-bottom-nav { display: block; }
  body { padding-bottom: 72px; }
  .sovo-trust { grid-template-columns: repeat(2,1fr); }
  .sovo-footer__grid { grid-template-columns: 1fr 1fr; }
  .sovo-products { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sovo-hero__img { width: 130px; height: 130px; font-size: 64px; }
  .sovo-hero__title { font-size: 22px; }
}
@media (max-width: 480px) {
  .sovo-hero { padding: 24px 0; }
  .sovo-newsletter__form { flex-direction: column; }
  .sovo-footer__grid { grid-template-columns: 1fr; }
  .sovo-promo { flex-direction: column; text-align: center; }
  .sovo-hicon span { display: none; }
}

/* ── ANIMATIONS ── */
@keyframes sovo-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sovo-animate { animation: sovo-fade-in 0.4s ease both; }

/* ── CART TOAST (added dynamically by JS) ── */
#sovo-toast { animation: sovo-slide-up 0.2s ease; }
@keyframes sovo-slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── HEADER scrolled state ── */
.sovo-header--scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* ── LOADER icon spin ── */
.ti-loader-2 { animation: sovo-spin 0.8s linear infinite; display:inline-block; }
@keyframes sovo-spin { to { transform: rotate(360deg); } }

/* ── WISHLIST active ── */
.sovo-wishlist-btn.wishlisted i { color: #EF4444 !important; }

/* ── WOOCOMMERCE price override ── */
.woocommerce-Price-amount { color: var(--teal) !important; font-weight: 800 !important; }
.woocommerce ul.products li.product .price del .woocommerce-Price-amount { color: var(--text-4) !important; font-weight: 400 !important; }

/* ══════════════════════════════════════
   WOOCOMMERCE CART & CHECKOUT PAGE STYLES
   (fixes "cart not showing" visual issue —
   page.php/woocommerce.php now render the
   shortcode output, this makes it look right)
   ══════════════════════════════════════ */
.sovo-woo-wrap { width: 100%; }

.woocommerce table.shop_table {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
  background: var(--bg-white);
  margin-bottom: 24px;
}
.woocommerce table.shop_table th {
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.woocommerce table.shop_table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  vertical-align: middle;
}
.woocommerce table.shop_table tr:last-child td { border-bottom: none; }

.woocommerce table.shop_table td.product-thumbnail img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.woocommerce table.shop_table td.product-name a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.woocommerce table.shop_table td.product-name a:hover { color: var(--teal); }
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
  color: var(--teal);
  font-weight: 700;
}
.woocommerce table.shop_table td.product-remove a {
  color: #EF4444 !important;
  font-size: 18px;
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.woocommerce table.shop_table td.product-remove a:hover {
  background: #FEE2E2;
  border-color: #FCA5A5;
}

/* Quantity input */
.woocommerce .quantity .qty {
  width: 64px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  font-family: var(--fn);
  font-size: 13px;
  color: var(--text);
  text-align: center;
}
.woocommerce .quantity .qty:focus { border-color: var(--teal); outline: none; }

/* Cart totals box */
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout-review-order {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.woocommerce-cart .cart_totals h2,
.woocommerce-checkout-review-order h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.woocommerce-cart .cart_totals table,
.woocommerce-checkout-review-order table {
  border: none !important;
}
.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table th {
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 10px 0;
}
.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount {
  font-size: 18px;
  font-weight: 800;
}

/* Coupon form */
.woocommerce-cart .coupon {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce-cart .coupon .input-text {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 13px;
  font-family: var(--fn);
  outline: none;
}
.woocommerce-cart .coupon .input-text:focus { border-color: var(--teal); }

/* Empty cart state */
.woocommerce-cart-form ~ .cart-empty,
.woocommerce-info {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 16px 20px;
  color: var(--teal-800);
  font-size: 13px;
  list-style: none;
  margin-bottom: 20px;
}
.woocommerce-info a,
.woocommerce-message a {
  color: var(--teal-800);
  font-weight: 700;
  text-decoration: underline;
}

/* Checkout form fields */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 12px !important;
  font-family: var(--fn) !important;
  font-size: 13px !important;
  width: 100% !important;
  background: var(--bg-white) !important;
  color: var(--text) !important;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--teal) !important;
  outline: none !important;
}
.woocommerce-checkout label { font-size: 12.5px; color: var(--text-2); font-weight: 600; }

/* Responsive cart table → stacked cards on mobile */
@media (max-width: 640px) {
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table, .woocommerce table.shop_table tbody, .woocommerce table.shop_table tr, .woocommerce table.shop_table td {
    display: block; width: 100%;
  }
  .woocommerce table.shop_table tr {
    border-bottom: 8px solid var(--bg);
    padding: 12px;
  }
  .woocommerce table.shop_table td {
    border-bottom: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .woocommerce table.shop_table td.product-thumbnail { justify-content: flex-start; }
}

/* ── CATEGORY IMAGE ICONS (circular, photo-style — matches xcessorieshub.com layout) ── */
.sovo-cat__icon--img {
  background: var(--bg-2, #f4f6f7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  padding: 0;
}
.sovo-cat__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sovo-cat:hover .sovo-cat__icon--img {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,189,160,0.18);
}
.sovo-cat__label {
  font-size: 12px;
  color: var(--text-2, var(--text-3));
  font-weight: 600;
  text-align: center;
  max-width: 84px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sovo-cat:hover .sovo-cat__label { color: var(--teal); }

/* ── XcessoriesHub-style category product cards ── */
.sovo-section:has(.sovo-categories) {
  background: #fff !important;
}
.sovo-categories {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 128px;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.sovo-categories::-webkit-scrollbar { height: 6px; }
.sovo-categories::-webkit-scrollbar-thumb { background: #d9dee7; border-radius: 999px; }
.sovo-cat--xhb {
  width: 128px;
  min-width: 128px;
  gap: 10px;
  scroll-snap-align: start;
  text-decoration: none;
}
.sovo-cat__icon--product {
  width: 128px;
  height: 128px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  box-shadow: 0 7px 18px rgba(17, 24, 39, 0.07);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sovo-cat__icon--product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  mix-blend-mode: normal;
}
.sovo-cat--xhb:hover .sovo-cat__icon--product {
  transform: translateY(-5px);
  border-color: rgba(0, 189, 160, 0.28);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}
.sovo-cat--xhb .sovo-cat__label {
  max-width: 128px;
  min-height: 34px;
  color: #151922;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sovo-cat--xhb:hover .sovo-cat__label { color: var(--teal); }
@media (max-width: 575px) {
  .sovo-categories { grid-auto-columns: 104px; gap: 12px; }
  .sovo-cat--xhb { width: 104px; min-width: 104px; }
  .sovo-cat__icon--product { width: 104px; height: 104px; border-radius: 16px; padding: 11px; }
  .sovo-cat--xhb .sovo-cat__label { max-width: 104px; font-size: 12px; }
}


/* ── Footer delivery partners + payment methods custom cards ── */
.sovo-footer-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 18px;
}
.sovo-footer-method-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.sovo-footer-method-card__content { min-width: 0; }
.sovo-footer-method-card__content p {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.52);
}
.sovo-footer-method-card__image {
  flex: 0 0 150px;
  max-width: 150px;
  min-height: 58px;
  border-radius: 14px;
  background: #fff;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sovo-footer-method-card__image img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .sovo-footer-methods { grid-template-columns: 1fr; }
  .sovo-footer-method-card { align-items: flex-start; }
  .sovo-footer-method-card__image { flex-basis: 130px; max-width: 130px; }
}
@media (max-width: 420px) {
  .sovo-footer-method-card { flex-direction: column; }
  .sovo-footer-method-card__image { width: 100%; max-width: 100%; }
}

/* =============================================
   Premium MR Accessories Hero Banner Update
   ============================================= */
.sovo-hero--premium {
  --mr-gold: #d8b309;
  --mr-gold-dark: #b79200;
  --mr-ink: #071122;
  --mr-soft: #fff9dc;
  background:
    radial-gradient(circle at 78% 22%, rgba(216,179,9,0.22) 0 18%, transparent 36%),
    radial-gradient(circle at 14% 80%, rgba(0,189,160,0.12) 0 20%, transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fffdf5 48%, #fff7cf 100%);
  padding: 24px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(216,179,9,0.28);
}
.sovo-hero--premium::before {
  content: "";
  position: absolute;
  inset: 16px 22px;
  border: 1px solid rgba(216,179,9,0.18);
  border-radius: 34px;
  pointer-events: none;
}
.sovo-hero--premium .sovo-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}
.sovo-hero--premium .sovo-hero__glow--one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -150px;
  background: rgba(216,179,9,0.22);
}
.sovo-hero--premium .sovo-hero__glow--two {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -140px;
  background: rgba(0,189,160,0.13);
}
.sovo-hero--premium .sovo-hero__bismillah {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 9px 28px 11px;
  color: #6d5600;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(216,179,9,0.35);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(111, 87, 0, 0.08);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  direction: rtl;
  letter-spacing: 0;
}
.sovo-hero--premium .sovo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
}
.sovo-hero--premium .sovo-hero__text {
  padding: 14px 0;
}
.sovo-hero--premium .sovo-hero__badge {
  background: #fff4bc;
  border-color: rgba(216,179,9,0.38);
  color: #5e4a00;
  box-shadow: 0 8px 22px rgba(216,179,9,0.12);
}
.sovo-hero--premium .sovo-hero__title {
  max-width: 640px;
  color: var(--mr-ink);
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 0.98;
  letter-spacing: -2.2px;
  margin-bottom: 18px;
  text-shadow: 0 2px 0 rgba(216,179,9,0.18);
}
.sovo-hero--premium .sovo-hero__subtitle {
  max-width: 600px;
  color: #526071;
  font-size: clamp(15px, 1.45vw, 18px);
  margin-bottom: 18px;
}
.sovo-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.sovo-hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(216,179,9,0.28);
  color: #172033;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17,24,39,0.06);
}
.sovo-hero--premium .btn-teal {
  background: linear-gradient(135deg, var(--mr-gold), var(--mr-gold-dark));
  color: #071122;
  box-shadow: 0 14px 28px rgba(183,146,0,0.22);
}
.sovo-hero--premium .btn-teal:hover {
  background: linear-gradient(135deg, #e4c21a, #a98400);
  transform: translateY(-1px);
}
.sovo-hero--premium .btn-outline {
  background: rgba(255,255,255,0.72);
  border-color: rgba(7,17,34,0.16);
  color: #071122;
}
.sovo-hero--premium .btn-outline:hover {
  border-color: var(--mr-gold);
  color: #6d5600;
  background: #fff9dd;
}
.sovo-hero__showcase {
  position: relative;
  min-height: 390px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.62), rgba(255,249,220,0.72)),
    radial-gradient(circle at 50% 45%, rgba(216,179,9,0.22), transparent 55%);
  border: 1px solid rgba(216,179,9,0.24);
  box-shadow: 0 28px 70px rgba(7,17,34,0.12);
  backdrop-filter: blur(10px);
}
.sovo-hero__ring {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 34px solid rgba(216,179,9,0.17);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8);
}
.sovo-hero__product {
  position: absolute;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(216,179,9,0.22);
  box-shadow: 0 18px 42px rgba(7,17,34,0.16);
}
.sovo-hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sovo-hero__product--main {
  width: 225px;
  height: 225px;
  left: 50%;
  top: 88px;
  transform: translateX(-50%) rotate(-2deg);
  border-radius: 32px;
  z-index: 3;
}
.sovo-hero__product--top {
  width: 128px;
  height: 128px;
  right: 35px;
  top: 35px;
  border-radius: 26px;
  transform: rotate(7deg);
  z-index: 2;
}
.sovo-hero__product--left {
  width: 142px;
  height: 142px;
  left: 30px;
  top: 126px;
  border-radius: 28px;
  transform: rotate(-8deg);
  z-index: 2;
}
.sovo-hero__product--right {
  width: 150px;
  height: 150px;
  right: 42px;
  bottom: 42px;
  border-radius: 30px;
  transform: rotate(5deg);
  z-index: 4;
}
.sovo-hero__deal-card {
  position: absolute;
  left: 52px;
  bottom: 35px;
  z-index: 5;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(7,17,34,0.92);
  color: #fff;
  box-shadow: 0 16px 38px rgba(7,17,34,0.22);
}
.sovo-hero__deal-card strong,
.sovo-hero__deal-card span {
  display: block;
}
.sovo-hero__deal-card strong {
  color: #f5cf1c;
  font-size: 16px;
  line-height: 1.1;
}
.sovo-hero__deal-card span {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .sovo-hero--premium .sovo-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .sovo-hero__showcase {
    min-height: 340px;
  }
}
@media (max-width: 768px) {
  .sovo-hero--premium {
    padding: 18px 0 36px;
  }
  .sovo-hero--premium::before {
    inset: 10px;
    border-radius: 24px;
  }
  .sovo-hero--premium .sovo-hero__bismillah {
    font-size: 20px;
    padding: 8px 15px 10px;
    margin-bottom: 16px;
  }
  .sovo-hero--premium .sovo-hero__title {
    font-size: 38px;
    letter-spacing: -1.2px;
  }
  .sovo-hero__chips span {
    font-size: 11px;
    padding: 8px 11px;
  }
  .sovo-hero__showcase {
    min-height: 300px;
  }
  .sovo-hero__product--main {
    width: 180px;
    height: 180px;
    top: 72px;
  }
  .sovo-hero__product--top,
  .sovo-hero__product--left,
  .sovo-hero__product--right {
    width: 105px;
    height: 105px;
  }
  .sovo-hero__deal-card {
    left: 20px;
    bottom: 18px;
  }
}
@media (max-width: 480px) {
  .sovo-hero--premium .sovo-hero__title {
    font-size: 32px;
  }
  .sovo-hero--premium .sovo-hero__subtitle {
    font-size: 14px;
  }
  .sovo-hero__showcase {
    min-height: 260px;
  }
  .sovo-hero__ring {
    width: 200px;
    height: 200px;
    border-width: 26px;
    top: 38px;
  }
  .sovo-hero__product--main {
    width: 150px;
    height: 150px;
    top: 58px;
  }
  .sovo-hero__product--top {
    right: 16px;
    top: 24px;
  }
  .sovo-hero__product--left {
    left: 14px;
    top: 108px;
  }
  .sovo-hero__product--right {
    right: 18px;
    bottom: 28px;
  }
}

/* Premium Hero V2: richer Bismillah + mobile-first polish */
.sovo-hero--premium {
  --mr-gold: #d9b20d;
  --mr-gold-2: #f6d84b;
  --mr-gold-dark: #8f6d00;
  --mr-ink: #071122;
  --mr-muted: #526071;
  isolation: isolate;
  position: relative;
  padding: 22px 0 64px;
  background:
    radial-gradient(circle at 84% 18%, rgba(246,216,75,.30) 0 15%, transparent 34%),
    radial-gradient(circle at 70% 78%, rgba(0,189,160,.12) 0 16%, transparent 36%),
    radial-gradient(circle at 8% 25%, rgba(255,255,255,.85) 0 18%, transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 42%, #fff0aa 100%);
}
.sovo-hero--premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.72));
  pointer-events: none;
  z-index: -1;
}
.sovo-hero--premium .container {
  position: relative;
  z-index: 2;
}
.sovo-hero__bismillah-wrap {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 24px;
}
.sovo-hero__bismillah-line {
  flex: 1 1 120px;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,109,0,.55), transparent);
}
.sovo-hero--premium .sovo-hero__bismillah {
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 11px 28px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #3d2d00;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,212,.86)),
    radial-gradient(circle at 50% 0, rgba(246,216,75,.38), transparent 65%);
  border: 1px solid rgba(143,109,0,.28);
  outline: 1px solid rgba(255,255,255,.65);
  outline-offset: -5px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(74,55,0,.12), inset 0 1px 0 rgba(255,255,255,.95);
  font-family: "Amiri", "Scheherazade New", "Noto Nastaliq Urdu", Georgia, serif;
  font-size: clamp(23px, 2.75vw, 40px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  direction: rtl;
  text-shadow: 0 1px 0 #fff, 0 8px 22px rgba(143,109,0,.18);
}
.sovo-hero__arabic-mark {
  color: var(--mr-gold-dark);
  font-size: .78em;
  opacity: .9;
}
.sovo-hero--premium .sovo-hero__inner {
  padding: 34px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,246,195,.48));
  border: 1px solid rgba(143,109,0,.14);
  box-shadow: 0 30px 90px rgba(7,17,34,.10), inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
}
.sovo-hero--premium .sovo-hero__badge {
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(7,17,34,.94);
  color: #f8d743;
  border-color: rgba(248,215,67,.45);
}
.sovo-hero--premium .sovo-hero__title {
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: .94;
  letter-spacing: -2.6px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.sovo-hero--premium .sovo-hero__subtitle {
  font-size: clamp(15px, 1.45vw, 19px);
  color: var(--mr-muted);
}
.sovo-hero--premium .btn-teal,
.sovo-hero--premium .btn-outline {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 999px;
}
.sovo-hero--premium .btn-teal {
  background: linear-gradient(135deg, #ffe166, #d8ad00 52%, #9a7600);
  color: #071122;
  border: 1px solid rgba(104,78,0,.12);
  box-shadow: 0 18px 34px rgba(154,118,0,.28), inset 0 1px 0 rgba(255,255,255,.45);
}
.sovo-hero--premium .btn-outline {
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(7,17,34,.06);
}
.sovo-hero--premium .sovo-hero__showcase {
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,225,102,.52), transparent 44%),
    linear-gradient(145deg, rgba(7,17,34,.96), rgba(28,32,43,.94));
  border: 1px solid rgba(255,225,102,.28);
  box-shadow: 0 28px 80px rgba(7,17,34,.22), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
.sovo-hero--premium .sovo-hero__showcase::before {
  content: "MR";
  position: absolute;
  right: 18px;
  top: 8px;
  font-size: 108px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.035);
  letter-spacing: -8px;
}
.sovo-hero--premium .sovo-hero__showcase::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,225,102,.16);
  pointer-events: none;
}
.sovo-hero--premium .sovo-hero__ring {
  width: 290px;
  height: 290px;
  top: 62px;
  border-width: 42px;
  border-color: rgba(255,225,102,.18);
  box-shadow: 0 0 0 1px rgba(255,225,102,.12), 0 0 70px rgba(216,178,13,.22);
}
.sovo-hero--premium .sovo-hero__product {
  border: 1px solid rgba(255,225,102,.28);
  box-shadow: 0 22px 50px rgba(0,0,0,.32), 0 0 0 6px rgba(255,255,255,.04);
}
.sovo-hero--premium .sovo-hero__product--main {
  width: 242px;
  height: 242px;
  top: 94px;
  border-radius: 36px;
}
.sovo-hero--premium .sovo-hero__product--top {
  width: 136px;
  height: 136px;
  right: 42px;
}
.sovo-hero--premium .sovo-hero__product--left {
  width: 152px;
  height: 152px;
  left: 35px;
}
.sovo-hero--premium .sovo-hero__product--right {
  width: 158px;
  height: 158px;
}
.sovo-hero__spark {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #ffe166;
  border-radius: 50%;
  box-shadow: 0 0 24px #ffe166;
  z-index: 6;
}
.sovo-hero__spark--one { right: 30%; top: 42px; }
.sovo-hero__spark--two { left: 18%; bottom: 86px; width: 9px; height: 9px; }
.sovo-hero--premium .sovo-hero__deal-card {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,239,154,.92));
  color: #071122;
  border: 1px solid rgba(255,225,102,.45);
  box-shadow: 0 20px 46px rgba(0,0,0,.28);
}
.sovo-hero__deal-kicker {
  color: #8f6d00 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px !important;
  font-weight: 900;
  margin-bottom: 4px;
}
.sovo-hero--premium .sovo-hero__deal-card strong { color: #071122; }
.sovo-hero--premium .sovo-hero__deal-card span { color: rgba(7,17,34,.68); }

@media (max-width: 900px) {
  .sovo-hero--premium { padding: 16px 0 44px; }
  .sovo-hero--premium .sovo-hero__inner {
    padding: 24px;
    border-radius: 32px;
    text-align: center;
  }
  .sovo-hero--premium .sovo-hero__text { padding: 0; }
  .sovo-hero__chips, .sovo-hero__btns { justify-content: center; }
}
@media (max-width: 600px) {
  .sovo-hero--premium {
    padding: 12px 0 30px;
    background:
      radial-gradient(circle at 80% 8%, rgba(246,216,75,.34) 0 20%, transparent 42%),
      linear-gradient(180deg, #fff 0%, #fff8d4 100%);
  }
  .sovo-hero--premium::before { display: none; }
  .sovo-hero__bismillah-wrap {
    gap: 8px;
    margin-bottom: 14px;
  }
  .sovo-hero__bismillah-line { max-width: 42px; }
  .sovo-hero--premium .sovo-hero__bismillah {
    width: 100%;
    padding: 10px 12px 12px;
    border-radius: 22px;
    font-size: clamp(19px, 6.3vw, 25px);
    gap: 6px;
  }
  .sovo-hero--premium .sovo-hero__inner {
    padding: 18px 14px 16px;
    border-radius: 26px;
    gap: 18px;
  }
  .sovo-hero--premium .sovo-hero__badge {
    font-size: 11px;
    padding: 8px 11px;
  }
  .sovo-hero--premium .sovo-hero__title {
    font-size: clamp(31px, 10.5vw, 42px);
    letter-spacing: -1.35px;
    line-height: .98;
    margin-top: 14px;
  }
  .sovo-hero--premium .sovo-hero__subtitle {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.55;
  }
  .sovo-hero__chips {
    gap: 7px;
    margin-bottom: 18px;
  }
  .sovo-hero__chips span {
    flex: 1 1 31%;
    justify-content: center;
    min-width: 96px;
    padding: 8px 8px;
    font-size: 10.5px;
  }
  .sovo-hero--premium .btn-teal,
  .sovo-hero--premium .btn-outline {
    flex: 1 1 100%;
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .sovo-hero--premium .sovo-hero__showcase {
    min-height: 292px;
    border-radius: 26px;
  }
  .sovo-hero--premium .sovo-hero__showcase::before {
    font-size: 72px;
    right: 12px;
  }
  .sovo-hero--premium .sovo-hero__showcase::after {
    inset: 12px;
    border-radius: 20px;
  }
  .sovo-hero--premium .sovo-hero__ring {
    width: 205px;
    height: 205px;
    border-width: 28px;
    top: 38px;
  }
  .sovo-hero--premium .sovo-hero__product--main {
    width: 152px;
    height: 152px;
    top: 63px;
    border-radius: 26px;
  }
  .sovo-hero--premium .sovo-hero__product--top,
  .sovo-hero--premium .sovo-hero__product--left,
  .sovo-hero--premium .sovo-hero__product--right {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }
  .sovo-hero--premium .sovo-hero__product--top { right: 14px; top: 22px; }
  .sovo-hero--premium .sovo-hero__product--left { left: 12px; top: 106px; }
  .sovo-hero--premium .sovo-hero__product--right { right: 18px; bottom: 44px; }
  .sovo-hero--premium .sovo-hero__deal-card {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    padding: 10px 14px;
    border-radius: 16px;
    text-align: center;
  }
  .sovo-hero--premium .sovo-hero__deal-card strong { font-size: 15px; }
}

/* Premium Hero V3: ultra stylish Bismillah + professional mobile hero polish */
.sovo-hero--premium {
  --v3-gold: #f7d84c;
  --v3-gold-deep: #b98b00;
  --v3-black: #07111f;
  --v3-cream: #fff8df;
  padding: 18px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.95) 0 13%, transparent 31%),
    radial-gradient(circle at 84% 14%, rgba(255,225,96,.45) 0 15%, transparent 36%),
    radial-gradient(circle at 72% 84%, rgba(255,186,0,.25) 0 16%, transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 36%, #ffe070 100%);
}
.sovo-hero--premium::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto 10px;
  height: 210px;
  background-image:
    linear-gradient(rgba(7,17,31,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent);
  pointer-events: none;
  z-index: 0;
}
.sovo-hero__bismillah-wrap {
  isolation: isolate;
  margin-bottom: 26px;
}
.sovo-hero__bismillah-wrap::before,
.sovo-hero__bismillah-wrap::after {
  content: "✦";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #5b4100;
  background: linear-gradient(135deg, #fff, #ffe782);
  border: 1px solid rgba(124,91,0,.22);
  box-shadow: 0 12px 28px rgba(102,75,0,.13), inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 15px;
}
.sovo-hero__bismillah-line {
  max-width: 210px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185,139,0,.28), rgba(7,17,31,.22), rgba(185,139,0,.28), transparent);
}
.sovo-hero--premium .sovo-hero__bismillah {
  position: relative;
  padding: 14px 38px 17px;
  border-radius: 999px;
  color: #2f2200;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,248,218,.92) 48%, rgba(255,226,108,.78)),
    radial-gradient(circle at 50% 0, rgba(255,255,255,.9), transparent 58%);
  border: 1px solid rgba(111,80,0,.30);
  outline: 1px solid rgba(255,255,255,.88);
  outline-offset: -7px;
  box-shadow:
    0 22px 60px rgba(101,73,0,.18),
    0 8px 18px rgba(7,17,31,.07),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -10px 30px rgba(255,210,49,.14);
  font-family: "Amiri", "Scheherazade New", "Noto Nastaliq Urdu", "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 900;
  letter-spacing: .01em;
  text-shadow: 0 2px 0 rgba(255,255,255,.9), 0 12px 26px rgba(117,84,0,.20);
}
.sovo-hero--premium .sovo-hero__bismillah::before,
.sovo-hero--premium .sovo-hero__bismillah::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b98b00;
  box-shadow: 0 0 0 6px rgba(247,216,76,.20), 0 0 24px rgba(247,216,76,.8);
  transform: translateY(-50%);
}
.sovo-hero--premium .sovo-hero__bismillah::before { left: 17px; }
.sovo-hero--premium .sovo-hero__bismillah::after { right: 17px; }
.sovo-hero__arabic-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff4bd;
  background: linear-gradient(145deg, #0b1320, #273041);
  box-shadow: inset 0 0 0 1px rgba(255,225,102,.35), 0 8px 18px rgba(7,17,31,.18);
  font-size: .62em;
}
.sovo-hero--premium .sovo-hero__inner {
  position: relative;
  padding: clamp(24px, 3.6vw, 48px);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.83), rgba(255,246,196,.58)),
    radial-gradient(circle at 94% 12%, rgba(255,216,76,.24), transparent 42%);
  border: 1px solid rgba(120,88,0,.16);
  box-shadow: 0 38px 100px rgba(7,17,31,.13), inset 0 1px 0 rgba(255,255,255,.9);
}
.sovo-hero--premium .sovo-hero__inner::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}
.sovo-hero--premium .sovo-hero__badge {
  box-shadow: 0 12px 28px rgba(7,17,31,.14), inset 0 1px 0 rgba(255,255,255,.08);
}
.sovo-hero--premium .sovo-hero__title {
  max-width: 650px;
  color: #07111f;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.85);
}
.sovo-hero--premium .sovo-hero__subtitle {
  max-width: 560px;
}
.sovo-hero__chips span {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(185,139,0,.12);
  box-shadow: 0 10px 22px rgba(7,17,31,.055);
}
.sovo-hero--premium .btn-teal {
  transform: translateZ(0);
  box-shadow: 0 20px 38px rgba(185,139,0,.30), inset 0 1px 0 rgba(255,255,255,.55);
}
.sovo-hero--premium .btn-outline {
  border-color: rgba(7,17,31,.12);
}
.sovo-hero--premium .sovo-hero__showcase {
  border-radius: 38px;
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,225,102,.65), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 26%),
    linear-gradient(145deg, #050914 0%, #111a2b 56%, #2a2412 100%);
}
.sovo-hero--premium .sovo-hero__showcase::before {
  content: "MR ACCESSORIES";
  left: 22px;
  right: auto;
  top: 18px;
  font-size: 28px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.08);
}
.sovo-hero--premium .sovo-hero__product {
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sovo-hero--premium .sovo-hero__product--main {
  width: 264px;
  height: 264px;
  top: 92px;
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(0,0,0,.38), 0 0 0 8px rgba(255,225,102,.08);
}
.sovo-hero--premium .sovo-hero__product--top {
  width: 148px;
  height: 148px;
  right: 34px;
  top: 58px;
  transform: rotate(8deg);
}
.sovo-hero--premium .sovo-hero__product--left {
  width: 164px;
  height: 164px;
  left: 28px;
  top: 184px;
  transform: rotate(-7deg);
}
.sovo-hero--premium .sovo-hero__product--right {
  width: 166px;
  height: 166px;
  right: 42px;
  bottom: 42px;
  transform: rotate(6deg);
}
.sovo-hero--premium .sovo-hero__deal-card {
  right: auto;
  left: 34px;
  bottom: 26px;
  border-radius: 24px;
  padding: 15px 18px;
}

@media (max-width: 900px) {
  .sovo-hero--premium .sovo-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .sovo-hero--premium .sovo-hero__title,
  .sovo-hero--premium .sovo-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .sovo-hero--premium {
    padding: 10px 0 28px;
    background:
      radial-gradient(circle at 50% 0, rgba(255,225,102,.55), transparent 38%),
      linear-gradient(180deg, #fff 0%, #fff7d1 100%);
  }
  .sovo-hero__bismillah-wrap {
    gap: 6px;
    margin-bottom: 12px;
  }
  .sovo-hero__bismillah-wrap::before,
  .sovo-hero__bismillah-wrap::after {
    display: none;
  }
  .sovo-hero__bismillah-line {
    max-width: 28px;
  }
  .sovo-hero--premium .sovo-hero__bismillah {
    width: 100%;
    padding: 12px 14px 15px;
    border-radius: 24px;
    font-size: clamp(22px, 7.4vw, 31px);
    line-height: 1.45;
    gap: 7px;
  }
  .sovo-hero--premium .sovo-hero__bismillah::before,
  .sovo-hero--premium .sovo-hero__bismillah::after {
    display: none;
  }
  .sovo-hero__arabic-mark {
    width: 24px;
    height: 24px;
  }
  .sovo-hero--premium .sovo-hero__inner {
    padding: 16px 12px 14px;
    border-radius: 30px;
    gap: 16px;
    box-shadow: 0 24px 56px rgba(7,17,31,.10), inset 0 1px 0 rgba(255,255,255,.9);
  }
  .sovo-hero--premium .sovo-hero__inner::before {
    inset: 7px;
    border-radius: 24px;
  }
  .sovo-hero--premium .sovo-hero__badge {
    max-width: calc(100% - 8px);
    margin-inline: auto;
    justify-content: center;
  }
  .sovo-hero--premium .sovo-hero__title {
    font-size: clamp(34px, 11vw, 46px);
    line-height: .96;
    letter-spacing: -1.55px;
    margin-bottom: 12px;
  }
  .sovo-hero--premium .sovo-hero__subtitle {
    font-size: 13.8px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .sovo-hero__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sovo-hero__chips span {
    min-width: 0;
    padding: 9px 7px;
    font-size: 10.5px;
  }
  .sovo-hero__chips span:last-child {
    grid-column: 1 / -1;
  }
  .sovo-hero__btns {
    gap: 9px;
  }
  .sovo-hero--premium .btn-teal,
  .sovo-hero--premium .btn-outline {
    min-height: 50px;
    font-size: 14px;
  }
  .sovo-hero--premium .sovo-hero__showcase {
    min-height: 326px;
    border-radius: 28px;
    margin-top: 2px;
  }
  .sovo-hero--premium .sovo-hero__showcase::before {
    content: "MR";
    left: auto;
    right: 12px;
    top: 8px;
    font-size: 66px;
    letter-spacing: -.08em;
  }
  .sovo-hero--premium .sovo-hero__ring {
    width: 220px;
    height: 220px;
    border-width: 30px;
    top: 46px;
  }
  .sovo-hero--premium .sovo-hero__product--main {
    width: 166px;
    height: 166px;
    top: 70px;
    border-radius: 30px;
  }
  .sovo-hero--premium .sovo-hero__product--top,
  .sovo-hero--premium .sovo-hero__product--left,
  .sovo-hero--premium .sovo-hero__product--right {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }
  .sovo-hero--premium .sovo-hero__product--top { right: 10px; top: 24px; }
  .sovo-hero--premium .sovo-hero__product--left { left: 9px; top: 126px; }
  .sovo-hero--premium .sovo-hero__product--right { right: 15px; bottom: 54px; }
  .sovo-hero--premium .sovo-hero__deal-card {
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    padding: 11px 14px;
    border-radius: 18px;
  }
}

/* Mobile Hero V4: clean premium phone layout focus */
@media (max-width: 600px) {
  .sovo-hero--premium {
    padding: 8px 0 22px !important;
    background:
      radial-gradient(circle at 50% -10%, rgba(255, 226, 96, .72), transparent 42%),
      radial-gradient(circle at 100% 38%, rgba(7,17,31,.10), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fff9dc 72%, #ffffff 100%) !important;
  }

  .sovo-hero--premium .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sovo-hero__bismillah-wrap {
    margin-bottom: 10px !important;
    gap: 0 !important;
  }

  .sovo-hero__bismillah-line,
  .sovo-hero__arabic-mark {
    display: none !important;
  }

  .sovo-hero--premium .sovo-hero__bismillah {
    width: 100% !important;
    padding: 12px 10px 14px !important;
    border-radius: 20px !important;
    font-size: clamp(20px, 6.7vw, 28px) !important;
    line-height: 1.5 !important;
    background:
      linear-gradient(145deg, rgba(8,13,24,.98), rgba(31,35,47,.96)),
      radial-gradient(circle at 50% 0, rgba(255,226,96,.35), transparent 60%) !important;
    color: #ffe77a !important;
    border: 1px solid rgba(255,226,96,.42) !important;
    outline: 1px solid rgba(255,255,255,.08) !important;
    outline-offset: -5px !important;
    box-shadow: 0 12px 28px rgba(7,17,31,.18), inset 0 1px 0 rgba(255,255,255,.12) !important;
    text-shadow: 0 0 18px rgba(255,226,96,.30) !important;
  }

  .sovo-hero--premium .sovo-hero__inner {
    display: flex !important;
    flex-direction: column !important;
    padding: 14px 12px 13px !important;
    gap: 12px !important;
    border-radius: 24px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,220,.88)) !important;
    border: 1px solid rgba(155,115,0,.16) !important;
    box-shadow: 0 18px 44px rgba(7,17,31,.10), inset 0 1px 0 rgba(255,255,255,.95) !important;
  }

  .sovo-hero--premium .sovo-hero__inner::before {
    inset: 6px !important;
    border-radius: 19px !important;
  }

  .sovo-hero--premium .sovo-hero__text {
    order: 1;
    text-align: center;
  }

  .sovo-hero--premium .sovo-hero__badge {
    font-size: 10.5px !important;
    padding: 7px 10px !important;
    margin-bottom: 2px !important;
    max-width: 100% !important;
    background: #07111f !important;
    color: #ffe77a !important;
  }

  .sovo-hero--premium .sovo-hero__title {
    font-size: clamp(27px, 8.7vw, 37px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.05px !important;
    margin: 11px auto 9px !important;
    max-width: 340px !important;
  }

  .sovo-hero--premium .sovo-hero__subtitle {
    font-size: 13px !important;
    line-height: 1.52 !important;
    margin: 0 auto 13px !important;
    max-width: 325px !important;
    color: #53606f !important;
  }

  .sovo-hero__chips {
    display: flex !important;
    overflow-x: auto;
    justify-content: flex-start !important;
    gap: 7px !important;
    margin: 0 -2px 13px !important;
    padding: 2px 2px 4px !important;
    scrollbar-width: none;
  }

  .sovo-hero__chips::-webkit-scrollbar { display: none; }

  .sovo-hero__chips span,
  .sovo-hero__chips span:last-child {
    grid-column: auto !important;
    flex: 0 0 auto !important;
    min-width: auto !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    background: #ffffff !important;
    box-shadow: 0 8px 18px rgba(7,17,31,.055) !important;
  }

  .sovo-hero__btns {
    display: grid !important;
    grid-template-columns: 1.1fr .9fr !important;
    gap: 8px !important;
  }

  .sovo-hero--premium .btn-teal,
  .sovo-hero--premium .btn-outline {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    justify-content: center !important;
    border-radius: 16px !important;
  }

  .sovo-hero--premium .sovo-hero__showcase {
    order: 2;
    width: 100%;
    min-height: 218px !important;
    margin-top: 0 !important;
    border-radius: 22px !important;
    background:
      radial-gradient(circle at 50% 42%, rgba(255,226,96,.68), transparent 42%),
      linear-gradient(145deg, #050914 0%, #111a2b 68%, #2a2412 100%) !important;
    box-shadow: 0 16px 38px rgba(7,17,31,.20), inset 0 1px 0 rgba(255,255,255,.08) !important;
  }

  .sovo-hero--premium .sovo-hero__showcase::before {
    content: "MR" !important;
    right: 10px !important;
    top: 5px !important;
    font-size: 52px !important;
    letter-spacing: -.08em !important;
    color: rgba(255,255,255,.055) !important;
  }

  .sovo-hero--premium .sovo-hero__showcase::after {
    inset: 9px !important;
    border-radius: 16px !important;
    border-color: rgba(255,226,96,.14) !important;
  }

  .sovo-hero--premium .sovo-hero__ring {
    width: 160px !important;
    height: 160px !important;
    border-width: 22px !important;
    top: 27px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .sovo-hero--premium .sovo-hero__product--main {
    width: 122px !important;
    height: 122px !important;
    top: 45px !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(0deg) !important;
    border-radius: 24px !important;
    z-index: 5 !important;
  }

  .sovo-hero--premium .sovo-hero__product--top,
  .sovo-hero--premium .sovo-hero__product--left,
  .sovo-hero--premium .sovo-hero__product--right {
    width: 70px !important;
    height: 70px !important;
    border-radius: 18px !important;
    opacity: .96 !important;
  }

  .sovo-hero--premium .sovo-hero__product--top {
    right: 16px !important;
    top: 28px !important;
    transform: rotate(8deg) !important;
  }

  .sovo-hero--premium .sovo-hero__product--left {
    left: 16px !important;
    top: 78px !important;
    transform: rotate(-8deg) !important;
  }

  .sovo-hero--premium .sovo-hero__product--right {
    right: 20px !important;
    bottom: 44px !important;
    transform: rotate(7deg) !important;
  }

  .sovo-hero--premium .sovo-hero__deal-card {
    width: calc(100% - 28px) !important;
    left: 50% !important;
    bottom: 10px !important;
    padding: 8px 12px !important;
    border-radius: 15px !important;
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left !important;
  }

  .sovo-hero__deal-kicker {
    grid-column: 1 / -1;
    font-size: 8.5px !important;
    margin-bottom: 1px !important;
  }

  .sovo-hero--premium .sovo-hero__deal-card strong {
    font-size: 13px !important;
    line-height: 1.1 !important;
  }

  .sovo-hero--premium .sovo-hero__deal-card span:last-child {
    font-size: 10px !important;
    text-align: right;
  }
}

/* =========================================================
   XcessoriesHub Inspired Mobile UI V5
   Scope: Mobile only. Keeps desktop layout unchanged.
   ========================================================= */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    background: #f5f7fb;
  }

  .container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .sovo-announcement {
    padding: 7px 0;
    background: #07111f;
  }

  .sovo-announcement__item {
    color: #ffe66d;
    font-size: 11px;
    letter-spacing: .15px;
  }

  .sovo-announcement__dot {
    background: #ffe66d;
    opacity: .75;
  }

  .sovo-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(7,17,31,.07);
    box-shadow: 0 10px 24px rgba(7,17,31,.07);
    backdrop-filter: blur(14px);
  }

  .sovo-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 0 12px;
    min-height: auto;
  }

  .sovo-logo {
    align-self: center;
    font-size: 24px;
    line-height: 1;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sovo-logo img,
  .custom-logo-link img {
    max-height: 42px;
    width: auto;
  }

  .sovo-header__icons {
    gap: 7px;
    justify-content: flex-end;
  }

  .sovo-hicon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 14px;
    color: #07111f;
    background: #f3f5f9;
    border: 1px solid rgba(7,17,31,.06);
  }

  .sovo-hicon i { font-size: 20px; }
  .sovo-hicon span:not(.sovo-cart-badge) { display: none; }

  .sovo-cart-badge {
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #ff4d2e;
    border-color: #fff;
  }

  .sovo-search {
    grid-column: 1 / -1;
    order: 3;
    height: 45px;
    border-radius: 16px;
    background: #f4f6fb;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  }

  .sovo-search__icon {
    padding: 0 11px 0 13px;
    color: #7b8494;
  }

  .sovo-search__input {
    font-size: 13px;
    min-width: 0;
  }

  .sovo-search__btn {
    height: 45px;
    min-width: 68px;
    padding: 0 13px;
    border-radius: 14px;
    background: #07111f;
    color: #ffe66d;
    font-size: 12px;
  }

  .sovo-nav {
    position: sticky;
    top: 112px;
    z-index: 50;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(7,17,31,.06);
    box-shadow: 0 8px 18px rgba(7,17,31,.045);
  }

  .sovo-nav .container { padding: 0; }

  .sovo-nav__inner {
    gap: 8px;
    padding: 8px 12px;
    scroll-snap-type: x proximity;
  }

  .sovo-nav__item {
    scroll-snap-align: start;
    padding: 8px 13px;
    border: 1px solid rgba(7,17,31,.08) !important;
    border-radius: 999px;
    background: #fff;
    color: #222b39;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(7,17,31,.04);
  }

  .sovo-nav__item:hover,
  .sovo-nav__item.current-menu-item,
  .sovo-nav__item.on,
  .sovo-nav__item.active {
    background: #07111f;
    color: #ffe66d;
    border-color: #07111f !important;
  }

  .sovo-hero--premium {
    padding: 12px 0 16px !important;
    border-bottom: 0;
    background:
      radial-gradient(circle at 92% 4%, rgba(255,230,109,.50), transparent 36%),
      linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%) !important;
  }

  .sovo-hero__bismillah-wrap {
    margin: 0 auto 10px !important;
  }

  .sovo-hero--premium .sovo-hero__bismillah {
    padding: 9px 11px 11px !important;
    border-radius: 18px !important;
    font-size: clamp(18px, 5.7vw, 24px) !important;
  }

  .sovo-hero--premium .sovo-hero__inner {
    border-radius: 24px !important;
    padding: 12px !important;
    gap: 10px !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,225,.92)) !important;
    border: 1px solid rgba(7,17,31,.07) !important;
    box-shadow: 0 16px 36px rgba(7,17,31,.10) !important;
  }

  .sovo-hero--premium .sovo-hero__badge {
    margin: 0 auto 4px !important;
    max-width: max-content;
    border-radius: 999px !important;
    background: #07111f !important;
    color: #ffe66d !important;
    font-size: 10px !important;
    padding: 7px 10px !important;
  }

  .sovo-hero--premium .sovo-hero__title {
    font-size: clamp(25px, 8.4vw, 34px) !important;
    line-height: 1.04 !important;
    margin: 8px auto 7px !important;
    letter-spacing: -1px !important;
  }

  .sovo-hero--premium .sovo-hero__subtitle {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }

  .sovo-hero__chips {
    margin-bottom: 10px !important;
    padding-bottom: 5px !important;
  }

  .sovo-hero__chips span {
    background: #fff !important;
    border: 1px solid rgba(7,17,31,.06) !important;
    color: #273142 !important;
    box-shadow: 0 7px 16px rgba(7,17,31,.045) !important;
  }

  .sovo-hero__btns {
    grid-template-columns: 1fr 1fr !important;
  }

  .sovo-hero--premium .btn-teal {
    background: #07111f !important;
    color: #ffe66d !important;
    box-shadow: 0 12px 24px rgba(7,17,31,.18) !important;
  }

  .sovo-hero--premium .btn-outline {
    background: #fff !important;
    color: #07111f !important;
    border-color: rgba(7,17,31,.10) !important;
  }

  .sovo-hero--premium .sovo-hero__showcase {
    min-height: 205px !important;
    border-radius: 22px !important;
    background:
      radial-gradient(circle at 50% 38%, rgba(255,230,109,.70), transparent 42%),
      linear-gradient(145deg, #07111f 0%, #151b27 65%, #322811 100%) !important;
  }

  .sovo-hero--premium .sovo-hero__ring {
    width: 148px !important;
    height: 148px !important;
    top: 26px !important;
    border-width: 20px !important;
  }

  .sovo-hero--premium .sovo-hero__product--main {
    width: 116px !important;
    height: 116px !important;
    top: 43px !important;
  }

  .sovo-hero--premium .sovo-hero__product--top,
  .sovo-hero--premium .sovo-hero__product--left,
  .sovo-hero--premium .sovo-hero__product--right {
    width: 64px !important;
    height: 64px !important;
    border-radius: 17px !important;
  }

  .sovo-hero--premium .sovo-hero__product--top { top: 25px !important; right: 14px !important; }
  .sovo-hero--premium .sovo-hero__product--left { top: 74px !important; left: 14px !important; }
  .sovo-hero--premium .sovo-hero__product--right { right: 17px !important; bottom: 42px !important; }

  .sovo-hero--premium .sovo-hero__deal-card {
    width: calc(100% - 24px) !important;
    bottom: 9px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.96) !important;
    border-color: rgba(255,230,109,.45) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.24) !important;
  }

  .sovo-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    background: #f5f7fb;
    border-bottom: 0;
  }

  .sovo-trust__item {
    min-height: 80px;
    padding: 13px 8px;
    border: 1px solid rgba(7,17,31,.07) !important;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(7,17,31,.055);
  }

  .sovo-trust__item i {
    color: #07111f;
    background: #ffe66d;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 19px;
  }

  .sovo-trust__title {
    font-size: 11.5px;
    color: #07111f;
  }

  .sovo-trust__sub {
    font-size: 10px;
    color: #717a89;
  }

  .sovo-section {
    padding: 22px 0;
  }

  .sovo-section + .sovo-section {
    border-top: 0;
  }

  .sovo-section:has(.sovo-categories) {
    background: #fff !important;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 28px rgba(7,17,31,.045);
  }

  .sovo-sec-header {
    margin-bottom: 13px;
  }

  .sovo-sec-title {
    font-size: 17px;
    letter-spacing: -.2px;
  }

  .sovo-sec-title::before {
    width: 5px;
    height: 22px;
    border-radius: 999px;
    background: #ffe66d;
    box-shadow: inset 0 0 0 1px rgba(7,17,31,.10);
  }

  .sovo-sec-link {
    color: #07111f;
    border-color: rgba(7,17,31,.08);
    background: #f4f6fb;
    font-weight: 800;
  }

  .sovo-categories {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 86px;
    grid-template-rows: repeat(2, auto);
    gap: 11px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
  }

  .sovo-cat {
    scroll-snap-align: start;
    gap: 7px;
  }

  .sovo-cat__icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, #ffffff, #f6f8fc);
    border: 1px solid rgba(7,17,31,.07);
    box-shadow: 0 10px 22px rgba(7,17,31,.07);
    overflow: hidden;
  }

  .sovo-cat__icon--product img,
  .sovo-cat__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
  }

  .sovo-cat__label {
    width: 86px;
    font-size: 10.5px;
    line-height: 1.22;
    color: #1d2736;
    font-weight: 800;
    white-space: normal;
    min-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .sovo-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .sovo-product-card {
    border-radius: 18px;
    border-color: rgba(7,17,31,.07);
    box-shadow: 0 10px 22px rgba(7,17,31,.055);
  }

  .sovo-product-card__img {
    height: 142px;
    background: #f3f5f9;
  }

  .sovo-product-card__body {
    padding: 10px;
  }

  .sovo-product-card__name {
    font-size: 12px;
    min-height: 32px;
  }

  .sovo-price__current {
    font-size: 14px;
    color: #07111f;
  }

  .sovo-atc-btn {
    border-radius: 12px;
    background: #07111f;
    color: #ffe66d;
    padding: 8px 9px;
    font-size: 10px;
  }

  .sovo-promo {
    margin: 18px 0;
    padding: 18px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 90% 20%, rgba(255,230,109,.28), transparent 36%),
      linear-gradient(135deg, #07111f, #182131);
    flex-direction: column;
    align-items: flex-start;
  }

  .sovo-promo__title {
    font-size: 17px;
  }

  .sovo-promo__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    background: #ffe66d;
    color: #07111f;
  }
}

@media (max-width: 380px) {
  .sovo-products {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .sovo-product-card__img {
    height: 126px;
  }

  .sovo-categories {
    grid-auto-columns: 78px;
    gap: 9px;
  }

  .sovo-cat__icon,
  .sovo-cat__label {
    width: 78px;
  }

  .sovo-cat__icon {
    height: 78px;
    border-radius: 19px;
  }
}

/* =========================================================
   Mobile Header One-Line Update: Logo + Search + Cart only
   ========================================================= */
@media (max-width: 767px) {
  .sovo-header {
    top: 0;
    padding: 0;
  }

  .sovo-header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sovo-header__inner {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 9px 0 !important;
    min-height: 58px !important;
  }

  .sovo-logo {
    flex: 0 0 auto !important;
    max-width: 82px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .sovo-logo img,
  .custom-logo-link img {
    max-height: 34px !important;
    max-width: 82px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .sovo-search {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    order: 0 !important;
    grid-column: auto !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #f4f6fb !important;
    border: 1px solid rgba(7,17,31,.09) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 6px 14px rgba(7,17,31,.04) !important;
  }

  .sovo-search__icon {
    padding: 0 7px 0 10px !important;
    font-size: 15px !important;
    flex: 0 0 auto !important;
  }

  .sovo-search__input {
    min-width: 0 !important;
    width: 100% !important;
    font-size: 12px !important;
  }

  .sovo-search__input::placeholder {
    color: #7b8494 !important;
    opacity: 1 !important;
  }

  .sovo-search__btn {
    display: none !important;
  }

  .sovo-header__icons {
    flex: 0 0 auto !important;
    gap: 0 !important;
  }

  .sovo-header__icons .sovo-hicon:not(.sovo-cart-link) {
    display: none !important;
  }

  .sovo-cart-link,
  .sovo-header__icons .sovo-hicon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #07111f !important;
    color: #ffe66d !important;
    border: 1px solid rgba(7,17,31,.12) !important;
    box-shadow: 0 8px 18px rgba(7,17,31,.14) !important;
  }

  .sovo-cart-link i,
  .sovo-header__icons .sovo-hicon i {
    font-size: 20px !important;
  }

  .sovo-cart-link span:not(.sovo-cart-badge),
  .sovo-header__icons .sovo-hicon span:not(.sovo-cart-badge) {
    display: none !important;
  }

  .sovo-cart-badge {
    top: -5px !important;
    right: -4px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
    background: #ff4d2e !important;
    color: #fff !important;
    border: 2px solid #fff !important;
  }

  .sovo-nav {
    top: 58px !important;
  }
}

@media (max-width: 380px) {
  .sovo-logo {
    max-width: 68px !important;
    font-size: 18px !important;
  }

  .sovo-logo img,
  .custom-logo-link img {
    max-width: 68px !important;
    max-height: 30px !important;
  }

  .sovo-header__inner {
    gap: 6px !important;
  }

  .sovo-search__icon {
    padding-left: 9px !important;
    padding-right: 5px !important;
  }

  .sovo-search__input {
    font-size: 11.5px !important;
  }

  .sovo-cart-link,
  .sovo-header__icons .sovo-hicon {
    width: 38px !important;
    height: 38px !important;
  }
}

/* =========================================================
   FINAL MOBILE HEADER FIX - Logo + Search + Cart in ONE LINE
   Removes top profile/account icon and prevents vertical stacking.
   ========================================================= */
@media screen and (max-width: 767px) {
  .sovo-header {
    padding: 7px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(7,17,31,.08) !important;
    box-shadow: 0 8px 20px rgba(7,17,31,.06) !important;
  }

  .sovo-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .sovo-header__inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 !important;
  }

  .sovo-logo,
  .sovo-header .custom-logo-link {
    flex: 0 0 58px !important;
    width: 58px !important;
    max-width: 58px !important;
    min-width: 58px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 1 !important;
  }

  .sovo-logo img,
  .sovo-header .custom-logo,
  .sovo-header .custom-logo-link img {
    display: block !important;
    width: auto !important;
    max-width: 58px !important;
    height: auto !important;
    max-height: 38px !important;
    object-fit: contain !important;
    margin: 0 !important;
  }

  .sovo-search {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 2 !important;
    grid-column: auto !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    background: #f4f6fb !important;
    border: 1px solid rgba(7,17,31,.10) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 5px 14px rgba(7,17,31,.04) !important;
  }

  .sovo-search__icon {
    flex: 0 0 auto !important;
    padding: 0 7px 0 11px !important;
    font-size: 16px !important;
    color: #8b94a3 !important;
  }

  .sovo-search__input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 100% !important;
    font-size: 12px !important;
    line-height: 42px !important;
  }

  .sovo-search__btn {
    display: none !important;
  }

  .sovo-header__icons {
    flex: 0 0 42px !important;
    width: 42px !important;
    max-width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 3 !important;
  }

  /* Hide any profile/account/wishlist/menu icons from the TOP header */
  .sovo-header__icons > a:not(.sovo-cart-link),
  .sovo-header__icons > button:not(.sovo-cart-link),
  .sovo-header__icons .sovo-account-link,
  .sovo-header__icons .account,
  .sovo-header__icons .profile,
  .sovo-header__icons .wishlist {
    display: none !important;
  }

  .sovo-cart-link {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #07111f !important;
    color: #ffe66d !important;
    border: 1px solid rgba(7,17,31,.12) !important;
    box-shadow: 0 8px 18px rgba(7,17,31,.16) !important;
    position: relative !important;
  }

  .sovo-cart-link i {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .sovo-cart-link span:not(.sovo-cart-badge) {
    display: none !important;
  }

  .sovo-cart-badge {
    top: -5px !important;
    right: -4px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
    border: 2px solid #fff !important;
    background: #ff4d2e !important;
    color: #fff !important;
  }

  .sovo-nav {
    top: 61px !important;
  }
}

@media screen and (max-width: 360px) {
  .sovo-header .container {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
  .sovo-logo,
  .sovo-header .custom-logo-link {
    flex-basis: 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
  }
  .sovo-logo img,
  .sovo-header .custom-logo,
  .sovo-header .custom-logo-link img {
    max-width: 48px !important;
    max-height: 34px !important;
  }
  .sovo-header__inner {
    gap: 6px !important;
  }
  .sovo-search__input {
    font-size: 11px !important;
  }
}

/* =========================================================
   MOBILE HEADER FINAL OVERRIDE v1.0.4
   Logo + Search Bar + Cart Button in one clean row
   ========================================================= */
@media screen and (max-width: 767px) {
  body .sovo-header {
    padding: 7px 0 !important;
    min-height: auto !important;
  }

  body .sovo-header .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body .sovo-header__inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 !important;
  }

  body .sovo-logo,
  body .sovo-header .custom-logo-link {
    order: 1 !important;
    flex: 0 0 54px !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body .sovo-logo img,
  body .sovo-header .custom-logo,
  body .sovo-header .custom-logo-link img {
    width: auto !important;
    max-width: 54px !important;
    height: auto !important;
    max-height: 36px !important;
    object-fit: contain !important;
    display: block !important;
  }

  body .sovo-search {
    order: 2 !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 42px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 999px !important;
    grid-column: auto !important;
  }

  body .sovo-search__icon {
    flex: 0 0 auto !important;
    padding: 0 6px 0 10px !important;
    font-size: 15px !important;
  }

  body .sovo-search__input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    font-size: 12px !important;
    height: 100% !important;
  }

  body .sovo-search__btn {
    display: none !important;
  }

  body .sovo-header__icons {
    order: 3 !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  body .sovo-header__icons > *:not(.sovo-cart-link) {
    display: none !important;
  }

  body .sovo-cart-link {
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    position: relative !important;
  }

  body .sovo-cart-link span:not(.sovo-cart-badge) {
    display: none !important;
  }

  body .sovo-cart-badge {
    position: absolute !important;
    top: -5px !important;
    right: -4px !important;
  }
}

@media screen and (max-width: 360px) {
  body .sovo-header__inner {
    gap: 5px !important;
  }

  body .sovo-logo,
  body .sovo-header .custom-logo-link {
    flex-basis: 46px !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
  }

  body .sovo-logo img,
  body .sovo-header .custom-logo,
  body .sovo-header .custom-logo-link img {
    max-width: 46px !important;
    max-height: 32px !important;
  }

  body .sovo-search__input {
    font-size: 11px !important;
  }
}


/* Product review image upload + gallery */
.comment-form-sovo-review-images {
  margin: 16px 0 18px;
  padding: 14px;
  border: 1px dashed rgba(0, 189, 160, 0.45);
  border-radius: 16px;
  background: rgba(0, 189, 160, 0.06);
}

.comment-form-sovo-review-images label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111827;
}

.comment-form-sovo-review-images input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #fff;
}

.comment-form-sovo-review-images small {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.sovo-review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.sovo-review-images a {
  display: inline-flex;
  width: 78px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.sovo-review-images img,
.sovo-review-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM CART — Shopify checkout inspired
   ══════════════════════════════════════════════════════════════ */
.woocommerce-cart .sovo-page-content { width: 100%; }
.woocommerce-cart .container:has(.sovo-premium-cart) { max-width: 1240px; padding-top: 36px !important; }
.sovo-premium-cart { color: #171717; }
.sovo-cart-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:28px; }
.sovo-cart-heading h1 { margin:4px 0 0; font-size:clamp(30px,4vw,46px); line-height:1.06; letter-spacing:-1.7px; font-weight:750; }
.sovo-cart-kicker { display:block; color:#6b6b6b; font-size:11px; line-height:1; text-transform:uppercase; letter-spacing:1.4px; font-weight:700; }
.sovo-cart-continue { color:#171717; font-size:13px; font-weight:650; text-decoration:none; border-bottom:1px solid #c9c9c9; padding-bottom:3px; }
.sovo-cart-layout { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(330px,.8fr); gap:52px; align-items:start; }
.sovo-cart-main { min-width:0; }
.sovo-cart-items { border-top:1px solid #dedede; }
.sovo-cart-item { display:grid; grid-template-columns:118px minmax(0,1fr); gap:22px; padding:24px 0; border-bottom:1px solid #dedede; }
.sovo-cart-item__image { position:relative; border:1px solid #e4e4e4; border-radius:12px; overflow:hidden; background:#f7f7f7; aspect-ratio:1; }
.sovo-cart-item__image img { width:100%; height:100%; object-fit:cover; display:block; }
.sovo-cart-item__details { min-width:0; display:flex; flex-direction:column; justify-content:space-between; }
.sovo-cart-item__top { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; }
.sovo-cart-item__name { margin:0; font-size:16px; line-height:1.35; font-weight:700; }
.sovo-cart-item__name a { color:#171717; text-decoration:none; }
.sovo-cart-item__meta { margin-top:7px; color:#737373; font-size:12px; }
.sovo-cart-item__meta dl { margin:0; }
.sovo-cart-item__meta dt,.sovo-cart-item__meta dd { display:inline; margin:0 3px 0 0; }
.sovo-cart-item__subtotal { white-space:nowrap; font-size:15px; font-weight:750; }
.sovo-premium-cart .woocommerce-Price-amount { color:#171717 !important; font-weight:inherit !important; }
.sovo-cart-item__bottom { display:flex; align-items:flex-end; gap:18px; margin-top:18px; }
.sovo-cart-small-label { display:block; margin-bottom:6px; color:#737373; font-size:10px; letter-spacing:.8px; text-transform:uppercase; font-weight:700; }
.sovo-premium-cart .quantity .qty { width:74px; height:42px; border:1px solid #cfcfcf; border-radius:8px; padding:0 10px; background:#fff; color:#171717; }
.sovo-cart-remove { color:#6a6a6a !important; font-size:12px !important; font-weight:650; text-decoration:underline; text-underline-offset:3px; }
.sovo-cart-actions { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; padding-top:24px; }
.sovo-cart-coupon { display:block !important; width:min(100%,390px); }
.sovo-cart-coupon > label { display:block; margin-bottom:8px; color:#444; font-size:12px; font-weight:650; }
.sovo-cart-coupon__row { display:flex; gap:8px; }
.sovo-premium-cart .sovo-cart-coupon .input-text { min-width:0; flex:1; height:44px; border:1px solid #cfcfcf; border-radius:8px; padding:0 13px; }
.sovo-premium-cart .sovo-cart-coupon button,.sovo-update-cart { height:44px; border:1px solid #171717 !important; border-radius:8px !important; padding:0 18px !important; background:#fff !important; color:#171717 !important; font-size:12px !important; font-weight:700 !important; }
.sovo-update-cart { white-space:nowrap; }
.sovo-cart-summary { position:relative; }
.sovo-cart-summary:before { content:""; position:absolute; top:-36px; bottom:-80px; left:-28px; right:calc((100vw - min(1240px,100vw - 30px))/ -2); background:#f6f6f4; z-index:-1; border-left:1px solid #e4e4e1; }
.sovo-cart-summary__inner { position:sticky; top:24px; }
.sovo-cart-summary .cart-collaterals { width:100%; float:none; margin:14px 0 0; padding:0; background:transparent; border:0; }
.sovo-cart-summary .cart_totals { width:100% !important; float:none !important; }
.sovo-cart-summary .cart_totals h2 { display:none; }
.sovo-cart-summary .shop_table { border:0 !important; background:transparent !important; margin:0 !important; }
.sovo-cart-summary .shop_table th,.sovo-cart-summary .shop_table td { border:0 !important; border-bottom:1px solid #dededb !important; background:transparent !important; padding:15px 0 !important; color:#323232; font-size:13px; text-transform:none; letter-spacing:0; }
.sovo-cart-summary .shop_table th { font-weight:500; }
.sovo-cart-summary .shop_table td { text-align:right; font-weight:650; }
.sovo-cart-summary .shop_table .order-total th,.sovo-cart-summary .shop_table .order-total td { padding-top:20px !important; border-bottom:0 !important; font-size:17px; font-weight:750; }
.sovo-cart-summary .wc-proceed-to-checkout { padding:20px 0 0 !important; }
.woocommerce-cart .sovo-cart-summary .wc-proceed-to-checkout a.checkout-button { display:flex; align-items:center; justify-content:center; min-height:54px; margin:0; border-radius:8px !important; background:#171717 !important; color:#fff !important; font-size:14px; font-weight:750; letter-spacing:.1px; box-shadow:none; }
.woocommerce-cart .sovo-cart-summary .wc-proceed-to-checkout a.checkout-button:hover { background:#000 !important; transform:translateY(-1px); }
.sovo-cart-reassurance { margin-top:20px; padding-top:18px; border-top:1px solid #dededb; display:grid; gap:13px; }
.sovo-cart-reassurance > div { display:flex; align-items:center; gap:11px; }
.sovo-cart-reassurance > div > span { width:30px; height:30px; display:grid; place-items:center; flex:0 0 30px; border:1px solid #d8d8d4; border-radius:50%; font-size:13px; font-weight:750; }
.sovo-cart-reassurance p { margin:0; line-height:1.25; }
.sovo-cart-reassurance strong { display:block; font-size:12px; }
.sovo-cart-reassurance small { display:block; margin-top:2px; color:#777; font-size:10px; }
.sovo-premium-cart .woocommerce-shipping-calculator { margin-top:8px; }
.sovo-premium-cart .shipping-calculator-button { color:#171717; font-size:12px; }

@media (max-width: 900px) {
  .sovo-cart-layout { grid-template-columns:1fr; gap:38px; }
  .sovo-cart-summary:before { left:calc((100vw - 100%)/-2); right:calc((100vw - 100%)/-2); top:-24px; bottom:-60px; border-left:0; border-top:1px solid #e4e4e1; }
  .sovo-cart-summary__inner { position:static; padding-top:4px; }
}
@media (max-width: 640px) {
  .woocommerce-cart .container:has(.sovo-premium-cart) { padding-top:24px !important; }
  .sovo-cart-heading { align-items:flex-start; margin-bottom:22px; }
  .sovo-cart-heading h1 { font-size:31px; letter-spacing:-1px; }
  .sovo-cart-continue { font-size:0; border:0; }
  .sovo-cart-continue span { font-size:22px; }
  .sovo-cart-item { grid-template-columns:88px minmax(0,1fr); gap:14px; padding:18px 0; }
  .sovo-cart-item__top { gap:10px; }
  .sovo-cart-item__name { font-size:14px; }
  .sovo-cart-item__subtotal { font-size:13px; }
  .sovo-cart-actions { display:grid; grid-template-columns:1fr; align-items:stretch; }
  .sovo-cart-coupon { width:100%; }
  .sovo-update-cart { width:100%; }
  .sovo-cart-summary:before { left:-15px; right:-15px; }
}

/* Cart quantity controls and bin remove button */
.woocommerce-cart .sovo-update-cart {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sovo-quantity-control {
  display: inline-grid;
  grid-template-columns: 38px 48px 38px;
  align-items: stretch;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.sovo-quantity-control .quantity {
  display: block !important;
  width: 48px !important;
  margin: 0 !important;
}

.sovo-quantity-control input.qty {
  width: 48px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-left: 1px solid #e4e4e4 !important;
  border-right: 1px solid #e4e4e4 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #171717 !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
}

.sovo-quantity-control input.qty::-webkit-inner-spin-button,
.sovo-quantity-control input.qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.sovo-qty-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}

.sovo-qty-button:hover,
.sovo-qty-button:focus-visible {
  background: #f2f2f2;
  color: #000;
  outline: none;
}

.sovo-quantity-control.is-locked {
  display: inline-block;
  width: 48px;
}

.sovo-quantity-control.is-locked .quantity {
  width: 48px !important;
}

.sovo-quantity-control.is-locked input.qty {
  border: 0 !important;
}

.sovo-cart-remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #5f5f5f !important;
  text-decoration: none !important;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
}

.sovo-cart-remove:hover,
.sovo-cart-remove:focus-visible {
  border-color: #d92d20;
  background: #fff5f4;
  color: #d92d20 !important;
  transform: translateY(-1px);
  outline: none;
}

.sovo-bin-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  pointer-events: none;
}

.woocommerce-cart .woocommerce-cart-form.processing .sovo-quantity-control,
.woocommerce-cart .woocommerce-cart-form.processing .sovo-cart-remove {
  opacity: .55;
  pointer-events: none;
}

@media (max-width: 520px) {
  .sovo-quantity-control {
    grid-template-columns: 34px 42px 34px;
    height: 38px;
  }
  .sovo-quantity-control .quantity,
  .sovo-quantity-control input.qty {
    width: 42px !important;
  }
  .sovo-qty-button {
    width: 34px;
    height: 36px;
  }
  .sovo-cart-remove {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   MR Accessories cart v2 — clean premium table layout
   ========================================================= */
.woocommerce-cart .container:has(.sovo-cart-v2){max-width:1460px!important;padding:38px 28px 60px!important}
.sovo-cart-v2{font-family:inherit;color:#101010}
.sovo-cart-v2 .sovo-cart-heading{margin:0 0 20px;display:block}
.sovo-cart-v2 .sovo-cart-heading h1{margin:0;font-size:30px;line-height:1.2;text-transform:uppercase;font-weight:800;letter-spacing:-.4px}
.sovo-cart-v2 .sovo-cart-heading h1:after{content:"";display:block;width:52px;height:3px;background:#111;margin-top:13px}
.sovo-cart-v2 .sovo-cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:26px;align-items:start}
.sovo-cart-v2 .sovo-cart-main{min-width:0}
.sovo-cart-v2 .woocommerce-cart-form{border:1px solid #e0e0e0;border-radius:14px;overflow:hidden;background:#fff}
.sovo-cart-v2 .sovo-cart-table-head{display:grid;grid-template-columns:minmax(330px,1.9fr) minmax(115px,.65fr) minmax(160px,.85fr) minmax(130px,.7fr) 48px;gap:16px;align-items:center;padding:21px 24px;border-bottom:1px solid #e5e5e5;font-size:14px;font-weight:800;text-transform:uppercase}
.sovo-cart-v2 .sovo-cart-items{border:0}
.sovo-cart-v2 .sovo-cart-item{display:grid;grid-template-columns:minmax(330px,1.9fr) minmax(115px,.65fr) minmax(160px,.85fr) minmax(130px,.7fr) 48px;gap:16px;align-items:center;padding:18px 24px;border:0;border-bottom:1px solid #e7e7e7}
.sovo-cart-v2 .sovo-cart-item:last-child{border-bottom:0}
.sovo-cart-v2 .sovo-cart-product-cell{display:grid;grid-template-columns:148px minmax(0,1fr);gap:24px;align-items:center;min-width:0}
.sovo-cart-v2 .sovo-cart-item__image{width:148px;height:148px;aspect-ratio:auto;border:1px solid #dedede;border-radius:9px;background:#fafafa;overflow:hidden}
.sovo-cart-v2 .sovo-cart-item__image a,.sovo-cart-v2 .sovo-cart-item__image img{display:block;width:100%;height:100%}
.sovo-cart-v2 .sovo-cart-item__image img{object-fit:contain;padding:8px}
.sovo-cart-v2 .sovo-cart-item__details{display:block}
.sovo-cart-v2 .sovo-cart-item__name{margin:0 0 12px;font-size:19px;line-height:1.18;font-weight:800;max-width:230px}
.sovo-cart-v2 .sovo-cart-item__name a{color:#111;text-decoration:none}
.sovo-cart-v2 .sovo-cart-item__meta{margin:0;font-size:14px;line-height:1.55;color:#555}
.sovo-cart-v2 .sovo-cart-item__meta dl{margin:0}
.sovo-cart-v2 .sovo-cart-item__meta dt,.sovo-cart-v2 .sovo-cart-item__meta dd{display:inline;margin:0 4px 0 0}
.sovo-cart-v2 .sovo-cart-category a{color:#555;text-decoration:none}
.sovo-cart-v2 .sovo-cart-price-cell,.sovo-cart-v2 .sovo-cart-subtotal-cell{font-size:18px;font-weight:600;white-space:nowrap}
.sovo-cart-v2 .sovo-cart-subtotal-cell{font-weight:800}
.sovo-cart-v2 .sovo-mobile-label{display:none}
.sovo-cart-v2 .sovo-quantity-control{width:158px;height:56px;display:grid;grid-template-columns:48px 1fr 48px;border:1px solid #cfcfcf;border-radius:8px;overflow:hidden;background:#fff;box-shadow:none}
.sovo-cart-v2 .sovo-quantity-control .quantity{width:auto!important;height:100%!important;margin:0!important;display:block!important;border-left:1px solid #ddd;border-right:1px solid #ddd}
.sovo-cart-v2 .sovo-quantity-control input.qty{width:100%!important;height:100%!important;border:0!important;border-radius:0!important;padding:0!important;text-align:center!important;font-size:18px!important;font-weight:600!important;background:#fff!important;box-shadow:none!important}
.sovo-cart-v2 .sovo-qty-button{width:48px;height:54px;border:0!important;border-radius:0!important;background:#fff!important;color:#111!important;font-size:27px!important;font-weight:400!important;line-height:1!important;padding:0!important;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s ease}
.sovo-cart-v2 .sovo-qty-button:hover{background:#f3f3f3!important}
.sovo-cart-v2 .sovo-quantity-control.is-locked{grid-template-columns:1fr;width:62px}
.sovo-cart-v2 .sovo-quantity-control.is-locked .quantity{border:0}
.sovo-cart-v2 .sovo-cart-remove-cell{text-align:center}
.sovo-cart-v2 .sovo-cart-remove{display:inline-flex!important;align-items:center;justify-content:center;width:44px;height:44px;color:#242424!important;background:transparent!important;text-decoration:none!important;border-radius:8px;transition:color .2s ease,background .2s ease,transform .2s ease}
.sovo-cart-v2 .sovo-cart-remove:hover{color:#d51616!important;background:#fff0f0!important;transform:scale(1.06)}
.sovo-cart-v2 .sovo-bin-icon{width:29px;height:29px;fill:currentColor;display:block}
.sovo-cart-v2 .sovo-hidden-cart-actions{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.sovo-cart-v2 .sovo-update-cart{display:block!important}
.sovo-cart-v2 .sovo-cart-continue-bottom{display:inline-flex;align-items:center;gap:14px;margin-top:24px;padding:14px 27px;border:1.5px solid #111;border-radius:7px;color:#111;text-decoration:none;text-transform:uppercase;font-size:15px;font-weight:750;background:#fff;transition:.2s ease}
.sovo-cart-v2 .sovo-cart-continue-bottom span{font-size:26px;line-height:1}
.sovo-cart-v2 .sovo-cart-continue-bottom:hover{background:#111;color:#fff}
.sovo-cart-v2 .sovo-cart-summary:before{display:none!important}
.sovo-cart-v2 .sovo-cart-summary__inner{position:sticky;top:20px;border:1px solid #dedede;border-radius:14px;background:#fff;padding:25px 25px 22px}
.sovo-cart-v2 .sovo-cart-summary__inner>h2{margin:0;padding:0 0 20px;border-bottom:1px solid #ddd;font-size:23px;line-height:1.2;text-transform:uppercase;font-weight:800}
.sovo-cart-v2 .sovo-cart-summary .cart-collaterals{margin:8px 0 0!important}
.sovo-cart-v2 .sovo-cart-summary .shop_table th,.sovo-cart-v2 .sovo-cart-summary .shop_table td{padding:14px 0!important;border:0!important;font-size:16px!important;color:#111!important;vertical-align:top}
.sovo-cart-v2 .sovo-cart-summary .shop_table tr:not(.order-total) th,.sovo-cart-v2 .sovo-cart-summary .shop_table tr:not(.order-total) td{border-bottom:0!important}
.sovo-cart-v2 .sovo-cart-summary .shop_table .order-total th,.sovo-cart-v2 .sovo-cart-summary .shop_table .order-total td{border-top:1px solid #ddd!important;padding-top:20px!important;font-size:19px!important;font-weight:800!important}
.sovo-cart-v2 .sovo-cart-summary .woocommerce-shipping-destination,.sovo-cart-v2 .sovo-cart-summary .woocommerce-shipping-calculator{font-size:12px;color:#666}
.woocommerce-cart .sovo-cart-v2 .sovo-cart-summary .wc-proceed-to-checkout{padding:16px 0 0!important}
.woocommerce-cart .sovo-cart-v2 .sovo-cart-summary .wc-proceed-to-checkout a.checkout-button{min-height:60px!important;border-radius:7px!important;text-transform:uppercase!important;font-size:16px!important;font-weight:800!important;letter-spacing:.2px!important;background:#080808!important}
.woocommerce-cart .sovo-cart-v2 .sovo-cart-summary .wc-proceed-to-checkout a.checkout-button:after{content:"→";font-size:25px;margin-left:auto;line-height:1}
.woocommerce-cart .sovo-cart-v2 .sovo-cart-summary .wc-proceed-to-checkout a.checkout-button{padding:0 22px!important;justify-content:flex-start!important}
.sovo-cart-v2 .sovo-cart-reassurance{margin-top:18px;display:grid;gap:15px}
.sovo-cart-v2 .sovo-cart-reassurance>div{display:grid;grid-template-columns:39px 1fr;gap:13px;align-items:center}
.sovo-cart-v2 .sovo-trust-icon{width:34px;height:34px;border:1.8px solid #111;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:17px;font-weight:800;color:#111}
.sovo-cart-v2 .sovo-cart-reassurance p{margin:0;display:flex;flex-direction:column;line-height:1.25}
.sovo-cart-v2 .sovo-cart-reassurance strong{font-size:14px}
.sovo-cart-v2 .sovo-cart-reassurance small{font-size:12px;color:#666;margin-top:4px}
.sovo-cart-v2 .woocommerce-error,.sovo-cart-v2 .woocommerce-message,.sovo-cart-v2 .woocommerce-info{margin-bottom:18px}

@media(max-width:1100px){
 .sovo-cart-v2 .sovo-cart-layout{grid-template-columns:minmax(0,1fr) 330px}
 .sovo-cart-v2 .sovo-cart-table-head,.sovo-cart-v2 .sovo-cart-item{grid-template-columns:minmax(280px,1.65fr) 100px 145px 110px 42px;gap:12px;padding-left:18px;padding-right:18px}
 .sovo-cart-v2 .sovo-cart-product-cell{grid-template-columns:105px minmax(0,1fr);gap:16px}
 .sovo-cart-v2 .sovo-cart-item__image{width:105px;height:105px}
 .sovo-cart-v2 .sovo-cart-item__name{font-size:16px}
 .sovo-cart-v2 .sovo-cart-price-cell,.sovo-cart-v2 .sovo-cart-subtotal-cell{font-size:15px}
 .sovo-cart-v2 .sovo-quantity-control{width:140px;height:50px;grid-template-columns:43px 1fr 43px}
 .sovo-cart-v2 .sovo-qty-button{width:43px;height:48px}
}
@media(max-width:860px){
 .woocommerce-cart .container:has(.sovo-cart-v2){padding:24px 15px 45px!important}
 .sovo-cart-v2 .sovo-cart-heading h1{font-size:25px}
 .sovo-cart-v2 .sovo-cart-layout{grid-template-columns:1fr;gap:24px}
 .sovo-cart-v2 .sovo-cart-table-head{display:none}
 .sovo-cart-v2 .woocommerce-cart-form{border-radius:11px}
 .sovo-cart-v2 .sovo-cart-item{grid-template-columns:1fr auto;grid-template-areas:"product remove" "price price" "qty subtotal";gap:14px 12px;padding:16px}
 .sovo-cart-v2 .sovo-cart-product-cell{grid-area:product;grid-template-columns:95px minmax(0,1fr);gap:14px}
 .sovo-cart-v2 .sovo-cart-item__image{width:95px;height:95px}
 .sovo-cart-v2 .sovo-cart-item__name{font-size:16px;margin-bottom:7px}
 .sovo-cart-v2 .sovo-cart-item__meta{font-size:12px}
 .sovo-cart-v2 .sovo-cart-price-cell{grid-area:price;display:flex;justify-content:space-between;padding-top:12px;border-top:1px solid #eee}
 .sovo-cart-v2 .sovo-cart-qty-cell{grid-area:qty}
 .sovo-cart-v2 .sovo-cart-subtotal-cell{grid-area:subtotal;text-align:right;align-self:end}
 .sovo-cart-v2 .sovo-cart-remove-cell{grid-area:remove;align-self:start}
 .sovo-cart-v2 .sovo-mobile-label{display:block;font-size:11px;text-transform:uppercase;font-weight:700;color:#777;margin-bottom:7px}
 .sovo-cart-v2 .sovo-cart-price-cell .sovo-mobile-label{margin:0}
 .sovo-cart-v2 .sovo-cart-continue-bottom{width:100%;justify-content:center}
 .sovo-cart-v2 .sovo-cart-summary__inner{position:static}
}
@media(max-width:430px){
 .sovo-cart-v2 .sovo-cart-product-cell{grid-template-columns:82px minmax(0,1fr)}
 .sovo-cart-v2 .sovo-cart-item__image{width:82px;height:82px}
 .sovo-cart-v2 .sovo-quantity-control{width:132px;height:46px;grid-template-columns:40px 1fr 40px}
 .sovo-cart-v2 .sovo-qty-button{width:40px;height:44px;font-size:23px!important}
 .sovo-cart-v2 .sovo-quantity-control input.qty{font-size:16px!important}
 .sovo-cart-v2 .sovo-bin-icon{width:27px;height:27px}
 .sovo-cart-v2 .sovo-cart-summary__inner{padding:20px 18px}
}

/* Bismillah banner removed from homepage. Fallback prevents stale markup from displaying. */
.sovo-hero__bismillah-wrap { display: none !important; }

/* =========================================================
   Guest checkout + universal WooCommerce stock status badges
   ========================================================= */
.woocommerce-form-login-toggle,
.woocommerce-form-login,
.woocommerce-account-fields,
.create-account,
#createaccount_field,
.woocommerce-checkout .woocommerce-form__label-for-checkbox.checkbox span:has(+ #createaccount) {
  display: none !important;
}

.sovo-universal-stock-badge,
.sovo-stock-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.sovo-universal-stock-badge.is-in-stock,
.sovo-stock-badge:not([style]) {
  color: #18794e;
  background: #e8f8ee;
  border-color: #bde8cd;
}

.sovo-universal-stock-badge.is-out-of-stock {
  color: #b42318;
  background: #fff0ee;
  border-color: #f5c2bd;
}

.woocommerce ul.products li.product .sovo-universal-stock-badge {
  margin: 7px 0 3px;
}

.sovo-single-stock-wrap {
  margin: 8px 0 14px;
}

.sovo-cart-stock-line,
.sovo-order-stock-line {
  display: block;
  margin-top: 6px;
}

.sovo-product-card__body > .sovo-product-card__sku + .sovo-product-card__name {
  margin-top: 5px;
}

@media (max-width: 480px) {
  .sovo-universal-stock-badge,
  .sovo-stock-badge {
    padding: 3px 8px;
    font-size: 10px;
  }

  .sovo-cart-stock-line,
  .sovo-order-stock-line {
    margin-top: 4px;
  }
}

/* =========================================================
   PRODUCT ACTIONS — rounded Add to Cart + Buy Now side-by-side
   ========================================================= */
.sovo-product-footer {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.sovo-product-stock-row {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 9px;
}
.sovo-stock-badge--out {
  background: #fee2e2 !important;
  color: #b91c1c !important;
}
.sovo-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  width: 100%;
}
.sovo-product-actions .sovo-atc-btn,
.sovo-product-actions .sovo-buy-now-btn {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.sovo-product-actions .sovo-atc-btn {
  border: 1px solid #07111f;
  background: #07111f;
  color: #fff;
}
.sovo-product-actions .sovo-buy-now-btn {
  border: 1px solid #07111f;
  background: #fff;
  color: #07111f;
}
.sovo-product-actions .sovo-atc-btn:hover,
.sovo-product-actions .sovo-buy-now-btn:hover {
  background: #182131;
  border-color: #182131;
  color: #fff;
  transform: translateY(-1px);
}
.sovo-product-actions .sovo-atc-btn--full {
  grid-column: 1 / -1;
}

/* Standard WooCommerce product loops. */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .sovo-loop-buy-now {
  box-sizing: border-box;
  width: calc(50% - 5px);
  min-height: 42px;
  margin: 10px 4px 0 0;
  padding: 10px 7px;
  border: 1px solid #07111f;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_simple {
  background: #07111f;
  color: #fff;
}
.woocommerce ul.products li.product .sovo-loop-buy-now {
  margin-right: 0;
  background: #fff;
  color: #07111f;
}
.woocommerce ul.products li.product .sovo-loop-buy-now:hover {
  background: #182131;
  color: #fff;
}

/* Single product page. */
.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .sovo-single-buy-now {
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid #07111f;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}
.single-product form.cart .sovo-single-buy-now {
  margin-left: 9px;
  background: #fff;
  color: #07111f;
}
.single-product form.cart .sovo-single-buy-now:hover {
  background: #07111f;
  color: #fff;
}

@media (max-width: 600px) {
  .sovo-product-actions {
    gap: 6px;
  }
  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 38px;
    padding: 8px 5px;
    border-radius: 10px;
    font-size: 10px;
    gap: 3px;
  }
  .sovo-product-actions .sovo-atc-btn i {
    font-size: 12px;
  }
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .sovo-loop-buy-now {
    min-height: 39px;
    padding: 8px 5px;
    border-radius: 10px;
    font-size: 10px;
  }
  .single-product form.cart .single_add_to_cart_button,
  .single-product form.cart .sovo-single-buy-now {
    min-height: 43px;
    padding: 10px 13px;
    border-radius: 11px;
    font-size: 13px;
  }
}

/* =========================================================
   UNIVERSAL SKU + SAME ACTION BUTTONS ON EVERY PRODUCT LOOP
   ========================================================= */
.sovo-product-card__sku,
.sovo-universal-sku-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 9px;
  border: 1px solid #bde8cd;
  border-radius: 999px;
  background: #e8f8ee;
  color: #18794e;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sovo-product-card__sku {
  margin: 0 0 6px;
}

.sovo-sku-label {
  margin-right: 2px;
  font-weight: 800;
}

.woocommerce ul.products li.product .sovo-universal-sku-badge {
  margin: 6px 0 2px;
}

.sovo-single-sku-wrap {
  margin: 7px 0 10px;
}

.sovo-cart-sku-line,
.sovo-order-sku-line {
  display: block;
  margin-top: 6px;
}

/* One two-column button row on shop, category, search, related and upsell cards. */
.woocommerce ul.products li.product .sovo-loop-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  margin-top: 10px;
}

.woocommerce ul.products li.product .sovo-loop-actions > .button,
.woocommerce ul.products li.product .sovo-loop-actions > .sovo-loop-buy-now {
  box-sizing: border-box;
  width: 100% !important;
  min-width: 0;
  min-height: 42px;
  margin: 0 !important;
  padding: 9px 7px;
  border: 1px solid #07111f;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.woocommerce ul.products li.product .sovo-loop-actions > .add_to_cart_button,
.woocommerce ul.products li.product .sovo-loop-actions > .product_type_simple,
.woocommerce ul.products li.product .sovo-loop-actions > .product_type_variable,
.woocommerce ul.products li.product .sovo-loop-actions > .product_type_grouped,
.woocommerce ul.products li.product .sovo-loop-actions > .product_type_external {
  background: #07111f;
  color: #fff;
}

.woocommerce ul.products li.product .sovo-loop-actions > .sovo-loop-buy-now {
  background: #fff;
  color: #07111f;
}

.woocommerce ul.products li.product .sovo-loop-actions > .button:hover,
.woocommerce ul.products li.product .sovo-loop-actions > .sovo-loop-buy-now:hover {
  border-color: #182131;
  background: #182131;
  color: #fff;
  transform: translateY(-1px);
}

/* Keep WooCommerce's AJAX "View cart" link from breaking the two-button row. */
.woocommerce ul.products li.product .sovo-loop-actions > .added_to_cart {
  grid-column: 1 / -1;
  margin: 0;
  padding: 5px 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .sovo-product-card__sku,
  .sovo-universal-sku-badge {
    padding: 3px 7px;
    font-size: 9px;
  }

  .woocommerce ul.products li.product .sovo-loop-actions {
    gap: 6px;
    margin-top: 8px;
  }

  .woocommerce ul.products li.product .sovo-loop-actions > .button,
  .woocommerce ul.products li.product .sovo-loop-actions > .sovo-loop-buy-now {
    min-height: 38px;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: 10px;
  }
}

/* =========================================================
   v1.6 — HOMEPAGE PRODUCT CARD ON EVERY WOOCOMMERCE LOOP
   ========================================================= */
.woocommerce ul.products li.product.sovo-loop-product-card {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products li.product.sovo-loop-product-card .sovo-product-card {
  height: 100%;
  margin: 0;
}

/* WooCommerce archives now use the same responsive card grid as Home. */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

/* Always keep the complete button label visible. */
.sovo-product-actions .sovo-atc-btn,
.sovo-product-actions .sovo-buy-now-btn {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  word-break: normal;
  padding-left: 7px;
  padding-right: 7px;
  line-height: 1.15;
}

.sovo-product-actions .sovo-atc-btn i {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 42px;
    font-size: 10px;
    padding: 7px 4px;
  }
}

@media (max-width: 370px) {
  .sovo-product-actions {
    grid-template-columns: 1fr;
  }

  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 38px;
    font-size: 11px;
  }
}

/* =========================================================
   v1.7 — COMPACT MOBILE PRODUCT CARDS + SIDE-BY-SIDE PRICES
   Applies to Home, Shop, Categories, Search, Related & Upsells
   ========================================================= */
@media (max-width: 600px) {
  .sovo-products,
  .woocommerce ul.products {
    gap: 8px !important;
  }

  .sovo-product-card {
    border-radius: 14px !important;
    box-shadow: 0 5px 14px rgba(7,17,31,.05) !important;
  }

  .sovo-product-card__img {
    height: 112px !important;
    min-height: 112px !important;
  }

  .sovo-product-card__body {
    padding: 8px !important;
  }

  .sovo-product-card__sku {
    margin-bottom: 4px !important;
    padding: 2px 6px !important;
    font-size: 8px !important;
  }

  .sovo-product-card__name {
    min-height: 28px !important;
    margin-bottom: 5px !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  /* Remove secondary rows on phones to keep every card short and clean. */
  .sovo-product-card .sovo-spec-chips,
  .sovo-product-card .sovo-product-rating {
    display: none !important;
  }

  /* WooCommerce outputs sale prices as DEL + INS. Keep both opposite each other. */
  .sovo-product-card .sovo-price {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 5px !important;
    width: 100% !important;
    min-height: 22px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  .sovo-product-card .sovo-price del,
  .sovo-product-card .sovo-price ins {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .sovo-product-card .sovo-price ins {
    order: 2;
    text-decoration: none !important;
  }

  .sovo-product-card .sovo-price del {
    order: 1;
    opacity: .62;
  }

  .sovo-product-card .sovo-price > .woocommerce-Price-amount,
  .sovo-product-card .sovo-price ins .woocommerce-Price-amount {
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  .sovo-product-card .sovo-price del .woocommerce-Price-amount {
    font-size: 9px !important;
    line-height: 1.1 !important;
  }

  .sovo-product-footer {
    margin-top: 6px !important;
    padding-top: 6px !important;
  }

  .sovo-product-stock-row {
    min-height: 18px !important;
    margin-bottom: 5px !important;
  }

  .sovo-stock-badge,
  .sovo-universal-stock-badge {
    padding: 2px 6px !important;
    font-size: 8px !important;
  }

  .sovo-product-actions {
    gap: 5px !important;
  }

  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 34px !important;
    padding: 5px 3px !important;
    border-radius: 9px !important;
    font-size: 9px !important;
    line-height: 1.08 !important;
  }

  .sovo-product-actions .sovo-atc-btn i {
    font-size: 10px !important;
  }

  .sovo-badge {
    top: 6px !important;
    left: 6px !important;
    padding: 2px 6px !important;
    font-size: 8px !important;
  }

  .sovo-wishlist-btn {
    top: 5px !important;
    right: 5px !important;
    width: 25px !important;
    height: 25px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 380px) {
  .sovo-product-card__img {
    height: 102px !important;
    min-height: 102px !important;
  }

  .sovo-product-card__body {
    padding: 7px !important;
  }

  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 33px !important;
    font-size: 8.5px !important;
  }
}


/* Mobile product card larger image v1.7.1 */
@media (max-width:768px){
.sovo-product-card,
.product-card,
.products .product{
    min-height:360px!important;
}
.sovo-product-card__image,
.product-card__image,
.products .product img,
.woocommerce ul.products li.product img{
    height:170px!important;
    width:100%!important;
    object-fit:contain!important;
    padding:8px!important;
}
.sovo-product-card__content,
.product-card__content{
    padding:12px!important;
}
}


/* =========================================================
   v1.7.3 — MOBILE FULL PRODUCT IMAGE FIX
   Uses the original product image and prevents all cropping.
   ========================================================= */
@media (max-width: 768px) {
  .sovo-product-card {
    min-height: 390px !important;
  }

  .sovo-product-card__img {
    height: 190px !important;
    min-height: 190px !important;
    aspect-ratio: auto !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: var(--bg-2) !important;
  }

  .sovo-product-card__img img,
  .woocommerce ul.products li.product .sovo-product-card__img img,
  .products .product .sovo-product-card__img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  .sovo-product-card:hover .sovo-product-card__img img {
    transform: none !important;
  }
}

@media (max-width: 380px) {
  .sovo-product-card {
    min-height: 375px !important;
  }

  .sovo-product-card__img {
    height: 178px !important;
    min-height: 178px !important;
    padding: 8px !important;
  }
}

/* =========================================================
   v1.8 DESKTOP SHOP PRICES + SINGLE PRODUCT ACTIONS
   ========================================================= */
@media (min-width: 769px) {
  /* Shop/category/search prices use the same colours as homepage cards. */
  .woocommerce ul.products li.product .price,
  .woocommerce ul.products li.product .price ins,
  .woocommerce ul.products li.product .price ins .woocommerce-Price-amount,
  .woocommerce ul.products li.product .price > .woocommerce-Price-amount {
    color: var(--teal) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .woocommerce ul.products li.product .price del,
  .woocommerce ul.products li.product .price del .woocommerce-Price-amount {
    color: var(--text-4) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  /* Single product buttons match the homepage black/white action pair. */
  .single-product form.cart {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .single-product form.cart .single_add_to_cart_button,
  .single-product form.cart .sovo-single-buy-now {
    box-sizing: border-box !important;
    min-width: 155px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 12px 22px !important;
    border: 1px solid #07111f !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  .single-product form.cart .single_add_to_cart_button {
    background: #07111f !important;
    border-color: #07111f !important;
    color: #fff !important;
  }

  .single-product form.cart .sovo-single-buy-now {
    background: #fff !important;
    border-color: #07111f !important;
    color: #07111f !important;
  }

  .single-product form.cart .single_add_to_cart_button:hover,
  .single-product form.cart .sovo-single-buy-now:hover {
    background: #182131 !important;
    border-color: #182131 !important;
    color: #fff !important;
  }
}

/* Single product quantity: one box in + 3 - order. */
.single-product form.cart .sovo-single-qty-control {
  box-sizing: border-box;
  width: 142px;
  height: 48px;
  display: grid;
  grid-template-columns: 44px minmax(45px, 1fr) 44px;
  align-items: stretch;
  flex: 0 0 142px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #cfd3d8;
  border-radius: 12px;
  background: #fff;
}

.single-product form.cart .sovo-single-qty-control .quantity {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  float: none !important;
  border-left: 1px solid #e2e4e7;
  border-right: 1px solid #e2e4e7;
}

.single-product form.cart .sovo-single-qty-control input.qty {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #07111f !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  text-align: center !important;
  box-shadow: none !important;
  appearance: textfield;
  -moz-appearance: textfield;
}

.single-product form.cart .sovo-single-qty-control input.qty::-webkit-inner-spin-button,
.single-product form.cart .sovo-single-qty-control input.qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.single-product form.cart .sovo-single-qty-btn {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #07111f;
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease;
}

.single-product form.cart .sovo-single-qty-btn:hover {
  background: #f3f5f7;
}

@media (max-width: 768px) {
  .single-product form.cart {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .single-product form.cart .sovo-single-qty-control {
    width: 132px;
    height: 44px;
    flex-basis: 132px;
    grid-template-columns: 40px minmax(42px, 1fr) 40px;
  }

  .single-product form.cart .sovo-single-qty-control input.qty {
    line-height: 44px !important;
  }

  .single-product form.cart .single_add_to_cart_button,
  .single-product form.cart .sovo-single-buy-now {
    min-height: 44px !important;
    margin: 0 !important;
    border: 1px solid #07111f !important;
    border-radius: 11px !important;
    font-weight: 700 !important;
  }

  .single-product form.cart .single_add_to_cart_button {
    background: #07111f !important;
    color: #fff !important;
  }

  .single-product form.cart .sovo-single-buy-now {
    background: #fff !important;
    color: #07111f !important;
  }
}

/* =========================================================
   v1.8.1 MOBILE PRODUCT QUANTITY + DESKTOP-STYLE ACTIONS
   ========================================================= */
@media (max-width: 768px) {
  /* Keep the single-product quantity selector identical to desktop: + value −. */
  .single-product form.cart {
    display: grid !important;
    grid-template-columns: 142px minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .single-product form.cart .sovo-single-qty-control {
    width: 142px !important;
    height: 48px !important;
    min-width: 142px !important;
    flex-basis: 142px !important;
    grid-template-columns: 44px minmax(45px, 1fr) 44px !important;
    border-radius: 12px !important;
  }

  .single-product form.cart .sovo-single-qty-control input.qty {
    height: 48px !important;
    line-height: 48px !important;
    font-size: 16px !important;
  }

  .single-product form.cart .sovo-single-qty-btn {
    font-size: 21px !important;
  }

  /* Match desktop black Add to Cart and white Buy Now buttons. */
  .single-product form.cart .single_add_to_cart_button,
  .single-product form.cart .sovo-single-buy-now {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 11px 8px !important;
    border: 1px solid #07111f !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  .single-product form.cart .single_add_to_cart_button {
    background: #07111f !important;
    border-color: #07111f !important;
    color: #fff !important;
  }

  .single-product form.cart .sovo-single-buy-now {
    background: #fff !important;
    border-color: #07111f !important;
    color: #07111f !important;
  }

  /* Product-card buttons also retain the same desktop pair on mobile. */
  .sovo-product-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .sovo-product-actions .sovo-atc-btn,
  .sovo-product-actions .sovo-buy-now-btn {
    min-height: 42px !important;
    padding: 9px 6px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 520px) {
  .single-product form.cart {
    grid-template-columns: 1fr 1fr !important;
  }

  .single-product form.cart .sovo-single-qty-control {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
  }
}


/* Required product color swatches */
.sovo-color-selector{width:100%;margin:14px 0 18px;clear:both}
.sovo-color-label{font-size:14px;font-weight:600;margin-bottom:9px;color:var(--text,#111827)}
.sovo-color-swatches{display:flex;align-items:center;flex-wrap:wrap;gap:9px}
.sovo-color-swatch{width:39px;height:39px;border-radius:50%;border:1px solid #b9bec7;background:#fff;padding:3px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;transition:.15s ease;box-shadow:none}
.sovo-color-swatch span{display:block;width:100%;height:100%;border-radius:50%;background:var(--sovo-swatch)}
.sovo-color-swatch:hover{transform:translateY(-1px);border-color:#7b8491}
.sovo-color-swatch.is-selected{border:3px solid #f59e0b;padding:2px;box-shadow:0 0 0 2px #fff inset}
.sovo-color-choice{font-size:12px;font-weight:600;margin-top:7px;min-height:16px}
.sovo-color-error{display:none;color:#d82020;font-size:13px;font-weight:600;margin-top:7px}
.sovo-color-selector.has-error .sovo-color-error{display:block}
.sovo-product-actions a.sovo-atc-btn{display:flex;text-decoration:none}
@media(max-width:600px){.sovo-color-swatch{width:36px;height:36px}}
