/* ============================================
   OTTVIBE.COM - Design DNA from trextv.io
   Dark navy professional + red accent
   Fonts: Poppins + Roboto
   ============================================ */

:root {
  --bg-body: #0f2233;
  --bg-nav: rgba(6, 6, 96, 0.92);
  --bg-card: #161a1d;
  --bg-section-alt: #0b1929;
  --bg-footer: #0b090a;
  --bg-light: #f5f7f7;
  --accent: #ef233c;
  --accent-hover: #ff3a4f;
  --text-primary: #ffffff;
  --text-muted: #7e8ca4;
  --text-dark: #161a1d;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --gradient-hero: linear-gradient(145deg, #0f2233 0%, #0a1628 50%, #060a12 100%);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --max-w: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font-body); background: var(--bg-body); color: var(--text-primary); line-height: 1.65; font-size: 16px; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
.ov-header { position: sticky; top: 0; z-index: 1000; }
.ov-topbar { background: var(--accent); padding: 0.35rem 0; }
.ov-topbar .container { display: flex; justify-content: center; gap: 2rem; }
.ov-topbar__item { color: #fff; font-size: 0.75rem; font-family: var(--font-body); }
.ov-topbar__item a { color: #fff; }

.ov-navbar { background: var(--bg-nav); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 0.7rem 0; }
.ov-navbar .container { display: flex; align-items: center; justify-content: space-between; }
.ov-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; text-decoration: none; }
.ov-logo span { color: var(--accent); }

.ov-nav { display: flex; align-items: center; gap: 1.5rem; }
.ov-nav__link { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; font-family: var(--font-body); transition: color 0.2s; }
.ov-nav__link:hover, .ov-nav__link.active { color: #fff; }

.ov-nav__dropdown { position: relative; }
.ov-nav__dropdown-toggle { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; font-family: var(--font-body); cursor: pointer; background: none; border: none; transition: color 0.2s; }
.ov-nav__dropdown-toggle:hover { color: #fff; }
.ov-nav__dropdown-toggle::after { content: ' \25BE'; font-size: 0.7em; }
.ov-nav__dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(6,6,96,0.95); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 0; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s; z-index: 100; }
.ov-nav__dropdown:hover .ov-nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ov-nav__dropdown-menu a { display: block; padding: 0.5rem 1.25rem; color: rgba(255,255,255,0.75); font-size: 0.825rem; transition: background 0.2s, color 0.2s; }
.ov-nav__dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

.ov-header-cta { display: inline-block; background: var(--accent); color: #fff; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 600; font-size: 0.85rem; font-family: var(--font-heading); transition: background 0.2s; }
.ov-header-cta:hover { background: var(--accent-hover); }

.ov-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.ov-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

@media (max-width: 900px) {
  .ov-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #0b090a; flex-direction: column; padding: 4rem 2rem; gap: 1.25rem; transition: right 0.3s; z-index: 2000; overflow-y: auto; }
  .ov-nav.open { right: 0; }
  .ov-nav__dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 0 1rem; min-width: auto; }
  .ov-hamburger { display: flex; }
  .ov-topbar { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.ov-hero { background: var(--gradient-hero); min-height: 92vh; display: flex; align-items: center; padding: 120px 1.5rem 80px; position: relative; overflow: hidden; }
.ov-hero__glow { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.2; pointer-events: none; }
.ov-hero__glow--1 { width: 500px; height: 500px; background: var(--accent); top: -150px; left: -100px; }
.ov-hero__glow--2 { width: 400px; height: 400px; background: #1a3a5c; bottom: -100px; right: -80px; }

.ov-hero .container { display: flex; align-items: center; gap: 3rem; position: relative; z-index: 1; max-width: var(--max-w); }
.ov-hero__content { flex: 1; }
.ov-hero__badge { display: inline-block; background: rgba(239,35,60,0.15); color: var(--accent); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.25rem; font-family: var(--font-heading); }
.ov-hero__title { font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.12; margin-bottom: 1rem; }
.ov-hero__title em { font-style: normal; color: var(--accent); }
.ov-hero__subtitle { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 540px; }
.ov-hero__cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.ov-hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.ov-hero__stat { text-align: center; }
.ov-hero__stat-value { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; display: block; }
.ov-hero__stat-label { color: var(--text-muted); font-size: 0.8rem; }

.ov-hero__visual { flex: 0 0 420px; position: relative; }
.ov-hero__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

@media (max-width: 900px) {
  .ov-hero .container { flex-direction: column; text-align: center; }
  .ov-hero__subtitle { margin-left: auto; margin-right: auto; }
  .ov-hero__cta-row { justify-content: center; }
  .ov-hero__stats { justify-content: center; }
  .ov-hero__visual { flex: none; max-width: 340px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; font-family: var(--font-heading); text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; text-align: center; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 4px 20px rgba(239,35,60,0.3); }
.btn--outline { background: transparent; color: #fff; border: 1px solid var(--border-light); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--white { background: #fff; color: var(--bg-body); }
.btn--white:hover { background: #f0f0f0; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   DEVICE ICONS ROW
   ============================================ */
.ov-devices { background: var(--bg-section-alt); padding: 3rem 1.5rem; }
.ov-devices__row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.ov-devices__item { text-align: center; color: var(--text-muted); font-size: 0.8rem; font-family: var(--font-body); }
.ov-devices__icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

/* ============================================
   SECTIONS (generic)
   ============================================ */
.ov-section { padding: 5rem 1.5rem; }
.ov-section--alt { background: var(--bg-section-alt); }
.ov-section--dark { background: var(--bg-footer); }
.ov-section__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; text-align: center; margin-bottom: 1rem; color: #fff; }
.ov-section__subtitle { text-align: center; color: var(--text-muted); font-size: 1rem; max-width: 640px; margin: 0 auto 3rem; line-height: 1.65; }

/* ============================================
   ABOUT / WHAT IS IPTV
   ============================================ */
.ov-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.ov-about__text h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.ov-about__text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.ov-about__text ul { padding: 0; margin: 0 0 1.5rem; }
.ov-about__text li { color: var(--text-muted); padding: 0.35rem 0; font-size: 0.95rem; }
.ov-about__text li::before { content: '\2713 '; color: var(--accent); font-weight: 700; margin-right: 0.5rem; }
.ov-about__image { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

@media (max-width: 768px) {
  .ov-about__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FEATURE GRID
   ============================================ */
.ov-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.ov-feature-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; transition: border-color 0.3s, transform 0.2s; }
.ov-feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.ov-feature-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.ov-feature-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.ov-feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 768px) {
  .ov-features__grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================
   STEPS
   ============================================ */
.ov-steps__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto; }
.ov-step { text-align: center; padding: 2rem 1.5rem; }
.ov-step__number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(239,35,60,0.12); color: var(--accent); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.ov-step h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.5rem; }
.ov-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 768px) {
  .ov-steps__row { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================
   PRICING
   ============================================ */
.ov-pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.ov-price-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem 1.75rem; text-align: center; position: relative; transition: transform 0.3s, border-color 0.3s; }
.ov-price-card:hover { transform: translateY(-6px); }
.ov-price-card--popular { border-color: var(--accent); background: rgba(239,35,60,0.06); }
.ov-price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 0.3rem 1.25rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-heading); white-space: nowrap; }
.ov-price-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: #fff; }
.ov-price-card__price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.ov-price-card__period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; display: block; }
.ov-price-card ul { padding: 0; margin: 0 0 1.75rem; text-align: left; }
.ov-price-card li { color: var(--text-muted); font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.ov-price-card li:last-child { border-bottom: none; }
.ov-price-card li::before { content: '\2713 '; color: var(--accent); font-weight: 700; margin-right: 0.4rem; }
.ov-price-card__btn { display: inline-block; width: 100%; padding: 0.8rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; font-family: var(--font-heading); transition: all 0.2s; background: rgba(255,255,255,0.06); border: 1px solid var(--border-light); color: #fff; }
.ov-price-card__btn:hover, .ov-price-card--popular .ov-price-card__btn { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 900px) {
  .ov-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ov-pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ov-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.ov-testimonial { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.ov-testimonial__stars { color: #ffc107; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.ov-testimonial__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; font-style: italic; margin-bottom: 1.25rem; }
.ov-testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.ov-testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.ov-testimonial__name { color: #fff; font-weight: 600; font-size: 0.85rem; }
.ov-testimonial__location { color: var(--text-muted); font-size: 0.75rem; }

@media (max-width: 768px) {
  .ov-testimonials__grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================
   FAQ
   ============================================ */
.ov-faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.ov-faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.ov-faq-item[open] { background: rgba(255,255,255,0.05); }
.ov-faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; color: #fff; font-size: 1rem; font-weight: 600; font-family: var(--font-heading); list-style: none; display: flex; align-items: center; justify-content: space-between; transition: color 0.2s; }
.ov-faq-item summary::-webkit-details-marker { display: none; }
.ov-faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); font-weight: 300; transition: transform 0.3s; }
.ov-faq-item[open] summary::after { transform: rotate(45deg); }
.ov-faq-item summary:hover { color: var(--accent); }
.ov-faq-item__answer { padding: 0 1.5rem 1.25rem; }
.ov-faq-item__answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.ov-cta { padding: 5rem 1.5rem; background: linear-gradient(135deg, var(--accent) 0%, #0f2233 60%); text-align: center; }
.ov-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
.ov-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ============================================
   FOOTER
   ============================================ */
.ov-footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 3.5rem 1.5rem 1.5rem; }
.ov-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; max-width: var(--max-w); margin: 0 auto 2rem; }
.ov-footer__brand { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.ov-footer__brand span { color: var(--accent); }
.ov-footer__desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.ov-footer__col h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.ov-footer__col a { display: block; color: var(--text-muted); font-size: 0.825rem; padding: 0.2rem 0; transition: color 0.2s; }
.ov-footer__col a:hover { color: var(--accent); }
.ov-footer__bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ov-footer__copy { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.ov-footer__address { color: var(--text-muted); font-size: 0.75rem; }

@media (max-width: 900px) {
  .ov-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ov-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FORMS
   ============================================ */
.ov-form { max-width: 540px; margin: 0 auto; }
.ov-form--wide { max-width: 640px; }
.ov-form__group { margin-bottom: 1.25rem; }
.ov-form__label { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; font-family: var(--font-body); }
.ov-form__input,
.ov-form__select,
.ov-form__textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border-light); border-radius: 8px; background: rgba(255,255,255,0.04); color: #fff; font-size: 0.95rem; font-family: var(--font-body); transition: border-color 0.2s; }
.ov-form__input::placeholder,
.ov-form__textarea::placeholder { color: rgba(255,255,255,0.3); }
.ov-form__input:focus,
.ov-form__select:focus,
.ov-form__textarea:focus { outline: none; border-color: var(--accent); }
.ov-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237e8ca4'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.ov-form__select option { background: var(--bg-card); color: #fff; }
.ov-form__textarea { min-height: 120px; resize: vertical; }
.ov-form__submit { min-height: 48px; }
.ov-form__trust { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.75rem; }
.ov-form .honeypot { position: absolute; left: -9999px; }

.form-message { padding: 0.75rem 1rem; border-radius: 8px; margin-top: 1rem; font-size: 0.9rem; text-align: center; }
.form-message--success { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.form-message--error { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* ============================================
   INNER PAGES (channels, about, etc.)
   ============================================ */
.ov-page-hero { background: var(--gradient-hero); padding: 140px 1.5rem 60px; text-align: center; }
.ov-page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; }
.ov-page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.ov-content { padding: 4rem 1.5rem; }
.ov-content .container { max-width: 800px; margin: 0 auto; }
.ov-content h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin: 2rem 0 0.75rem; color: #fff; }
.ov-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: #fff; }
.ov-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.ov-content ul, .ov-content ol { margin: 0 0 1rem 1.25rem; }
.ov-content li { color: var(--text-muted); padding: 0.25rem 0; line-height: 1.6; }
.ov-content ul li { list-style: disc; }
.ov-content ol li { list-style: decimal; }
.ov-content a { color: var(--accent); }
.ov-content a:hover { text-decoration: underline; }
.ov-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.ov-content th, .ov-content td { padding: 0.75rem 1rem; border: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.ov-content th { background: rgba(255,255,255,0.04); color: #fff; font-weight: 600; }
.ov-content td { color: var(--text-muted); }
.ov-content img { border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow-card); }
.ov-content strong { color: #fff; }

/* ============================================
   CHANNEL GRID
   ============================================ */
.ov-channels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; max-width: var(--max-w); margin: 0 auto; }
.ov-channel-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.ov-channel-card__icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.ov-channel-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.ov-channel-card p { color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
  .ov-channels__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SETUP GUIDE
   ============================================ */
.ov-guide-step { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.ov-guide-step h3 { font-family: var(--font-heading); color: var(--accent); margin-bottom: 0.5rem; }

/* ============================================
   RESELLER TABLE
   ============================================ */
.ov-reseller-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.ov-reseller-table th, .ov-reseller-table td { padding: 0.85rem 1rem; border: 1px solid var(--border); }
.ov-reseller-table th { background: rgba(239,35,60,0.1); color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; }
.ov-reseller-table td { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.ov-breadcrumb { padding: 0.75rem 0; font-size: 0.8rem; color: var(--text-muted); }
.ov-breadcrumb a { color: var(--accent); }
.ov-breadcrumb span { margin: 0 0.4rem; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden { position: absolute; left: -9999px; height: 1px; width: 1px; overflow: hidden; }
