@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --paper: #fbf5ed;
  --white: #fffdf9;
  --wine: #8f3f50;
  --gold: #b47b30;
}

body {
  background:
    radial-gradient(circle at 7% 48%, rgba(231, 167, 155, .13), transparent 22rem),
    radial-gradient(circle at 94% 63%, rgba(112, 157, 131, .12), transparent 24rem),
    var(--paper);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(35, 18, 25, .72) 0%, rgba(91, 43, 52, .26) 48%, rgba(17, 12, 12, .05) 76%),
    linear-gradient(0deg, rgba(35, 18, 25, .5), transparent 44%);
}

.store-profile {
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid rgba(39, 33, 31, .1);
}

.store-profile-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 178px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 30px 0;
}

.store-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 21px;
}

.store-logo {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 33, 31, .16);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(65, 42, 35, .08);
}

.store-logo svg { width: 72px; height: 72px; }

.store-logo-word {
  color: var(--wine);
  font: italic 500 11px var(--serif);
  letter-spacing: -.03em;
}

.store-name-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.store-name-row h2 {
  font: 700 clamp(26px, 2.7vw, 36px)/1.05 var(--sans);
  letter-spacing: -.04em;
}

.store-verified {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--wine);
  color: white;
  transform: rotate(8deg);
}

.store-verified svg { width: 13px; height: 13px; transform: rotate(-8deg); }

.store-description {
  margin-top: 6px;
  color: var(--soft);
  font-size: 13px;
}

.store-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
  font-size: 14px;
}

.store-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.store-metric strong { font-size: 18px; }
.store-metric small { color: var(--soft); font-size: 12px; }
.store-star { color: #d59120; font-size: 22px; line-height: 1; }
.store-divider { width: 1px; height: 23px; background: var(--line); }

.store-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 11px;
}

.store-action {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid var(--ink);
  border-radius: 99px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  font: 700 14px var(--sans);
  cursor: pointer;
  transition: .2s ease;
}

.store-action svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.store-action:hover { transform: translateY(-2px); background: white; box-shadow: 0 9px 24px rgba(70, 45, 37, .1); }
.store-action.following { border-color: var(--wine); background: var(--wine); color: white; }

.follow-button-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.05;
}

.follow-button-copy small {
  color: var(--soft);
  font-size: 8px;
  font-weight: 600;
}

.store-action.following .follow-button-copy small { color: rgba(255, 255, 255, .76); }

.contact-modal[hidden] { display: none; }

.contact-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 22, 21, .62);
  backdrop-filter: blur(7px);
  cursor: default;
}

.contact-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  border: 1px solid rgba(39, 33, 31, .13);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 48px);
  background: #fffdf9;
  box-shadow: 0 30px 90px rgba(29, 18, 17, .28);
}

.contact-close {
  position: absolute;
  top: 17px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font: 400 25px/1 var(--sans);
  cursor: pointer;
}

.contact-kicker {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-dialog h2 {
  max-width: 480px;
  font: 500 clamp(34px, 5vw, 48px)/1.04 var(--serif);
  letter-spacing: -.04em;
}

.contact-intro {
  max-width: 510px;
  margin: 14px 0 28px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.65;
}

#contactForm { display: grid; gap: 16px; }
.contact-two { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
#contactForm label { display: grid; gap: 7px; }
#contactForm label > span { font-size: 11px; font-weight: 750; }
#contactForm input,
#contactForm textarea {
  width: 100%;
  border: 1px solid rgba(39, 33, 31, .17);
  border-radius: 11px;
  outline: 0;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font: 500 14px/1.5 var(--sans);
  transition: .18s ease;
}

#contactForm textarea { resize: vertical; min-height: 126px; }
#contactForm input:focus,
#contactForm textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(143, 63, 80, .09); }
.contact-honeypot { position: absolute !important; left: -9999px; }
.contact-form-footer { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 2px; }
#contactStatus { color: var(--soft); font-size: 12px; line-height: 1.45; }
#contactStatus.error { color: #9a2f3e; }
#contactStatus.success { color: #2f714e; }
.contact-submit {
  flex: 0 0 auto;
  min-height: 47px;
  border: 0;
  border-radius: 99px;
  padding: 0 20px;
  background: var(--wine);
  color: white;
  font: 750 13px var(--sans);
  cursor: pointer;
}

.contact-submit:disabled { opacity: .58; cursor: wait; }
body.contact-open { overflow: hidden; }

.shop-tools {
  position: relative;
}

.shop-tools::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #d98d82, #e7bb62 34%, #86ad98 68%, #a58abe);
}

