/* Products page only */

.products-hero {
    position: relative;
    min-height: 420px;
    background: url("../../images/lED-display-1.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
  }
  
  .products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
  }
  
  .products-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  
  .products-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }
  .products-hero-content p {
    font-size: 16px;
    color: #ffffff;
  }
  .products-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--theme-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  }
  
  .products-hero-btn:hover {
    background: var(--theme-color-hover);
  }
  
  .products-breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    margin: 0;
    list-style: none;
    color: #666666;
    font-size: 14px;
  }
  
  .breadcrumb-list a {
    color: #666666;
    text-decoration: none;
  }
  
  .breadcrumb-list a:hover {
    color: var(--theme-color);
  }
  
  .breadcrumb-sep {
    opacity: 0.6;
  }
  
  .breadcrumb-list li[aria-current="page"] {
    color: #333333;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* Shared buttons (products page) */
  .products-primary-btn,
  .products-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 4px;
    background: var(--theme-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: fit-content;
  }
  
  .products-primary-btn:hover,
  .products-card-btn:hover {
    background: var(--theme-color-hover);
  }
  
  /* Module 1: Overview */
  .products-overview {
    padding: 60px 0;
    background: #ffffff;
  }
  
  .products-overview-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 34px;
    align-items: center;
  }
  
  .products-overview-media {
    width: 100%;
    background: #ffffff;
  }
  
  .products-overview-media img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .products-overview-content h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 500;
    color: #111827;
  }
  
  .products-overview-content p {
    margin: 10px 0 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
  }
  
  .products-overview-content .products-primary-btn {
    margin-top: 16px;
  }
  
  /* Module 2: Types cards */
  .products-types {
    padding: 60px 0 70px;
    background: #ffffff;
  }
  
  .products-types-header {
    text-align: center;
  }
  
  .products-types-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    color: #111827;
  }
  
  .products-types-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  
  .products-type-card {
    background: #ffffff;
  }
  
  .products-type-image {
    width: 100%;
    background: #ffffff;
    padding: 4px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
    overflow: hidden;
    cursor: pointer;
  }
  
  .products-type-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .products-type-image img:hover {
    transform: scale(1.05);
  }
  .products-type-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #002044;
  }
  
  .products-type-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  
  .products-type-card h3 a:hover {
    color: var(--theme-color);
  }
  
  .products-type-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    min-height: 64px;
  }
  
  .products-type-card .products-card-btn {
    margin-top: 14px;
  }
  
  /* Module 3: Indoor products swiper */
  .indoor-products-section {
    background: #f3f3f3;
    padding: 50px 0 64px;
  }
  
  .indoor-products-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #111827;
  }
  
  .indoor-products-header h2 span {
    color: var(--theme-color);
  }
  
  .indoor-products-swiper-wrap {
    margin-top: 24px;
    position: relative;
    width: 100%;
  }
  
  .indoor-products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #80868f;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .indoor-products-prev {
    left: -60px;
  }
  
  .indoor-products-next {
    right: -60px;
  }
  
  .indoor-products-nav:hover {
    color: var(--theme-color);
  }
  
  .indoor-products-swiper {
    width: 100%;
  }

  .products-empty-notice {
    margin: 24px 0 0;
    font-size: 16px;
    color: #6b7280;
  }
  
  .indoor-product-card {
    background: #fff;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    padding-bottom: 20px;
  }
  
  .indoor-product-image {
    width: 100%;
    background: #f7f7f7;
  }
  
  .indoor-product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  .indoor-product-card h3 {
    margin: 20px 14px 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }
  
  .indoor-product-card h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  
  .indoor-product-card h3 a:hover {
    color: var(--theme-color);
  }
  
  .indoor-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .indoor-product-card ul {
    margin: 0 14px;
    padding: 0 0 0 18px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    min-height: 84px;
  }
  .indoor-product-card ul li {
    list-style: disc;
    margin-left: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
    text-align: left;
  }
  .indoor-product-btn {
    margin: 14px;
    width: calc(100% - 28px);
    height: 38px;
    border: 1px solid #9ca3af;
    border-radius: 6px;
    background: #f8fafc;
    color: #315b85;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .indoor-product-btn:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
  }
  
  .indoor-products-pagination {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .indoor-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
  }
  
  .indoor-products-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
  }
  
  /* Module 4: COB products swiper (same card style) */
  .cob-products-section {
    background: #ffffff;
    padding: 50px 0 64px;
  }
  
  .cob-products-swiper-wrap {
    margin-top: 24px;
    position: relative;
    width: 100%;
  }
  
  .cob-products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #80868f;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .cob-products-prev {
    left: -60px;
  }
  
  .cob-products-next {
    right: -60px;
  }
  
  .cob-products-nav:hover {
    color: var(--theme-color);
  }
  
  .cob-products-swiper {
    width: 100%;
  }
  
  .cob-products-pagination {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .cob-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
  }
  
  .cob-products-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
  }
  
  /* Module 5: Outdoor products swiper */
  .outdoor-products-section {
    background: #f3f3f3;
    padding: 50px 0 64px;
  }
  
  .outdoor-products-swiper-wrap {
    margin-top: 24px;
    position: relative;
    width: 100%;
  }
  
  .outdoor-products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #80868f;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .outdoor-products-prev {
    left: -60px;
  }
  
  .outdoor-products-next {
    right: -60px;
  }
  
  .outdoor-products-nav:hover {
    color: var(--theme-color);
  }
  
  .outdoor-products-swiper {
    width: 100%;
  }
  
  .outdoor-products-pagination {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .outdoor-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
  }
  
  .outdoor-products-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
  }
  
  /* Module 6: Transparent products swiper */
  .transparent-products-section {
    background: #ffffff;
    padding: 50px 0 64px;
  }
  
  .transparent-products-swiper-wrap {
    margin-top: 24px;
    position: relative;
    width: 100%;
  }
  
  .transparent-products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #80868f;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .transparent-products-prev {
    left: -60px;
  }
  
  .transparent-products-next {
    right: -60px;
  }
  
  .transparent-products-nav:hover {
    color: var(--theme-color);
  }
  
  .transparent-products-swiper {
    width: 100%;
  }
  
  .transparent-products-pagination {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  
  .transparent-products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
  }
  
  .transparent-products-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
  }
  
  /* Module 7: Bottom hero + FAQ and contact */
  .products-faq-contact-section {
    background: #f3f3f3;
    padding-bottom: 64px;
  }
  
  .products-faq-hero img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
  }
  
  .products-faq-contact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
  }
  
  .products-faq-list .faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
  }
  
  .products-faq-list .faq-question {
    width: 100%;
    border: none;
    background: #d9d9d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 11px 12px;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .products-faq-list .faq-question i {
    font-size: 22px;
    color: #111827;
  }
  
  .products-faq-list .faq-answer {
    display: none;
    padding: 12px;
  }
  
  .products-faq-list .faq-item.is-open .faq-answer {
    display: block;
  }
  
  .products-faq-list .faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.55;
  }
  
  .products-contact-panel {
    background: #ffffff;
    padding: 16px;
  }
  
  .products-contact-panel h3 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    color: #111827;
    font-weight: 500;
  }
  
  .products-contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .products-contact-form input,
  .products-contact-form textarea {
    width: 100%;
    border: none;
    background: #f5f6f8;
    padding: 11px 12px;
    font-size: 16px;
    color: #111827;
    outline: none;
  }
  
  .products-contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .products-contact-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cbd5e1;
    min-height: 46px;
    color: #1f5ca8;
    font-size: 16px;
    cursor: pointer;
  }
  
  .products-contact-upload input[type="file"] {
    display: none;
  }
  
  .products-contact-upload span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .products-contact-submit {
    height: 48px;
    border: none;
    border-radius: 3px;
    background: #1f5ca8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .products-hero {
      min-height: 280px;
    }
  
    .products-hero h1 {
      font-size: 24px;
      padding: 0 10px;
    }
  
    .products-hero-btn {
      height: 42px;
      padding: 0 14px;
    }
  
    .breadcrumb-list {
      gap: 8px;
      padding: 14px 0;
      font-size: 13px;
    }
  
    .products-overview {
      padding: 32px 0;
    }
  
    .products-overview-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .products-overview-content h2 {
      font-size: 22px;
    }
  
    .products-types {
      padding: 34px 0 42px;
    }
  
    .products-types-header h2 {
      font-size: 22px;
    }
  
    .products-types-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .products-type-image img {
      height: auto;
      aspect-ratio: 16 / 10;
    }
  
    .indoor-products-section {
      padding: 36px 0 42px;
    }
  
    .indoor-products-header h2 {
      font-size: 24px;
    }
  
    .indoor-products-swiper-wrap {
      margin-top: 16px;
    }
  
    .indoor-products-nav {
      display: none;
    }
  
    .indoor-product-image img {
      height: auto;
      aspect-ratio: 16 / 10;
    }
  
    .indoor-product-card h3 {
      font-size: 24px;
    }
  
    .indoor-product-btn {
      font-size: 18px;
    }
  
    .cob-products-section {
      padding: 24px 0 42px;
    }
  
    .cob-products-swiper-wrap {
      margin-top: 16px;
    }
  
    .cob-products-nav {
      display: none;
    }
  
    .outdoor-products-section {
      padding: 24px 0 42px;
    }
  
    .outdoor-products-swiper-wrap {
      margin-top: 16px;
    }
  
    .outdoor-products-nav {
      display: none;
    }
  
    .transparent-products-section {
      padding: 24px 0 42px;
    }
  
    .transparent-products-swiper-wrap {
      margin-top: 16px;
    }
  
    .transparent-products-nav {
      display: none;
    }
  
    .products-faq-contact-section {
      padding-bottom: 40px;
    }
  
    .products-faq-hero img {
      height: 220px;
    }
  
    .products-faq-contact-grid {
      margin-top: 16px;
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .products-faq-list .faq-question {
      font-size: 16px;
    }
  
    .products-faq-list .faq-answer p {
      font-size: 14px;
    }
  
    .products-contact-panel h3 {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .products-overview-content h2,
    .products-types-header h2,
    .indoor-products-header h2 {
      font-size: 26px;
    }
  }
  
  