/*
Theme Name: Silvr Bear
Theme URI: https://silvrbear.com
Description: Premium Hair Scrunchies & Accessories Shop Theme with Instant Cart, WhatsApp Checkout & 2-Column Mobile Catalog.
Author: Silvr Bear
Version: 1.3.0
Text Domain: silvr-bear
*/

/* ===== CSS Variables ===== */
:root {
  --primary: #c45c7a;
  --primary-dark: #a34462;
  --soft: #f7e9ec;
  --ink: #3d2c2e;
  --bg: #fdf8f6;
  --text-muted: #756265;
  --radius-card: 20px;
}

/* ===== Global Resets ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #fdf8f6 0%, #f5ebe8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== HEADER & NAVIGATION ===== */
.sb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0e0e3;
}

.sb-nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.sb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.sb-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7e9ec, #e8c4cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(196, 92, 122, 0.15);
}

.sb-brand-text h1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.sb-brand-text small {
  display: block;
  font-size: 10px;
  color: #9a7a7f;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.sb-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.sb-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: block;
}

.sb-menu a:hover,
.sb-menu .current-menu-item > a {
  background: var(--soft);
  color: var(--primary);
}

.sb-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--soft);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.sb-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.sb-menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sb-menu-toggle.active span:nth-child(2) { opacity: 0; }
.sb-menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero-float {
  max-width: 1150px;
  margin: 18px auto 10px;
  padding: 0 16px;
}

.hero-card {
  background: linear-gradient(160deg, #fdf8f6 0%, #f9ecee 100%) !important;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(196, 92, 122, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 380px;
  border: 1px solid #f2e2e5;
}

.hero-text {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent !important;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(196, 92, 122, 0.08);
}

.hero-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 400px;
}

.hero-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px 26px;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(196, 92, 122, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Slider & Images Transparency with Multi-Layer Blend */
.hero-slider,
.hero-slides,
.hero-slide {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-slider {
  min-height: 340px;
  padding: 16px;
}

.hero-slides {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  min-width: 100%;
  padding: 10px;
}

/* Transparent Blend Mode: Turns any embedded white pixel completely invisible */
.hero-slide img,
.hero-slider img,
.hero-slides img {
  max-width: 100%;
  max-height: 340px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
  background: transparent !important;
  background-color: transparent !important;
  mix-blend-mode: multiply !important;
}

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(196, 92, 122, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dots button.active {
  background: var(--primary);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }

/* ===== SECTION WRAPPER & HEADINGS ===== */
.sb-section {
  max-width: 1150px;
  margin: 5px auto;
  padding: 24px 16px 45px;
}

.sb-section-title {
  text-align: center;
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-weight: 800;
}

.sb-section-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #e8a0b0);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ===== PRODUCT GRID & CARDS ===== */
.ts-wrap {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ts-card {
  background: #ffffff;
  border: 1px solid #f2e2e5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(196, 92, 122, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ts-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(196, 92, 122, 0.12);
}

.ts-photo-link {
  display: block;
  text-decoration: none;
  width: 100%;
}

/* Strict 1:1 Square Ratio for all images */
.ts-photo {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 100% !important;
  overflow: hidden !important;
  background: #faf5f6 !important;
}

.ts-main-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.3s ease;
}

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

/* ===== ANIMATED OFFER BADGE ===== */
.ts-offer-badge {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #ff1744 0%, #ff5252 50%, #d50000 100%) !important;
  color: #ffffff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  font-style: italic !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
  line-height: 1 !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 3px 10px rgba(213, 0, 0, 0.4) !important;
  pointer-events: none !important;
  transform-origin: center center;
  animation: tsZoomJiggle 2.2s infinite ease-in-out;
}

.ts-offer-badge::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 23, 68, 0.5);
  animation: tsAuraGlow 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes tsZoomJiggle {
  0% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.15) rotate(-12deg); }
  25% { transform: scale(1.18) rotate(10deg); }
  35% { transform: scale(1.15) rotate(-8deg); }
  45% { transform: scale(1.1) rotate(5deg); }
  55% { transform: scale(1.04) rotate(-2deg); }
  65%, 100% { transform: scale(1) rotate(0deg); }
}

@keyframes tsAuraGlow {
  0% { transform: scale(0.85); opacity: 1; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Thumbs */
.ts-thumbs {
  display: flex;
  gap: 5px;
  padding: 6px 8px 0;
  overflow-x: auto;
}

.ts-thumbs img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid transparent;
  opacity: 0.7;
  flex-shrink: 0;
}

.ts-thumbs img.active,
.ts-thumbs img:hover {
  border-color: var(--primary);
  opacity: 1;
}

/* Card Body */
.ts-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.ts-body h3 {
  margin: 0 0 6px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}

.ts-title-link {
  color: inherit;
  text-decoration: none;
}

.ts-title-link:hover {
  color: var(--primary);
}

.ts-size-tag {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--soft);
  display: inline-block;
  align-self: flex-start;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: 600;
}

.ts-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.ts-sale {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
}

.ts-mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.ts-add {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ts-add:hover {
  background: var(--primary-dark);
}

.ts-load-wrap {
  text-align: center;
  margin: 25px 0 10px;
}

.ts-load {
  background: var(--primary);
  color: #ffffff;
  border: 0;
  padding: 11px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(196, 92, 122, 0.25);
}

.ts-empty {
  text-align: center;
  color: #999;
  padding: 40px;
  grid-column: 1 / -1;
}

/* ===== MODERN CONTACT US / ABOUT CARD ===== */
.sb-about,
.contact-section,
.sb-contact-card {
  max-width: 900px;
  margin: 35px auto 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #faebef 100%);
  border: 1.5px solid #f2d6dc;
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(196, 92, 122, 0.08);
}

.sb-about h2,
.sb-about h3,
.contact-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.sb-about p,
.contact-section p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #6b5558;
  max-width: 580px;
  margin: 0 auto 22px;
}

