/** Shopify CDN: Minification failed

Line 54:0 All "@import" rules must come first

**/
/* ═══════════════════════════════════════════════════════════════
   OUTILS EN LIGNE — Product Page Stylesheet
   Branded | High-Converting | Google Shopping Compliant
   ═══════════════════════════════════════════════════════════════ */

/* ——— Design Tokens ——— */
:root {
  --gs-primary: #f2bf52;
  --gs-primary-dark: #c5a059;
  --gs-primary-light: #f7d280;
  --gs-primary-glow: rgba(242, 191, 82, 0.35);
  --gs-secondary: #1a1a1a;
  --gs-secondary-light: #2d2d2d;
  --gs-accent: #f2bf52;
  --gs-accent-light: #f7d280;
  --gs-success: #22c55e;
  --gs-danger: #ef4444;
  --gs-warning: #f59e0b;

  --gs-bg: #ffffff;
  --gs-bg-alt: #faf8f5;
  --gs-bg-warm: #fdf8ef;
  --gs-surface: #f5f3f0;
  --gs-text: #1a1a1a;
  --gs-text-muted: #6b7280;
  --gs-text-light: #9ca3af;
  --gs-border: #e5e2de;
  --gs-border-light: #f0ede8;

  --gs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gs-radius-xs: 6px;
  --gs-radius-sm: 10px;
  --gs-radius-md: 14px;
  --gs-radius-lg: 20px;
  --gs-radius-full: 9999px;

  --gs-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --gs-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --gs-shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --gs-shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --gs-shadow-gold: 0 4px 20px rgba(242, 191, 82, 0.3);

  --gs-transition-fast: 0.15s ease;
  --gs-transition: 0.25s ease;
  --gs-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— Google Fonts Import ——— */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ——— Base Reset ——— */
.gs-product-section *,
.gs-product-section *::before,
.gs-product-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gs-product-section {
  font-family: var(--gs-font);
  color: var(--gs-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════ URGENCY BANNER ═══════ */
.gs-urgency-banner {
  background: linear-gradient(135deg, var(--gs-secondary) 0%, #2d2d2d 50%, var(--gs-secondary) 100%);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.gs-urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242,191,82,0.15), transparent);
  animation: gs-shimmer 3s infinite;
}

@keyframes gs-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gs-urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.gs-urgency-timer {
  background: var(--gs-primary);
  color: var(--gs-secondary);
  padding: 3px 12px;
  border-radius: var(--gs-radius-full);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* ═══════ BREADCRUMBS ═══════ */
.gs-breadcrumbs {
  padding: 14px 40px;
  background: var(--gs-bg-alt);
  border-bottom: 1px solid var(--gs-border-light);
}

.gs-breadcrumbs__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gs-text-muted);
  max-width: 1280px;
  margin: 0 auto;
}

.gs-breadcrumbs__list li::after {
  content: '›';
  margin-left: 8px;
  color: var(--gs-text-light);
}

.gs-breadcrumbs__list li:last-child::after {
  display: none;
}

.gs-breadcrumbs__list a {
  color: var(--gs-text-muted);
  text-decoration: none;
  transition: color var(--gs-transition-fast);
}

.gs-breadcrumbs__list a:hover {
  color: var(--gs-primary-dark);
}

.gs-breadcrumbs__list li:last-child {
  color: var(--gs-text);
  font-weight: 500;
}

/* ═══════ SOCIAL PROOF BAR ═══════ */
.gs-social-proof-bar {
  background: var(--gs-bg-warm);
  border-bottom: 1px solid var(--gs-border-light);
  padding: 12px 20px;
}

.gs-social-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gs-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-text);
}

.gs-proof-icon {
  font-size: 16px;
}

.gs-proof-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gs-primary);
}

/* ═══════ MAIN PRODUCT LAYOUT ═══════ */
.gs-product {
  padding: 40px;
}

.gs-product__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ——— Image Gallery ——— */
.gs-product__gallery {
  position: sticky;
  top: 20px;
}

.gs-product__badge-stack {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-badge {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--gs-radius-full);
  line-height: 1.2;
}

.gs-badge--sale {
  background: var(--gs-danger);
  color: white;
}

.gs-badge--new {
  background: var(--gs-primary);
  color: var(--gs-secondary);
}

.gs-product__main-image-wrap {
  position: relative;
  border-radius: var(--gs-radius-md);
  overflow: hidden;
  background: var(--gs-surface);
  aspect-ratio: 1;
  border: 1px solid var(--gs-border-light);
}

.gs-product__main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--gs-transition-slow);
  cursor: zoom-in;
}

.gs-product__main-image:hover {
  transform: scale(1.05);
}

