.product-card {
      border-radius: 28px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.92);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card);
    }

    .product-visual {
      position: relative;
      aspect-ratio: 1 / 1;
      background: linear-gradient(180deg, #fafafd 0%, #ededf3 100%);
      overflow: hidden;
    }

    .product-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sale-badge,
    .category-pill {
      position: absolute;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(10px);
      z-index: 2;
    }

    .sale-badge {
      top: 16px;
      left: 16px;
      background: rgba(255,255,255,0.86);
      border: 1px solid var(--line);
      color: var(--text);
    }

    .category-pill {
      bottom: 16px;
      left: 16px;
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(255,255,255,0.9);
      color: var(--muted);
    }

    .product-body {
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .product-title {
      margin: 0;
      font-size: 18px;
      line-height: 1.28;
      letter-spacing: -0.03em;
      font-weight: 760;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.56em;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 13px;
    }

    .stars {
      letter-spacing: 0.1em;
      color: var(--text);
      font-size: 13px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 12px;
    }

    .price-stack {
      display: grid;
      gap: 4px;
    }

    .price-main {
      font-size: 24px;
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 850;
    }

    .price-old {
      font-size: 13px;
      color: var(--muted);
      text-decoration: line-through;
    }

    .product-type {
      font-size: 12px;
      color: var(--muted);
      font-weight: 700;
      padding-bottom: 4px;
    }

    .product-footer {
      display: grid;
      gap: 10px;
    }

    .product-footer .button,
    .woocommerce ul.products li.product .product-footer .button,
    .woocommerce-page ul.products li.product .product-footer .button {
      min-height: 46px;
      border-radius: 16px;
      padding: 0 16px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 750;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      cursor: pointer;
      background: var(--surface-soft, #fafafc) !important;
      color: var(--text, #1d1d1f) !important;
      border: 1px solid var(--line, #e5e5ea) !important;
    }

    .product-footer .button:hover,
    .woocommerce ul.products li.product .product-footer .button:hover,
    .woocommerce-page ul.products li.product .product-footer .button:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 22px rgba(0,0,0,0.08);
      background: var(--surface-soft, #fafafc) !important;
      color: var(--text, #1d1d1f) !important;
    }

    @media (max-width: 640px) {
      .product-body {
        padding: 14px;
      }
      .product-title {
        font-size: 15px;
      }
      .price-main {
        font-size: 18px;
      }
      .product-footer .button,
      .woocommerce ul.products li.product .product-footer .button,
      .woocommerce-page ul.products li.product .product-footer .button {
        min-height: 42px;
        font-size: 13px;
      }
    }