/* ==========================================================================
   TVVO TEXS — kataloq komponentləri
   Builza şablonunun dizayn tokenləri üzərində qurulub (--builza-*).
   ========================================================================== */

:root {
  --tv-base: var(--builza-base, #FF5E14);
  --tv-black: var(--builza-black, #0E121D);
  --tv-gray: var(--builza-gray, #4D5765);
  --tv-cream: var(--builza-primary, #F7F4ED);
  --tv-bdr: #E4DED2;
  --tv-radius: 10px;
}

.tv-section { padding: 110px 0; }
.tv-section--tight { padding: 80px 0; }
.tv-section--cream { background-color: var(--tv-cream); }
.tv-section--dark { background-color: #0E121D; }

@media (max-width: 767px) {
  .tv-section { padding: 64px 0; }
  .tv-section--tight { padding: 52px 0; }
}

/* ------------------------------------------------------------- section head */
.tv-head { margin-bottom: 50px; }
.tv-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

.tv-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 15px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--tv-base); margin-bottom: 14px;
}
.tv-eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--tv-base); display: inline-block;
}
.tv-head--center .tv-eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--tv-base); display: inline-block;
}

.tv-title {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 44px; line-height: 1.15; font-weight: 700; color: var(--tv-black); margin: 0;
}
.tv-title span { color: var(--tv-base); }
.tv-lead { margin-top: 18px; font-size: 17px; line-height: 30px; color: var(--tv-gray); }