.gs-product__thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 4px 0;
  overflow-x: auto;
}

.gs-product__thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: var(--gs-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--gs-surface);
  cursor: pointer;
  transition: all var(--gs-transition-fast);
}

.gs-product__thumb:hover {
  border-color: var(--gs-primary-light);
}

.gs-product__thumb--active {
  border-color: var(--gs-primary);
  box-shadow: var(--gs-shadow-gold);
}

.gs-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Product Info ——— */
.gs-product__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-product__brand {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gs-primary-dark);
}

.gs-product__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gs-text);
  letter-spacing: -0.02em;
}

.gs-product__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gs-stars {
  display: inline-flex;
  gap: 1px;
}

.gs-star {
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1;
}

.gs-star--filled {
  color: var(--gs-primary);
  text-shadow: 0 0 4px var(--gs-primary-glow);
}

.gs-product__review-count {
  font-size: 14px;
  color: var(--gs-primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.gs-product__review-count:hover {
  text-decoration: underline;
}

/* Price */
.gs-product__price-block {
  padding: 16px 0;
  border-top: 1px solid var(--gs-border-light);
  border-bottom: 1px solid var(--gs-border-light);
}

.gs-product__price {
  font-size: 36px;
  font-weight: 800;
  color: var(--gs-text);
  letter-spacing: -0.02em;
}

.gs-product__price--sale {
  color: var(--gs-danger);
}

.gs-product__price--compare {
  font-size: 20px;
  color: var(--gs-text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 12px;
}

.gs-product__price-saved {
  display: inline-block;
  margin-left: 12px;
  background: #fef2f2;
  color: var(--gs-danger);
  padding: 4px 12px;
  border-radius: var(--gs-radius-full);
  font-size: 13px;
  font-weight: 700;
}

.gs-product__tax-note {
  font-size: 12px;
  color: var(--gs-text-muted);
  margin-top: 6px;
}

/* Availability */
.gs-product__availability {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gs-availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.gs-availability__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.gs-availability--instock {
  color: var(--gs-success);
}

.gs-availability--instock .gs-availability__dot {
  background: var(--gs-success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
  animation: gs-dot-pulse 2s ease-in-out infinite;
}

@keyframes gs-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.gs-availability--outofstock {
  color: var(--gs-danger);
}

.gs-availability--outofstock .gs-availability__dot {
  background: var(--gs-danger);
}

.gs-low-stock-warning {
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-warning);
  animation: gs-blink 1.5s ease-in-out infinite;
}

@keyframes gs-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Short description */
.gs-product__short-desc {
  font-size: 15px;
  color: var(--gs-text-muted);
  line-height: 1.6;
}

/* Variants */
.gs-product__variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-variant-group__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gs-text);
}

.gs-variant-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gs-variant-swatch {
  cursor: pointer;
}

.gs-variant-swatch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gs-variant-swatch__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 18px;
  border: 2px solid var(--gs-border);
  border-radius: var(--gs-radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--gs-transition-fast);
  background: var(--gs-bg);
}

.gs-variant-swatch__label:hover {
  border-color: var(--gs-primary-light);
}

.gs-variant-swatch--selected .gs-variant-swatch__label,
.gs-variant-swatch__input:checked + .gs-variant-swatch__label {
  border-color: var(--gs-primary);
  background: var(--gs-bg-warm);
  color: var(--gs-secondary);
  box-shadow: var(--gs-shadow-gold);
}

/* Quantity */
.gs-product__quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-quantity-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-text);
}

.gs-quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gs-border);
  border-radius: var(--gs-radius-sm);
  overflow: hidden;
}

.gs-quantity-btn {
  background: var(--gs-bg);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gs-text);
  transition: background var(--gs-transition-fast);
}

.gs-quantity-btn:hover {
  background: var(--gs-surface);
}

.gs-quantity-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gs-border);
  border-right: 1px solid var(--gs-border);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--gs-font);
  color: var(--gs-text);
  background: var(--gs-bg);
  -moz-appearance: textfield;
}

.gs-quantity-input::-webkit-outer-spin-button,
.gs-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ★★★ CTA BUTTONS ★★★ */
.gs-product__cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--gs-font);
  border: none;
  border-radius: var(--gs-radius-sm);
  cursor: pointer;
  transition: all var(--gs-transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.gs-btn--full {
  width: 100%;
}

.gs-btn--large {
  padding: 20px 40px;
  font-size: 18px;
}

.gs-btn--primary {
  background: linear-gradient(135deg, var(--gs-primary) 0%, var(--gs-primary-dark) 100%);
  color: var(--gs-secondary);
  box-shadow: var(--gs-shadow-gold);
  position: relative;
  overflow: hidden;
}

.gs-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.gs-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gs-primary-glow);
}

