﻿/** Shopify CDN: Minification failed

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

**/
/* === component-cart-items.css === */
cart-items .title-wrapper-with-link {
  margin-top: 0;
}

.cart-items td,
.cart-items th {
  padding: 0;
  border: none;
}

.cart-items th {
  text-align: left;
  padding-bottom: 1.8rem;
  opacity: 0.85;
  font-weight: normal;
}

.cart-item__quantity-wrapper {
  display: flex;
}

.cart-item__totals {
  position: relative;
}

.cart-items *.right {
  text-align: right;
}

.cart-item__image-container {
  display: inline-flex;
  align-items: flex-start;
}

.cart-item__nested-line .cart-item__image-container {
  min-width: calc(10rem / var(--font-body-scale));
  justify-content: right;
  img {
    width: 60%;
  }
}

.cart-item__image-container:after {
  content: none;
}

.cart-item__image {
  height: auto;
  max-width: calc(10rem / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .cart-item__image {
    max-width: 100%;
  }
}

.cart-item__details {
  font-size: 1.6rem;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

.cart-item__details > * {
  margin: 0;
  max-width: 30rem;
}

.cart-item__details > * + * {
  margin-top: 0.6rem;
}

.cart-item__media {
  position: relative;
}

.cart-item__link {
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cart-item__name {
  text-decoration: none;
  display: block;
}

.cart-item__name:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.2rem;
}

.cart-item__price-wrapper > * {
  display: block;
  margin: 0;
  padding: 0;
}

.cart-item__discounted-prices dd {
  margin: 0;
}

.cart-item__discounted-prices .cart-item__old-price {
  font-size: 1.4rem;
}

.cart-item__old-price {
  opacity: 0.7;
}

.cart-item__final-price {
  font-weight: 400;
}

.product-option {
  font-size: 1.4rem;
  word-break: break-word;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
}

.cart-item cart-remove-button {
  display: flex;
  margin-left: 1rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .cart-item cart-remove-button {
    width: 4.5rem;
    height: 4.5rem;
  }
}

cart-remove-button .button {
  min-width: calc(4.5rem / var(--font-body-scale));
  min-height: 4.5rem;
  padding: 0;
  margin: 0 0.1rem 0.1rem 0;
}

cart-remove-button .button:before,
cart-remove-button .button:after {
  content: none;
}

cart-remove-button .button:not([disabled]):hover {
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  cart-remove-button .button {
    min-width: 3.5rem;
    min-height: 3.5rem;
  }
}

cart-remove-button .icon-remove {
  height: 1.5rem;
  width: 1.5rem;
}

.cart-item .loading__spinner {
  top: 0;
  left: auto;
  right: auto;
  bottom: 0;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .cart-item .loading__spinner {
    right: 0;
    padding-top: 4.5rem;
    bottom: auto;
  }
}

.cart-item .loading__spinner:not(.hidden) ~ * {
  visibility: hidden;
}

.cart-item__error {
  display: flex;
  align-items: flex-start;
  margin-top: 0.2rem;
  width: min-content;
  min-width: 100%;
}

.cart-item__error-text {
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04rem;
  order: 1;
}

.cart-item__error-text + .svg-wrapper {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.7rem;
  margin-top: 0.25rem;
}

.cart-item__error-text:empty + .svg-wrapper {
  display: none;
}

.product-option + .product-option {
  margin-top: 0.4rem;
}

.product-option * {
  display: inline;
  margin: 0;
}

.cart-items thead th {
  text-transform: uppercase;
}

@media screen and (max-width: 749px) {
  .cart-items,
  .cart-items thead,
  .cart-items tbody {
    display: block;
    width: 100%;
  }

  .cart-items thead tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
    margin-bottom: 4rem;
  }

  .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .cart-item:has(+ .cart-item__nested-line) {
    margin-bottom: 1.5rem;
  }

  .cart-item:last-child {
    margin-bottom: 0;
  }

  .cart-item__media {
    grid-row: 1 / 3;
  }

  .cart-item__details {
    grid-column: 2 / 4;
  }

  .cart-item__quantity {
    grid-column: 2 / 5;
  }

  .cart-item__quantity-wrapper {
    flex-wrap: wrap;
  }

  .cart-item__totals {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 750px) {
  .cart-items {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
  }

  .cart-items th {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }

  .cart-items thead th:first-child {
    width: 50%;
  }

  .cart-items th + th {
    padding-left: 4rem;
  }

  .cart-items td {
    vertical-align: top;
    padding-top: 4rem;
  }

  .cart-items .cart-item__nested-line td {
    padding-top: 1rem;
  }

  .cart-item {
    display: table-row;
  }

  .cart-item > td + td {
    padding-left: 4rem;
  }

  .cart-item__details {
    width: 35rem;
  }

  .cart-item__media {
    width: 10rem;
  }

  .cart-item__price-wrapper > *:only-child:not(.cart-item__discounted-prices) {
    margin-top: 1rem;
  }

  .cart-item__error {
    margin-left: 0.3rem;
  }
}

@media screen and (min-width: 990px) {
  .cart-item .cart-item__quantity,
  .cart-items .cart-items__heading--wide {
    padding-left: 6rem;
  }

  .cart-item__details {
    width: 50rem;
  }

  .cart-items thead th:first-child {
    width: 60%;
  }
}

@media screen and (min-width: 750px) {
  .cart-items .cart-items__heading--quantity,
  .cart-item .cart-item__quantity,
  .cart-item__quantity--info quantity-popover > * {
    padding-left: 5rem;
  }

  .cart-item .cart-item__quantity--info,
  .cart-item__quantity--info .cart-item__quantity-wrapper,
  .cart-item__quantity--info .cart-items__info {
    padding-left: 0;
  }
}

@media screen and (max-width: 989px) {
  .cart-items .quantity-popover__info-button {
    padding-left: 0;
  }
}

/* === osat-claude-theme.css === */
/* ============================================================
   ORIGINALSAT â€” Master Design System
   Version: 1.0.0
   Source: Derived from brand logo (OS monogram)
   Colors: Deep Ocean Teal #1B526B Â· Mint Spark #52CBAD Â· Obsidian #0C0E10
   ============================================================ */

/* â”€â”€ GOOGLE FONTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* â”€â”€ DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Brand palette */
  --c-primary-900: #0D2E3D;
  --c-primary-800: #1B526B;
  --c-primary-700: #206180;
  --c-primary-600: #267295;
  --c-primary-200: #8EC8DF;
  --c-primary-100: #D6EEF5;

  --c-accent-500: #52CBAD;
  --c-accent-400: #72D9BD;
  --c-accent-300: #93E4CC;
  --c-accent-100: #E0F8F2;

  --c-neutral-950: #0C0E10;
  --c-neutral-900: #111416;
  --c-neutral-800: #1A1E21;
  --c-neutral-750: #1F2529;
  --c-neutral-700: #252B2F;
  --c-neutral-600: #323B40;
  --c-neutral-500: #4A5660;
  --c-neutral-400: #7A8891;
  --c-neutral-300: #A0ADB5;
  --c-neutral-200: #C8D2D8;
  --c-neutral-100: #E8EEF2;
  --c-white: #FFFFFF;

  /* Semantic aliases */
  --bg-page:        #ffffff;
  --bg-surface:     #ffffff;
  --bg-elevated:    #f5f5f7;
  --bg-inset:       #f5f5f7;
  --text-primary:   #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted:     #86868b;
  --border:         #e8e8ed;
  --border-subtle:  #e8e8ed;
  --cta:            #5CC8B4;
  --cta-hover:      #72D9BD;
  --brand:          #0D4F6B;

  /* Typography */
  --font-ui:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Roboto Mono', monospace;

  /* 8-pt spacing grid */
  --sp-2xs: 4px;
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  32px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Layout */
  --container:     1280px;
  --header-h:      64px;
  --announce-h:    0px;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.5);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.65);
  --glow-accent:  0 0 32px rgba(82,203,173,0.20);
  --glow-brand:   0 0 32px rgba(27,82,107,0.45);
  --glow-strong:  0 0 60px rgba(82,203,173,0.30);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::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-ui); background: var(--bg-page); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

