/* Vetoben New Arrivals — shop redesign v1 */

.vb-shop {
  width: 100%;
  background: #ffffff;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.vb-shop *,
.vb-shop *::before,
.vb-shop *::after {
  box-sizing: border-box;
}

/* —— Top header (replaces old Private Collection banner) —— */
.vb-shop__top {
  background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
  border-bottom: 1px solid #ebe3d9;
}

.vb-shop__top-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 20px 32px;
  text-align: center;
}

.vb-shop__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b7442;
  font-weight: 700;
  margin: 0 0 12px;
}

.vb-shop__title {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #111111;
  line-height: 1.1;
}

.vb-shop__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #5c5c5c;
  margin: 0 auto 12px;
  max-width: 44ch;
}

.vb-shop__meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #888888;
  margin: 0;
}

/* —— Buttons —— */
.vb-shop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.vb-shop__btn--dark {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.vb-shop__btn--outline {
  background: #ffffff;
  color: #111111;
  border-color: #d4c4b0;
}

.vb-shop__btn--light {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.vb-shop__btn--gold {
  background: #9b7442;
  color: #ffffff;
  border-color: #9b7442;
}

/* —— Controls bar (categories + sort) —— */
.vb-shop__controls {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ebe3d9;
}

.vb-shop__controls-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.vb-shop__cats {
  display: flex;
  gap: 8px;
  padding: 14px 0 8px;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vb-shop__cats::-webkit-scrollbar {
  display: none;
}

.vb-shop__cat {
  appearance: none;
  border: 1px solid #e3d8ca;
  background: #ffffff;
  color: #444444;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vb-shop__cat:hover {
  border-color: #d4c4b0;
}

.vb-shop__cat.is-active {
  background: #f7f4ef;
  color: #9b7442;
  border-color: #d4c4b0;
}

.vb-shop__cat {
  flex-shrink: 0;
}

/* —— Filters row: price pills + count/sort —— */
.vb-shop__filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px;
}

.vb-shop__price-scroll {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vb-shop__price-scroll::-webkit-scrollbar {
  display: none;
}

.vb-shop__shop-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.vb-shop__sort {
  appearance: none;
  border: 1px solid #e3d8ca;
  border-radius: 8px;
  height: 36px;
  min-height: 36px;
  line-height: 1.3;
  padding: 7px 30px 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  box-sizing: border-box;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
}

.vb-shop__price-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  min-width: min-content;
}

.vb-shop__price {
  appearance: none;
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid #e3d8ca;
  background: #faf8f5;
  color: #555555;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.vb-shop__price.is-active {
  background: #f3ede4;
  border-color: #9b7442;
  color: #9b7442;
}

.vb-shop__count {
  font-size: 12px;
  font-weight: 600;
  color: #888888;
  margin: 0;
  white-space: nowrap;
}

/* —— Product grid —— */
.vb-shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 22px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.vb-shop__card {
  position: relative;
}

.vb-shop__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ebe3d9;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vb-shop__card-link:hover {
  border-color: #d4c4b0;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.07);
  transform: translateY(-2px);
}

.vb-shop__card--inquire .vb-shop__card-link:hover {
  border-color: #9b7442;
}

.vb-shop__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #faf8f5;
  color: #9b7442;
  border: 1px solid #e3d8ca;
}

.vb-shop__img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f5f0e8 0%, #ebe3d9 100%);
  background-size: cover;
  background-position: center;
}

