@import './feature-cards-row.css';
section.block{
    padding: 35px 0 !important;
    background: #fff;
}
.section-title {
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
    font-size: clamp(24px, 3.2vw, 38px) !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
    color: var(--theme-hero-heading, #263457) !important;
    line-height: 1.1 !important;
    margin-bottom: 28px !important;
}
@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .shop-card {
    min-height: 100px !important;
  }
}
.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}
.shop-card .card-icon {
    background: var(--theme-promo-bar-bg, #eaeffa) !important;
    color: var(--theme-hero-heading, #263457) !important;
    border-color: rgba(38,52,87,.13) !important;
}
.shop-card .label {
    position: relative !important;
    z-index: 1 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--theme-text, #0d1f1b) !important;
    text-align: center !important;
    padding:0 8px 19px !important;
    line-height: 1.25 !important;
}
.shop-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:14px;
}
.shop-card{
  background:#f7f4ee;
  border:1px solid #ece7de;
  border-radius:10px;
  padding:16px 10px 12px;
  text-align:center;
  min-height:126px;
  cursor:pointer;
  transition:box-shadow .15s ease, transform .15s ease;
}

.shop-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.09) !important;
}
.shop-card[data-shop-card="dog-clothing"]{ background:#daeeff; border-color:#b8d6ef; }
.shop-card[data-shop-card="collars-leads"]{ background:#d6f0e0; border-color:#b0d9c2; }
.shop-card[data-shop-card="feeding-bowls"]{ background:#fef5d4; border-color:#ede099; }
.shop-card[data-shop-card="beds-comfort"]{ background:#fde8d8; border-color:#edcaaa; }
.shop-card[data-shop-card="travel-essentials"]{ background:#e8d8f4; border-color:#ccb0e8; }
.shop-card[data-shop-card="grooming-care"]{ background:#d8f4f0; border-color:#a8d8d2; }
.shop-card .emoji{
  font-size:46px;
  margin:4px 0 10px;
}
.shop-card .label{
  font-family: var(--theme-font-serif, Georgia), serif;
  font-weight:700;
  font-size:14px;
  color: var(--theme-text, #133a36);
  line-height:1.2;
}
.shop-card[data-shop-card="dog-clothing"]    { background: #fdebd0; border-color: #f0d4a8; }
.shop-card[data-shop-card="collars-leads"]   { background: #e8f4eb; border-color: #c6e0cb; }
.shop-card[data-shop-card="feeding-bowls"]   { background: #fdf6e3; border-color: #e8dda8; }
.shop-card[data-shop-card="beds-comfort"]    { background: #f9ebe8; border-color: #e8c8c0; }
.shop-card[data-shop-card="travel-essentials"]{ background: #ece8f6; border-color: #ccc4e8; }
.shop-card[data-shop-card="grooming-care"]   { background: #e4f4f4; border-color: #b0d8d8; }
.shop-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.shop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.78);
  z-index: 0;
}
.shop-card .card-icon,
.shop-card .label,
.shop-card .emoji {
  position: relative;
  z-index: 1;
}
.shop-card .card-icon {
    position: relative !important;
    z-index: 1 !important;
    width: 40px !important;
    height: 40px !important;
    background: var(--theme-promo-bar-bg, #eaeffa) !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(38, 52, 87, .13) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--ps-teal) !important;
    box-shadow: var(--theme-shadow, 0 2px 8px rgba(0, 0, 0, .07)) !important;
    margin-bottom: 16px !important;
    flex-shrink: 0 !important;
    padding: 10px;
}

.shop-card {
    background: var(--theme-surface, #ffffff) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: transform 200ms ease, box-shadow 200ms ease !important;
    box-shadow: var(--theme-shadow) !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    padding: 0 !important;
}
.essential-underline{
    text-decoration: none !important;
}
@media (max-width: 700px) {
  .shop-card .label {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--theme-secondary, #263457) !important;
  }
  .shop-card::before {
      background: linear-gradient(to bottom, rgba(234, 239, 250, .55) 0%, rgba(234, 239, 250, .92) 60%) !important;
  }
  .shop-grid {
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 10px !important;
  }
  .shop-card{
    min-height: 108px !important;
  }
  .shop-card .card-icon{
      margin-bottom: 20px !important;
      background: #ffff !important;
  }
  .essential-underline {
    text-decoration: none !important;
    border: 1px solid #d1d7e5 !important;
    border-radius: 15px !important;
  }
}