.tv-section--dark .tv-title, .tv-section--dark h3, .tv-section--dark h4 { color: #fff; }
.tv-section--dark .tv-lead, .tv-section--dark p { color: #A8B0BD; }

@media (max-width: 991px) { .tv-title { font-size: 34px; } }
@media (max-width: 575px) { .tv-title { font-size: 27px; } }

/* -------------------------------------------------------------------- hero */
.tv-hero { position: relative; overflow: hidden; background-color: #0E121D; }
.tv-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 1;
}
.tv-hero__inner { position: relative; z-index: 2; padding: 150px 0 130px; }
.tv-hero__eyebrow {
  display: inline-block; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--tv-base); border: 1px solid rgba(255, 94, 20, .45);
  padding: 8px 18px; border-radius: 40px; margin-bottom: 24px;
}
.tv-hero__title {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 58px; line-height: 1.08; font-weight: 800; color: #fff; margin: 0 0 22px;
}
.tv-hero__title span { color: var(--tv-base); }
.tv-hero__text { font-size: 18px; line-height: 31px; color: #B7BFCC; max-width: 560px; margin-bottom: 34px; }
.tv-hero__btns { display: flex; flex-wrap: wrap; gap: 16px; }
.tv-hero__art { text-align: center; }
.tv-hero__art img { max-width: 100%; height: auto; }

.tv-hero__facts {
  display: flex; flex-wrap: wrap; gap: 44px; margin-top: 56px;
  padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.tv-hero__fact strong {
  display: block; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 34px; font-weight: 800; color: #fff; line-height: 1;
}
.tv-hero__fact span { font-size: 14.5px; color: #98A1AF; }

@media (max-width: 1199px) { .tv-hero__title { font-size: 46px; } }
@media (max-width: 991px) {
  .tv-hero__inner { padding: 100px 0 90px; }
  .tv-hero__title { font-size: 38px; }
  .tv-hero__art { margin-top: 46px; }
}
@media (max-width: 575px) {
  .tv-hero__title { font-size: 30px; }
  .tv-hero__facts { gap: 26px; }
  .tv-hero__fact strong { font-size: 27px; }
}

/* --------------------------------------------------------------- cat tiles */
.tv-cat {
  display: block; background: #fff; border: 1px solid var(--tv-bdr);
  border-radius: var(--tv-radius); overflow: hidden; height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tv-cat:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(14, 18, 29, .10); border-color: var(--tv-base); }
.tv-cat__img { display: block; width: 100%; height: auto; }
.tv-cat__body { padding: 26px 26px 30px; }
.tv-cat__body h3 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 22px; font-weight: 700; color: var(--tv-black); margin: 0 0 10px;
}
.tv-cat:hover .tv-cat__body h3 { color: var(--tv-base); }
.tv-cat__body p { font-size: 15.5px; line-height: 26px; color: var(--tv-gray); margin: 0 0 16px; }
.tv-cat__more { font-weight: 600; font-size: 15px; color: var(--tv-base); }
.tv-cat__more i { margin-left: 7px; font-size: 13px; }

/* ---------------------------------------------------------- product cards */
.tv-toolbar {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  justify-content: space-between; margin-bottom: 38px;
}
.tv-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.tv-filter {
  border: 1px solid var(--tv-bdr); background: #fff; color: var(--tv-black);
  font-family: var(--builza-font-two, "Exo", sans-serif); font-weight: 600; font-size: 15px;
  padding: 10px 20px; border-radius: 40px; cursor: pointer; transition: all .3s ease;
}
.tv-filter:hover { border-color: var(--tv-base); color: var(--tv-base); }
.tv-filter.is-active { background: var(--tv-base); border-color: var(--tv-base); color: #fff; }

.tv-search { position: relative; min-width: 260px; }
.tv-search input {
  width: 100%; height: 48px; border: 1px solid var(--tv-bdr); border-radius: 40px;
  padding: 0 46px 0 20px; font-size: 15px; color: var(--tv-black); background: #fff; outline: none;
}
.tv-search input:focus { border-color: var(--tv-base); }
.tv-search i { position: absolute; right: 20px; top: 16px; color: var(--tv-gray); font-size: 15px; }

.tv-count { font-size: 15px; color: var(--tv-gray); margin-bottom: 26px; }
.tv-empty {
  display: none; text-align: center; padding: 70px 20px; border: 1px dashed var(--tv-bdr);
  border-radius: var(--tv-radius); color: var(--tv-gray);
}
.tv-empty.is-shown { display: block; }
.tv-empty h4 { font-family: var(--builza-font-two, "Exo", sans-serif); color: var(--tv-black); margin-bottom: 8px; }

.tv-card {
  display: flex; flex-direction: column; height: 100%; background: #fff;
  border: 1px solid var(--tv-bdr); border-radius: var(--tv-radius); overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tv-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(14, 18, 29, .10); border-color: var(--tv-base); }
.tv-card__media { position: relative; display: block; background: var(--tv-cream); }
.tv-card__media img { display: block; width: 100%; height: auto; }
.tv-card__badge {
  position: absolute; top: 16px; right: 16px; background: var(--tv-base); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: .4px;
  padding: 6px 13px; border-radius: 30px;
}
.tv-card__body { padding: 24px 24px 0; flex: 1 1 auto; }
.tv-card__cat {
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--tv-base); display: block; margin-bottom: 9px;
}
.tv-card__title {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 20px; line-height: 1.32; font-weight: 700; margin: 0 0 10px;
}
.tv-card__title a { color: var(--tv-black); }
.tv-card__title a:hover { color: var(--tv-base); }
.tv-card__text { font-size: 15px; line-height: 25px; color: var(--tv-gray); margin: 0; }
.tv-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 24px 22px; margin-top: 18px; border-top: 1px solid var(--tv-bdr);
}
.tv-card__code {
  font-family: var(--builza-font-two, "Exo", sans-serif); font-size: 14px;
  font-weight: 700; letter-spacing: .6px; color: var(--tv-gray);
}
.tv-card__link { font-size: 15px; font-weight: 600; color: var(--tv-base); white-space: nowrap; }
.tv-card__link i { margin-left: 7px; font-size: 12px; }

/* --------------------------------------------------------- product detail */
.tv-gallery__main {
  background: var(--tv-cream); border: 1px solid var(--tv-bdr);
  border-radius: var(--tv-radius); overflow: hidden;
}
.tv-gallery__main img { display: block; width: 100%; height: auto; }
.tv-gallery__thumbs { display: flex; gap: 14px; margin-top: 14px; }
.tv-gallery__thumbs img {
  width: 96px; height: 96px; object-fit: cover; border: 1px solid var(--tv-bdr);
  border-radius: 8px; background: var(--tv-cream);
}

.tv-detail__cat {
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--tv-base); display: block; margin-bottom: 12px;
}
.tv-detail__title {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 38px; line-height: 1.16; font-weight: 700; color: var(--tv-black); margin: 0 0 14px;
}
.tv-detail__code {
  display: inline-block; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--tv-black);
  background: var(--tv-cream); border: 1px solid var(--tv-bdr);
  padding: 7px 15px; border-radius: 30px; margin-bottom: 22px;
}
.tv-detail__text { font-size: 16.5px; line-height: 29px; color: var(--tv-gray); margin-bottom: 26px; }
.tv-detail__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.tv-ticks { list-style: none; padding: 0; margin: 0 0 6px; }
.tv-ticks li {
  position: relative; padding-left: 32px; margin-bottom: 13px;
  font-size: 16px; line-height: 26px; color: var(--tv-gray);
}
.tv-ticks li::before {
  content: "\f00c"; font-family: "Font Awesome 5 Pro"; font-weight: 900;
  position: absolute; left: 0; top: 1px; font-size: 11px; color: var(--tv-base);
  width: 21px; height: 21px; line-height: 21px; text-align: center;
  background: rgba(255, 94, 20, .12); border-radius: 50%;
}

