/* General Body & Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Desktop Only */
.site-header {
    background-color: #050608;
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 15, 0.95) 50%, rgba(10, 10, 10, 0.98) 100%),
        url("https://www.hidlighting.com.au/images/body-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.site-header .container.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

.logo-line-1 {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

.logo-trademark {
    font-size: 11px;
    vertical-align: super;
    margin-left: 3px;
}

.logo-line-2 {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ffb366;
}

.contact-info {
    text-align: right;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.phone-number a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.aus-number {
    color: #ff6600;
    font-size: 20px;
}

.aus-number:hover {
    color: #ff8833;
}

.global-number {
    color: #dddddd;
    font-size: 16px;
}

.global-number:hover {
    color: #ffffff;
}

.email a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
}

.email a:hover {
    color: #ff6600;
}

/* Main Content */
main {
    padding: 40px 20px;
    background-color: #fff;
}

/* SEO Content Section */
.seo-content {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    border-left: 5px solid #ff6600;
}

.seo-content h1 {
    font-size: 28px;
    color: #1a3a6b;
    margin-bottom: 15px;
}

.seo-content h2 {
    font-size: 22px;
    color: #2c2c2c;
    margin-top: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 5px;
}

.seo-content ul {
    margin-left: 20px;
}

.seo-content a {
    color: #1a3a6b;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #ff6600 0%, #ff8833 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.promo-banner h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6600;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    background-color: #f5f5f5;
    padding: 15px;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-code,
.product-specs {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.price-section {
    margin: 15px 0;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #ff6600;
}

.price-note {
    font-size: 12px;
    color: #666;
}

.buy-button {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #e65c00;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    border-top: 4px solid #ff6600;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0 20px;
    border-radius: 8px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* === Enhanced Footer Layout === */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 0 15px;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.footer-left,
.footer-right {
    flex: 1 1 260px;
}

.footer-disclaimer {
    margin: 0;
    color: #cccccc;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: #ffb366;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-secure-text {
    margin: 0 0 8px;
    color: #dddddd;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-logos svg,
.footer-logos img {
    height: 26px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}

.footer-bottom {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaaaaa;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 40%, #f2f2f2 100%);
    border-radius: 10px;
    padding: 40px 30px;
    margin: 20px 0 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ff6600;
}

.hero-content h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    color: #333333;
}

.hero-content p {
    margin: 0 0 22px;
    max-width: 760px;
    color: #555555;
}

/* Hero buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 4px;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}

.hero-btn.primary {
    background-color: #ff6600;
    color: #ffffff;
    border: 1px solid #ff6600;
}

.hero-btn.primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    transform: translateY(-1px);
}

.hero-btn.ghost {
    background-color: transparent;
    color: #ff6600;
    border: 1px solid #ff6600;
}

.hero-btn.ghost:hover {
    background-color: rgba(255, 102, 0, 0.08);
    color: #e65c00;
    border-color: #e65c00;
}

/* --- Accessibility contrast fixes --- */
.promo-badge {
    background-color: #e00000;
    color: #ffffff;
}

.price {
    color: #cc4400;
}

.buy-button {
    background-color: #cc4400;
    color: #ffffff;
}

.buy-button:hover {
    background-color: #b33b00;
}

/* =======================================================================
   IMPROVED MOBILE-FIRST NAVIGATION
   ======================================================================= */

.simple-nav {
  background: #141414;
  border-bottom: 3px solid #ff7a18;
  position: sticky;
  top: 0;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.simple-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.simple-nav__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  white-space: nowrap;
}

/* Brand text variants */
.brand-full {
  display: inline;
}

.brand-short {
  display: none;
}

/* Mobile contact icons - hidden on desktop */
.mobile-contact-icons {
  display: none;
  gap: 8px;
  margin-left: auto;
}

.mobile-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.3);
  color: #ff7a18;
  transition: all 0.3s ease;
}

.mobile-icon-link:hover {
  background: rgba(255, 122, 24, 0.25);
  border-color: rgba(255, 122, 24, 0.5);
  transform: scale(1.05);
}

.mobile-icon-link svg {
  display: block;
}

/* Hamburger button */
.simple-nav__toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  min-width: 48px;
  min-height: 48px;
}

/* Animated hamburger icon */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.simple-nav.is-open .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.simple-nav.is-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.simple-nav.is-open .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Desktop menu row */
.simple-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.simple-nav__menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.3s ease;
}

.simple-nav__menu a:hover {
  background: rgba(255, 122, 24, 0.16);
}

.cta a {
  background: #ff7a18;
  color: #111;
}

.cta a:hover {
  background: #ff8d3a;
}

/* PRODUCTS (native details/summary) */
.nav-details {
  position: relative;
}

.nav-summary {
  list-style: none;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background 0.3s ease;
}

.nav-summary:hover {
  background: rgba(255, 122, 24, 0.16);
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-summary::after {
  content: "▾";
  color: #ff7a18;
  opacity: 1;
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  margin-left: 6px;
  filter: drop-shadow(0 0 3px rgba(255, 122, 24, 0.6));
}

.nav-details[open] .nav-summary::after {
  transform: rotate(180deg);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  max-height: 60vh;
  overflow: auto;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #ff7a18;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  z-index: 99999;
  margin-top: 4px;
}

.nav-details[open] > .nav-submenu {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 13px;
}

.nav-submenu li {
  list-style: none;
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

/* Mobile menu header with close button */
.mobile-menu-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  list-style: none;
}

.mobile-menu-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-menu-close {
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.3);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ff7a18;
  padding: 0;
}

.mobile-menu-close:hover {
  background: rgba(255, 122, 24, 0.25);
  border-color: rgba(255, 122, 24, 0.5);
  transform: scale(1.05);
}

.mobile-menu-close svg {
  display: block;
}

/* =======================================================================
   MOBILE RESPONSIVE STYLES
   ======================================================================= */

@media (max-width: 979px) {
  /* Hide desktop header on mobile */
  .site-header {
    display: none;
  }

  /* Show mobile menu header with close button */
  .mobile-menu-header {
    display: flex;
  }

  /* Show mobile contact icons */
  .mobile-contact-icons {
    display: flex;
  }

  /* Show hamburger button */
  .simple-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Shorten brand name on very small screens */
  .brand-full {
    display: inline;
  }

  .brand-short {
    display: none;
  }

  /* Mobile drawer menu */
  .simple-nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(92vw, 360px);
    height: 100vh;
    background: #0b0b0b;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 0;
    transition: right 0.25s ease;
    z-index: 9999;
    overflow: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .simple-nav.is-open .simple-nav__menu {
    right: 0;
  }

  .simple-nav.is-open + .nav-overlay {
    display: block;
  }

  /* Large, readable menu items on mobile */
  .simple-nav__menu a,
  .nav-summary {
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 800;
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .simple-nav__menu a:hover,
  .nav-summary:hover {
    background: rgba(255, 122, 24, 0.22);
    border-color: rgba(255, 122, 24, 0.45);
  }

  /* Products submenu becomes inline accordion on mobile */
  .nav-submenu {
    position: static;
    display: none;
    min-width: auto;
    max-height: none;
    overflow: visible;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    box-shadow: none;
    margin: 0;
  }

  .nav-details[open] > .nav-submenu {
    display: block;
  }

  .nav-submenu a {
    padding: 14px 12px;
    font-size: 15px;
    background: transparent;
    border: 0;
    min-height: 48px;
  }

  .cta a {
    text-align: center;
    justify-content: center;
  }

  /* Make dropdown arrows more visible on mobile */
  .nav-summary::after {
    font-size: 22px;
    margin-left: 8px;
  }
}

/* Extra small screens - shorten brand name */
@media (max-width: 480px) {
  .brand-full {
    display: none;
  }

  .brand-short {
    display: inline;
  }

  .simple-nav__brand {
    font-size: 16px;
  }
}

/* Tablet and desktop - show header */
@media (min-width: 980px) {
  .site-header {
    display: block;
  }
}

/* Desktop footer adjustments */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-logos {
    justify-content: center;
  }

  .contact-info {
    text-align: center;
  }

  .phone-number {
    justify-content: center;
  }
}

/* =======================================================================
   PRODUCT ENHANCEMENTS - Product Titles and Quick View
   ======================================================================= */

.product-title-header {
    text-align: center;
    margin-bottom: 8px;
    padding: 0 15px;
}

.structure-spacer {
    height: 0;
    margin: 0;
    padding: 0;
}

.product-title-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-view-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: #ff7a18;
    border: 2px solid #ff7a18;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.quick-view-btn:hover {
    background: #ff7a18;
    color: #fff;
}