.gs-btn--primary:hover::after {
  left: 100%;
}

.gs-btn--primary:active {
  transform: translateY(0);
}

.gs-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gs-btn--secondary {
  background: linear-gradient(135deg, var(--gs-secondary) 0%, #2d2d2d 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.25);
}

.gs-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.35);
}

.gs-btn--secondary:active {
  transform: translateY(0);
}

.gs-btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gs-btn__icon {
  font-size: 18px;
}

/* Success animation for add to cart */
.gs-btn--success {
  background: linear-gradient(135deg, var(--gs-success), #16a34a) !important;
  color: white !important;
}

/* Pulse animation */
@keyframes gs-pulse {
  0% { box-shadow: var(--gs-shadow-gold); }
  50% { box-shadow: 0 0 0 8px rgba(242, 191, 82, 0.15); }
  100% { box-shadow: var(--gs-shadow-gold); }
}

.gs-btn--primary:not(:disabled) {
  animation: gs-pulse 2.5s ease-in-out infinite;
}

.gs-btn--primary:hover {
  animation: none;
}

/* Trust Badges */
.gs-product__trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 0;
}

.gs-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gs-bg-warm);
  border-radius: var(--gs-radius-sm);
  border: 1px solid var(--gs-border-light);
  transition: transform var(--gs-transition-fast);
}

.gs-trust-badge:hover {
  transform: translateY(-2px);
}

.gs-trust-badge__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.gs-trust-badge__text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.3;
}

.gs-trust-badge__text strong {
  font-weight: 700;
  color: var(--gs-text);
}

.gs-trust-badge__text small {
  font-size: 11px;
  color: var(--gs-text-muted);
}

/* Shipping Info Cards */
.gs-product__shipping-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-shipping-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gs-bg-alt);
  border-radius: var(--gs-radius-sm);
  border: 1px solid var(--gs-border-light);
}

.gs-shipping-card__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.gs-shipping-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gs-text);
}

.gs-shipping-card small {
  font-size: 12px;
  color: var(--gs-text-muted);
}

/* SKU */
.gs-product__sku {
  font-size: 12px;
  color: var(--gs-text-light);
}

/* ═══════ PRODUCT DETAILS TABS ═══════ */
.gs-details-section {
  padding: 40px;
  background: var(--gs-bg-alt);
  border-top: 1px solid var(--gs-border-light);
}

.gs-details-container {
  max-width: 900px;
  margin: 0 auto;
}

.gs-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gs-border);
  margin-bottom: 24px;
}

.gs-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--gs-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-text-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--gs-transition-fast);
}

.gs-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gs-primary);
  transform: scaleX(0);
  transition: transform var(--gs-transition);
}

.gs-tab--active {
  color: var(--gs-text);
}

.gs-tab--active::after {
  transform: scaleX(1);
}

.gs-tab:hover {
  color: var(--gs-text);
}

.gs-tab-content {
  display: none;
}

.gs-tab-content--active {
  display: block;
  animation: gs-fadeIn 0.3s ease;
}

@keyframes gs-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-description-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gs-text);
}

.gs-description-content h2,
.gs-description-content h3 {
  margin: 24px 0 12px;
  font-weight: 700;
}

.gs-description-content ul,
.gs-description-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.gs-description-content li {
  margin-bottom: 6px;
}

.gs-description-content img {
  max-width: 100%;
  border-radius: var(--gs-radius-sm);
  margin: 16px 0;
}

/* Specs Grid */
.gs-specs-grid {
  display: flex;
  flex-direction: column;
}

.gs-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gs-border-light);
  font-size: 14px;
}

.gs-spec-row:nth-child(odd) {
  background: var(--gs-bg);
}

.gs-spec-label {
  font-weight: 600;
  color: var(--gs-text);
}

.gs-spec-value {
  color: var(--gs-text-muted);
  text-align: right;
}

/* Shipping Details */
.gs-shipping-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 12px;
  color: var(--gs-text);
}

.gs-shipping-details h3:first-child {
  margin-top: 0;
}

.gs-shipping-details ul {
  list-style: none;
  padding: 0;
}

.gs-shipping-details li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--gs-text);
  border-bottom: 1px solid var(--gs-border-light);
}

.gs-shipping-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gs-success);
  font-weight: 700;
}

/* ═══════ COMPARISON TABLE ═══════ */
.gs-comparison-section {
  padding: 60px 40px;
  background: var(--gs-bg);
}

.gs-comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

.gs-section-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--gs-text);
  letter-spacing: -0.02em;
}

.gs-comparison-table {
  border-radius: var(--gs-radius-md);
  overflow: hidden;
  border: 1px solid var(--gs-border);
  box-shadow: var(--gs-shadow-md);
}

