@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ══════════════════════════════════════════════
   OnlyFak — Premium Theme
══════════════════════════════════════════════ */

/* ── GLOBAL FONT ── */
body, button, input, select, textarea {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── TOKENS ── */
:root {
  --cyan:    #00d4ff;
  --cyan2:   #0099cc;
  --purple:  #8b5cf6;
  --gold:    #f59e0b;
  --green:   #10b981;
  --red:     #ef4444;
  --bg:      #04080f;
  --surface: #080e1c;
  --card:    #0c1524;
  --card2:   #0f1c30;
  --border:  rgba(255,255,255,0.06);
  --border2: rgba(0,212,255,0.18);
  --glow:    rgba(0,212,255,0.12);
  --glowp:   rgba(139,92,246,0.12);
  --text:    #ffffff;
  --muted:   #6b7fa3;
  --dim:     #3a4f6e;
  --r:       16px;
}

/* ── UTILITY ── */
.of-g {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.of-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.of-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.of-section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.of-section-header p {
  color: var(--muted);
  font-size: 16px;
}

/* ── HERO ── */
.of-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 100px 32px 80px;
  text-align: center;
  margin-bottom: 0;
}

.of-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.of-orb1 {
  width: 500px; height: 500px;
  background: rgba(0,212,255,0.08);
  top: -150px; left: -100px;
}
.of-orb2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.08);
  bottom: -120px; right: -80px;
}
.of-orb3 {
  width: 300px; height: 300px;
  background: rgba(0,212,255,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.of-hero-inner { position: relative; z-index: 1; }

.of-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.of-badge-pulse {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: of-pulse 1.8s ease-in-out infinite;
}
@keyframes of-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.of-hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.of-hero-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.of-hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* STATS */
.of-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 16px 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.of-stat { text-align: center; padding: 0 24px; }
.of-stat-n {
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.of-stat-l {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.of-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── BUTTONS ── */
.of-btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(0,212,255,0.35), 0 4px 16px rgba(0,0,0,0.4);
}
.of-btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.of-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,255,0.5), 0 8px 24px rgba(0,0,0,0.4);
}

.of-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.of-btn-glass:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-2px);
}

/* ── FEATURES ── */
.of-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 48px 0;
}

.of-feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.of-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ic, var(--cyan)), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.of-feat-card:hover::before { opacity: 1; }
.of-feat-card:hover {
  border-color: rgba(0,212,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.of-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic, var(--cyan)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic, var(--cyan)) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ic, var(--cyan));
}

.of-feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.of-feat-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── ABOUT ── */
.of-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.of-about-text .of-section-tag { margin-bottom: 14px; }
.of-about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.15;
}
.of-about-text > p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.of-about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.of-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
.of-li-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.of-about-list li strong { color: var(--cyan); font-weight: 700; }

/* ABOUT VISUAL */
.of-about-visual {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.of-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: of-spin-slow linear infinite;
}
.of-ring1 {
  width: 100%; height: 100%;
  border-color: rgba(0,212,255,0.15);
  animation-duration: 20s;
}
.of-ring2 {
  width: 75%; height: 75%;
  border-color: rgba(139,92,246,0.2);
  animation-duration: 14s;
  animation-direction: reverse;
}
.of-ring3 {
  width: 50%; height: 50%;
  border-color: rgba(0,212,255,0.25);
  animation-duration: 9s;
}
@keyframes of-spin-slow { to { transform: rotate(360deg); } }

.of-visual-center {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 40% 30%, rgba(0,212,255,0.15), rgba(139,92,246,0.1), transparent 70%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0,212,255,0.15), inset 0 0 40px rgba(0,212,255,0.05);
}
.of-about-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.of-logo-fallback {
  display: none;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  flex-direction: row;
  gap: 0;
}

/* ── SERVICES ── */
.of-services { padding: 48px 0 80px; }

.of-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* LOADING */
.of-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}
.of-spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(0,212,255,0.15);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: of-spin-slow 0.8s linear infinite;
}

/* ── PRODUCT CARD ── */
.of-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.of-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.06);
}
.of-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity 0.25s;
}
.of-card:hover::before { opacity: 1; }

.of-card-featured {
  border-color: rgba(0,212,255,0.2);
  box-shadow: 0 8px 32px rgba(0,212,255,0.07);
}
.of-card-featured::before { opacity: 0.6; }

/* BADGE */
.of-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 5;
  backdrop-filter: blur(8px);
}
.of-badge-purple {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
  color: #a78bfa;
}

/* THUMBNAIL */
.of-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.of-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.of-card:hover .of-card-thumb img { transform: scale(1.05); }

.of-thumb-ph {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #060f20 0%, #0d1f3c 40%, #070e1c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.of-thumb-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139,92,246,0.06) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 30px);
}
.of-thumb-brand {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 30px rgba(0,212,255,0.6);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.of-thumb-brand span { color: var(--cyan); }
.of-thumb-cat {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

/* CARD BODY */
.of-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.of-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.of-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.of-stock.of-out { color: var(--red); }
.of-card-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.of-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.of-card-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.of-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.of-card-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}
.of-btn-buy {
  flex-shrink: 0;
  background: var(--cyan);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,212,255,0.25);
}
.of-btn-buy:hover {
  background: var(--cyan2);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0,212,255,0.4);
}

/* ── REVIEWS ── */
.of-reviews { padding: 48px 0 80px; }