.vb-shop__img--1 { background: linear-gradient(160deg, #ece8e2 0%, #d8d0c4 100%); }
.vb-shop__img--2 { background: linear-gradient(160deg, #f0ebe3 0%, #e0d6c8 100%); }
.vb-shop__img--3 { background: linear-gradient(160deg, #e8e4dc 0%, #cfc5b5 100%); }
.vb-shop__img--4 { background: linear-gradient(160deg, #2a2a2a 0%, #4a4a4a 100%); }
.vb-shop__img--5 { background: linear-gradient(160deg, #d4c4a8 0%, #b8a88c 100%); }
.vb-shop__img--6 { background: linear-gradient(160deg, #e5dfd4 0%, #c9bfb0 100%); }
.vb-shop__img--7 { background: linear-gradient(160deg, #1a1a1a 0%, #333333 100%); }
.vb-shop__img--8 { background: linear-gradient(160deg, #f5d0d8 0%, #e8b0bc 100%); }
.vb-shop__img--9 { background: linear-gradient(160deg, #d4af37 0%, #b8962e 100%); }
.vb-shop__img--10 { background: linear-gradient(160deg, #3d3d3d 0%, #1a1a1a 100%); }
.vb-shop__img--11 { background: linear-gradient(160deg, #2c2c2c 0%, #0f0f0f 100%); }
.vb-shop__img--12 { background: linear-gradient(160deg, #c4b8a8 0%, #a89888 100%); }

.vb-shop__card-body {
  padding: 14px 16px 18px;
}

.vb-shop__brand {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b7442;
  font-weight: 700;
  margin: 0 0 6px;
}

.vb-shop__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vb-shop__price-tag {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  letter-spacing: -0.02em;
}

.vb-shop__inquire {
  font-size: 13px;
  font-weight: 700;
  color: #9b7442;
  margin: 0;
  letter-spacing: 0.04em;
}

/* —— Pagination —— */
.vb-shop__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 22px 48px;
}

.vb-shop__page,
.vb-shop__page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-decoration: none;
}

.vb-shop__page.is-active {
  background: #f7f4ef;
  color: #9b7442;
  border: 1px solid #e3d8ca;
}

.vb-shop__page:not(.is-active):hover {
  background: #f5f0e8;
  color: #111111;
}

.vb-shop__page-dots {
  cursor: default;
}

/* —— Deal banner —— */
.vb-shop__deal {
  margin: 0 22px 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vb-shop__deal-inner {
  text-align: center;
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid #e3d8ca;
  background: linear-gradient(180deg, #faf8f5 0%, #f3ede4 100%);
}

.vb-shop__deal-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b7442;
  font-weight: 700;
  margin: 0 0 8px;
}

.vb-shop__deal-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #111111;
}

.vb-shop__deal-text {
  font-size: 14px;
  color: #666666;
  margin: 0 0 18px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

/* —— Services —— */
.vb-shop__services {
  text-align: center;
  padding: 0 22px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.vb-shop__section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #111111;
}

.vb-shop__services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vb-shop__service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid #e3d8ca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.vb-shop__service:hover {
  border-color: #9b7442;
}

/* —— Concierge —— */
.vb-shop__concierge {
  text-align: center;
  margin: 0 20px 48px;
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid #e3d8ca;
  background: linear-gradient(180deg, #faf8f5 0%, #f5efe6 100%);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.vb-shop__concierge-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #111111;
}

.vb-shop__concierge-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.vb-shop__concierge-text a {
  color: #9b7442;
  font-weight: 600;
  text-decoration: none;
}

.vb-shop__concierge-text a:hover {
  text-decoration: underline;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .vb-shop__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .vb-shop__top-inner {
    padding: 28px 18px 24px;
  }

  .vb-shop__title {
    font-size: 28px;
  }

  .vb-shop__lead {
    font-size: 15px;
  }

  .vb-shop__controls-inner {
    padding: 0 14px;
  }

  .vb-shop__filters-row {
    gap: 8px;
  }

  .vb-shop__shop-meta {
    gap: 8px;
  }

  .vb-shop__sort {
    max-width: 148px;
    min-width: 120px;
    height: 34px;
    min-height: 34px;
    padding: 6px 28px 6px 10px;
    font-size: 11px;
  }

  .vb-shop__count {
    font-size: 11px;
  }

  .vb-shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 480px) {
  .vb-shop__grid {
    grid-template-columns: 1fr;
  }
}
