:root {
      --bg: #060606;
      --bg2: #0d0d12;
      --panel: rgba(255, 255, 255, 0.05);
      --panel-strong: rgba(255, 255, 255, 0.07);
      --stroke: rgba(255, 255, 255, 0.09);
      --text: #f5f5f7;
      --muted: #aaaab6;
      --soft: #cfcfe1;
      --purple: #8b5cf6;
      --purple-2: #a855f7;
      --blue: #60a5fa;
      --glow: 0 0 40px rgba(139, 92, 246, 0.18);
      --shadow: 0 25px 60px rgba(0,0,0,0.45);
      --radius: 26px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.14), transparent 24%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.12), transparent 30%),
        linear-gradient(135deg, #040404 0%, #0a0a0f 45%, #11111a 100%);
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
      pointer-events: none;
      opacity: 0.22;
    }

    .blur-orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.22;
      pointer-events: none;
      z-index: 0;
    }

    .orb1 {
      width: 280px;
      height: 280px;
      background: #8b5cf6;
      top: 90px;
      left: -60px;
    }

    .orb2 {
      width: 240px;
      height: 240px;
      background: #3b82f6;
      top: 420px;
      right: -70px;
    }

    .orb3 {
      width: 220px;
      height: 220px;
      background: #a855f7;
      bottom: 40px;
      left: 35%;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(7, 7, 10, 0.55);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: white;
    }

    .logo span {
      color: #c4b5fd;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-links a {
      color: var(--soft);
      text-decoration: none;
      font-size: 0.95rem;
      transition: 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0%;
      height: 1px;
      background: linear-gradient(90deg, var(--purple), var(--blue));
      transition: 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: white;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .cta-btn {
      padding: 12px 18px;
      border-radius: 999px;
      text-decoration: none;
      color: white;
      border: 1px solid rgba(255,255,255,0.12);
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      box-shadow: var(--glow);
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.22);
    }

    .hero {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 90px 0 34px;
      position: relative;
      z-index: 1;
    }

    .hero-panel,
    .filter-bar,
    .product-card,
    .cta-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid var(--stroke);
      border-radius: 30px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before,
    .filter-bar::before,
    .product-card::before,
    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%, transparent 60%, rgba(255,255,255,0.03));
      pointer-events: none;
    }

    .hero-panel {
      padding: 48px;
      text-align: center;
    }

    .eyebrow {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(255,255,255,0.04);
      color: #ddd6fe;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .hero-panel h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 0.95;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .hero-panel h1 span {
      background: linear-gradient(90deg, #ffffff, #d8b4fe, #93c5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-panel p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.9;
      font-size: 1rem;
    }

    .main-section {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 0 0 90px;
      position: relative;
      z-index: 1;
    }

    .filter-bar {
      padding: 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 28px;
    }

    .filter-left {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .filter-btn {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: white;
      padding: 12px 16px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 0.92rem;
      transition: 0.25s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(59, 130, 246, 0.18));
      border-color: rgba(196, 181, 253, 0.35);
      box-shadow: var(--glow);
    }

    .shop-meta {
      color: var(--soft);
      font-size: 0.94rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .product-card {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
    }

    .product-image {
      height: 220px;
      border-radius: 22px;
      background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
      overflow: hidden;
    }

    .product-image::after {
      content: "PrintForge";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,0.14);
      font-size: 1rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .product-top {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 12px;
    }

    .product-tag {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ddd6fe;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .price {
      font-size: 1.15rem;
      font-weight: 700;
      color: white;
      white-space: nowrap;
    }

    .product-card h3 {
      font-size: 1.18rem;
      margin-top: 4px;
    }

    .product-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.95rem;
    }

    .product-actions {
      display: flex;
      gap: 12px;
      margin-top: auto;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
      padding: 13px 18px;
      border-radius: 16px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, #7c3aed, #a855f7 45%, #3b82f6);
      box-shadow: 0 18px 35px rgba(124, 58, 237, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 24px 45px rgba(124, 58, 237, 0.42);
    }

    .btn-secondary {
      color: white;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(255,255,255,0.04);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.06);
    }

    .cta-panel {
      margin-top: 34px;
      padding: 40px 34px;
      text-align: center;
    }

    .section-tag {
      color: #c4b5fd;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      display: block;
      margin-bottom: 10px;
      font-size: 0.72rem;
    }

    .cta-panel h2 {
      font-size: 2.1rem;
      margin-bottom: 14px;
      letter-spacing: -0.03em;
    }

    .cta-panel p {
      max-width: 700px;
      margin: 0 auto 24px;
      color: var(--muted);
      line-height: 1.8;
    }

    footer {
      width: min(1200px, 92%);
      margin: 0 auto;
      padding: 0 0 35px;
      position: relative;
      z-index: 1;
    }

    .footer-bar {
      padding: 22px 24px;
      border-radius: 22px;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: #a6a6b3;
      font-size: 0.92rem;
    }

    @media (max-width: 1100px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 980px) {
      .hero-panel,
      .filter-bar,
      .product-card,
      .cta-panel {
        padding-left: 26px;
        padding-right: 26px;
      }

      .hero {
        padding-top: 60px;
      }

      .hero-panel h1 {
        font-size: 3rem;
      }

      .nav {
        flex-direction: column;
        gap: 14px;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .filter-bar {
        align-items: stretch;
      }
    }

    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        padding: 20px;
      }

      .filter-left {
        width: 100%;
      }

      .shop-meta {
        width: 100%;
      }
    }

    @media (max-width: 560px) {
      .hero-panel h1 {
        font-size: 2.4rem;
      }

      .cta-panel h2 {
        font-size: 1.7rem;
      }

      .hero-panel,
      .filter-bar,
      .product-card,
      .cta-panel {
        border-radius: 24px;
        padding: 22px 18px;
      }

      .cta-btn,
      .btn-primary,
      .btn-secondary {
        width: 100%;
        text-align: center;
      }

      .product-actions {
        flex-direction: column;
      }

      .footer-bar {
        flex-direction: column;
        text-align: center;
      }
    }