/* â”€â”€ SKIP LINK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-sm);
  background: var(--cta);
  color: var(--c-neutral-950);
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--r-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--t-fast);
}
.os-skip-link:focus { top: var(--sp-sm); }

/* â”€â”€ CONTAINER & LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}
.os-section { padding-block: var(--sp-xl); }
.os-section--sm { padding-block: var(--sp-lg); }
.os-section--lg { padding-block: var(--sp-2xl); }

@media (max-width: 768px) {
  .os-container { padding-inline: var(--sp-sm); }
  .os-section { padding-block: var(--sp-lg); }
}

/* â”€â”€ SECTION HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-section-head { margin-bottom: var(--sp-lg); }
.os-section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
  display: block;
  margin-bottom: var(--sp-xs);
}
.os-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
}
.os-section-sub {
  color: var(--text-muted);
  margin-top: var(--sp-xs);
  font-size: 1rem;
  max-width: 520px;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--r-md);
  padding: 11px var(--sp-md);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all var(--t-base);
  position: relative;
}
.btn svg { flex-shrink: 0; }

/* Primary â€” Mint on Obsidian WCAG 8.1:1 âœ… */
.btn-primary { background: var(--cta); color: var(--c-neutral-950); border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); box-shadow: var(--glow-accent); transform: translateY(-2px); }

/* Secondary â€” outlined mint */
.btn-secondary { background: transparent; color: var(--cta); border-color: var(--cta); }
.btn-secondary:hover { background: rgba(82,203,173,0.08); box-shadow: var(--glow-accent); transform: translateY(-2px); }