.gs-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--gs-secondary);
  color: white;
}

.gs-comparison-header .gs-comparison-cell {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.gs-comparison-cell--ours {
  background: var(--gs-primary) !important;
  color: var(--gs-secondary) !important;
  position: relative;
}

.gs-comparison-badge {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  opacity: 0.9;
}

.gs-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gs-border-light);
}

.gs-comparison-row:last-child {
  border-bottom: none;
}

.gs-comparison-cell {
  padding: 14px 20px;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gs-comparison-cell--label {
  font-weight: 600;
  color: var(--gs-text);
  background: var(--gs-bg-alt);
  justify-content: flex-start;
}

.gs-comparison-cell--positive {
  background: rgba(242, 191, 82, 0.08);
  color: var(--gs-text);
  font-weight: 500;
}

.gs-comparison-cell--negative {
  color: var(--gs-text-muted);
}

.gs-check {
  color: var(--gs-success);
  font-weight: 700;
  font-size: 16px;
}

.gs-cross {
  color: var(--gs-danger);
  font-weight: 700;
  font-size: 16px;
}

/* ═══════ FAQ SECTION ═══════ */
.gs-faq-section {
  padding: 60px 40px;
  background: var(--gs-bg-alt);
}

.gs-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.gs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-faq-item {
  background: var(--gs-bg);
  border-radius: var(--gs-radius-sm);
  border: 1px solid var(--gs-border-light);
  overflow: hidden;
  transition: box-shadow var(--gs-transition);
}

.gs-faq-item:hover {
  box-shadow: var(--gs-shadow-sm);
}

.gs-faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--gs-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gs-text);
  text-align: left;
  transition: background var(--gs-transition-fast);
}

.gs-faq-question:hover {
  background: var(--gs-bg-alt);
}

.gs-faq-chevron {
  font-size: 12px;
  color: var(--gs-text-muted);
  transition: transform var(--gs-transition);
}

.gs-faq-item--open .gs-faq-chevron {
  transform: rotate(180deg);
}

.gs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--gs-transition-slow), padding var(--gs-transition-slow);
}

.gs-faq-item--open .gs-faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.gs-faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gs-text-muted);
}

/* ═══════ FINAL CTA SECTION ═══════ */
.gs-final-cta {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--gs-secondary) 0%, #2d2d2d 100%);
  text-align: center;
}

.gs-final-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.gs-final-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.gs-final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.gs-final-cta .gs-btn--primary {
  display: inline-flex;
}

/* ═══════ STICKY MOBILE CART BAR ═══════ */
.gs-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gs-bg);
  border-top: 1px solid var(--gs-border);
  padding: 12px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--gs-transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.gs-sticky-bar--visible {
  transform: translateY(0);
}

.gs-sticky-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gs-sticky-bar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gs-sticky-bar__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-text);
}

.gs-sticky-bar__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gs-danger);
}

.gs-sticky-bar__btn {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 14px;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .gs-product {
    padding: 20px;
  }

  .gs-product__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gs-product__gallery {
    position: static;
  }

  .gs-product__title {
    font-size: 24px;
  }

  .gs-product__price {
    font-size: 28px;
  }

  .gs-product__trust-badges {
    grid-template-columns: 1fr;
  }

  .gs-comparison-header,
  .gs-comparison-row {
    grid-template-columns: 1fr;
  }

  .gs-comparison-header .gs-comparison-cell:first-child {
    display: none;
  }

  .gs-comparison-cell--label {
    background: var(--gs-secondary) !important;
    color: white !important;
    font-size: 13px;
    justify-content: center;
  }

  .gs-social-proof-inner {
    flex-direction: column;
    gap: 8px;
  }

  .gs-proof-divider {
    display: none;
  }

  .gs-tabs {
    overflow-x: auto;
  }

  .gs-tab {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 13px;
  }

  .gs-details-section,
  .gs-comparison-section,
  .gs-faq-section,
  .gs-final-cta {
    padding: 40px 20px;
  }

  .gs-section-title {
    font-size: 22px;
  }

  .gs-final-cta h2 {
    font-size: 24px;
  }

  .gs-breadcrumbs {
    padding: 12px 20px;
  }

  .gs-sticky-bar {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .gs-product__title {
    font-size: 20px;
  }

  .gs-product__price {
    font-size: 24px;
  }

  .gs-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .gs-btn--large {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ═══════ PRINT STYLES ═══════ */
@media print {
  .gs-urgency-banner,
  .gs-sticky-bar,
  .gs-faq-section,
  .gs-final-cta,
  .gs-social-proof-bar {
    display: none !important;
  }
}
