@media (min-width: 992px) {
  .tv-desktop-nav {
    display: flex !important;
  }
  .tv-desktop-only {
    display: block !important;
  }
}

.tv-nav-list li a {
  position: relative;
  transition: color 0.2s ease;
}

.tv-nav-list li a:hover {
  color: var(--tv-accent) !important;
}

.tv-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--tv-accent);
  transition: width 0.2s ease;
}

.tv-nav-list li a:hover::after {
  width: 100%;
}

.tv-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tv-card:hover {
  border-color: var(--tv-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* MOBILE TACTILE FEEDBACK & ACTIVE STATES */
.tv-btn-primary:active,
.tv-btn-secondary:active,
.tv-plan-option:active,
.tv-gateway-option:active,
.tv-copy-btn:active,
.tv-mobile-nav-link:active,
#tv-mobile-menu-trigger:active,
#tv-mobile-drawer-close:active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  min-height: 48px;
  font-size: 16px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
  border-color: var(--tv-accent) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 153, 0.15) !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.tv-plan-option {
  transition: all 0.2s ease;
}

.tv-plan-option:hover {
  border-color: rgba(0, 229, 153, 0.4);
  transform: translateY(-1px);
}

.tv-gateway-option {
  transition: all 0.2s ease;
}

.tv-gateway-option:hover {
  border-color: rgba(0, 229, 153, 0.4);
}

.tv-copy-btn {
  transition: all 0.2s ease;
  background: transparent;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tv-copy-btn:hover {
  background: rgba(0, 229, 153, 0.15) !important;
  border-color: var(--tv-accent) !important;
}

.tv-faq-item {
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tv-faq-item:hover {
  border-color: rgba(0, 229, 153, 0.3);
}

.tv-faq-item.active .tv-faq-icon {
  transform: rotate(45deg);
}

.tv-faq-item.active .tv-faq-answer {
  display: block !important;
}

.tv-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}

.tv-tab-btn:hover {
  color: var(--tv-accent) !important;
}

#tv-mobile-drawer {
  overscroll-behavior: contain;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(0, 229, 153, 0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 229, 153, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 229, 153, 0.15);
  }
}

.tv-pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}

@media (max-width: 991px) {
  .tv-desktop-nav {
    display: none !important;
  }
  .tv-single-product .tv-card[style*="sticky"] {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {
  .tv-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .tv-header .tv-container {
    height: 64px;
  }

  .tv-hero-section {
    padding: 35px 0 25px !important;
    text-align: center;
  }

  .tv-hero-section h1 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .tv-hero-section p {
    font-size: 0.92rem !important;
    margin-left: auto;
    margin-right: auto;
  }

  .tv-btn-primary, .tv-btn-secondary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
  }

  .tv-card {
    padding: 18px !important;
    border-radius: var(--tv-radius-md) !important;
  }

  #tv-direct-checkout-form > div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .tv-order-bump-card > div {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .tv-order-bump-card div[style*="width: 65px"] {
    align-self: center;
    margin-top: 10px;
  }

  .tv-thankyou-page .tv-container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .tv-thankyou-page h1 {
    font-size: 1.8rem !important;
  }

  .tv-credentials-component input[type="password"] {
    width: 110px !important;
  }

  .tv-account-page .tv-card {
    padding: 18px !important;
  }

  .tv-dash-tab {
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
    white-space: nowrap;
  }

  .tv-standard-page article {
    padding: 20px !important;
  }
}

@media (max-width: 480px) {
  .tv-hero-section h1 {
    font-size: 1.75rem !important;
  }

  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .tv-gateway-option {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 12px 16px !important;
  }

  .tv-gateway-option span:last-child {
    margin-left: 8px;
  }

  .tv-plan-option {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .tv-plan-option > div:last-child {
    text-align: left !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--tv-border-subtle);
    padding-top: 8px;
  }

  .tv-thankyou-page div[style*="grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
}