/* Ghost */
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--c-neutral-400); }

/* Dark â€” deep teal */
.btn-dark { background: var(--brand); color: var(--c-white); border-color: var(--brand); }
.btn-dark:hover { background: var(--c-primary-700); box-shadow: var(--glow-brand); transform: translateY(-2px); }

/* Sizes */
.btn-hero { font-size: 1rem; padding: 14px var(--sp-lg); border-radius: var(--r-lg); font-weight: 700; }
.btn-sm   { font-size: 0.75rem; padding: 8px var(--sp-sm); border-radius: var(--r-sm); letter-spacing: 0.05em; }
.btn-full { width: 100%; }

/* WA button */
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover { background: #1fc95a; border-color: #1fc95a; transform: translateY(-2px); box-shadow: 0 0 28px rgba(37,211,102,0.30); }

/* â”€â”€ GRADE BADGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.grade {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.grade-aplus { background: rgba(82,203,173,0.12); color: var(--c-accent-500); border: 1px solid rgba(82,203,173,0.35); }
.grade-a     { background: rgba(27,82,107,0.25);  color: var(--c-primary-200);  border: 1px solid rgba(27,82,107,0.5); }
.grade-b     { background: rgba(122,136,145,0.12); color: var(--c-neutral-300); border: 1px solid rgba(122,136,145,0.3); }

/* â”€â”€ PRICE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}
.os-price--strike {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* â”€â”€ DIVIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none;
  margin: 0;
}

/* â”€â”€ FLOATING WHATSAPP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-wa-float {
  position: fixed;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: all var(--t-base);
}
.os-wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,0.60); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* â”€â”€ ANNOUNCEMENT BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-announce {
  background: var(--brand);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
.os-announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  width: 100%;
}
.os-announce__marquee {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  overflow: hidden;
}
.os-announce__item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  white-space: nowrap;
  flex-shrink: 0;
}
.os-announce__wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent-300);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.os-announce__wa:hover { color: var(--cta); }

/* â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-header {
  position: relative;
  top: auto;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--t-base);
}
.os-header.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 var(--border-subtle);
}
.os-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.os-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.os-header__logo img { height: 32px; width: auto; }
.os-header__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.os-header__logo-text span { color: var(--cta); }

.os-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--sp-md);
  flex: 1;
  position: relative;
}

.os-nav__indicator {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5CC8B4 0%, #0D4F6B 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition:
    left 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
  will-change: left, width;
}

.os-nav.is-ready .os-nav__indicator {
  opacity: 1;
}

.os-nav__link {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--r-md);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.os-nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(92, 200, 180, 0.55);
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.os-nav__link:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.os-nav__link:hover::after {
  width: calc(100% - 18px);
}

.os-nav__link.active {
  color: #0D4F6B !important;
  font-weight: 600 !important;
  background: rgba(92, 200, 180, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(92, 200, 180, 0.28);
  animation: osNavActiveIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.os-nav__link.active::after {
  width: calc(100% - 14px);
  height: 0;
  opacity: 0;
}

.os-nav__link.active::before {
  content: '';
  position: absolute;
  top: 7px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5CC8B4;
  box-shadow: 0 0 0 0 rgba(92, 200, 180, 0.45);
  animation: osNavActiveDot 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes osNavActiveIn {
  0% {
    transform: scale(0.94);
    opacity: 0.65;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes osNavActiveDot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(92, 200, 180, 0.45);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(92, 200, 180, 0);
  }
}

.os-nav__link--accent {
  color: var(--cta);
  font-weight: 600;
}

.os-nav__link--accent:hover {
  color: var(--cta-hover);
  background: rgba(82, 203, 173, 0.08);
}

.os-nav__link--accent.active {
  color: #0D4F6B !important;
  background: rgba(92, 200, 180, 0.16) !important;
}

.os-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-left: auto;
}
.os-header__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  transition: all var(--t-fast);
  position: relative;
}
.os-header__icon-btn:hover { color: var(--text-primary); background: var(--bg-elevated); }

.os-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--cta);
  color: var(--c-neutral-950);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.os-header__menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: none;
}

/* Mobile nav */
.os-mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12,14,16,0.98);
  z-index: 500;
  padding: var(--sp-xl) var(--sp-md) var(--sp-md);
  flex-direction: column;
  gap: var(--sp-xs);
}
.os-mobile-nav.open { display: flex; }
.os-mobile-nav__close {
  position: absolute;
  top: var(--sp-md); right: var(--sp-md);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  color: var(--text-primary);
  border: none;
}
.os-mobile-nav__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-lg);
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.os-mobile-nav__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #5CC8B4, #0D4F6B);
  transform: translateY(-50%);
  transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.os-mobile-nav__link:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.os-mobile-nav__link.active {
  color: #ffffff !important;
  background: rgba(92, 200, 180, 0.14) !important;
  border-color: rgba(92, 200, 180, 0.35) !important;
  padding-left: calc(var(--sp-md) + 6px);
  animation: osMobileNavActiveIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.os-mobile-nav__link.active::before {
  height: 62%;
}

@keyframes osMobileNavActiveIn {
  0% {
    transform: translateX(-8px);
    opacity: 0.55;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .os-nav__indicator,
  .os-nav__link,
  .os-nav__link::after,
  .os-nav__link::before,
  .os-mobile-nav__link,
  .os-mobile-nav__link::before {
    animation: none !important;
    transition: none !important;
  }

  .os-nav__link.active {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .os-nav { display: none; }
  .os-header__menu-btn { display: flex; }
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-page);
}

/* Orbital background â€” the signature element */
.os-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.os-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.os-hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,82,107,0.6), transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.os-hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,203,173,0.25), transparent 70%);
  bottom: -100px; left: 10%;
  animation-delay: -4s;
}
.os-hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,82,107,0.4), transparent 70%);
  top: 30%; left: 30%;
  animation-delay: -2s;
}
.os-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82,203,173,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,203,173,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}

