/* ==========================================================================
   MINIMALIST E-COMMERCE DESIGN SYSTEM & PDP STYLES
   Aesthetic: Scandinavian Modernist / High-Conversion Luxury
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-main: #ffffff;
  --bg-subtle: #fafafa;
  --bg-card: #ffffff;
  --bg-dark: #09090b;
  --bg-dark-surface: #18181b;
  
  /* Text & Foreground */
  --text-primary: #09090b;
  --text-secondary: #52525b;
  --text-muted: #71717a;
  --text-light: #f4f4f5;
  
  /* Borders & Dividers */
  --border-light: #e4e4e7;
  --border-focus: #18181b;
  
  /* Brand & Accents */
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20ba59;
  --whatsapp-green-dark: #128C7E;
  --sale-red: #ef4444;
  --sale-red-bg: #fef2f2;
  --star-gold: #f59e0b;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-sticky: 0 -4px 16px rgba(0, 0, 0, 0.08);

  /* Layout */
  --container-width: 1180px;
  --header-height: 64px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  padding-bottom: 72px; /* For mobile sticky bar spacing */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}

.announcement-badge {
  background-color: var(--sale-red);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.announcement-timer {
  color: #fbbf24;
  font-weight: 500;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.logo-mark {
  color: var(--text-primary);
  font-size: 0.75rem;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-trust-pill {
  display: none;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (min-width: 640px) {
  .header-trust-pill {
    display: flex;
  }
}

.trust-icon {
  width: 14px;
  height: 14px;
  stroke: var(--text-primary);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.header-cta-btn:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-1px);
}

.wa-header-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP) - HERO SECTION
   ========================================================================== */
.product-pdp-section {
  padding-top: 16px;
  padding-bottom: 48px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb-sep {
  color: var(--border-light);
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* LEFT: Gallery Column */
.product-gallery-column {
  position: relative;
}

@media (min-width: 900px) {
  .product-gallery-column {
    position: sticky;
    top: calc(var(--header-height) + 20px);
  }
}

.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.discount-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--sale-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 10;
  letter-spacing: 0.02em;
}

.stock-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.main-image-viewport {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail-btn {
  background: var(--bg-subtle);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  padding: 0;
  transition: all 0.2s ease;
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-btn:hover {
  opacity: 0.9;
}

.thumbnail-btn.active {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}

.gallery-guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 14px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-top: 4px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.guarantee-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-primary);
}

/* RIGHT: Conversion & Buy Box Column */
.product-info-column {
  display: flex;
  flex-direction: column;
}

.product-buy-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Rating Strip */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stars-row {
  color: var(--star-gold);
  letter-spacing: 2px;
  font-size: 0.9375rem;
}

.rating-score {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.rating-count {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.rating-verified-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #15803d;
  background-color: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Title & Tagline */
.product-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .product-title {
    font-size: 2rem;
  }
}

.product-tagline {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Price Box */
.price-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.original-price {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.savings-tag {
  background-color: var(--sale-red-bg);
  color: var(--sale-red);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-md);
}

/* Scarcity Bar */
.scarcity-box {
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scarcity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #92400e;
}

.scarcity-timer {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background-color: #fde68a;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #d97706;
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 4px 0;
}

/* Variant Selector */
.variant-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.variant-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.variant-label strong {
  color: var(--text-primary);
}

.variant-status {
  font-size: 0.75rem;
  color: #15803d;
  font-weight: 600;
}

.variant-options-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.variant-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background-color: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: inherit;
}

.variant-option-btn:hover {
  border-color: var(--text-muted);
}

.variant-option-btn.active {
  border-color: var(--text-primary);
  background-color: var(--bg-subtle);
  box-shadow: 0 0 0 1px var(--text-primary);
}

.swatch-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Quantity Control */
.quantity-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quantity-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-main);
}

.qty-btn {
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background-color 0.15s ease;
}

.qty-btn:hover {
  background-color: var(--bg-subtle);
}

.quantity-control input {
  width: 44px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  background: transparent;
}

.subtotal-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-left: auto;
}

.subtotal-preview strong {
  color: var(--text-primary);
  font-size: 1.0625rem;
}

.cod-pill-small {
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: #f4f4f5;
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   PRIMARY CONVERSION CTA (ORDER VIA WHATSAPP)
   ========================================================================== */
.order-actions-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.btn-whatsapp-order {
  width: 100%;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-order:hover {
  background-color: var(--whatsapp-green-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-whatsapp-order:active {
  transform: translateY(0);
}

.btn-wa-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.wa-btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.btn-wa-text-group {
  display: flex;
  flex-direction: column;
}

.btn-wa-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.btn-wa-subtitle {
  font-size: 0.75rem;
  opacity: 0.92;
  font-weight: 500;
}

.btn-wa-arrow {
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn-whatsapp-order:hover .btn-wa-arrow {
  transform: translateX(4px);
}

.fast-chat-helper {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.fast-chat-helper a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}

/* Trust Badges Grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: var(--radius-md);
}

.trust-card-icon {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-card-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-card-text span {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-top: 2px;
}

/* Delivery Estimation Card */
.delivery-estimation-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-main);
  border: 1px dashed var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.delivery-icon-box {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.delivery-icon-box svg {
  width: 100%;
  height: 100%;
}

.delivery-info {
  font-size: 0.8125rem;
}

.delivery-title {
  font-weight: 700;
  color: var(--text-primary);
}

.delivery-desc {
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTIONS: HIGHLIGHTS, SPECS, REVIEWS, FAQS
   ========================================================================== */

/* Section Headers */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-kicker {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-lead {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Highlights Grid */
.section-highlights {
  background-color: var(--bg-subtle);
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.highlight-card-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.highlight-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.highlight-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Specifications & Box Section */
.section-specs {
  padding: 64px 0;
}

.specs-wrapper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 860px) {
  .specs-wrapper-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.specs-table {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background-color: var(--bg-subtle);
}

.spec-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 700;
  text-align: right;
}

/* What's In The Box */
.box-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.box-item-check {
  color: #15803d;
  font-weight: 800;
}

.box-warranty-card {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
}

.box-warranty-card strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.box-warranty-card p {
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   RELATED PRODUCTS SECTION
   ========================================================================== */
.section-related {
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-main);
}

.related-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--text-muted);
}

.related-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-subtle);
  overflow: hidden;
  display: block;
}

.related-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-product-card:hover .related-thumb-img {
  transform: scale(1.04);
}

.related-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--sale-red);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 5;
  letter-spacing: 0.02em;
}

.related-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.related-rating-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

.related-rating-strip .stars-row {
  font-size: 0.8125rem;
}

.related-rating-score {
  font-weight: 700;
  color: var(--text-primary);
}

.related-review-count {
  color: var(--text-muted);
}

.related-card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-title:hover {
  text-decoration: underline;
}

.related-card-tagline {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.related-current-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.related-original-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.related-discount-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: var(--sale-red-bg);
  color: var(--sale-red);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.related-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-related-view {
  flex: 1;
  text-align: center;
  background-color: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-related-view:hover {
  background-color: var(--bg-main);
  border-color: var(--text-primary);
}

.btn-related-wa {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--whatsapp-green);
  border: none;
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-related-wa:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-1px);
}

.btn-related-wa svg {
  width: 14px;
  height: 14px;
}

/* Reviews Section */
.section-reviews {
  background-color: var(--bg-subtle);
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
}

.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.reviews-summary-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
}

.summary-score-large {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.stars-row.gold {
  color: var(--star-gold);
  font-size: 1rem;
}

.summary-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.review-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ Accordion */
.section-faqs {
  padding: 64px 0;
}

.faqs-container {
  max-width: 760px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-card);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--text-muted);
}

.faq-question-btn {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--bg-subtle);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border-light);
}