.shop-bar {
  border-bottom-color: rgba(143, 63, 80, .16);
}

.shop-tab {
  transition: color .2s ease;
}

.shop-tab.active,
.shop-tab:hover {
  color: var(--wine);
}

.shop-tab.active::after {
  background: linear-gradient(90deg, var(--wine), #cf7e70);
}

.shop-search {
  border-color: rgba(180, 123, 48, .16);
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 8px 24px rgba(103, 67, 49, .05);
}

.shop-search:focus-within {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(143, 63, 80, .08), 0 10px 26px rgba(103, 67, 49, .07);
}

.filter-heading {
  color: var(--wine);
}

.products-layout .filters {
  border-right-color: rgba(143, 63, 80, .18);
}

.products-layout .filter {
  border-radius: 8px 0 0 8px;
  transition: color .18s ease, background .18s ease;
}

.products-layout .filter:hover {
  color: var(--wine);
  background: rgba(235, 190, 173, .16);
}

.products-layout .filter.active {
  color: var(--wine);
  background: linear-gradient(90deg, rgba(235, 190, 173, .2), transparent 88%);
  box-shadow: 3px 0 0 var(--wine);
}

.filter-count {
  color: #927166;
}

.catalog-area {
  position: relative;
}

.catalog-head h2 {
  color: #793543;
}

.sort-control select {
  color: #793543;
}

.card {
  border-color: rgba(94, 66, 57, .14);
  background: rgba(255, 253, 249, .84);
  box-shadow: 0 7px 22px rgba(82, 53, 43, .045);
}

.card:nth-child(6n + 1) { background: linear-gradient(155deg, rgba(247, 224, 216, .7), rgba(255, 253, 249, .9) 42%); }
.card:nth-child(6n + 2) { background: linear-gradient(155deg, rgba(247, 231, 188, .6), rgba(255, 253, 249, .9) 42%); }
.card:nth-child(6n + 3) { background: linear-gradient(155deg, rgba(216, 233, 222, .66), rgba(255, 253, 249, .9) 42%); }
.card:nth-child(6n + 4) { background: linear-gradient(155deg, rgba(228, 220, 240, .64), rgba(255, 253, 249, .9) 42%); }
.card:nth-child(6n + 5) { background: linear-gradient(155deg, rgba(215, 232, 240, .65), rgba(255, 253, 249, .9) 42%); }
.card:nth-child(6n) { background: linear-gradient(155deg, rgba(242, 217, 225, .62), rgba(255, 253, 249, .9) 42%); }

.card:hover {
  border-color: rgba(143, 63, 80, .24);
  box-shadow: 0 20px 48px rgba(105, 61, 51, .13);
}

.card .art::after {
  background: linear-gradient(180deg, rgba(23, 16, 15, .05) 28%, rgba(23, 16, 15, .7) 100%);
  transition: background .25s ease;
}

.card:hover .art::after {
  background: linear-gradient(180deg, rgba(23, 16, 15, .02) 24%, rgba(23, 16, 15, .62) 100%);
}

.card-price {
  color: #7b3138;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.card-price small {
  display: block;
  margin-top: 1px;
  color: #756963;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.tag {
  color: #71323f;
  background: rgba(255, 248, 242, .94);
  box-shadow: 0 3px 12px rgba(35, 21, 19, .08);
}

.card:nth-child(3n + 2) .tag { color: #76531d; background: rgba(255, 247, 219, .95); }
.card:nth-child(3n) .tag { color: #3f6955; background: rgba(235, 248, 239, .95); }

.meta {
  color: #a46824;
}

.action {
  color: var(--wine);
}

.promise {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7d3342, #9b4a57 54%, #6e3949);
}

.promise::before,
.promise::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 225, 183, .18);
  border-radius: 50%;
}

.promise::before { left: -105px; top: -145px; }
.promise::after { right: -120px; bottom: -160px; }

footer .brand span {
  color: var(--wine);
}

.home-reviews {
  padding: 84px 20px 94px;
  background: #f7f6f3;
  font-family: "Inter", Arial, sans-serif;
}

.home-reviews-inner {
  width: min(1280px, 100%);
  margin: auto;
}

.home-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 16px;
}