@keyframes orbPulse {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.15) translate(20px, -20px); }
}

.os-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding-block: var(--sp-2xl);
}
.os-hero__content { display: flex; flex-direction: column; gap: var(--sp-md); }

.os-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(82,203,173,0.08);
  border: 1px solid rgba(82,203,173,0.25);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  width: fit-content;
}
.os-hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.os-hero__headline {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-primary);
}
.os-hero__headline-accent {
  background: linear-gradient(135deg, var(--cta) 0%, var(--c-primary-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.os-hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
}

.os-hero__stats {
  display: flex;
  gap: var(--sp-lg);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border-subtle);
}
.os-hero__stat {}
.os-hero__stat-number {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cta);
  line-height: 1;
}
.os-hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.os-hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  padding-top: var(--sp-xs);
}

/* Product showcase */
.os-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.os-hero__phone-frame {
  position: relative;
  width: 280px;
  margin: auto;
}
.os-hero__phone-frame img {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(82,203,173,0.15));
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.os-hero__badge {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.os-hero__badge--grade {
  top: 10%;
  left: -24px;
}
.os-hero__badge--price {
  bottom: 15%;
  right: -24px;
}
.os-hero__badge-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}
.os-hero__badge-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .os-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .os-hero__sub { max-width: 100%; }
  .os-hero__ctas { justify-content: center; }
  .os-hero__stats { justify-content: center; }
}

