    :root {
      --navy: #061b57;
      --deep-navy: #020b28;
      --royal: #0a2f8f;
      --red: #d81424;
      --bright-red: #f31f2f;
      --white: #ffffff;
      --soft-white: #f7f8ff;
      --silver: #dce3f5;
      --text: #22304f;
      --shadow: rgba(0, 0, 0, 0.22);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.10), transparent 22%),
        linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 55%, #001449 100%);
      color: var(--white);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.12;
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.85) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,255,255,0.35) 0 1px, transparent 2px);
      background-size: 100px 100px, 60px 60px;
      background-position: 20px 20px, 8px 28px;
      mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 80%);
    }

    .shell {
      position: relative;
      min-height: 100vh;
    }

    .shell::after {
      content: "";
      position: absolute;
      left: -10%;
      right: -10%;
      bottom: -130px;
      height: 320px;
      background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.18), transparent 60%),
        repeating-radial-gradient(
          ellipse at 50% 100%,
          transparent 0 42px,
          rgba(255,255,255,0.96) 44px 75px,
          var(--red) 78px 116px
        );
      border-top: 8px solid rgba(255,255,255,0.85);
      transform: rotate(-2deg);
      z-index: 0;
    }

    .container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 28px 0;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .brand-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, var(--red), #970b17);
      border: 3px solid var(--white);
      border-radius: 16px;
      box-shadow: 0 10px 24px var(--shadow);
      font-size: 28px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      flex-wrap: wrap;
    }

    nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 999px;
      transition: 0.2s ease;
    }

    nav a:hover,
    nav a.active {
      background: var(--white);
      color: var(--navy);
    }

    .hero {
      padding: 20px 0 30px;
      text-align: center;
    }
    .forehead {
      display: inline-block;
      background: var(--white);
      color: var(--navy);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(0,0,0,0.22);
      margin-bottom: 18px;
    }


    .eyebrow {
      display: inline-block;
      background: var(--white);
      color: var(--navy);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(0,0,0,0.22);
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5.4rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
      text-transform: uppercase;
      text-shadow:
        0 5px 0 rgba(255,255,255,0.22),
        8px 12px 0 rgba(0,0,0,0.18),
        0 18px 30px rgba(0,0,0,0.28);
      margin-bottom: 18px;
    }

    .hero .blue-word {
      color: var(--white);
      -webkit-text-stroke: 2px var(--deep-navy);
      text-shadow:
        4px 4px 0 var(--deep-navy),
        8px 9px 0 rgba(255,255,255,0.26);
    }

    .hero .red-word {
      color: var(--bright-red);
      -webkit-text-stroke: 2px var(--white);
      text-shadow:
        4px 4px 0 var(--deep-navy),
        8px 9px 0 rgba(255,255,255,0.26);
    }

    .hero p {
      max-width: 760px;
      margin: 0 auto;
      font-size: 1.08rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.92);
    }

    .shop-panel {
      margin-top: 30px;
      margin-bottom: 90px;
      padding: 26px;
      border-radius: 34px;
      background: rgba(255,255,255,0.96);
      color: var(--text);
      box-shadow: 0 24px 54px rgba(0,0,0,0.26);
      border: 6px solid var(--white);
      position: relative;
      overflow: hidden;
    }

    .shop-panel::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 4px solid var(--navy);
      border-radius: 22px;
      pointer-events: none;
    }

    .shop-top {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .shop-top h2 {
      color: var(--navy);
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: -0.04em;
    }

    .shop-top p {
      color: #48577b;
      max-width: 700px;
      line-height: 1.6;
    }

    .product-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
    }

    .product-card {
      background: linear-gradient(180deg, #ffffff, #f4f7ff);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
      border: 1px solid #e5ebff;
      display: flex;
      flex-direction: column;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(0,0,0,0.16);
    }

    .product-preview {
      padding: 18px;
      background:
        linear-gradient(45deg, #eef2fb 25%, transparent 25%),
        linear-gradient(-45deg, #eef2fb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eef2fb 75%),
        linear-gradient(-45deg, transparent 75%, #eef2fb 75%);
      background-size: 20px 20px;
      background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
      min-height: 190px;
      display: grid;
      place-items: center;
    }

    .product-preview img {
      max-width: 100%;
      max-height: 150px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 10px 18px rgba(0,0,0,0.14));
      cursor: pointer;
    }

    .product-content {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .product-title {
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--navy);
    }

    .product-desc {
      color: #50607f;
      line-height: 1.55;
      font-size: 0.96rem;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .price {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--red);
    }

    .btn-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .btn {
      border: none;
      border-radius: 999px;
      padding: 11px 16px;
      font-weight: 800;
      cursor: pointer;
      transition: 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--bright-red), #a70616);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(216,20,36,0.25);
    }

    .btn-secondary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(6,27,87,0.2);
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(2, 11, 40, 0.82);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 999;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: #ffffff;
      border-radius: 22px;
      max-width: 900px;
      width: 100%;
      padding: 24px;
      position: relative;
      box-shadow: 0 24px 60px rgba(0,0,0,0.3);
      color: var(--text);
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 16px;
      border: none;
      background: var(--red);
      color: white;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      font-weight: bold;
    }

    .modal-image-wrap {
      background:
        linear-gradient(45deg, #eef2fb 25%, transparent 25%),
        linear-gradient(-45deg, #eef2fb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eef2fb 75%),
        linear-gradient(-45deg, transparent 75%, #eef2fb 75%);
      background-size: 20px 20px;
      background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
      border-radius: 16px;
      padding: 20px;
      display: grid;
      place-items: center;
      min-height: 320px;
    }

    .modal-image-wrap img {
      max-width: 100%;
      max-height: 70vh;
      object-fit: contain;
    }

    footer {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 24px 16px 34px;
      color: rgba(255,255,255,0.8);
      border-top: 4px solid var(--red);
      background: var(--deep-navy);
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        width: 100%;
        justify-content: center;
        border-radius: 24px;
      }

      .shop-panel {
        padding: 18px;
      }

      .shop-top h2 {
        font-size: 1.6rem;
      }
    }

    .product-preview img,
.modal-image-wrap img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
