
    /* Cards & Container */
    .vendorprofile-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .vendor-logo-box {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--bg-light);
      border: 2px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.5rem;
      color: #ef4444;
      box-shadow: var(--shadow-sm);
    }

    .vendor-badge {
      background: rgba(13, 148, 136, 0.1);
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.82rem;
      padding: 4px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* Category Filter Pills */
    .cat-pill {
      background: var(--bg-light);
      border: 1px solid var(--border-color);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .cat-pill:hover, .cat-pill.active {
      background: var(--primary-color);
      color: #ffffff;
      border-color: var(--primary-color);
    }

    /* Product Cards Grid */
    .store-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      position: relative;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-sm);
    }

    .store-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(13, 148, 136, 0.3);
    }

    .store-card-img-wrapper {
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      margin-bottom: 8px;
      background: var(--bg-light);
      border-radius: var(--radius-sm);
    }

    .store-card-img-wrapper img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .badge-discount {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #ef4444;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      z-index: 2;
    }

    /* Buttons */
    .btn-add-cart-sm {
      background-color: var(--primary-color) !important;
      color: #fff !important;
      border: none !important;
      font-size: 0.8rem !important;
      font-weight: 600 !important;
      padding: 6px 10px !important;
      border-radius: var(--radius-sm) !important;
      width: 100% !important;
    }

    .btn-add-freezer-sm {
      background-color: transparent !important;
      color: var(--freezer-blue) !important;
      border: 1px solid var(--freezer-blue) !important;
      font-size: 0.8rem !important;
      font-weight: 600 !important;
      padding: 5px 10px !important;
      border-radius: var(--radius-sm) !important;
      width: 100% !important;
    }
	