/* â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-trust {
  background: var(--bg-inset);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: var(--sp-md);
}
.os-trust__grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.os-trust__item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
}
.os-trust__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  background: rgba(27,82,107,0.25);
  border: 1px solid rgba(82,203,173,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  flex-shrink: 0;
}
.os-trust__text {}
.os-trust__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.os-trust__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* â”€â”€ PRODUCT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-sm);
}
.os-product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  position: relative;
}
.os-product-card:hover {
  border-color: rgba(82,203,173,0.35);
  box-shadow: var(--shadow-lg), var(--glow-accent);
  transform: translateY(-4px);
}
.os-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-inset);
  overflow: hidden;
}
.os-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: var(--sp-md);
  transition: transform var(--t-slow);
}
.os-product-card:hover .os-product-card__img-wrap img { transform: scale(1.05); }

.os-product-card__badges {
  position: absolute;
  top: var(--sp-sm); left: var(--sp-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.os-product-card__sale {
  position: absolute;
  top: var(--sp-sm); right: var(--sp-sm);
  background: #E53E3E;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--r-sm);
}

.os-product-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}
.os-product-card__vendor {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.os-product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.os-product-card__title a:hover { color: var(--cta); transition: color var(--t-fast); }
.os-product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: var(--sp-xs);
  margin-top: auto;
  padding-top: var(--sp-xs);
}
.os-product-card__price-current {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}
.os-product-card__price-was {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.os-product-card__footer {
  padding: 0 var(--sp-md) var(--sp-md);
}

/* â”€â”€ CATEGORIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}
@media (min-width: 768px) {
  .os-cat-grid { grid-template-columns: repeat(4, 1fr); }
}
.os-cat-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all var(--t-base);
}
.os-cat-card:hover {
  border-color: rgba(82,203,173,0.4);
  box-shadow: var(--shadow-lg), var(--glow-accent);
  transform: translateY(-4px);
}
.os-cat-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
}
.os-cat-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity var(--t-base), transform var(--t-slow);
}
.os-cat-card:hover .os-cat-card__bg img { opacity: 0.6; transform: scale(1.06); }
.os-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,14,16,0.95) 0%, rgba(12,14,16,0.3) 60%, transparent 100%);
}
.os-cat-card__icon {
  position: absolute;
  top: var(--sp-md); left: var(--sp-md);
  width: 48px; height: 48px;
  background: rgba(27,82,107,0.4);
  border: 1px solid rgba(82,203,173,0.25);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  backdrop-filter: blur(8px);
}
.os-cat-card__body {
  position: relative;
  z-index: 1;
  padding: var(--sp-md);
}
.os-cat-card__count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.os-cat-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-xs);
}
.os-cat-card__arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cta);
  letter-spacing: 0.04em;
  transition: gap var(--t-fast);
}
.os-cat-card:hover .os-cat-card__arrow { gap: 10px; }

/* â”€â”€ WHY US â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-why { background: var(--bg-inset); }
.os-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}
.os-why__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.os-why__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cta), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.os-why__card:hover { border-color: rgba(82,203,173,0.25); box-shadow: var(--shadow-md); }
.os-why__card:hover::before { opacity: 1; }
.os-why__icon {
  width: 52px; height: 52px;
  background: rgba(27,82,107,0.25);
  border: 1px solid rgba(82,203,173,0.18);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
}
.os-why__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.os-why__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.os-why__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* â”€â”€ WHATSAPP CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-wa-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary-900) 0%, rgba(12,14,16,0.98) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.os-wa-section__bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,203,173,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.os-wa-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-md);
  padding-block: var(--sp-2xl);
}
.os-wa-section__icon {
  width: 80px; height: 80px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  animation: waPulse 3s ease infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
}
.os-wa-section__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 640px;
}
.os-wa-section__sub {
  color: var(--text-muted);
  max-width: 480px;
}
.os-wa-section__phone {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.os-wa-section__ctas { display: flex; gap: var(--sp-sm); flex-wrap: wrap; justify-content: center; }

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}
.os-review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: all var(--t-base);
}
.os-review-card:hover { border-color: rgba(82,203,173,0.25); box-shadow: var(--shadow-md); }
.os-review-stars { display: flex; gap: 3px; color: #F6C90E; }
.os-review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}
.os-review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border-subtle);
}
.os-review-avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--brand), var(--cta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-neutral-950);
  flex-shrink: 0;
}
.os-review-name { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.os-review-product { font-size: 0.75rem; color: var(--text-muted); }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.os-footer {
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
  padding-block: var(--sp-2xl) var(--sp-lg);
}
.os-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border-subtle);
}
.os-footer__brand {}
.os-footer__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}
.os-footer__logo-text span { color: var(--cta); }
.os-footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.os-footer__social {
  display: flex;
  gap: var(--sp-xs);
}
.os-footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.os-footer__social-link:hover { background: var(--bg-surface); color: var(--cta); border-color: rgba(82,203,173,0.3); }

.os-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--sp-md);
}
.os-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.os-footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.os-footer__link:hover { color: var(--cta); }

.os-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xs);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.os-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--cta); }

.os-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-lg);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.os-footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.os-footer__legal {
  display: flex;
  gap: var(--sp-md);
}
.os-footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.os-footer__legal a:hover { color: var(--cta); }

.os-footer__payments {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}
.os-footer__payment-badge {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .os-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .os-footer__top { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .os-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* === osat-audit-components.css === */
/* ============================================
   OSAT ABOUT PAGE V2
   ============================================ */

.osat-about-v2 { font-family: 'Inter', sans-serif; }

/* HERO */
.osat-about__hero {
  background: #0D4F6B;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.osat-about__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92,200,180,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.osat-about__hero-inner { position: relative; z-index: 1; }
.osat-about__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5CC8B4;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(92,200,180,0.3);
  border-radius: 100px;
}
.osat-about__hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 24px;
  max-width: 720px;
}
.osat-about__hero-title em {
  font-style: normal;
  color: #5CC8B4;
}
.osat-about__hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.6;
  margin: 0 0 36px;
}
.osat-about__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.osat-about__badge {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
}

/* STATS */
.osat-about__stats {
  background: #f8fafb;
  padding: 48px 0;
  border-block: 1px solid #eef0f2;
}
.osat-about__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.osat-about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid #e5e7eb;
}
.osat-about__stat:last-child { border-right: none; }
.osat-about__stat-num {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #0D4F6B;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.osat-about__stat-value {
  font-size: 1em;
}
.osat-about__stat-suffix {
  font-size: 0.5em;
  font-weight: 600;
  color: #5CC8B4;
  margin-left: 0.08em;
  line-height: 1;
  transform: translateY(-0.12em);
}
.osat-about__stat-label {
  display: block;
  max-width: 11rem;
  min-height: 2.5em;
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.35;
}