.sb-contact,
.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sb-contact a,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-dark) !important;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 50px;
  border: 1px solid #eed0d7;
  box-shadow: 0 3px 10px rgba(196, 92, 122, 0.08);
  transition: all 0.25s ease;
}

.sb-contact a:hover,
.contact-links a:hover {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 92, 122, 0.25);
}

/* ===== TRUST BADGES BAR ===== */
.sb-trust-bar {
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 22px 16px;
  margin-top: 30px;
}

.sb-trust-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sb-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fff1f2;
  color: #ff1744;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-trust-icon svg {
  width: 20px;
  height: 20px;
}

.sb-trust-text h4 {
  margin: 0 0 2px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
}

.sb-trust-text p {
  margin: 0;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.3;
}

/* ===== SITE FOOTER ===== */
.sb-site-footer {
  background: #111827;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 40px;
}

.sb-footer-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
  gap: 28px;
}

.sb-footer-title {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 800;
}

.sb-footer-heading {
  color: #ffffff;
  font-size: 14.5px;
  margin-bottom: 14px;
  font-weight: 700;
}

.sb-footer-desc {
  margin-bottom: 14px;
  color: #9ca3af;
}

.sb-footer-links {
  list-style: none;
}

.sb-footer-links li {
  margin-bottom: 8px;
}

.sb-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sb-footer-links a:hover {
  color: #ffffff;
}

.sb-footer-contact-pill {
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sb-footer-contact-pill a {
  color: #22c55e;
  font-weight: 700;
}

.sb-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 11px;
  display: inline-block;
  margin: 3px 3px 0 0;
}

.sb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  background: #0b0f19;
}

.sb-bottom-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
}

/* ===== CART FLOATING BAR & MODAL ===== */
.ts-cart-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--primary);
  color: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 25px rgba(196, 92, 122, 0.35);
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
}

.ts-cart-bar button {
  border: 0;
  background: #ffffff;
  color: var(--primary);
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 800;
  cursor: pointer;
  font-size: 12px;
}

.ts-cart-count {
  background: #ffffff;
  color: var(--primary);
  border-radius: 99px;
  padding: 1px 7px;
  font-weight: 800;
  font-size: 12px;
}

.ts-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: flex-end;
  justify-content: center;
}

.ts-modal-box {
  background: #ffffff;
  width: min(520px, 100%);
  max-height: 82vh;
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}

.ts-modal-box h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--primary-dark);
}

.ts-cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e0e3;
}

.ts-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ts-qty button {
  border: 0;
  background: var(--soft);
  color: var(--primary);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.ts-total {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  margin: 14px 0;
}

.ts-actions {
  display: flex;
  gap: 8px;
}

.ts-actions button {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 12px;
  font-weight: 800;
  cursor: pointer;
  font-size: 13px;
}

.ts-checkout { background: #22c55e; color: #ffffff; }
.ts-close { background: #f0e0e3; color: var(--ink); }

/* ===== RESPONSIVE MEDIA QUERIES (MOBILE <= 768px) ===== */
@media (max-width: 768px) {
  .sb-menu-toggle {
    display: flex;
  }

  .sb-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid #f0e0e3;
    box-shadow: 0 10px 25px rgba(196, 92, 122, 0.12);
    gap: 4px;
    z-index: 20;
  }

  .sb-menu.open {
    display: flex;
  }

  .hero-float {
    margin: 10px auto 6px;
    padding: 0 10px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 18px;
  }

  .hero-slider {
    order: 1;
    min-height: auto;
    height: 200px;
    padding: 8px;
  }

  .hero-slide img,
  .hero-slider img,
  .hero-slides img {
    max-height: 185px;
    width: auto;
    mix-blend-mode: multiply !important;
  }

  .hero-text {
    order: 2;
    padding: 16px 14px 18px;
    text-align: center;
    align-items: center;
  }

  .hero-badge {
    margin: 0 auto 6px;
    font-size: 10.5px;
    padding: 3px 10px;
  }

  .hero-text h2 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .hero-text p {
    font-size: 12px;
    line-height: 1.45;
    margin: 0 auto 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-btn {
    padding: 8px 20px;
    font-size: 12.5px;
    border-radius: 20px;
  }

  .sb-section {
    padding: 10px 5px 20px;
  }

  .sb-section-title {
    font-size: 22px;
  }

  .ts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .ts-card {
    border-radius: 10px;
  }

  .ts-offer-badge {
    width: 35px !important;
    height: 35px !important;
    font-size: 8px !important;
    top: 5px !important;
    left: 5px !important;
  }

  .ts-body {
    padding: 8px;
  }

  .ts-body h3 {
    font-size: 12px;
    height: 32px;
    margin-bottom: 4px;
  }

  .ts-sale {
    font-size: 14.5px;
  }

  .ts-add {
    padding: 7px 8px;
    font-size: 11.5px;
  }

  .sb-about,
  .contact-section {
    margin: 22px 10px 14px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .sb-about h2 {
    font-size: 20px;
  }

  .sb-about p {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  .sb-contact,
  .contact-links {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .sb-contact a,
  .contact-links a {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
  }

  .sb-trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sb-trust-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .sb-trust-icon svg {
    width: 17px;
    height: 17px;
  }

  .sb-trust-text h4 {
    font-size: 12px;
  }

  .sb-trust-text p {
    font-size: 10.5px;
  }

  .sb-footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sb-bottom-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}