/* ─── PAGE SECTION ─── */
    .page-section {
      padding: 48px 40px;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* ─── PRODUCTS HEADER ─── */
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .products-title-section {
      flex: 1;
      min-width: 250px;
    }

    .products-eyebrow {
      color: #999;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .products-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a1a;
    }

    /* ─── SEARCH BOX ─── */
    .search-box {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      max-width: 400px;
      width: 100%;
    }

    .search-input {
      flex: 1;
      padding: 14px 20px;
      border: none;
      outline: none;
      font-size: 14px;
      color: #333;
      font-family: 'Inter', sans-serif;
    }

    .search-input::placeholder {
      color: #aaa;
    }

    .search-button {
      background-color: #8B0000;
      color: white;
      border: none;
      padding: 14px 24px;
      cursor: pointer;
      font-size: 18px;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .search-button:hover {
      background-color: #660000;
    }

    /* ─── FILTER CHIPS ─── */
    .filter-row {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .filter-chip {
      padding: 7px 16px;
      border-radius: 20px;
      border: 1.5px solid #ddd;
      background: #fff;
      font-size: 12px;
      font-family: 'Inter', sans-serif;
      color: #666;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.18s;
    }

    .filter-chip.active,
    .filter-chip:hover {
      border-color: #8B0000;
      color: #8B0000;
      background: #fff5f5;
    }

    .results-info {
      font-size: 13px;
      color: #888;
      margin-bottom: 20px;
    }

    .results-info strong {
      color: #8B0000;
      font-weight: 600;
    }

    /* ─── PRODUCTS GRID ─── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
      min-height: 400px;
    }

    /* ─── PRODUCT CARD ─── */
    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      animation: fadeUp 0.35s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #FF9800;
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      z-index: 1;
      letter-spacing: 0.06em;
    }

    .product-image-container {
      background: #f9f9f9;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      position: relative;
      overflow: hidden;
    }

    .product-image {
      max-width: 100%;
      max-height: 180px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-image {
      transform: scale(1.05);
    }

    .product-info {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-name {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 4px;
      min-height: 40px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-category {
      font-size: 13px;
      color: #666;
      margin-bottom: 12px;
    }

    /* ─── SVG STAR RATING ─── */
    .star-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .stars {
      display: flex;
      gap: 4px;
    }

    .star {
      width: 18px;
      height: 18px;
      position: relative;
    }

    .star svg {
      width: 100%;
      height: 100%;
    }

    .star-filled {
      fill: #FFB800;
    }

    .star-empty {
      fill: #E0E0E0;
    }

    .rating-value {
      font-size: 13px;
      color: #666;
      font-weight: 600;
    }

    /* ─── VIEW DETAILS BTN ─── */
    .view-details-btn {
      width: 100%;
      background-color: #8B0000;
      color: white;
      border: none;
      padding: 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 6px;
      margin-top: auto;
      font-family: 'Inter', sans-serif;
    }

    .view-details-btn:hover {
      background-color: #660000;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    }

    /* ─── EMPTY STATE ─── */
    .empty-state {
      grid-column: 1/-1;
      text-align: center;
      padding: 80px 20px;
      color: #999;
    }

    .empty-state .empty-icon {
      font-size: 52px;
      margin-bottom: 14px;
      opacity: 0.5;
    }

    .empty-state h3 {
      font-size: 18px;
      color: #555;
      margin-bottom: 6px;
    }

    /* ─── PAGINATION ─── */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .pagination button {
      background: white;
      border: 1px solid #ddd;
      padding: 10px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      transition: all 0.3s ease;
      min-width: 40px;
      font-family: 'Inter', sans-serif;
    }

    .pagination button:hover:not(:disabled) {
      background-color: #f5f5f5;
      border-color: #8B0000;
      color: #8B0000;
    }

    .pagination button.active {
      background-color: #8B0000;
      color: white;
      border-color: #8B0000;
    }

    .pagination button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .pagination .page-nav {
      font-size: 20px;
      padding: 8px 12px;
    }

    .page-ellipsis {
      padding: 0 4px;
      color: #aaa;
      font-size: 15px;
      letter-spacing: 2px;
      user-select: none;
    }

    /* ─── HIGHLIGHTS SECTION ─── */
    .highlights-section {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 80px 20px;
    }

    .highlights-section img.hl-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .highlights-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139, 71, 71, 0.6) 0%, rgba(200, 90, 90, 0.65) 30%, rgba(185, 74, 74, 0.7) 70%, rgba(139, 0, 0, 0.75) 100%);
      z-index: 1;
    }

    .highlights-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .highlights-eyebrow {
      color: rgba(255, 255, 255, 0.95);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .highlights-title {
      color: white;
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.2;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .highlights-description {
      color: rgba(255, 255, 255, 0.95);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 32px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

    .explore-btn {
      background-color: #8B0000;
      color: white;
      padding: 14px 40px;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
      font-family: 'Inter', sans-serif;
    }

    .explore-btn:hover {
      background-color: #660000;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6);
    }

    /* ─── NEW PRODUCTS SLIDER ─── */
    .new-products-section {
      padding: 56px 40px 60px;
      background: #fafafa;
      border-top: 1px solid #eee;
    }

    .new-products-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 14px;
    }

    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .slider-arrows {
      display: flex;
      gap: 8px;
    }

    .slider-arrow {
      width: 38px;
      height: 38px;
      border-radius: 6px;
      border: 1px solid #ddd;
      background: #fff;
      color: #8B0000;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .slider-arrow:hover:not(:disabled) {
      background: #8B0000;
      color: #fff;
      border-color: #8B0000;
    }

    .slider-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .slider-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      min-height: 370px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: #ccc;
      cursor: pointer;
      transition: all 0.25s;
      padding: 0;
    }

    .dot.active {
      background: #8B0000;
      width: 28px;
      border-radius: 50px;
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(3px);
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal {
      background: #fff;
      border-radius: 16px;
      max-width: 480px;
      width: 92%;
      padding: 36px 32px 30px;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
      animation: slideUp 0.25s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(28px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: #fff0f0;
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 16px;
      cursor: pointer;
      color: #8B0000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
    }

    .modal-close:hover {
      background: #ffd5d5;
    }

    .modal-img {
      text-align: center;
      background: #f9f9f9;
      border-radius: 10px;
      padding: 22px;
      margin-bottom: 20px;
    }

    .modal-img img {
      max-height: 160px;
      object-fit: contain;
      filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
    }

    .modal-badge-pill {
      display: inline-block;
      background: #FF9800;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .modal-name {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #1a1a1a;
    }

    .modal-type {
      font-size: 13px;
      color: #888;
      margin-bottom: 14px;
    }

    .modal-detail {
      background: #f9f9f9;
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 13.5px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .modal-detail span {
      color: #1a1a1a;
      font-weight: 600;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width:900px) {
      .slider-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:768px) {
      .products-title {
        font-size: 28px;
      }

      .products-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .search-box {
        max-width: 100%;
      }

      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
      }

      .page-section {
        padding: 32px 16px;
      }

      .new-products-section {
        padding: 40px 16px 48px;
      }

      footer {
        padding: 48px 16px 0;
      }

      .footer-bottom-wrap {
        margin: 0 -16px;
        padding: 0 16px;
      }

      .highlights-section {
        min-height: 500px;
        padding: 60px 20px;
      }

      .highlights-title {
        font-size: 40px;
      }

      .nav-links {
        display: none;
      }

      .site-header {
        padding: 0 16px;
      }
    }

    @media (max-width:480px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .slider-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .highlights-title {
        font-size: 32px;
      }

      .highlights-section {
        min-height: 450px;
      }

      .explore-btn {
        padding: 12px 32px;
        font-size: 14px;
      }
    }