/* STORY */
.osat-about__story {
  padding: 100px 0;
  background: #ffffff;
}
.osat-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.osat-about__section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5CC8B4;
  margin-bottom: 16px;
}
.osat-about__section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #0D4F6B;
  margin: 0 0 24px;
  line-height: 1.2;
}
.osat-about__story-text p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* TIMELINE */
.osat-about__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid #eef0f2;
  padding-left: 32px;
  margin-top: 8px;
}
.osat-about__tl-item {
  position: relative;
  padding: 0 0 32px;
}
.osat-about__tl-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5CC8B4;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #5CC8B4;
}
.osat-about__tl-year {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5CC8B4;
  margin-bottom: 4px;
}
.osat-about__tl-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}

/* PILLARS */
.osat-about__pillars {
  background: #f8fafb;
  padding: 100px 0;
}
.osat-about__pillars-header {
  text-align: center;
  margin-bottom: 60px;
}
.osat-about__pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.osat-about__pillar {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.osat-about__pillar:hover {
  box-shadow: 0 8px 32px rgba(13,79,107,0.1);
  transform: translateY(-2px);
}
.osat-about__pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(92,200,180,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.osat-about__pillar h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0D4F6B;
  margin: 0 0 10px;
}
.osat-about__pillar p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* B2B / B2C SPLIT */
.osat-about__split {
  padding: 100px 0;
  background: #ffffff;
}
.osat-about__split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.osat-about__split-card {
  border-radius: 20px;
  padding: 56px 48px;
}
.osat-about__split-card--b2c {
  background: #0D4F6B;
  color: #ffffff;
}
.osat-about__split-card--b2b {
  background: #f8fafb;
  border: 1px solid #eef0f2;
  color: #0D4F6B;
}
.osat-about__split-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5CC8B4;
  margin-bottom: 20px;
}
.osat-about__split-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
.osat-about__split-card--b2c h2 { color: #ffffff; }
.osat-about__split-card--b2b h2 { color: #0D4F6B; }
.osat-about__split-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.osat-about__split-card--b2c p { color: rgba(255,255,255,0.75); }
.osat-about__split-card--b2b p { color: #6b7280; }

/* LEGAL */
.osat-about__legal {
  background: #f8fafb;
  border-top: 1px solid #eef0f2;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
.osat-about__legal .page-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.osat-about__legal-text {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}
.osat-about__legal-text a { color: #5CC8B4; text-decoration: none; }

/* BUTTONS */
.osat-about__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.osat-about__btn--primary { background: #5CC8B4; color: #0D4F6B; }
.osat-about__btn--primary:hover { background: #4ab5a2; }
.osat-about__btn--teal { background: #5CC8B4; color: #0D4F6B; }
.osat-about__btn--teal:hover { background: #4ab5a2; }
.osat-about__btn--outline { border: 2px solid #0D4F6B; color: #0D4F6B; }
.osat-about__btn--outline:hover { background: #0D4F6B; color: #ffffff; }
.osat-about__btn--ghost { border: 1px solid #d1d5db; color: #374151; font-size: 13px; padding: 10px 20px; }
.osat-about__btn--ghost:hover { border-color: #0D4F6B; color: #0D4F6B; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .osat-about__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .osat-about__story-grid { grid-template-columns: 1fr; gap: 48px; }
  .osat-about__pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .osat-about__split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .osat-about__hero { padding: 72px 0 60px; }
  .osat-about__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .osat-about__pillars-grid { grid-template-columns: 1fr; }
  .osat-about__split-card { padding: 40px 28px; }
}

/* === originalsat-spare-inquiry.css === */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
body.osat-sp-inquiry-open { overflow: hidden; }

.osat-sp-inquiry-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}
.osat-sp-inquiry-bar:not(.is-visible),
.osat-sp-inquiry-bar[hidden] { display: none !important; }
.osat-sp-inquiry-bar.is-visible { display: block; pointer-events: auto; }
.osat-sp-inquiry-bar__inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #0D4F6B;
  background-color: #0D4F6B;
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(13, 79, 107, 0.4);
}

.osat-sp-inquiry-bar__count {
  margin: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.osat-sp-inquiry-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #5CC8B4;
}

.osat-sp-inquiry-bar__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.osat-sp-inquiry-bar__count-text {
  display: inline;
  color: #ffffff;
}

.osat-sp-inquiry-bar__count-num {
  font-size: 16px;
  font-weight: 700;
  color: #5CC8B4;
  -webkit-text-fill-color: #5CC8B4;
  letter-spacing: 0.01em;
}

.osat-sp-inquiry-bar__count-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.osat-sp-inquiry-bar__count-hint {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.osat-sp-inquiry-bar__count-hint[hidden],
.osat-sp-inquiry-bar__icon[hidden],
.osat-sp-inquiry-bar__count-text[hidden] {
  display: none !important;
}

.osat-sp-inquiry-bar--hint .osat-sp-inquiry-bar__contact {
  opacity: 0.55;
  pointer-events: none;
}

.osat-sp-inquiry-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.osat-sp-inquiry-bar__clear {
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.osat-sp-inquiry-bar__clear:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.osat-sp-inquiry-bar__contact {
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #0D4F6B;
  -webkit-text-fill-color: #0D4F6B;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.osat-sp-inquiry-bar__contact:hover {
  background: #5CC8B4;
  color: #0D4F6B;
  -webkit-text-fill-color: #0D4F6B;
}

.osat-sp-inquiry {
  position: fixed; inset: 0; z-index: 120; display: flex; align-items: flex-end;
  justify-content: center; padding: 0;
}
.osat-sp-inquiry:not(.is-open),
.osat-sp-inquiry[hidden] { display: none !important; }
.osat-sp-inquiry.is-open { display: flex; }
.osat-sp-inquiry__backdrop {
  position: absolute; inset: 0; z-index: 0; background: rgba(0, 30, 40, 0.55);
  pointer-events: auto;
}
.osat-sp-inquiry__dialog {
  position: relative; z-index: 2; width: 100%; max-width: 440px; max-height: 88dvh;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 16px 14px calc(16px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  color: #1D1D1F;
}
@media (min-width: 600px) {
  .osat-sp-inquiry { align-items: center; padding: 24px; }
  .osat-sp-inquiry__dialog {
    border-radius: 14px;
    max-height: 84vh;
    padding: 18px 16px 22px;
  }
}
.osat-sp-inquiry__close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: 1px solid rgba(0, 62, 81, 0.12); border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--osat-brand-primary, #083A4A);
}
.osat-sp-inquiry__title {
  margin: 0 36px 4px 0;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osat-brand-primary, #083A4A) !important;
  -webkit-text-fill-color: var(--osat-brand-primary, #083A4A) !important;
}
.osat-sp-inquiry__intro {
  margin: 0 0 12px;
  font-size: 13px !important;
  line-height: 1.45;
  color: rgba(29, 29, 31, 0.72) !important;
  -webkit-text-fill-color: rgba(29, 29, 31, 0.72) !important;
}
.osat-sp-inquiry__list-wrap {
  margin-bottom: 14px;
  max-height: 28vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.osat-sp-inquiry__list-heading {
  margin: 0 0 8px;
  font-size: 11px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--osat-brand-primary, #083A4A) !important;
}
.osat-sp-inquiry__list-empty { margin: 0 0 12px; font-size: 13px; color: #8A9AA3; line-height: 1.45; }
.osat-sp-inquiry__list-empty[hidden] { display: none !important; }
.osat-sp-inquiry__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.osat-sp-inquiry__list-item {
  display: flex; align-items: flex-start; gap: 8px; padding: 8px 10px;
  background: #F5F5F7; border: 1px solid rgba(0, 62, 81, 0.1); border-radius: 8px;
}
.osat-sp-inquiry__list-body { flex: 1; min-width: 0; }
.osat-sp-inquiry__list-title {
  margin: 0 0 3px;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 1.35;
  color: var(--osat-brand-primary, #083A4A) !important;
  -webkit-text-fill-color: var(--osat-brand-primary, #083A4A) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.osat-sp-inquiry__list-meta {
  margin: 0;
  font-size: 11px !important;
  color: rgba(29, 29, 31, 0.72) !important;
  -webkit-text-fill-color: rgba(29, 29, 31, 0.72) !important;
  line-height: 1.4;
}
.osat-sp-inquiry__list-link {
  display: inline-block; margin-top: 4px; font-size: 11px !important; font-weight: 600;
  color: var(--osat-brand-primary, #083A4A) !important; text-decoration: underline;
}
.osat-sp-inquiry__list-remove {
  flex-shrink: 0; width: 28px; height: 28px; border: 1px solid rgba(0, 62, 81, 0.15);
  border-radius: 6px; background: #fff; color: rgba(29, 29, 31, 0.72); cursor: pointer; font-size: 16px; line-height: 1;
}
.osat-sp-inquiry__field { margin-bottom: 10px; }
.osat-sp-inquiry__label {
  display: block; margin-bottom: 4px; font-size: 12px !important; font-weight: 600;
  color: var(--osat-brand-primary, #083A4A) !important;
}
.osat-sp-inquiry__optional { margin-left: 6px; font-size: 12px; font-weight: 500; color: #8A9AA3; }
.osat-sp-inquiry__hint { margin: 6px 0 0; font-size: 12px; line-height: 1.4; color: #8A9AA3; }
.osat-sp-inquiry__field.has-error .osat-sp-inquiry__input { border-color: #dc2626; box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2); }
.osat-sp-inquiry__field-error { margin: 6px 0 0; font-size: 12px; color: #b91c1c; font-weight: 500; }
.osat-sp-inquiry__field-error[hidden] { display: none; }
.osat-sp-inquiry__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-size: 15px !important;
  line-height: 1.35;
  color: #1D1D1F !important;
  -webkit-text-fill-color: #1D1D1F !important;
  background: #fff;
  min-height: 42px;
  box-sizing: border-box;
}
.osat-sp-inquiry__input:focus {
  outline: none;
  border-color: #5CA88B;
  box-shadow: 0 0 0 3px rgba(92, 168, 139, 0.18);
}
.osat-sp-inquiry__input:focus-visible {
  outline: 2px solid #0D4F6B;
  outline-offset: 2px;
}
.osat-sp-inquiry__textarea { resize: vertical; min-height: 96px; }
.osat-sp-inquiry__actions {
  display: flex; flex-direction: column; gap: 8px; margin-top: 12px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.osat-sp-inquiry__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 46px; margin-top: 0; padding: 12px 14px; border-radius: 8px;
  font-size: 14px !important; font-weight: 600; cursor: pointer; line-height: 1.25;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.osat-sp-inquiry__submit--whatsapp {
  background: #25D366; color: #fff; border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.osat-sp-inquiry__submit--whatsapp:hover { background: #20bd5a; }

.osat-sp-inquiry__whatsapp-fallback {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
}

.osat-sp-inquiry__whatsapp-fallback[hidden] { display: none !important; }

.osat-sp-inquiry__whatsapp-fallback.is-open { display: block; }

.osat-sp-inquiry__whatsapp-fallback-hint {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(29, 29, 31, 0.72);
}

.osat-sp-inquiry__submit--link {
  display: inline-flex;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}
.osat-sp-inquiry__btn-icon { flex-shrink: 0; width: 20px; height: 20px; }
.osat-sp-inquiry__submit:disabled { opacity: 0.65; cursor: wait; }
.osat-sp-inquiry__errors,
.osat-sp-inquiry__client-errors {
  margin-bottom: 14px; padding: 12px; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 8px; font-size: 13px; color: #991b1b;
}
.osat-sp-inquiry__errors ul { margin: 8px 0 0; padding-left: 18px; }
.osat-sp-inquiry__client-errors[hidden],
.osat-sp-inquiry__errors[hidden] { display: none !important; }

.osat-sp-inquiry-success {
  position: fixed; inset: 0; z-index: 130; display: flex; align-items: center;
  justify-content: center; padding: 24px; background: rgba(0, 30, 40, 0.55);
}
.osat-sp-inquiry-success[hidden] { display: none !important; }
.osat-sp-inquiry-success.is-open { display: flex; }
.osat-sp-inquiry-success__inner {
  max-width: 400px; width: 100%; background: #fff; border-radius: 16px;
  padding: 28px 24px; text-align: center; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.osat-sp-inquiry-success__title { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--osat-brand-primary, #083A4A); }
.osat-sp-inquiry-success__text { margin: 0 0 20px; font-size: 14px; color: rgba(29, 29, 31, 0.72); line-height: 1.5; }
.osat-sp-inquiry-success__btn {
  height: 44px; padding: 0 24px; background: var(--osat-brand-primary, #083A4A); color: #fff; border: none;
  border-radius: 10px; font-weight: 600; cursor: pointer;
}

.osat-cat-card__quickadd--add.is-added {
  background: #E8F8F4 !important;
  background-color: #E8F8F4 !important;
  border-color: #5CC8B4 !important;
  color: #0D4F6B !important;
  -webkit-text-fill-color: #0D4F6B !important;
}

.osat-cat-card__quickadd--add.is-added .osat-cat-card__cta-label {
  color: #0D4F6B !important;
  -webkit-text-fill-color: #0D4F6B !important;
}
.osat-sp-pdp__cta-wrap,
.osat-sp-pdp__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.osat-sp-pdp__cta {
  width: 100%;
  height: 52px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.osat-sp-pdp__cta:not(.osat-sp-pdp__cta--secondary) {
  background: #083a4a;
  color: #ffffff;
  border: none;
}
.osat-sp-pdp__cta--secondary {
  background: transparent;
  color: #083a4a;
  border: 2px solid #083a4a;
}
.osat-sp-pdp__cta--secondary.is-added {
  background: rgba(92, 168, 139, 0.12);
  border-color: #5ca88b;
  color: #083a4a;
}

body.osat-sp-inquiry-bar-visible.osat-sticky-atc-active .osat-sp-inquiry-bar.is-visible {
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 599px) {
  .osat-sp-inquiry__title {
    font-size: 18px;
    line-height: 1.3;
    padding-right: 40px;
  }

  .osat-sp-inquiry__intro {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .osat-sp-inquiry__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .osat-sp-inquiry__field {
    margin-bottom: 12px;
  }

  .osat-sp-inquiry__label {
    font-size: 14px;
  }

  .osat-sp-inquiry-bar__inner {
    border-radius: 12px 12px 0 0;
    max-width: none;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .osat-sp-inquiry-bar {
    padding: 0;
  }
}

