* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #050507;
      color: #fff;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
  min-height: 100vh;
}

      .hero {
  min-height: 100vh;

  background:
    linear-gradient(90deg,
      rgba(5,5,8,0.96) 0%,
      rgba(5,5,8,0.88) 32%,
      rgba(5,5,8,0.35) 60%,
      rgba(5,5,8,0.15) 100%
    ),
    url("images/hero-bg.png");

  background-position: center;
  background-size: cover;   /* KEY CHANGE */
  background-repeat: no-repeat;
}

 .nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(155, 60, 255, 0.16);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.purple {
  color: #a855f7;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}
.logo {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 150px;   /* BIG */
  width: auto;
  position: relative;
  top: 5px;        /* slight drop for balance */
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
}
    .nav-links {
      display: flex;
      gap: 34px;
      align-items: center;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .nav-links a:first-child {
      color: #b45cff;
      border-bottom: 3px solid #8b2cff;
      padding-bottom: 10px;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 22px;
      opacity: 0.95;
    }

    .hero {
      min-height: 620px;
      display: flex;
      align-items: center;
      padding: 65px 52px 40px;
      position: relative;
    }

    .hero-content {
      max-width: 510px;
      z-index: 2;
    }

    .eyebrow {
      color: #a653ff;
      font-weight: 900;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(42px, 6vw, 78px);
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: -2px;
      font-weight: 950;
      margin-bottom: 22px;
    }

    h1 .purple {
      color: #8e32ff;
      text-shadow: 0 0 28px rgba(155, 60, 255, 0.45);
    }

    .subtext {
      color: rgba(255,255,255,0.82);
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 42px;
    }

    .btn {
      min-width: 190px;
      padding: 18px 25px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #8c2cff, #5b12d6);
      box-shadow: 0 0 25px rgba(140,44,255,0.5);
    }

    .btn-secondary {
      border: 1px solid rgba(181, 96, 255, 0.75);
      background: rgba(5,5,12,0.5);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(173, 79, 255, 0.5);
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0 52px 28px;
    }

    .trust-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 18px;
      background: rgba(9, 8, 18, 0.74);
      border: 1px solid rgba(155, 60, 255, 0.35);
      border-radius: 14px;
      box-shadow: 0 0 28px rgba(0,0,0,0.3);
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #a653ff;
      border: 1px solid rgba(166,83,255,0.55);
      font-size: 23px;
      flex-shrink: 0;
    }

    .trust-card strong {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .trust-card span {
      color: rgba(255,255,255,0.7);
      font-size: 13px;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      padding: 0 36px 40px;
    }

    .cat {
      min-height: 82px;
      border: 1px solid rgba(155, 60, 255, 0.55);
      border-radius: 10px;
      background: rgba(10, 9, 19, 0.84);
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px;
      transition: 0.25s ease;
    }

    .cat:hover {
      transform: translateY(-3px);
      border-color: #b05cff;
      box-shadow: 0 0 30px rgba(126, 34, 206, 0.35);
    }

    .cat .cat-icon {
      font-size: 30px;
      color: #9b3cff;
    }

    .cat strong {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .cat span {
      color: rgba(255,255,255,0.65);
      font-size: 12px;
    }

    .section {
      padding: 0 36px 50px;
    }

    .section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 950;
    }

    .section-title::after {
      content: "";
      width: 44px;
      height: 3px;
      background: #8e32ff;
      box-shadow: 0 0 18px #8e32ff;
    }

    .view-all {
      color: #a653ff;
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .product-card {
      background: linear-gradient(180deg, rgba(18,17,31,0.94), rgba(9,8,16,0.98));
      border: 1px solid rgba(155,60,255,0.35);
      border-radius: 12px;
      padding: 12px;
      overflow: hidden;
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: #050507;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 14px;
}

/* ALL PRODUCT / CARD IMAGES */
.product-card img,
.card img,
.slabs img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: #050507;
  border-radius: 8px;
  padding: 8px;
}

    .product-card h3 {
      font-size: 15px;
      margin-bottom: 6px;
    }

    .product-card p {
      color: rgba(255,255,255,0.68);
      font-size: 12px;
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .product-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price {
      font-size: 20px;
      font-weight: 950;
    }

    .cart-btn {
      width: 38px;
      height: 38px;
      border-radius: 7px;
      border: 0;
      color: white;
      background: linear-gradient(135deg, #8c2cff, #5b12d6);
      font-size: 18px;
      cursor: pointer;
    }

    .bottom-info {
      margin: 0 36px 36px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      border: 1px solid rgba(155,60,255,0.45);
      border-radius: 12px;
      background: rgba(12,10,22,0.88);
      padding: 28px;
    }

    .bottom-info div {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .bottom-info .big-icon {
      font-size: 45px;
      color: #8e32ff;
    }

    .bottom-info strong {
      display: block;
      text-transform: uppercase;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .bottom-info span {
      color: rgba(255,255,255,0.68);
      font-size: 13px;
      line-height: 1.4;
    }

    .footer {
      padding: 22px 40px 35px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255,255,255,0.55);
      font-size: 13px;
    }

    .socials {
      display: flex;
      gap: 18px;
      color: white;
      font-size: 19px;
    }
    
    .socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    }
    
.socials a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.socials img:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

    @media (max-width: 1100px) {
      .products { grid-template-columns: repeat(3, 1fr); }
      .trust-row { grid-template-columns: repeat(2, 1fr); }
      .categories { grid-template-columns: repeat(2, 1fr); }
      .nav-links { display: none; }
    }

    @media (max-width: 700px) {
      .page {
        background:
          linear-gradient(180deg, rgba(5,5,8,0.97) 0%, rgba(5,5,8,0.82) 48%, rgba(5,5,8,0.96) 100%),
          url("/mnt/data/ChatGPT Image May 1, 2026, 03_44_23 AM.png") center top / cover no-repeat;
      }

      .nav { padding: 0 22px; }
      .logo { font-size: 26px; }
      .icons { gap: 14px; }
      .hero { padding: 54px 24px 30px; min-height: 580px; }
      .subtext { font-size: 15px; }
      .btn { width: 100%; }
      .trust-row, .categories, .section, .bottom-info { padding-left: 20px; padding-right: 20px; margin-left: 0; margin-right: 0; }
      .trust-row, .categories, .products, .bottom-info { grid-template-columns: 1fr; }
      .product-card img { height: 280px; }
      .footer { flex-direction: column; gap: 18px; }
    }
  