.shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: var(--space-lg);
    }

    .product-card {
      background: var(--surface-1);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
      min-width: 0;
      height: 100%;
    }

    .product-card:hover {
      border-color: var(--border-light);
      transform: translateY(-8px);
      box-shadow: var(--shadow-card-hover);
    }

    .product-card__img {
      width: 100%;
      aspect-ratio: 1/1;
      background: var(--surface-2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ash);
      font-family: var(--font-mono);
      font-size: var(--text-small);
      letter-spacing: var(--tracking-wide);
      text-align: center;
      padding: var(--space-md);
    }

    .product-card__body {
      padding: var(--space-lg);
      display: flex;
      flex-direction: column;
      gap: var(--space-xs);
      flex: 1;
      min-width: 0;
    }

    .product-card__cat {
      font-family: var(--font-mono);
      font-size: var(--text-small);
      color: var(--green-dark);
      letter-spacing: var(--tracking-wide);
      text-transform: uppercase;
      line-height: 1.4;
    }

    .product-card__name {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 1.5vw, 1.4rem);
      font-weight: var(--weight-semi);
      color: var(--chalk);
      line-height: var(--leading-head);
      word-break: break-word;
    }

    .product-card__price {
      font-family: var(--font-mono);
      font-size: var(--text-body);
      color: var(--silver);
      margin-top: auto;
      padding-top: var(--space-sm);
      line-height: 1.5;
    }

    .product-card__price span {
      color: var(--green-dark);
      font-weight: var(--weight-semi);
    }

    .coming-soon-banner {
      background: var(--surface-2);
      border: 1px dashed var(--border-light);
      border-radius: var(--radius-lg);
      padding: var(--space-2xl);
      text-align: center;
      margin-bottom: var(--space-2xl);
    }

    .coming-soon-banner p {
      font-family: var(--font-mono);
      font-size: var(--text-small);
      color: var(--fog);
      letter-spacing: var(--tracking-wide);
      text-transform: uppercase;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .coming-soon-banner {
        padding: var(--space-xl) var(--space-lg);
      }
    }

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

      .product-card__body {
        padding: var(--space-md);
      }

      .product-card .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .coming-soon-banner {
        padding: var(--space-lg) var(--space-md);
        margin-bottom: var(--space-xl);
      }

      .coming-soon-banner p {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
      }

      .product-card__img {
        font-size: 0.8rem;
      }

      .product-card__name {
        font-size: 1.1rem;
      }
    }