@media (max-width: 991px) {
  .tv-detail { margin-top: 44px; }
  .tv-detail__title { font-size: 29px; }
}

/* ------------------------------------------------------------ spec table */
.tv-specs { width: 100%; border-collapse: collapse; }
.tv-specs th, .tv-specs td {
  padding: 15px 20px; border: 1px solid var(--tv-bdr); font-size: 15.5px; vertical-align: top;
}
.tv-specs th {
  width: 40%; text-align: left; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-weight: 700; color: var(--tv-black); background: var(--tv-cream);
}
.tv-specs td { color: var(--tv-gray); background: #fff; }
.tv-note {
  margin-top: 18px; font-size: 14px; line-height: 24px; color: var(--tv-gray);
  padding: 14px 18px; background: var(--tv-cream); border-left: 3px solid var(--tv-base);
  border-radius: 4px;
}

.tv-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.tv-tags li {
  border: 1px solid var(--tv-bdr); background: #fff; border-radius: 40px;
  padding: 9px 18px; font-size: 15px; color: var(--tv-black);
}
.tv-tags li i { color: var(--tv-base); margin-right: 8px; font-size: 13px; }

/* ------------------------------------------------------- feature / process */
.tv-feature {
  height: 100%; background: #fff; border: 1px solid var(--tv-bdr);
  border-radius: var(--tv-radius); padding: 34px 30px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tv-feature:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(14, 18, 29, .09); }
.tv-feature__icon {
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255, 94, 20, .10);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.tv-feature__icon span { font-size: 28px; color: var(--tv-base); }
.tv-feature h3 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 20px; font-weight: 700; color: var(--tv-black); margin: 0 0 11px;
}
.tv-feature p { font-size: 15.5px; line-height: 26px; color: var(--tv-gray); margin: 0; }

.tv-step { position: relative; height: 100%; padding: 36px 30px; background: #fff; border-radius: var(--tv-radius); border: 1px solid var(--tv-bdr); }
.tv-step__num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 40px; font-weight: 800; line-height: 1; color: rgba(14, 18, 29, .08);
}
.tv-step__icon span { font-size: 40px; color: var(--tv-base); display: block; margin-bottom: 20px; }
.tv-step h3 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 20px; font-weight: 700; color: var(--tv-black); margin: 0 0 11px;
}
.tv-step p { font-size: 15.5px; line-height: 26px; color: var(--tv-gray); margin: 0; }

/* -------------------------------------------------------------- stat strip */
.tv-stat { text-align: center; padding: 10px; }
.tv-stat span.icon { font-size: 40px; color: var(--tv-base); display: block; margin-bottom: 16px; }
.tv-stat strong {
  display: block; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 44px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px;
}
.tv-stat p { font-size: 15px; color: #9AA3B2; margin: 0; }

/* ---------------------------------------------------------------- sectors */
.tv-sector {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--tv-bdr); border-radius: var(--tv-radius);
  height: 100%; transition: border-color .3s ease, transform .3s ease;
}
.tv-sector:hover { border-color: var(--tv-base); transform: translateY(-4px); }
.tv-sector span.icon { font-size: 30px; color: var(--tv-base); flex: 0 0 auto; }
.tv-sector p {
  margin: 0; font-family: var(--builza-font-two, "Exo", sans-serif);
  font-weight: 600; font-size: 16px; color: var(--tv-black);
}

