 .ie-panel{display:none;background:#212121;padding:10px 0;box-shadow:3px 3px 5px 0 rgba(0,0,0,.3);clear:both;text-align:center;position:relative;z-index:1;}
      html.ie-10 .ie-panel,html.lt-ie-10 .ie-panel{display:block;}

      :root {
        --red:      #d71920;
        --red-dark: #b5141a;
        --dark:     #0c1520;
        --dark-2:   #1a2332;
        --text:     #3a4455;
        --muted:    #7a8499;
        --light:    #f7fafc;
        --border:   #e8edf3;
        --white:    #ffffff;
      }

      /* ════════════════════════════
         PRODUCTS SECTION
      ════════════════════════════ */
      .hp-products {
        padding: 90px 0;
        background: var(--white);
      }
      .hp-section-tag {
        display: inline-flex; align-items: center; gap: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 11px; font-weight: 500;
        letter-spacing: 3px; text-transform: uppercase;
        color: var(--red); margin-bottom: 14px;
      }
      .hp-section-tag::before {
        content: ""; display: block;
        width: 28px; height: 2px;
        background: var(--red); border-radius: 2px;
      }
      .hp-section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(26px, 3.5vw, 40px);
        font-weight: 700; color: var(--dark);
        margin-bottom: 12px; line-height: 1.2;
      }
      .hp-section-title span { color: var(--red); }
      .hp-section-sub {
        font-family: 'DM Sans', sans-serif;
        font-size: 15px; color: var(--muted);
        max-width: 520px; margin: 0 auto 56px;
        line-height: 1.7;
      }
      .hp-products .text-center .hp-section-sub { margin: 0 auto 56px; }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
      }
      .product-card {
        background: var(--white);
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
      }
      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
      }
      .product-card-img {
        width: 100%; height: 200px;
        overflow: hidden; position: relative;
      }
      .product-card-img img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .product-card:hover .product-card-img img { transform: scale(1.08); }
      .product-card-img::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%);
      }
      .product-card-body {
        padding: 16px 18px;
        text-align: center;
      }
      .product-card-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px; font-weight: 600;
        color: var(--dark); margin: 0;
        letter-spacing: 0.3px;
      }

      /* ════════════════════════════
         MAP SECTION — full-width with overlay
      ════════════════════════════ */
      .hp-map-section {
        position: relative;
        background: var(--dark);
        overflow: hidden;
      }

      /* Top content strip */
      .hp-map-header {
        padding: 72px 0 48px;
        position: relative; z-index: 2;
        text-align: center;
        background: var(--dark);
      }
      .hp-map-header::after {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(215,25,32,0.1) 0%, transparent 60%);
        pointer-events: none;
      }
      .hp-map-header .hp-section-tag { color: #d71920; justify-content: center; }
      .hp-map-header .hp-section-tag::before { background: #d71920; }
      .hp-map-header .hp-section-title { color: #fff; }
      .hp-map-header .hp-section-sub  { color: rgba(255,255,255,0.5); }

      /* Stats row */
      .map-stats-row {
        display: flex; justify-content: center;
        gap: 0; margin-bottom: 0;
        border-top: 1px solid rgba(255,255,255,0.07);
        border-bottom: 1px solid rgba(255,255,255,0.07);
      }
      .map-stat {
        flex: 1; max-width: 200px;
        padding: 28px 20px;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.07);
        position: relative; z-index: 2;
      }
      .map-stat:last-child { border-right: none; }
      .map-stat-num {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 32px; font-weight: 700;
        color: var(--red); line-height: 1;
        margin-bottom: 4px;
      }
      .map-stat-lbl {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px; font-weight: 500;
        letter-spacing: 1.5px; text-transform: uppercase;
        color: rgba(255,255,255,0.35);
      }

      /* Map container */
      .hp-map-wrap {
        position: relative;
        height: 480px;
      }
      #map {
        width: 100%; height: 100%;
      }

      /* Floating card over map */
      .map-floating-card {
        position: absolute;
        top: 32px; left: 32px;
        z-index: 500;
        background: var(--white);
        border-radius: 14px;
        padding: 24px 28px;
        box-shadow: 0 16px 48px rgba(0,0,0,0.22);
        max-width: 280px;
        border-left: 4px solid var(--red);
      }
      .map-floating-card h4 {
        font-family: 'Playfair Display', serif;
        font-size: 18px; font-weight: 700;
        color: var(--dark); margin-bottom: 8px;
      }
      .map-floating-card p {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px; color: var(--muted);
        line-height: 1.6; margin-bottom: 16px;
      }
      .map-floating-btn {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--red); color: #fff;
        border-radius: 8px; padding: 10px 18px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px; font-weight: 700;
        letter-spacing: 0.5px; text-transform: uppercase;
        text-decoration: none;
        transition: background 0.25s, transform 0.2s;
      }
      .map-floating-btn:hover {
        background: var(--red-dark); color: #fff;
        text-decoration: none; transform: translateY(-2px);
      }

      /* ════════════════════════════
         RESPONSIVE
      ════════════════════════════ */
      @media (max-width: 1024px) {
        .products-grid { grid-template-columns: repeat(3, 1fr); }
      }
      @media (max-width: 640px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
        .map-floating-card { display: none; }
        .hp-map-wrap { height: 360px; }
        .map-stats-row { flex-wrap: wrap; }
        .map-stat { max-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
      }