/* ===== CARD ===== */
    .product-card {
      background: #ffffff;
      border-radius: 10px;
      width: 300px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
 
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    }

    /* ===== IMAGE AREA ===== */
    .card-img-area {
      background: #eef7f7;
      height: 260px;
      overflow: hidden;
      position: relative;
    }

    .card-img-area img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .product-card:hover .card-img-area img {
      transform: scale(1.04);
    }

    .stock-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.92);
      color: #1a7a4a;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .wishlist-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.92);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #aaa;
      font-size: 16px;
      transition: all 0.2s ease;
    }

    .wishlist-btn:hover,
    .wishlist-btn.active {
      color: #e25c7a;
      background: #fff;
    }

    /* ===== CARD BODY ===== */
    .card-body {
      padding: 18px 18px 20px;
    }

    .brand {
      font-size: 11px;
      font-weight: 700;
      color: #29a9a8;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .product-name {
      font-size: 16px;
      font-weight: 800;
      color: #1e2d3d;
      line-height: 1.3;
      margin-bottom: 4px;
    }

    .product-size {
      font-size: 12px;
      color: #7a94a8;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* ===== STARS ===== */
    .stars-row {
      display: flex;
      align-items: center;
      gap: 3px;
      margin-bottom: 14px;
    }

    .star {
      color: #f4b942;
      font-size: 13px;
    }

    .review-count {
      font-size: 12px;
      color: #7a94a8;
      font-weight: 600;
      margin-left: 4px;
    }

    /* ===== FEATURES ===== */
    .features {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      color: #4f6a7e;
      font-weight: 600;
    }

    .feature-item i {
      font-size: 15px;
      color: #29a9a8;
      flex-shrink: 0;
    }

    /* ===== DIVIDER ===== */
    .divider {
      border: none;
      border-top: 1px solid #eef2f5;
      margin: 16px 0;
    }

    /* ===== PRICE ROW ===== */
    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .price {
      font-size: 26px;
      font-weight: 800;
      color: #1e2d3d;
    }

    .shipping-info {
      font-size: 11.5px;
      color: #1a7a4a;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ===== BUTTONS ===== */
    .btn-cart {
      width: 100%;
      padding: 11px;
      background: #29a9a8;
      color: #ffffff;
      border: none;
      border-radius: 12px;
      font-size: 13.5px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      transition: background 0.2s ease, transform 0.15s ease;
      margin-bottom: 8px;
    }

    .btn-cart:hover {
      background: #5f9f9b;
      transform: translateY(-1px);
    }

    .btn-cart:active {
      transform: scale(0.98);
    }

    .btn-cart.added {
      background: #1a7a4a;
    }

    /* ===== TAGS ===== */
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }

    .tag {
      font-size: 10.5px;
      font-weight: 700;
      color: #7a94a8;
      background: #f0f4f8;
      border: 1px solid #dde5ec;
      border-radius: 50px;
      padding: 3px 10px;
    }