/* Bottom CTA Banner */
.bottom-cta-banner {
  padding: 40px 0 80px;
}

.bottom-banner-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .bottom-banner-card {
    flex-direction: row;
    text-align: left;
    padding: 40px 48px;
  }
}

.banner-pill {
  display: inline-block;
  background-color: var(--sale-red);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.banner-heading {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.banner-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 480px;
}

.banner-btn {
  white-space: nowrap;
  padding: 14px 24px;
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
  font-size: 0.8125rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-container {
    flex-direction: row;
    text-align: left;
  }
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-cod-notice {
  color: var(--text-secondary);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  z-index: 50;
  box-shadow: var(--shadow-sticky);
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: block;
  }
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.sticky-variant {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.sticky-wa-btn {
  flex: 1;
  max-width: 220px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  font-family: inherit;
}

.sticky-wa-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   MODAL DIALOG (NATIVE <dialog> WITH BACKDROP)
   ========================================================================== */
.order-modal-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 480px;
  width: 90%;
  margin: auto;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.order-modal-dialog::backdrop {
  background-color: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-kicker {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--whatsapp-green-dark);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 2px;
}

.modal-close-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.modal-close-btn:hover {
  background-color: #fee2e2;
  color: var(--sale-red);
  border-color: #fca5a5;
}

.modal-order-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.modal-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.modal-product-details {
  flex: 1;
}

.modal-prod-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.modal-prod-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.modal-price-highlight {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-shipping-tag {
  font-size: 0.6875rem;
  background-color: #dcfce7;
  color: #15803d;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

/* Modal Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.flex-2 { flex: 2; }
.flex-1 { flex: 1; }

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.req {
  color: var(--sale-red);
}

.form-input {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.08);
}

.form-hint {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.cod-assurance-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
}

.assurance-icon {
  font-size: 1.25rem;
}

.assurance-text strong {
  display: block;
  color: #065f46;
}

.assurance-text span {
  color: #047857;
}

.btn-submit-order {
  width: 100%;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-submit-order:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-1px);
}

.btn-submit-order:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================================================================
   SOCIAL PROOF TOAST
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 45;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  max-width: 320px;
}

@media (min-width: 768px) {
  .social-proof-toast {
    bottom: 24px;
  }
}

.social-proof-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.toast-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.toast-desc {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.toast-time {
  font-size: 0.625rem;
  color: #15803d;
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   STOREFRONT / PRODUCT LISTING HOME PAGE STYLES
   ========================================================================== */

/* Header Nav Links */
.header-nav-links {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .header-nav-links {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

/* Store Hero Banner */
.store-hero-section {
  padding: 32px 0 16px;
}

.store-hero-card {
  background: linear-gradient(135deg, #09090b 0%, #18181b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .store-hero-card {
    padding: 56px 48px;
  }
}

.hero-kicker {
  color: #fbbf24;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.store-hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}

@media (min-width: 768px) {
  .store-hero-title {
    font-size: 2.75rem;
  }
}

.store-hero-lead {
  font-size: 0.9375rem;
  color: #a1a1aa;
  max-width: 640px;
  line-height: 1.6;
}

.store-hero-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-tag {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #f4f4f5;
}

/* Catalog Controls Bar */
.catalog-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 36px 0 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

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

.category-tab {
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.category-tab:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.category-tab.active {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
}

.tab-count {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
}

.category-tab.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.catalog-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-left: auto;
}

.sort-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.sort-select {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  background-color: var(--bg-main);
  color: var(--text-primary);
  cursor: pointer;
}

/* Catalog Grid & Cards */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-muted);
}

.catalog-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-subtle);
  overflow: hidden;
}

.catalog-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog-product-card:hover .catalog-card-img {
  transform: scale(1.04);
}

.catalog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--sale-red);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 5;
  letter-spacing: 0.02em;
}

.catalog-stock-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
}

.catalog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.catalog-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.catalog-category-tag {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}

.catalog-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}