/* -------------------------------------------------------------------- faq */
.tv-faq { border: 1px solid var(--tv-bdr); border-radius: var(--tv-radius); overflow: hidden; background: #fff; }
.tv-faq details + details { border-top: 1px solid var(--tv-bdr); }
.tv-faq summary {
  list-style: none; cursor: pointer; padding: 22px 56px 22px 26px; position: relative;
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 17.5px; font-weight: 600; color: var(--tv-black);
}
.tv-faq summary::-webkit-details-marker { display: none; }
.tv-faq summary::after {
  content: "\f067"; font-family: "Font Awesome 5 Pro"; font-weight: 900; font-size: 13px;
  position: absolute; right: 24px; top: 24px; color: var(--tv-base);
  transition: transform .3s ease;
}
.tv-faq details[open] summary { color: var(--tv-base); }
.tv-faq details[open] summary::after { content: "\f068"; }
.tv-faq .tv-faq__body { padding: 0 26px 24px; font-size: 15.5px; line-height: 27px; color: var(--tv-gray); }

/* ---------------------------------------------------------------- contact */
.tv-contact-card {
  height: 100%; background: #fff; border: 1px solid var(--tv-bdr);
  border-radius: var(--tv-radius); padding: 32px 28px; text-align: center;
}
.tv-contact-card span.icon { font-size: 34px; color: var(--tv-base); display: block; margin-bottom: 18px; }
.tv-contact-card h3 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 19px; font-weight: 700; color: var(--tv-black); margin: 0 0 10px;
}
.tv-contact-card p, .tv-contact-card a { font-size: 15.5px; line-height: 26px; color: var(--tv-gray); margin: 0; }
.tv-contact-card a:hover { color: var(--tv-base); }

.tv-form { background: #fff; border: 1px solid var(--tv-bdr); border-radius: var(--tv-radius); padding: 40px 36px; }
.tv-form label {
  display: block; font-size: 14.5px; font-weight: 600; color: var(--tv-black); margin-bottom: 8px;
}
.tv-form input, .tv-form select, .tv-form textarea {
  width: 100%; border: 1px solid var(--tv-bdr); border-radius: 8px; background: #fff;
  padding: 13px 16px; font-size: 15.5px; color: var(--tv-black); outline: none;
  font-family: var(--builza-font, "Public Sans", sans-serif);
}
.tv-form input:focus, .tv-form select:focus, .tv-form textarea:focus { border-color: var(--tv-base); }
.tv-form textarea { min-height: 150px; resize: vertical; }
.tv-form .form-group { margin-bottom: 22px; }

/* -------------------------------------------------------------------- cta */
.tv-cta { position: relative; overflow: hidden; background-color: #0E121D; }
.tv-cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; }
.tv-cta__inner { position: relative; z-index: 2; padding: 84px 0; text-align: center; }
.tv-cta__inner h2 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 40px; font-weight: 700; color: #fff; margin: 0 0 16px;
}
.tv-cta__inner p { color: #A8B0BD; font-size: 17px; max-width: 640px; margin: 0 auto 32px; }
.tv-cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
@media (max-width: 575px) { .tv-cta__inner h2 { font-size: 28px; } }

/* ------------------------------------------------------------- 404 / misc */
.tv-404 { text-align: center; padding: 120px 0; }
.tv-404 h1 {
  font-family: var(--builza-font-two, "Exo", sans-serif);
  font-size: 130px; font-weight: 800; line-height: 1; color: var(--tv-base); margin: 0 0 10px;
}
.tv-404 h2 { font-family: var(--builza-font-two, "Exo", sans-serif); font-size: 30px; color: var(--tv-black); margin-bottom: 14px; }
.tv-404 p { color: var(--tv-gray); margin-bottom: 30px; }
@media (max-width: 575px) { .tv-404 h1 { font-size: 84px; } }

.tv-prose p { font-size: 16.5px; line-height: 29px; color: var(--tv-gray); margin-bottom: 18px; }
.tv-img-frame { border-radius: var(--tv-radius); overflow: hidden; }
.tv-img-frame img { display: block; width: 100%; height: auto; }

/* --------------------------------------------------------- a11y baseline */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--tv-base); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tv-card, .tv-cat, .tv-feature, .tv-sector { transition: none; }
  .tv-card:hover, .tv-cat:hover, .tv-feature:hover, .tv-sector:hover { transform: none; }
}