/* =======================================================================
   QUICK VIEW MODAL
   ======================================================================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    border: 1px solid rgba(255, 122, 24, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 122, 24, 0.2);
    color: #fff;
    border: 2px solid #ff7a18;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: #ff7a18;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border-radius: 12px;
    padding: 20px;
}

.modal-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.modal-details h2 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.modal-specs {
    background: rgba(255, 122, 24, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 122, 24, 0.2);
}

.modal-specs h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #ff7a18;
}

.modal-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-specs li {
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-specs li:last-child {
    border-bottom: none;
}

.modal-specs strong {
    color: #fff;
}

/* Modal responsive styles */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .product-title-header h3 {
        font-size: 18px;
    }
}


/* ===================================
   FOOTER - FOUR COLUMN LAYOUT
   =================================== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ff6600;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    margin: 8px 0;
    line-height: 1.6;
    color: #cccccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6600;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
}
/* ================================
   SEARCH BAR – CONTRAST FIX
================================ */

/* Search container */
.search-bar-wrapper {
    background: #d9d9d9; /* lighter neutral */
    border: 1px solid #bdbdbd;
}

/* Search input */
.search-bar-wrapper input[type="text"] {
    background: #0b0b0b;
    color: #ffffff;                 /* user input text */
    font-size: 16px;
}