.catalog-rating .gold {
  color: var(--star-gold);
  font-size: 0.8125rem;
}

.rating-reviews {
  color: var(--text-muted);
}

.catalog-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
}

.catalog-card-title a {
  color: inherit;
  text-decoration: none;
}

.catalog-card-title a:hover {
  text-decoration: underline;
}

.catalog-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.highlight-icon {
  color: #d97706;
}

.catalog-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.catalog-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.catalog-current-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.catalog-orig-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.catalog-savings-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sale-red);
  background-color: var(--sale-red-bg);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.catalog-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-catalog-view {
  flex: 1;
  text-align: center;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-catalog-view:hover {
  border-color: var(--text-primary);
  background: var(--bg-main);
}

.btn-catalog-wa-order {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--whatsapp-green);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-catalog-wa-order:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-1px);
}

.wa-btn-icon-sm {
  width: 15px;
  height: 15px;
}

/* Guarantees Section */
.section-guarantees {
  background-color: var(--bg-subtle);
  padding: 64px 0;
  border-top: 1px solid var(--border-light);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guarantees-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
}

.guarantee-card-icon {
  width: 22px;
  height: 22px;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-card-icon svg {
  width: 100%;
  height: 100%;
}

.guarantee-card-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.guarantee-card-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Home Customer Review Strip */
.section-home-reviews {
  padding: 48px 0 64px;
}

.home-reviews-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.home-review-stars {
  color: var(--star-gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.home-review-quote {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
}

.home-review-author {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