.of-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.of-review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.of-review-card:hover {
  border-color: rgba(0,212,255,0.12);
  transform: translateY(-3px);
}
.of-review-featured {
  border-color: rgba(0,212,255,0.15);
  box-shadow: 0 8px 32px rgba(0,212,255,0.06);
}
.of-review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.of-review-card > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.of-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.of-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--av, var(--cyan)) 20%, #0c1524);
  border: 1px solid color-mix(in srgb, var(--av, var(--cyan)) 40%, transparent);
  color: var(--av, var(--cyan));
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.of-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.of-review-date {
  font-size: 12px;
  color: var(--dim);
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.of-cta {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 80px 32px;
  text-align: center;
  margin-bottom: 48px;
}
.of-cta-orb {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, rgba(139,92,246,0.05) 50%, transparent 75%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.of-cta h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
}
.of-cta > p {
  color: var(--muted);
  font-size: 16px;
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .of-about {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 48px 0;
  }
  .of-about-visual { width: 240px; height: 240px; }
  .of-about-list li { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .of-hero { padding: 64px 20px 56px; }
  .of-stats { padding: 14px 16px; gap: 0; }
  .of-stat { padding: 0 14px; }
  .of-stat-n { font-size: 18px; }
  .of-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .of-btn-buy { width: 100%; text-align: center; }
  .of-cta { padding: 56px 20px; }
}

/* ══════════════════════════════════════════════
   PRODUCTS PAGE (/products)
══════════════════════════════════════════════ */
.ofp-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 8px 0 64px;
  align-items: start;
}

/* SIDEBAR */
.ofp-sidebar {
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 20px;
  position: sticky;
  top: 90px;
}
.ofp-sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ofp-filter-group { margin-bottom: 18px; }
.ofp-filter-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7fa3;
  margin-bottom: 8px;
}
.ofp-select,
.ofp-input {
  width: 100%;
  background: #080e1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  font-size: 13.5px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.ofp-select { appearance: none; cursor: pointer; }
.ofp-select:focus,
.ofp-input:focus { border-color: rgba(0,212,255,0.4); }
.ofp-input::placeholder { color: #3a4f6e; }
.ofp-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ofp-input-wrap svg,
.ofp-input-wrap .ofp-currency {
  position: absolute;
  left: 10px;
  color: #3a4f6e;
  font-size: 13px;
  pointer-events: none;
}
.ofp-input-wrap .ofp-input { padding-left: 28px; }
.ofp-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}
.ofp-price-dash { color: #3a4f6e; font-size: 13px; text-align: center; }

.ofp-btn-apply {
  width: 100%;
  background: #00d4ff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 800;
  padding: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 0 20px rgba(0,212,255,0.25);
}
.ofp-btn-apply:hover { background: #00a8d6; transform: translateY(-1px); }

.ofp-btn-reset {
  width: 100%;
  background: transparent;
  color: #6b7fa3;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.ofp-btn-reset:hover { border-color: rgba(0,212,255,0.3); color: #fff; }

/* MAIN AREA */
.ofp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.ofp-header-left .of-section-tag { margin-bottom: 8px; }
.ofp-header-left h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.ofp-count {
  font-size: 13px;
  color: #6b7fa3;
  font-weight: 500;
  padding-bottom: 4px;
}

.ofp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.ofp-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 20px;
  color: #3a4f6e;
  text-align: center;
}
.ofp-empty p { font-size: 15px; }

/* ── NAVBAR: hide Status & Blog links ── */
nav a[href*="/status"],
nav a[href*="status"],
nav a[href*="/blog"],
nav a[href*="blog"] {
  display: none !important;
}

/* ── OnlyFak bicolor brand: "Only" white + "Fak" cyan — CSS only, zero JS DOM touch ── */
nav h1 {
  background: linear-gradient(90deg, #ffffff 0% 55%, #00d4ff 55% 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

/* Hide the OnlyFak icon — show text-only brand */
nav img[alt="OnlyFak"] {
  display: none !important;
}

/* ══════════════════════════════════════════════
   PRODUCTS PAGE — NEW LAYOUT
══════════════════════════════════════════════ */
.ofp-page { padding: 0 0 80px; }

.ofp-page-header {
  text-align: center;
  padding: 48px 0 40px;
}
.ofp-page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 10px;
  line-height: 1.15;
}
.ofp-page-header p { color: #6b7fa3; font-size: 15px; }

.ofp-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* SIDEBAR */
.ofp-sidebar {
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 18px;
  position: sticky;
  top: 88px;
}
.ofp-sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ofp-filter-group { margin-bottom: 16px; }
.ofp-filter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7fa3;
  margin-bottom: 7px;
}
.ofp-select-wrap { position: relative; }
.ofp-select-arrow {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  color: #6b7fa3;
  pointer-events: none;
}
.ofp-select,
.ofp-input {
  width: 100%;
  background: #080e1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.ofp-select { padding-right: 28px; cursor: pointer; }
.ofp-select:focus, .ofp-input:focus { border-color: rgba(0,212,255,0.4); }
.ofp-input::placeholder { color: #3a4f6e; }
.ofp-select option { background: #0c1524; }
.ofp-input-wrap { position: relative; }
.ofp-input-wrap svg, .ofp-sym {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  color: #3a4f6e; font-size: 12px;
  pointer-events: none;
}
.ofp-input-wrap .ofp-input { padding-left: 26px; }
.ofp-price-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; align-items: center; }
.ofp-dash { color: #3a4f6e; text-align: center; font-size: 13px; }

.ofp-btn-apply {
  width: 100%;
  background: #00d4ff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 0 18px rgba(0,212,255,0.2);
}
.ofp-btn-apply:hover { background: #00a8d6; transform: translateY(-1px); }

.ofp-btn-reset {
  width: 100%;
  background: transparent;
  color: #6b7fa3;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.ofp-btn-reset:hover { border-color: rgba(0,212,255,0.3); color: #fff; }

/* MAIN */
.ofp-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
  min-height: 24px;
}
.ofp-count { font-size: 13px; color: #6b7fa3; font-weight: 500; }

.ofp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.ofp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px;
  color: #3a4f6e;
  text-align: center;
  grid-column: 1/-1;
}
.ofp-empty p { font-size: 15px; }

/* ══════════════════════════════════════════════
   FEEDBACK / REVIEWS PAGE
══════════════════════════════════════════════ */
.offb-page { padding: 0 0 80px; }

/* Rating summary */
.offb-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.offb-big-rating { text-align: center; flex-shrink: 0; }
.offb-big-num {
  font-size: 56px;
  font-weight: 900;
  color: #00d4ff;
  line-height: 1;
}
.offb-big-stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; margin: 6px 0 4px; }
.offb-big-label { color: #6b7fa3; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }

.offb-summary-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.offb-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #6b7fa3; }
.offb-bar-row span:first-child { width: 28px; text-align: right; flex-shrink: 0; }
.offb-bar-row span:last-child  { width: 32px; flex-shrink: 0; }
.offb-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  overflow: hidden;
}
.offb-bar-fill {
  height: 100%;
  background: #00d4ff;
  border-radius: 50px;
  transition: width 0.6s ease;
}

.offb-trust-badges { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.offb-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #a0b0c8;
}

/* Grid */
.offb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

/* Review card extras */
.offb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.offb-card-top .of-review-avatar { width: 44px; height: 44px; font-size: 16px; flex-shrink: 0; }
.offb-card-top > div:nth-child(2) { flex: 1; }
.offb-rating-badge {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #f59e0b;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  flex-shrink: 0;
}
.offb-product-tag {
  display: inline-block;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.15);
  color: #00d4ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.offb-date {
  font-size: 11.5px;
  color: #3a4f6e;
  margin-top: 12px;
}

/* CTA */
.offb-cta {
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
}
.offb-cta h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.offb-cta p { color: #6b7fa3; font-size: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .ofp-layout { grid-template-columns: 1fr; }
  .ofp-sidebar { position: static; }
  .offb-summary { flex-direction: column; align-items: flex-start; gap: 24px; }
  .offb-trust-badges { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .ofp-grid, .offb-grid { grid-template-columns: 1fr; }
  .ofp-price-row { grid-template-columns: 1fr auto 1fr; }
}

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════ */
.ofpd-page { padding: 0 0 80px; }

/* Breadcrumb */
.ofpd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7fa3;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ofpd-breadcrumb a { color: #6b7fa3; text-decoration: none; transition: color 0.2s; }
.ofpd-breadcrumb a:hover { color: #00d4ff; }
.ofpd-breadcrumb span { color: #c0cfe0; font-weight: 600; }
.ofpd-breadcrumb svg { color: #3a4f6e; flex-shrink: 0; }

/* Social proof strip */
.ofpd-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 50px;
  padding: 9px 24px;
  margin-bottom: 28px;
  flex-wrap: nowrap;
  overflow: hidden;
  line-height: 1;
}
.ofpd-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #a0b0c8;
  white-space: nowrap;
  line-height: 1;
}
.ofpd-proof-stars { color: #f59e0b; letter-spacing: 1px; line-height: 1; }
.ofpd-proof-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); flex-shrink: 0; align-self: center; }

/* Native SellAuth component wrapper */
.ofpd-native-wrap {
  background: linear-gradient(145deg, #0d1a30 0%, #0c1524 60%, #080e1c 100%);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 20px;
  overflow: visible;
  padding: 40px;
  margin-bottom: 20px;
  box-shadow:
    0 0 80px rgba(0,212,255,0.04),
    0 24px 64px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.ofpd-native-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 20px;
}
.ofpd-native-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 20px;
}

/* Font override — solo texto, nunca íconos (evita los □ en botones) */
.ofpd-native-wrap p,
.ofpd-native-wrap h1,
.ofpd-native-wrap h2,
.ofpd-native-wrap h3,
.ofpd-native-wrap h4,
.ofpd-native-wrap span:not([class*="icon"]):not([data-icon]),
.ofpd-native-wrap div:not([class*="icon"]),
.ofpd-native-wrap input,
.ofpd-native-wrap label,
.ofpd-native-wrap a {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Kill light backgrounds */
.ofpd-native-wrap [class*="bg-white"],
.ofpd-native-wrap [class*="bg-gray"],
.ofpd-native-wrap [class*="bg-slate"],
.ofpd-native-wrap [class*="bg-zinc"] {
  background: transparent !important;
}

/* Muted text */
.ofpd-native-wrap [class*="text-gray"],
.ofpd-native-wrap [class*="text-black"],
.ofpd-native-wrap [class*="text-slate"] {
  color: #8a9bb5 !important;
}

/* Headings */
.ofpd-native-wrap h1,
.ofpd-native-wrap h2,
.ofpd-native-wrap h3 {
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.ofpd-native-wrap h1 {
  font-size: clamp(22px, 3vw, 32px) !important;
  line-height: 1.2 !important;
}

/* Price */
.ofpd-native-wrap [class*="price"],
.ofpd-native-wrap [class*="Price"] {
  color: #00d4ff !important;
  font-weight: 900 !important;
}

/* Body text / description — more readable */
.ofpd-native-wrap p,
.ofpd-native-wrap [class*="description"] {
  color: #8a9bb5 !important;
  font-size: 14.5px !important;
  line-height: 1.8 !important;
}

/* Borders / dividers */
.ofpd-native-wrap [class*="border"],
.ofpd-native-wrap [class*="divide-"] {
  border-color: rgba(255,255,255,0.07) !important;
}

/* Product image */
.ofpd-native-wrap img {
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}

/* Quantity input */
.ofpd-native-wrap input {
  background: #0a1120 !important;
  border: 1px solid rgba(0,212,255,0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* ─── ALL interactive elements: dark readable base ─── */
/* SellAuth variant buttons are often div/li with role="option"/"radio", not <button> */
.ofpd-native-wrap button,
.ofpd-native-wrap [role="button"],
.ofpd-native-wrap [role="radio"],
.ofpd-native-wrap [role="option"],
.ofpd-native-wrap [role="menuitem"],
.ofpd-native-wrap li[tabindex],
.ofpd-native-wrap div[tabindex="0"],
.ofpd-native-wrap label[class*="cursor"] {
  background: #0a1628 !important;
  border: 1px solid rgba(0,212,255,0.22) !important;
  color: #c0d0e8 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: border-color 0.2s, background 0.2s, color 0.2s !important;
}
.ofpd-native-wrap button:hover,
.ofpd-native-wrap [role="button"]:hover,
.ofpd-native-wrap [role="radio"]:hover,
.ofpd-native-wrap [role="option"]:hover,
.ofpd-native-wrap li[tabindex]:hover,
.ofpd-native-wrap div[tabindex="0"]:hover {
  border-color: rgba(0,212,255,0.45) !important;
  background: rgba(0,212,255,0.07) !important;
  color: #ffffff !important;
}

/* ─── Selected / active variant ─── */
.ofpd-native-wrap button[aria-pressed="true"],
.ofpd-native-wrap button[aria-selected="true"],
.ofpd-native-wrap button[aria-checked="true"],
.ofpd-native-wrap [role="radio"][aria-checked="true"],
.ofpd-native-wrap [role="option"][aria-selected="true"],
.ofpd-native-wrap [data-state="on"],
.ofpd-native-wrap [data-state="active"],
.ofpd-native-wrap [data-headlessui-state~="checked"],
.ofpd-native-wrap [data-headlessui-state~="selected"] {
  background: rgba(0,212,255,0.12) !important;
  border-color: rgba(0,212,255,0.55) !important;
  color: #00d4ff !important;
  font-weight: 700 !important;
}

/* ─── Primary action buttons (Add to Cart / Buy Now) ─── */
/* Targeted by container: <div class="flex flex-col gap-4 mt-4 lg:flex-row"> */
/* Also targets Buy Now which is type="submit" */
.ofpd-native-wrap button[type="submit"],
.ofpd-native-wrap button[class*="primary"],
.ofpd-native-wrap .flex.flex-col.gap-4.mt-4 button,
.ofpd-native-wrap .flex.gap-4.mt-4 button {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  border-color: transparent !important;
  border-radius: 12px !important;
  box-shadow: 0 0 24px rgba(0,212,255,0.35) !important;
}
.ofpd-native-wrap button[type="submit"]:hover,
.ofpd-native-wrap button[class*="primary"]:hover,
.ofpd-native-wrap .flex.flex-col.gap-4.mt-4 button:hover,
.ofpd-native-wrap .flex.gap-4.mt-4 button:hover {
  box-shadow: 0 0 36px rgba(0,212,255,0.55) !important;
  transform: translateY(-1px) !important;
}

/* ─── Secondary / ghost ─── */
.ofpd-native-wrap button[class*="outline"],
.ofpd-native-wrap button[class*="secondary"],
.ofpd-native-wrap button[class*="ghost"] {
  background: rgba(139,92,246,0.08) !important;
  border: 1px solid rgba(139,92,246,0.28) !important;
  color: #a78bfa !important;
  border-radius: 10px !important;
}
.ofpd-native-wrap button[class*="outline"]:hover,
.ofpd-native-wrap button[class*="secondary"]:hover,
.ofpd-native-wrap button[class*="ghost"]:hover {
  background: rgba(139,92,246,0.15) !important;
  border-color: rgba(139,92,246,0.45) !important;
  color: #c4b5fd !important;
}

/* Trust strip */
.ofpd-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.ofpd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 18px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #8a9bb5;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.ofpd-trust-item:hover {
  border-color: rgba(0,212,255,0.12);
  transform: translateY(-2px);
}

/* Telegram card */
.ofpd-telegram-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 14px;
  padding: 16px 22px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.ofpd-telegram-card:hover {
  border-color: rgba(0,212,255,0.28);
  background: rgba(0,212,255,0.07);
  transform: translateY(-2px);
}
.ofpd-telegram-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  flex-shrink: 0;
}
.ofpd-telegram-text { flex: 1; }
.ofpd-telegram-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.ofpd-telegram-sub {
  font-size: 12.5px;
  color: #6b7fa3;
  line-height: 1.4;
}

/* Related products */
.ofpd-related { margin-top: 72px; }

/* Responsive */
@media (max-width: 860px) {
  .ofpd-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .ofpd-native-wrap { padding: 24px 20px; }
  .ofpd-proof-strip { padding: 10px 16px; gap: 12px; }
}
@media (max-width: 480px) {
  .ofpd-trust-strip { grid-template-columns: 1fr 1fr; }
  .ofpd-proof-sep { display: none; }
  .ofpd-proof-strip { justify-content: flex-start; }
  .ofpd-native-wrap { padding: 18px 14px; }
}

/* ══════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════ */
.ofcart-page { padding: 0 0 80px; }

.ofcart-header {
  text-align: center;
  padding: 48px 0 36px;
}
.ofcart-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 10px;
  line-height: 1.15;
}
.ofcart-header p { color: #6b7fa3; font-size: 15px; }

/* Cart native wrapper */
.ofcart-native-wrap {
  background: linear-gradient(145deg, #0d1a30 0%, #0c1524 60%, #080e1c 100%);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 20px;
  overflow: visible;
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Font override — solo texto, nunca íconos */
.ofcart-native-wrap p,
.ofcart-native-wrap h1,
.ofcart-native-wrap h2,
.ofcart-native-wrap h3,
.ofcart-native-wrap span:not([class*="icon"]):not([data-icon]),
.ofcart-native-wrap div:not([class*="icon"]),
.ofcart-native-wrap input,
.ofcart-native-wrap label,
.ofcart-native-wrap a {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Reset light backgrounds */
.ofcart-native-wrap [class*="bg-white"],
.ofcart-native-wrap [class*="bg-gray"],
.ofcart-native-wrap [class*="bg-slate"] {
  background: transparent !important;
}

/* Text */
.ofcart-native-wrap [class*="text-gray"],
.ofcart-native-wrap [class*="text-black"],
.ofcart-native-wrap [class*="text-slate"] {
  color: #8a9bb5 !important;
}

/* Headings */
.ofcart-native-wrap h1,
.ofcart-native-wrap h2,
.ofcart-native-wrap h3 {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

/* Price */
.ofcart-native-wrap [class*="price"],
.ofcart-native-wrap [class*="Price"] {
  color: #00d4ff !important;
  font-weight: 800 !important;
}

/* Borders */
.ofcart-native-wrap [class*="border"],
.ofcart-native-wrap [class*="divide-"] {
  border-color: rgba(255,255,255,0.07) !important;
}

/* Product images in cart */
.ofcart-native-wrap img {
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
}

/* Checkout button */
.ofcart-native-wrap button:not([class*="outline"]):not([class*="ghost"]):not([class*="secondary"]):not([class*="link"]) {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%) !important;
  color: #000 !important;
  font-weight: 900 !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 0 24px rgba(0,212,255,0.3) !important;
}
.ofcart-native-wrap button:not([class*="outline"]):not([class*="ghost"]):not([class*="secondary"]):not([class*="link"]):hover {
  box-shadow: 0 0 36px rgba(0,212,255,0.5) !important;
}

/* Remove / icon buttons */
.ofcart-native-wrap button[class*="ghost"],
.ofcart-native-wrap button[class*="outline"],
.ofcart-native-wrap button[class*="link"] {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #6b7fa3 !important;
  border-radius: 8px !important;
}
.ofcart-native-wrap button[class*="ghost"]:hover,
.ofcart-native-wrap button[class*="outline"]:hover {
  border-color: rgba(239,68,68,0.4) !important;
  color: #ef4444 !important;
}

/* Order summary card */
.ofcart-native-wrap [class*="card"],
.ofcart-native-wrap [class*="Card"],
.ofcart-native-wrap [class*="summary"],
.ofcart-native-wrap [class*="Summary"] {
  background: #0c1524 !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
}

/* Inputs (coupon, etc.) */
.ofcart-native-wrap input {
  background: #080e1c !important;
  border: 1px solid rgba(0,212,255,0.2) !important;
  border-radius: 8px !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════
   CUSTOMER ACCOUNT PAGES
══════════════════════════════════════════════ */
.ofcust-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.ofcust-header {
  text-align: center;
  margin: 32px 0 36px;
}
.ofcust-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.ofcust-header p {
  color: #6b7fa3;
  font-size: 15px;
}

/* ── CUSTOMER NAV TABS ── */
.ofcust-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.ofcust-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7fa3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px 10px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  position: relative;
  top: 1px;
}
.ofcust-nav-item:hover {
  color: #c0d0e8;
  background: rgba(0,212,255,0.05);
}
.ofcust-nav-item.active {
  color: #00d4ff;
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.2);
  border-bottom-color: #04080f;
}
.ofcust-nav-item svg { opacity: 0.7; }
.ofcust-nav-item.active svg { opacity: 1; }

/* ── NATIVE CUSTOMER WRAP ── */
.ofcust-native-wrap {
  background: linear-gradient(135deg, #0c1524 0%, #0f1c30 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: visible !important;
}
.ofcust-native-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Support tab — Telegram color accent */
.ofcust-nav-tg { color: #6b7fa3; }
.ofcust-nav-tg:hover { color: #00d4ff; }
.ofcust-nav-tg.active { color: #00d4ff; }

/* ── DASHBOARD WELCOME ── */
.ofcust-welcome {
  text-align: center;
  padding: 40px 24px 32px;
  background: linear-gradient(135deg, #0c1524 0%, #0f1c30 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  margin-bottom: 20px;
}
.ofcust-welcome-icon {
  width: 80px; height: 80px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.ofcust-welcome h2 {
  font-size: 24px; font-weight: 900;
  color: #ffffff; margin-bottom: 8px;
}
.ofcust-welcome p { color: #6b7fa3; font-size: 15px; }

/* ── QUICK ACTION CARDS ── */
.ofcust-quick-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ofcust-quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #0c1524;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.ofcust-quick-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.04);
  transform: translateY(-2px);
}
.ofcust-quick-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.ofcust-quick-text {
  display: flex; flex-direction: column; gap: 4px;
}
.ofcust-quick-text strong {
  color: #ffffff; font-size: 16px; font-weight: 700;
}
.ofcust-quick-text span {
  color: #6b7fa3; font-size: 13px;
}

/* ── INVOICES INFO CARD ── */
.ofcust-invoice-info {
  background: linear-gradient(135deg, #0c1524 0%, #0f1c30 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.ofcust-invoice-icon {
  width: 88px; height: 88px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.ofcust-invoice-info h2 {
  font-size: 26px; font-weight: 900;
  color: #ffffff; margin-bottom: 10px;
}
.ofcust-invoice-info > p {
  color: #6b7fa3; font-size: 15px;
  line-height: 1.7; margin-bottom: 36px;
}
.ofcust-invoice-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 36px;
}
.ofcust-invoice-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
}
.ofcust-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #00d4ff; font-weight: 900; font-size: 13px;
  margin-top: 2px;
}
.ofcust-step-text { display: flex; flex-direction: column; gap: 4px; }
.ofcust-step-text strong { color: #ffffff; font-size: 15px; font-weight: 700; }
.ofcust-step-text span { color: #6b7fa3; font-size: 13px; line-height: 1.6; }

/* ── TICKETS / SUPPORT TELEGRAM PAGE ── */
.ofcust-tg-page {
  position: relative;
  text-align: center;
  padding: 60px 24px 56px;
  background: linear-gradient(135deg, #0c1524 0%, #0f1c30 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.ofcust-tg-glow {
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ofcust-tg-icon {
  width: 96px; height: 96px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.ofcust-tg-page h2 {
  font-size: 28px; font-weight: 900;
  color: #ffffff; margin-bottom: 12px;
}
.ofcust-tg-page p {
  color: #6b7fa3; font-size: 15px;
  line-height: 1.7; margin-bottom: 32px;
}
.ofcust-tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #000000;
  font-weight: 900;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0,212,255,0.35);
  transition: transform 0.15s, box-shadow 0.2s;
  margin-bottom: 36px;
}
.ofcust-tg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(0,212,255,0.5);
  color: #000000;
}
.ofcust-tg-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
}
.ofcust-tg-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7fa3;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .ofcust-page { padding: 20px 16px 48px; }
  .ofcust-native-wrap { padding: 20px 16px; }
  .ofcust-nav { gap: 4px; }
  .ofcust-nav-item { padding: 8px 12px; font-size: 13px; }
  .ofcust-quick-card { padding: 16px; }
  .ofcust-tg-page { padding: 40px 20px 40px; }
}

/* Continue shopping link */
.ofcart-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7fa3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.ofcart-back:hover { color: #00d4ff; }

/* ══════════════════════════════════════════════
   HIDE CURRENCY SELECTOR — temporarily disabled for testing
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   FLOATING TELEGRAM BUTTON
══════════════════════════════════════════════ */
.of-float-tg {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.of-float-tg.of-float-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.of-float-tg-label {
  background: rgba(10,22,40,0.92);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00d4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.of-float-tg-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(0,212,255,0.45), 0 4px 16px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.of-float-tg-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 44px rgba(0,212,255,0.65), 0 4px 20px rgba(0,0,0,0.4);
}
.of-float-tg-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #0a1628;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7fa3;
  font-size: 11px;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}
.of-float-tg-close:hover { color: #fff; border-color: rgba(0,212,255,0.6); }
.of-float-tg-wrap { position: relative; }

@media (max-width: 640px) {
  .of-float-tg { bottom: 20px; right: 16px; }
  .of-float-tg-btn { width: 50px; height: 50px; }
}

/* Trust strip (reuse ofpd-trust-strip) */

@media (max-width: 640px) {
  .ofcart-native-wrap { padding: 20px 16px; }
}

/* ══════════════════════════════════════════════
   ALPINE.JS — ocultar elementos con x-cloak
   hasta que Alpine inicialice
══════════════════════════════════════════════ */
[x-cloak] { display: none !important; }

/* Transiciones Alpine para el modal */
.of-t-enter         { transition: opacity 0.25s ease; }
.of-t-enter-start   { opacity: 0; }
.of-t-enter-end     { opacity: 1; }
.of-t-leave         { transition: opacity 0.2s ease; }
.of-t-box-enter     { transition: opacity 0.25s ease, transform 0.25s ease; }
.of-t-box-start     { opacity: 0; transform: translateY(12px) scale(0.97); }
.of-t-box-end       { opacity: 1; transform: translateY(0) scale(1); }

/* ══════════════════════════════════════════════
   LAYOUT BASE
══════════════════════════════════════════════ */
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

.of-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.of-page-container {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 60px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 640px) {
  .of-page-container { padding: 16px 16px 48px; }
}

/* ══════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
.of-bar {
  background: linear-gradient(90deg, rgba(0,212,255,0.07), rgba(139,92,246,0.07));
  border-bottom: 1px solid rgba(0,212,255,0.1);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  color: #8a9bb5;
  font-weight: 500;
}
.of-bar strong { color: #fff; }
.of-bar-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
}
.of-bar-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.of-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(4,8,15,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.of-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 16px;
}

/* Brand "OnlyFak" */
.of-nav-brand {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}
.of-ac { color: var(--cyan); }

/* Nav links — center */
.of-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.of-nav-links a {
  color: #6b7fa3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.of-nav-links a:hover {
  color: #fff;
  background: rgba(0,212,255,0.07);
}

/* Right side: cart + login */
.of-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Cart icon button */
.of-nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #6b7fa3;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.of-nav-icon:hover {
  color: #fff;
  border-color: rgba(0,212,255,0.28);
  background: rgba(0,212,255,0.05);
}

/* Cart item count badge */
.of-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--cyan);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

/* Login / My Account button */
.of-nav-login {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0,212,255,0.09);
  border: 1px solid rgba(0,212,255,0.22);
  color: var(--cyan);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.of-nav-login:hover {
  background: rgba(0,212,255,0.18);
  border-color: rgba(0,212,255,0.5);
  transform: translateY(-1px);
}

/* Mobile: hide nav links, keep brand + right */
@media (max-width: 680px) {
  .of-nav-links { display: none; }
  .of-nav-inner { padding: 0 16px; }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.of-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 24px;
  margin-top: 16px;
  background: var(--bg);
}
.of-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.of-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.of-footer-links a {
  color: #6b7fa3;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 7px;
  transition: color 0.18s;
}
.of-footer-links a:hover { color: var(--cyan); }
.of-footer-copy { color: #3a4f6e; font-size: 12.5px; margin: 0; }

/* ══════════════════════════════════════════════
   LOGIN MODAL
══════════════════════════════════════════════ */
.of-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 9990;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}
.of-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}
.of-modal-center {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
.of-modal-box {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(145deg, #0d1a30, #0c1524);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 40px rgba(0,212,255,0.06);
}
.of-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.of-modal-title {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.of-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7fa3;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.18s;
  flex-shrink: 0;
  margin-top: 2px;
}
.of-modal-close:hover { color: #fff; }
.of-modal-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #a0b0c8;
  margin-bottom: 4px;
}
.of-modal-hint {
  display: block;
  font-size: 12.5px;
  color: #6b7fa3;
  margin-bottom: 10px;
  line-height: 1.5;
}
.of-modal-input {
  width: 100%;
  background: #080e1c;
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}
.of-modal-input:focus { border-color: rgba(0,212,255,0.55); }
.of-modal-input::placeholder { color: #3a4f6e; }
.of-modal-error {
  font-size: 12.5px;
  color: #ef4444;
  margin: 8px 0 0;
  min-height: 18px;
}
.of-modal-btn {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #000;
  font-size: 15px;
  font-weight: 900;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.18s, transform 0.15s, box-shadow 0.18s;
  font-family: inherit;
  box-shadow: 0 0 24px rgba(0,212,255,0.28);
}
.of-modal-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(0,212,255,0.45);
}
.of-modal-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* OTP 6 digit inputs */
.of-modal-otp-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.of-modal-otp-digit {
  flex: 0 0 50px;   /* tamaño fijo — no crece ni encoge */
  width: 50px;
  min-width: 0;
  height: 54px;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  background: #080e1c;
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 10px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  caret-color: transparent; /* oculta el cursor parpadeante */
}
.of-modal-otp-digit:focus {
  border-color: rgba(0,212,255,0.6);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}

/* Back link */
.of-modal-back {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  background: none;
  border: none;
  color: #6b7fa3;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.18s;
  padding: 4px;
}
.of-modal-back:hover { color: #fff; }

/* Spinner */
.of-spin { animation: ofSpin 0.75s linear infinite; display: inline-block; }
@keyframes ofSpin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════
   PRODUCT PAGE — Mejoras visuales (sobre built.css)
══════════════════════════════════════════════ */

/* Quitar padding extra del componente nativo */
.ofpd-native-wrap .py-6  { padding-top: 0 !important; padding-bottom: 0 !important; }
.ofpd-native-wrap .lg\:py-8 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Paneles (imagen + form) */
.ofpd-native-wrap .bg-card {
  background: rgba(10, 18, 32, 0.85) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,212,255,0.09) !important;
  overflow: hidden;
}

/* Header del producto (nombre + estado) */
.ofpd-native-wrap .bg-background\/35 {
  background: rgba(4,8,15,0.55) !important;
  border-bottom: 1px solid rgba(0,212,255,0.08) !important;
}

/* Imagen del producto — proporción 16/9, rellena el contenedor sin espacios */
.ofpd-native-wrap .aspect-product-page-image {
  overflow: hidden;
  background: #060d1c;
  border-radius: 12px;
}
.ofpd-native-wrap .aspect-product-page-image img,
.ofpd-native-wrap .size-full.object-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Precio grande — cyan */
.ofpd-native-wrap .text-3xl {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #00d4ff !important;
}

/* Stock indicator */
.ofpd-native-wrap .text-accent-500 { color: #00d4ff !important; }

/* Descripción */
.ofpd-native-wrap .editor { color: #8a9bb5 !important; line-height: 1.8 !important; font-size: 14.5px !important; }
.ofpd-native-wrap .editor p { color: #8a9bb5 !important; font-size: 14.5px !important; }
.ofpd-native-wrap .editor strong,
.ofpd-native-wrap .editor b { color: #ffffff !important; }

/* Selector de variante — botones bien tamaño + colores legibles */
/* Los botones de variante están en <div class="flex flex-col gap-2"> */
.ofpd-native-wrap [x-data="productForm"] button[type="button"]:not(.bg-white\/5) {
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
}

/* ── VARIANTES: Forzar oscuro en el contenedor flex-col gap-2 ──
   Esto sobreescribe bg-accent-500 sin importar su clase individual */
.ofpd-native-wrap .flex.flex-col.gap-2 > button {
  background: #070e1f !important;
  background-color: #070e1f !important;
  background-image: none !important;
  color: #c0d4ee !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}
.ofpd-native-wrap .flex.flex-col.gap-2 > button:hover:not(:disabled) {
  background: rgba(0,212,255,0.07) !important;
  background-color: rgba(0,212,255,0.07) !important;
  border-color: rgba(0,212,255,0.35) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Variante SELECCIONADA: Alpine añade bg-white/[0.025] a la seleccionada */
.ofpd-native-wrap .flex.flex-col.gap-2 > button.bg-white\/\[0\.025\] {
  background: rgba(0,212,255,0.10) !important;
  background-color: rgba(0,212,255,0.10) !important;
  border-color: rgba(0,212,255,0.65) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 0 12px rgba(0,212,255,0.15) !important;
}

/* Botones +/- cantidad */
.ofpd-native-wrap .bg-white\/5 {
  background: rgba(0,212,255,0.06) !important;
}
.ofpd-native-wrap input[type="number"] {
  background: #060c18 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border: none !important;
}

/* Botones de acción (Add to Cart / Buy Now) */
.ofpd-native-wrap .flex.flex-col.gap-4.mt-4 button,
.ofpd-native-wrap .flex.gap-4.mt-4.lg\:flex-row button {
  padding: 12px 18px !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
}

/* Tab activo de descripción */
.ofpd-native-wrap .bg-accent-500\/10 { background: rgba(0,212,255,0.09) !important; }
.ofpd-native-wrap .text-accent-500   { color: #00d4ff !important; }

/* ══════════════════════════════════════════════
   CART PAGE — Mejoras visuales (sobre built.css)
══════════════════════════════════════════════ */

/* Quitar padding extra del componente nativo */
.ofcart-native-wrap .py-6   { padding-top: 0 !important; padding-bottom: 0 !important; }
.ofcart-native-wrap .lg\:py-8 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Cards de producto en el carrito */
.ofcart-native-wrap .bg-card {
  background: rgba(10, 18, 32, 0.85) !important;
  border-color: rgba(255,255,255,0.06) !important;
  border-radius: 14px !important;
  overflow: hidden;
}

/* Thumbnail del producto — bien encuadrado */
.ofcart-native-wrap .aspect-product-card-image {
  border-radius: 10px !important;
  overflow: hidden;
}
.ofcart-native-wrap .aspect-product-card-image img {
  object-fit: cover !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
}

/* Nombre del producto */
.ofcart-native-wrap a.font-bold,
.ofcart-native-wrap a.text-t-primary {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}
.ofcart-native-wrap a.font-bold:hover,
.ofcart-native-wrap a.text-t-primary:hover { color: #00d4ff !important; }

/* Variante (muted) */
.ofcart-native-wrap .text-t-primary\/75 { color: #8a9bb5 !important; }
.ofcart-native-wrap .text-t-primary\/50 { color: #6b7fa3 !important; }

/* Botones +/- cantidad en carrito */
.ofcart-native-wrap .bg-white\/5 { background: rgba(0,212,255,0.06) !important; }

/* Input cantidad */
.ofcart-native-wrap input[type="number"] {
  background: #060c18 !important;
  color: #fff !important;
  text-align: center;
  font-weight: 700 !important;
}

/* Precio del item */
.ofcart-native-wrap .font-medium.text-t-primary { color: #00d4ff !important; font-weight: 800 !important; }

/* Botón quitar (X) */
.ofcart-native-wrap button.text-t-primary { color: #6b7fa3 !important; }
.ofcart-native-wrap button.text-t-primary:hover { color: #ef4444 !important; }

/* Panel de resumen (columna derecha) */
.ofcart-native-wrap .lg\:w-1\/4 .rounded-lg,
.ofcart-native-wrap .lg\:w-1\/4 .bg-card {
  background: linear-gradient(145deg, #0d1a30, #0c1524) !important;
  border: 1px solid rgba(0,212,255,0.15) !important;
  border-radius: 16px !important;
}

/* "Your Order" label */
.ofcart-native-wrap label {
  color: #a0b0c8 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* Subtotal label */
.ofcart-native-wrap .text-sm.text-t-primary\/50 { color: #6b7fa3 !important; }

/* Subtotal precio */
.ofcart-native-wrap .text-sm.text-t-primary\/75 {
  color: #00d4ff !important;
  font-weight: 700 !important;
}

/* Botón Checkout */
.ofcart-native-wrap button[type="submit"] {
  background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
  color: #000 !important;
  font-weight: 900 !important;
  border-radius: 12px !important;
  border: none !important;
  padding: 13px 20px !important;
  font-size: 15px !important;
  box-shadow: 0 0 24px rgba(0,212,255,0.3) !important;
}
.ofcart-native-wrap button[type="submit"]:hover {
  box-shadow: 0 0 36px rgba(0,212,255,0.5) !important;
  transform: translateY(-1px) !important;
}

/* Divider dentro del resumen */
.ofcart-native-wrap .border-b { border-color: rgba(255,255,255,0.06) !important; }

/* Error de submit (captcha, etc.) */
.ofcart-native-wrap .bg-red-500 {
  background: rgba(239,68,68,0.12) !important;
  border: 1px solid rgba(239,68,68,0.35) !important;
  color: #fca5a5 !important;
  border-radius: 10px !important;
}