/* Placeholder text */
.search-bar-wrapper input::placeholder {
    color: #bfbfbf;                 /* readable on dark bg */
    opacity: 1;
}

/* Result counter */
.search-results-count {
    color: #1a1a1a;
    font-weight: 600;
}

/* Tip / helper text */
.search-tip {
    color: #444444;
    font-size: 13px;
}

/* Clear button */
.search-clear-btn {
    background: #ff7a18;
    color: #ffffff;
    border: none;
}

.search-clear-btn:hover {
    background: #e86a10;
}
/* =========================================================
   PVL LIVE SEARCH – HIGH CONTRAST OVERRIDES (FIX)
   Put at END of style-redesigned3.css
========================================================= */

.pvl-search-wrap{
  max-width: 980px;
  margin: 18px auto 22px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: #151515;                 /* solid dark card */
  border: 1px solid rgba(255,255,255,.12);
}

.pvl-search-label{
  color: #ffffff;
  font-weight: 800;
}

/* Input field */
.pvl-search-input{
  background: #0b0b0b;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.20);
}

/* Placeholder visibility (this is the big one) */
.pvl-search-input::placeholder{
  color: #bfbfbf;
  opacity: 1;
}

/* Count + hint text */
.pvl-search-count{
  color: #ffffff;
  font-weight: 700;
  opacity: 0.95;
}

.pvl-search-hint{
  color: #cfcfcf;                      /* brighter than #ccc */
  opacity: 0.95;
}

/* Clear button */
.pvl-search-clear{
  background: #ff7a18;
  color: #111;
  border: 1px solid rgba(255,122,24,.9);
}

.pvl-search-clear:hover{
  background: #ff8d3a;
  color: #111;
}

/* No results box */
.pvl-search-noresults{
  color: #ffffff;
  background: rgba(255,122,24,.14);
  border: 1px solid rgba(255,122,24,.45);
}