.home-reviews-kicker {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-reviews h2 {
  font: 600 clamp(36px, 5vw, 56px)/1.05 "Inter", Arial, sans-serif;
  letter-spacing: -.045em;
}

.home-reviews-summary {
  padding-bottom: 7px;
  color: #8c6430;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.home-reviews-note {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.6;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-review-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 19px;
  border: 1px solid rgba(99, 68, 57, .13);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(38, 33, 31, .045);
}

.home-review-card:nth-child(n) { background: #fff; }

.home-review-top,
.home-review-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.home-review-badge {
  border-radius: 99px;
  padding: 5px 7px;
  background: #f1f0ed;
  color: #5d5753;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-review-text {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  margin: 16px 0 20px;
  font: 400 14px/1.65 "Inter", Arial, sans-serif;
}

.home-review-byline {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 9px;
}

.home-review-byline strong {
  color: var(--ink);
  font-weight: 600;
}

.home-review-person {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.home-review-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(39, 33, 31, .1);
  border-radius: 50%;
  background: #f1f0ed;
  object-fit: cover;
}

.home-review-purchase {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-size: 9px;
}

.home-review-product-thumb {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(39, 33, 31, .1);
  border-radius: 7px;
  background: #eee;
  object-fit: cover;
}

.home-review-product-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4d3b36, #8e7567);
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.home-review-purchase-copy {
  min-width: 0;
  line-height: 1.45;
}

.home-review-purchase span {
  color: var(--soft);
}

.home-review-purchase a {
  color: var(--wine);
  font-weight: 700;
}

.home-reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.show-all-reviews {
  border-radius: 99px;
  padding: 13px 20px;
  background: var(--wine);
  color: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(143, 63, 80, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.show-all-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(143, 63, 80, .24);
}

.home-reviews-loading,
.home-reviews-error {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--soft);
  font-size: 12px;
}

@media (max-width: 1000px) {
  .home-reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .home-reviews { padding: 62px 14px 70px; }
  .home-reviews-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .home-reviews-summary { padding: 0; }
  .home-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-review-card { min-height: 250px; padding: 15px; }
  .home-review-text { -webkit-line-clamp: 7; font-size: 13px; }
}

@media (max-width: 430px) {
  .home-reviews-grid { grid-template-columns: 1fr; }
  .home-review-card { min-height: 0; }
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at 0 45%, rgba(231, 167, 155, .1), transparent 15rem),
      var(--paper);
  }

  .shop-tools::before {
    height: 2px;
  }

  .store-profile-inner {
    width: calc(100% - 28px);
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 25px 0;
  }

  .store-logo { width: 76px; height: 76px; }
  .store-logo svg { width: 54px; height: 54px; }
  .store-identity { align-items: flex-start; gap: 14px; }
  .store-name-row h2 { font-size: 25px; }
  .store-description { line-height: 1.45; }
  .store-metrics { max-width: calc(100vw - 118px); gap: 10px; overflow-x: auto; padding-bottom: 4px; }
  .store-metrics::-webkit-scrollbar { display: none; }
  .store-divider { height: 19px; }
  .store-metric { font-size: 12px; }
  .store-metric strong { font-size: 15px; }
  .store-metric small { font-size: 0; }
  .store-metric small::after { content: "(1.8k)"; font-size: 10px; }
  .store-actions { width: 100%; }
  .store-action { min-height: 45px; flex: 1; padding: 0 14px; }
  .contact-modal { padding: 10px; }
  .contact-dialog { max-height: calc(100dvh - 20px); border-radius: 17px; padding: 32px 20px 24px; }
  .contact-two { grid-template-columns: 1fr; }
  .contact-form-footer { align-items: stretch; flex-direction: column; }
  .contact-submit { width: 100%; }
}
