.dbs-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.dbs-shop-card-wrap {
  width: 100%;
}

.dbs-shop-card-wrap.dbs-shop-card--single {
  max-width: 360px;
  margin: 0 auto;
}

.dbs-shop-card {
  background: #ffffff;
  border-radius: 60px 0 60px 0;
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.25s ease;
}

.dbs-shop-image-link,
.dbs-shop-button {
  text-decoration: none;
}

.dbs-shop-image {
  display: block;
  width: 90%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  margin: 24px auto 18px;
}

.dbs-shop-title {
  color: #5b4a40;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 16px 0 6px;
  min-height: 2.5em;
}

.dbs-shop-price {
  color: #6b7f3f;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.dbs-shop-spacer {
  flex: 1 1 auto;
}

.dbs-shop-button {
  display: block;
  margin: 0 auto;
  width: 90%;
  padding: 16px 0 16px 16px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #8dc63f 0%, #5f7f2f 100%);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 0 20px 0 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dbs-shop-button:hover,
.dbs-shop-button:focus {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  filter: brightness(0.97);
}

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

@media (max-width: 767px) {
  .dbs-shop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dbs-shop-card,
  .dbs-shop-card--single {
    max-width: 100%;
  }

  .dbs-shop-title {
    font-size: 20px;
  }

  .dbs-shop-price,
  .dbs-shop-button {
    font-size: 19px;
  }
}

.dbs-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: transparent !important;
}

.dbs-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  background: transparent !important;
}

.dbs-slide {
  min-width: 100%;
  box-sizing: border-box;
  background: transparent !important;
}
