:root {
  --vgs-plum: #2d1b2e;
  --vgs-berry: #5a2a3a;
  --vgs-gold: #c9a56a;
  --vgs-cream: #fdfbf9;
  --vgs-border: #e5e1da;
  --vgs-ink: #2b2b2b;
  --vgs-font-body: "Inter", system-ui, sans-serif;
  --vgs-font-heading: "Playfair Display", Georgia, serif;
}

body {
  background: var(--vgs-cream);
  color: var(--vgs-plum);
  font-family: var(--vgs-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
  font-family: var(--vgs-font-heading);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background: var(--vgs-plum);
  box-shadow: 0 8px 24px rgba(45, 27, 46, 0.18);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner,
.site-footer__inner,
.home-intro__inner,
.home-products,
.home-artists,
.home-social,
.gift-finder,
.home-final-cta,
.page-content,
.content-index,
.shop-shell {
  margin-inline: auto;
  max-width: 96rem;
  padding-inline: 24px;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 48px;
  max-width: 115rem;
  min-height: 80px;
  position: relative;
}

.site-header__brand,
.site-header__cart,
.site-header__menu a,
.site-header__category,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-header__brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--vgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__logo {
  display: block;
  height: auto;
  max-width: 250px;
  width: auto;
}

.site-header__brand-mark {
  color: var(--vgs-gold);
  display: inline-flex;
  height: 24px;
  width: 24px;
}

.site-header__brand-mark svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 100%;
}

.site-header__nav {
  flex: 1;
}

.site-header__nav-panel {
  align-items: center;
  display: flex;
}

.site-header__menu {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu-item {
  align-items: center;
  display: flex;
  min-height: 80px;
}

.site-header__menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.site-header__menu a:hover,
.site-header__menu-item--shop:hover > .site-header__shop-link {
  color: var(--vgs-gold);
}

.site-header__menu-item--shop {
  position: relative;
}

.site-header__shop-link::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.site-header__shop-panel {
  background: var(--vgs-cream);
  border: 1px solid var(--vgs-border);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(45, 27, 46, 0.18);
  color: var(--vgs-ink);
  display: none;
  left: 50%;
  padding: 32px;
  position: absolute;
  top: 72px;
  transform: translateX(-35%);
  width: min(550px, calc(100vw - 48px));
  z-index: 20;
}

.site-header__menu-item--shop:hover .site-header__shop-panel,
.site-header__menu-item--shop:focus-within .site-header__shop-panel {
  display: block;
}

.site-header__shop-head {
  align-items: end;
  border-bottom: 1px solid var(--vgs-border);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.site-header__shop-head h2 {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 6px;
}

.site-header__shop-head p {
  color: rgba(43, 43, 43, 0.6);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.site-header__shop-head a {
  color: var(--vgs-gold);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
}

.site-header__shop-head a::after {
  content: " →";
}

.site-header__category-grid {
  display: grid;
  gap: 24px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-header__category {
  align-items: center;
  color: #2b2b2b;
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
}

.site-header__menu .site-header__category {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 500;
}

.site-header__category img {
  aspect-ratio: 1;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--vgs-border), 0 8px 18px rgba(45, 27, 46, 0.12);
  object-fit: cover;
  padding: 0;
  width: 56px;
}

.site-header__menu-item--artist > a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.site-header__menu-item--artist > a::before {
  color: var(--vgs-gold);
  content: "✣";
  font-size: 14px;
  line-height: 1;
}

.site-header__cart {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}

.site-header__cart-icon {
  color: #fff;
  display: inline-flex;
  height: 20px;
  width: 20px;
}

.site-header__cart-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 100%;
}

.site-header__cart-count {
  align-items: center;
  background: var(--vgs-gold);
  border-radius: 999px;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding-inline: 6px;
}

.site-header__toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.site-header__toggle-line {
  background: currentColor;
  display: block;
  height: 2px;
  width: 18px;
}

@media (min-width: 801px) {
  .home .site-header__menu > .site-header__menu-item:first-child > a {
    color: #fff;
  }
}

.home-hero {
  align-items: center;
  display: flex;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  position: relative;
  text-align: center;
}

.home-intro__inner {
  max-width: 1024px;
}

.home-hero__content {
  margin: 0 auto;
  max-width: 980px;
  padding: 96px 24px;
  position: relative;
  z-index: 2;
}

.home-hero__eyebrow {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-berry);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 32px;
  padding: 10px 20px;
  text-transform: uppercase;
}

.home-hero__title,
.home-intro__title,
.section-heading__title,
.gift-finder__title,
.home-final-cta__title {
  font-family: var(--vgs-font-heading);
  letter-spacing: 0;
}

.home-hero__title {
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}

.home-hero__title span {
  color: var(--vgs-berry);
  display: inline-block;
  font-style: italic;
  font-weight: 300;
}

.home-hero__copy {
  color: rgba(45, 27, 46, 0.68);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.6;
  margin: 32px auto 0;
  max-width: 720px;
}

.home-hero__image {
  border: 8px solid #fff;
  box-shadow: 0 24px 70px rgba(45, 27, 46, 0.18);
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.home-hero__image--left {
  aspect-ratio: 1;
  border-radius: 32px;
  left: 2vw;
  top: 20%;
  width: min(22vw, 288px);
}

.home-hero__image--right {
  aspect-ratio: 3 / 4;
  border-radius: 44px;
  bottom: -64px;
  right: 4vw;
  transform: rotate(6deg);
  width: min(30vw, 430px);
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  text-decoration: none;
}

.button--primary {
  background: var(--vgs-plum);
  color: #fff;
}

.button--outline {
  border: 2px solid var(--vgs-gold);
  color: var(--vgs-gold);
}

.button--large {
  min-height: 72px;
  padding-inline: 56px;
}

.home-hero__cta {
  margin-top: 44px;
}

.home-intro {
  background: #fff;
  padding-block: 128px;
}

.home-intro__title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.home-intro__title--accent {
  color: var(--vgs-berry);
  font-style: italic;
  font-weight: 300;
}

.home-intro__copy {
  color: rgba(45, 27, 46, 0.64);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.45;
  margin-top: 64px;
  max-width: 920px;
}

.home-products,
.home-artists,
.home-social,
.gift-finder,
.home-final-cta {
  padding-block: 120px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-heading__eyebrow {
  color: var(--vgs-gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-heading__title {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  margin: 0;
}

.section-heading__link {
  color: var(--vgs-plum);
  font-weight: 800;
  text-decoration-color: var(--vgs-gold);
  text-underline-offset: 6px;
}

.section-heading--dark {
  color: #fff;
}

.product-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.woocommerce ul.products li.product {
  list-style: none;
}

.product-card__image {
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.product-card__title {
  font-family: var(--vgs-font-heading);
  font-size: 36px;
  margin: 24px 0 0;
}

.home-product-grid {
  display: grid;
  gap: 48px 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-product-card {
  display: block;
}

.home-product-card--offset {
  margin-top: 128px;
}

.home-product-card__link {
  color: var(--vgs-plum);
  display: block;
  text-decoration: none;
}

.home-product-card__media {
  aspect-ratio: 4 / 5;
  background: var(--vgs-border);
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(45, 27, 46, 0.08);
  display: block;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-product-card__image {
  height: 120%;
  inset: -10% 0 auto;
  object-fit: cover;
  position: absolute;
  transition: transform 0.7s ease;
  width: 100%;
}

.home-product-card__wash {
  background: rgba(0, 0, 0, 0.1);
  inset: 0;
  position: absolute;
  transition: background 0.35s ease;
}

.home-product-card__body {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-right: 16px;
}

.home-product-card__title {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  transition: color 0.25s ease;
}

.home-product-card__arrow {
  align-items: center;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-plum);
  display: inline-flex;
  flex: 0 0 56px;
  font-size: 28px;
  height: 56px;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 56px;
}

.home-product-card:hover .home-product-card__media {
  box-shadow: 0 22px 48px rgba(45, 27, 46, 0.16);
  transform: translateY(-4px);
}

.home-product-card:hover .home-product-card__image {
  transform: scale(1.05);
}

.home-product-card:hover .home-product-card__wash {
  background: transparent;
}

.home-product-card:hover .home-product-card__title {
  color: var(--vgs-berry);
}

.home-product-card:hover .home-product-card__arrow {
  background: var(--vgs-berry);
  border-color: var(--vgs-berry);
  color: #fff;
  transform: rotate(-45deg);
}

.home-process {
  background: var(--vgs-plum);
  color: #fff;
  overflow: hidden;
  padding: 128px 24px;
  position: relative;
}

.home-process__texture {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  inset: 0;
  opacity: 0.03;
  position: absolute;
}

.home-process__inner {
  align-items: center;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-inline: auto;
  max-width: 96rem;
  position: relative;
  z-index: 1;
}

.home-process__media {
  min-height: 620px;
  position: relative;
}

.home-process__glow {
  background: linear-gradient(135deg, var(--vgs-berry), var(--vgs-gold));
  border-radius: 999px;
  filter: blur(120px);
  inset: 80px;
  opacity: 0.4;
  position: absolute;
}

.home-process__image {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.home-process__image img {
  height: 120%;
  inset: -10% 0 auto;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.home-process__image--primary {
  aspect-ratio: 3 / 4;
  border-radius: 48px;
  inset: 0 auto auto 0;
  width: min(74%, 480px);
  z-index: 1;
}

.home-process__image--secondary {
  aspect-ratio: 1;
  border: 6px solid var(--vgs-plum);
  border-radius: 32px;
  bottom: 0;
  right: 0;
  width: min(44%, 290px);
  z-index: 2;
}

.home-process__eyebrow {
  color: var(--vgs-gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.home-process__title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 32px;
}

.home-process__title span {
  color: var(--vgs-border);
  font-style: italic;
  font-weight: 300;
}

.home-process__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.62;
  margin: 0 0 48px;
}

.home-process__features {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-process-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 36px;
  transition: background 0.2s ease;
}

.home-process-feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-process-feature__icon {
  color: var(--vgs-gold);
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 20px;
}

.home-process-feature h3 {
  font-family: var(--vgs-font-body);
  font-size: clamp(20px, 2vw, 24px);
  margin: 0 0 12px;
}

.home-process-feature p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
  margin: 0;
}

.shop-archive {
  margin-inline: auto;
  max-width: 96rem;
  padding: 72px 24px 96px;
}

.shop-archive__hero {
  margin-bottom: 48px;
  max-width: 680px;
}

.shop-archive__title {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1.04;
  margin: 0 0 18px;
}

.shop-archive__copy {
  color: rgba(45, 27, 46, 0.64);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.shop-archive__copy p {
  margin: 0;
}

.category-hero {
  align-items: center;
  display: flex;
  min-height: 70vh;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
}

.category-hero__image {
  height: 100% !important;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.category-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  inset: 0;
  position: absolute;
}

.category-hero__inner {
  color: #fff;
  margin-inline: auto;
  max-width: 96rem;
  padding: 72px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.category-hero__eyebrow {
  color: var(--vgs-gold);
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.category-hero__title {
  font-family: var(--vgs-font-heading);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 1;
  margin: 0;
  max-width: 720px;
}

.category-hero__rule {
  background: var(--vgs-gold);
  display: block;
  height: 4px;
  margin: 28px 0 32px;
  width: 80px;
}

.category-hero__copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.72;
  margin: 0 0 40px;
  max-width: 720px;
}

.category-hero__button {
  background: #fff;
  color: var(--vgs-plum);
}

.shop-archive--category {
  padding-top: 88px;
}

.shop-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--vgs-border);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 24px;
}

.shop-toolbar__heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}

.shop-toolbar__heading h2 {
  font-family: var(--vgs-font-heading);
  font-size: 36px;
  line-height: 1.12;
  margin: 0;
}

.shop-toolbar__heading p {
  color: rgba(45, 27, 46, 0.6);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.shop-toolbar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-chip {
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 40px;
  padding: 9px 16px;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.shop-chip:hover,
.shop-chip--active {
  border-color: var(--vgs-gold);
  color: var(--vgs-gold);
}

.shop-toolbar__actions {
  flex: 0 0 auto;
}

.woocommerce .woocommerce-ordering.shop-sort {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  margin: 0;
  min-height: 40px;
  position: relative;
}

.shop-sort__label {
  align-items: center;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
}

.shop-sort__icon {
  color: var(--vgs-plum);
  height: 16px;
  width: 16px;
}

.woocommerce .woocommerce-ordering.shop-sort select {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  min-height: 40px;
  min-width: 148px;
  padding: 0 16px;
}

.woocommerce ul.products,
.shop-archive ul.products {
  display: grid;
  gap: 48px 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product.shop-product-card,
.shop-product-card {
  float: none;
  margin: 0;
  width: auto;
}

.shop-product-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.shop-product-card__media {
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(45, 27, 46, 0.08);
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.shop-product-card:hover .shop-product-card__media {
  box-shadow: 0 28px 70px rgba(45, 27, 46, 0.16);
  transform: translateY(-6px);
}

.shop-product-card__image,
.woocommerce ul.products li.product .shop-product-card__image {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.shop-product-card:hover .shop-product-card__image {
  transform: scale(1.05);
}

.shop-product-card__favorite {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 22px;
  height: 42px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: opacity 200ms ease;
  width: 42px;
}

.shop-product-card:hover .shop-product-card__favorite {
  opacity: 1;
}

.shop-product-card__meta {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.shop-product-card__category,
.shop-product-card__category a {
  color: var(--vgs-gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-product-card__title {
  color: var(--vgs-plum);
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 21px;
  line-height: 1.24;
}

.shop-product-card__price {
  color: var(--vgs-plum);
  flex: 0 0 auto;
  font-weight: 800;
}

.shop-product-card__actions {
  margin-top: 18px;
}

.woocommerce ul.products li.product .button,
.shop-product-card__actions .button {
  background: var(--vgs-plum);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 11px 18px;
}

.shop-archive__pagination {
  margin-top: 56px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-plum);
  min-width: 42px;
  padding: 10px 14px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--vgs-plum);
  border-color: var(--vgs-plum);
  color: #fff;
}

.shop-empty {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 28px;
  margin: 40px auto 0;
  max-width: 720px;
  padding: 56px;
  text-align: center;
}

.shop-empty__title {
  font-family: var(--vgs-font-heading);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.shop-empty__copy {
  color: rgba(45, 27, 46, 0.64);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 520px;
}

.single-product-detail {
  margin-inline: auto;
  max-width: 96rem;
  padding: 56px 24px 96px;
}

.product-breadcrumb {
  align-items: center;
  color: rgba(45, 27, 46, 0.46);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-hero {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  margin-bottom: 96px;
}

.product-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 92px minmax(0, 1fr);
}

.product-gallery__thumbs {
  display: grid;
  gap: 16px;
}

.product-gallery__thumb {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 12px;
  display: block;
  overflow: hidden;
}

.product-gallery__thumb--active {
  border-color: var(--vgs-gold);
  box-shadow: 0 0 0 2px var(--vgs-gold);
}

.product-gallery__thumb img,
.product-gallery__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-gallery__main {
  aspect-ratio: 1;
  background: rgba(229, 225, 218, 0.35);
  border-radius: 32px;
  box-shadow: 0 18px 45px rgba(45, 27, 46, 0.08);
  overflow: hidden;
  position: relative;
}

.product-gallery__heart {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(45, 27, 46, 0.12);
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 28px;
  height: 52px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 52px;
}

.product-summary__title {
  color: var(--vgs-berry);
  font-family: var(--vgs-font-heading);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.product-summary__rating {
  margin-bottom: 22px;
}

.product-summary__rating .woocommerce-product-rating {
  align-items: center;
  display: flex;
  gap: 16px;
  margin: 0;
}

.product-summary__excerpt {
  color: rgba(90, 42, 58, 0.72);
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 28px;
}

.product-summary__price {
  color: var(--vgs-berry);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 34px;
}

.product-summary__price del {
  color: rgba(45, 27, 46, 0.34);
  font-size: 20px;
  margin-left: 8px;
}

.product-summary__cart form.cart {
  display: grid;
  gap: 18px;
  margin: 0;
}

.product-summary__cart .quantity {
  align-items: center;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  width: 132px;
}

.product-summary__cart .qty {
  border: 0;
  font-weight: 900;
  text-align: center;
  width: 82px;
}

.product-summary__cart .single_add_to_cart_button {
  background: transparent;
  border: 2px solid var(--vgs-berry);
  border-radius: 999px;
  color: var(--vgs-berry);
  font-size: 18px;
  font-weight: 900;
  min-height: 58px;
}

.product-summary__cart .single_add_to_cart_button:hover {
  background: var(--vgs-berry);
  color: #fff;
}

.product-summary__buy-now {
  align-items: center;
  background: #a34343;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 900;
  justify-content: center;
  margin-top: 18px;
  min-height: 64px;
  text-decoration: none;
}

.product-trust {
  border-top: 1px solid var(--vgs-border);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0;
  padding-top: 32px;
}

.product-trust__item {
  color: var(--vgs-plum);
  display: grid;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  justify-items: center;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.product-trust__icon {
  align-items: center;
  background: rgba(229, 225, 218, 0.45);
  border-radius: 999px;
  color: var(--vgs-gold);
  display: inline-flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.product-summary__meta {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 20px;
  color: rgba(45, 27, 46, 0.65);
  padding: 20px;
}

.product-story {
  background: var(--vgs-plum);
  border-radius: 64px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  margin-bottom: 84px;
  min-height: 480px;
  overflow: hidden;
}

.product-story__content {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.product-story__content h2 {
  font-family: var(--vgs-font-heading);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.04;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.product-story__content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.75;
  margin: 0;
}

.product-story__media {
  padding: 32px;
}

.product-story__media img {
  border-radius: 48px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-reviews {
  margin-bottom: 84px;
}

.product-reviews #reviews {
  background: var(--vgs-berry);
  border-radius: 28px;
  color: #fff;
  padding: clamp(32px, 5vw, 56px);
}

.product-reviews #reviews h2,
.product-related h2 {
  font-family: var(--vgs-font-heading);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-top: 0;
}

.product-related {
  margin-top: 56px;
}

.gift-finder,
.home-final-cta {
  text-align: center;
}

.gift-finder__title,
.home-final-cta__title {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.08;
  margin: 0;
}

.gift-finder__copy {
  color: rgba(45, 27, 46, 0.64);
  font-size: 22px;
  font-weight: 500;
  margin: 20px auto 56px;
  max-width: 720px;
}

.gift-finder__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gift-finder__label {
  background: #fff;
  border: 2px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-plum);
  font-size: 18px;
  font-weight: 800;
  padding: 16px 28px;
  text-decoration: none;
}

.home-artists {
  background: var(--vgs-plum);
  color: #fff;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 96rem) / 2));
}

.artist-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  padding: 32px;
}

.artist-card--offset {
  margin-top: 56px;
}

.artist-card__link {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 28px;
  text-decoration: none;
}

.artist-card__image {
  aspect-ratio: 1;
  border: 4px solid var(--vgs-gold);
  border-radius: 999px;
  flex: 0 0 150px;
  object-fit: cover;
  width: 150px;
}

.artist-card__title {
  font-family: var(--vgs-font-heading);
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 8px;
}

.artist-card__role {
  color: var(--vgs-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.artist-card__copy {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0 0 20px;
}

.artist-card__cta {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-banner {
  align-items: center;
  background: #000;
  display: flex;
  min-height: 72vh;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.home-banner__image {
  height: 120%;
  inset: -10% 0 0;
  object-fit: cover;
  opacity: 0.52;
  position: absolute;
  width: 100%;
}

.home-banner__title {
  color: #fff;
  font-family: var(--vgs-font-heading);
  font-size: clamp(52px, 8vw, 110px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
  max-width: 980px;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.home-social {
  background: #fff;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 96rem) / 2));
}

.home-social__heading {
  margin-inline: auto;
  margin-bottom: 64px;
  max-width: 760px;
  text-align: center;
}

.home-social__title {
  font-family: var(--vgs-font-heading);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.08;
  margin: 0 0 22px;
}

.home-social__copy {
  color: rgba(45, 27, 46, 0.64);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.home-social__copy a {
  color: var(--vgs-plum);
  text-decoration-color: rgba(201, 165, 106, 0.45);
  text-underline-offset: 5px;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  aspect-ratio: 1;
  background: var(--vgs-cream);
  overflow: hidden;
  position: relative;
}

.review-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.review-card__overlay {
  align-items: center;
  background: rgba(45, 27, 46, 0.76);
  color: #fff;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 28px;
  position: absolute;
  text-align: center;
  transition: opacity 250ms ease;
}

.review-card:hover .review-card__image {
  transform: scale(1.08);
}

.review-card:hover .review-card__overlay {
  opacity: 1;
}

.review-card__quote {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 18px;
}

.review-card__handle {
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--vgs-border);
  padding-block: 64px 32px;
}

.site-footer__inner {
  display: grid;
  gap: 48px;
}

.site-footer__logo {
  align-items: center;
  color: var(--vgs-plum);
  display: inline-flex;
  font-family: var(--vgs-font-heading);
  font-size: 28px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.site-footer__mark {
  color: var(--vgs-gold);
}

.site-footer__menus {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer__heading {
  color: var(--vgs-plum);
  font-size: 18px;
  margin: 0 0 20px;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__bottom {
  border-top: 1px solid var(--vgs-border);
  color: rgba(45, 27, 46, 0.55);
  padding-top: 24px;
}

.cart-page {
  background: var(--vgs-cream);
  min-height: 70vh;
  padding: 48px 24px 72px;
}

.cart-page__shell {
  margin-inline: auto;
  max-width: 48rem;
}

.cart-page__header {
  align-items: center;
  border-bottom: 1px solid var(--vgs-border);
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.cart-page__title-group {
  align-items: center;
  display: flex;
  gap: 12px;
}

.cart-page__icon {
  color: var(--vgs-berry);
  display: inline-flex;
  height: 24px;
  width: 24px;
}

.cart-page__icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 100%;
}

.cart-page__title {
  color: var(--vgs-berry);
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  margin: 0;
}

.cart-page__close {
  align-items: center;
  border-radius: 999px;
  color: rgba(90, 42, 58, 0.62);
  display: inline-flex;
  font-size: 32px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
  width: 44px;
}

.cart-page__close:hover {
  background: rgba(229, 225, 218, 0.56);
  color: var(--vgs-berry);
}

.cart-page__form {
  padding-top: 32px;
}

.cart-page__items {
  display: grid;
  gap: 24px;
}

.cart-item {
  align-items: center;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(45, 27, 46, 0.06);
  display: grid;
  gap: 24px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 16px;
  position: relative;
}

.cart-item__remove {
  position: absolute;
  right: 16px;
  top: 14px;
}

.cart-item__remove .remove {
  align-items: center;
  border-radius: 999px;
  color: rgba(43, 43, 43, 0.45) !important;
  display: inline-flex;
  font-size: 26px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease;
  width: 28px;
}

.cart-item__remove .remove:hover {
  color: #b3333a !important;
}

.cart-item__media {
  aspect-ratio: 1;
  background: #f9f8f6;
  border-radius: 16px;
  overflow: hidden;
}

.cart-item__media a,
.cart-item__media img {
  display: block;
  height: 100%;
  width: 100%;
}

.cart-item__media img {
  object-fit: cover;
}

.cart-item__name {
  color: var(--vgs-berry);
  font-size: 22px;
  line-height: 1.18;
  margin: 0 40px 8px 0;
}

.cart-item__name a {
  color: inherit;
  text-decoration: none;
}

.cart-item__price {
  color: var(--vgs-berry);
  font-weight: 900;
  margin-bottom: 14px;
}

.cart-item__meta {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.cart-item__quantity .quantity {
  align-items: center;
  background: var(--vgs-cream);
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  display: inline-flex;
  min-height: 38px;
  padding-inline: 10px;
}

.cart-item__quantity .qty {
  background: transparent;
  border: 0;
  color: var(--vgs-ink);
  font-weight: 900;
  min-height: 34px;
  text-align: center;
  width: 64px;
}

.cart-item__subtotal {
  color: var(--vgs-berry);
  font-weight: 900;
}

.cart-page__actions {
  align-items: center;
  border-top: 1px solid var(--vgs-border);
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
}

.cart-page__coupon {
  display: flex;
  flex: 1;
  gap: 12px;
}

.cart-page__coupon .input-text {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 14px;
  color: var(--vgs-ink);
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
}

.cart-page__coupon-button,
.cart-page__update {
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 20px;
}

.cart-page__coupon-button {
  background: var(--vgs-border);
  color: var(--vgs-berry);
}

.cart-page__update {
  background: var(--vgs-berry);
  color: #fff;
}

.cart-summary {
  padding-top: 28px;
}

.cart-summary__title {
  color: var(--vgs-berry);
  font-size: 24px;
  margin: 0 0 18px;
}

.cart-summary__table {
  border: 0;
  border-collapse: collapse;
  color: var(--vgs-berry);
  width: 100%;
}

.cart-summary__table th,
.cart-summary__table td {
  border: 0;
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}

.cart-summary__table th {
  color: rgba(90, 42, 58, 0.7);
  font-family: var(--vgs-font-body);
  font-size: 18px;
  font-weight: 500;
}

.cart-summary__table td {
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.cart-summary__table .order-total th,
.cart-summary__table .order-total td {
  font-size: 28px;
  padding-top: 18px;
}

.cart-summary__table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-summary__note {
  color: rgba(90, 42, 58, 0.55);
  font-size: 14px;
  margin: 12px 0 28px;
}

.cart-summary__checkout .checkout-button,
.woocommerce .cart-summary__checkout .checkout-button.button,
.woocommerce .cart-summary__checkout .checkout-button.button.alt {
  align-items: center;
  background: var(--vgs-berry) !important;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(90, 42, 58, 0.22);
  color: #fff !important;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  justify-content: center;
  min-height: 64px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
  width: 100%;
}

.cart-summary__checkout .checkout-button:hover,
.woocommerce .cart-summary__checkout .checkout-button.button:hover,
.woocommerce .cart-summary__checkout .checkout-button.button.alt:hover {
  background: #4a2230 !important;
  transform: translateY(-1px);
}

.cart-summary__continue {
  color: var(--vgs-gold);
  display: block;
  font-weight: 900;
  margin-top: 24px;
  text-align: center;
  text-decoration: none;
}

.cart-summary__continue:hover {
  text-decoration: underline;
}

.cart-empty,
.return-to-shop {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

.return-to-shop .button {
  background: var(--vgs-berry);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  margin-top: 16px;
  padding: 14px 28px;
  text-decoration: none;
}

.cart-modal-is-open {
  overflow: hidden;
}

.cart-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 1000;
}

.cart-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal__overlay {
  background: rgba(45, 27, 46, 0.46);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.cart-modal__panel {
  background: var(--vgs-cream);
  box-shadow: -24px 0 70px rgba(45, 27, 46, 0.26);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: min(440px, calc(100vw - 24px));
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 220ms ease;
  width: 100%;
}

.cart-modal--open .cart-modal__panel {
  transform: translateX(0);
}

.cart-modal__header {
  align-items: center;
  border-bottom: 1px solid var(--vgs-border);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 24px;
}

.cart-modal__eyebrow {
  color: var(--vgs-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.cart-modal__title {
  color: var(--vgs-berry);
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.cart-modal__count {
  align-items: center;
  background: var(--vgs-gold);
  border-radius: 999px;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  min-width: 28px;
  padding-inline: 8px;
}

.cart-modal__close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(90, 42, 58, 0.62);
  cursor: pointer;
  display: inline-flex;
  font-size: 34px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  width: 40px;
}

.cart-modal__close:hover {
  background: rgba(229, 225, 218, 0.56);
  color: var(--vgs-berry);
}

.cart-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 28px;
}

.cart-modal__body .woocommerce-mini-cart {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-modal__body .woocommerce-mini-cart-item {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(45, 27, 46, 0.06);
  min-height: 104px;
  padding: 14px;
  position: relative;
}

.cart-modal__body .woocommerce-mini-cart-item a:not(.remove) {
  color: var(--vgs-berry);
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.18;
  min-height: 74px;
  padding-left: 90px;
  padding-right: 32px;
  text-decoration: none;
}

.cart-modal__body .woocommerce-mini-cart-item img {
  border-radius: 14px;
  height: 76px;
  left: 14px;
  object-fit: cover;
  position: absolute;
  top: 14px;
  width: 76px;
}

.cart-modal__body .woocommerce-mini-cart-item .remove {
  align-items: center;
  border-radius: 999px;
  color: #b3333a !important;
  display: inline-flex;
  font-size: 24px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 12px;
  text-decoration: none;
  top: 10px;
  width: 28px;
}

.cart-modal__body .quantity {
  color: var(--vgs-berry);
  display: block;
  font-weight: 900;
  margin-left: 90px;
  margin-top: 8px;
}

.cart-modal__body .woocommerce-mini-cart__total {
  align-items: center;
  border-top: 1px solid var(--vgs-border);
  color: var(--vgs-berry);
  display: flex;
  font-size: 22px;
  justify-content: space-between;
  margin: 24px 0 18px;
  padding-top: 20px;
}

.cart-modal__body .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 12px;
  margin: 0;
}

.cart-modal__body .woocommerce-mini-cart__buttons .button {
  align-items: center;
  border-radius: 999px;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  text-decoration: none;
}

.cart-modal__body .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: var(--vgs-border);
  color: var(--vgs-berry);
}

.cart-modal__body .woocommerce-mini-cart__buttons .checkout {
  background: var(--vgs-berry);
  color: #fff;
}

.cart-modal__body .woocommerce-mini-cart__empty-message {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 20px;
  color: rgba(90, 42, 58, 0.72);
  margin: 0;
  padding: 24px;
  text-align: center;
}

.checkout-page {
  background: var(--vgs-cream);
  color: var(--vgs-ink);
  padding: 48px 24px 84px;
}

.checkout-page__inner {
  margin-inline: auto;
  max-width: 72rem;
}

.checkout-page__heading {
  margin-bottom: 30px;
}

.checkout-page__eyebrow {
  color: var(--vgs-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.checkout-page__title {
  color: var(--vgs-berry);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  margin: 0;
}

.checkout-page__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
}

.checkout-page__details {
  display: grid;
  gap: 28px;
}

.checkout-panel {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(45, 27, 46, 0.06);
  padding: 30px;
}

.checkout-panel__section + .checkout-panel__section {
  border-top: 1px solid var(--vgs-border);
  margin-top: 30px;
  padding-top: 30px;
}

.checkout-panel h3,
.checkout-panel h2,
.checkout-panel .woocommerce-billing-fields > h3,
.checkout-panel .woocommerce-shipping-fields > h3,
.checkout-panel .woocommerce-additional-fields > h3 {
  color: var(--vgs-berry);
  font-family: var(--vgs-font-heading);
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 22px;
}

.checkout-panel__intro p {
  color: rgba(90, 42, 58, 0.62);
  margin: -12px 0 22px;
}

.woocommerce .checkout-page form.checkout .form-row,
.checkout-page .form-row {
  margin: 0 0 22px;
  padding: 0;
}

.woocommerce .checkout-page form.checkout .form-row label,
.checkout-page .form-row label {
  color: rgba(90, 42, 58, 0.82);
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
}

.woocommerce .checkout-page form.checkout .form-row .required,
.checkout-page .required {
  color: var(--vgs-gold);
  visibility: visible;
}

.woocommerce .checkout-page form.checkout .form-row input.input-text,
.woocommerce .checkout-page form.checkout .form-row textarea,
.woocommerce .checkout-page form.checkout .form-row select,
.woocommerce .checkout-page form.checkout .form-row .select2-container .select2-selection,
.checkout-page input.input-text,
.checkout-page textarea,
.checkout-page select,
.checkout-page .select2-container .select2-selection--single {
  background-color: #f9f8f6;
  border: 1px solid var(--vgs-border);
  border-radius: 18px;
  box-shadow: none;
  color: var(--vgs-ink);
  font-size: 17px;
  line-height: 1.35;
  min-height: 58px;
  padding: 14px 16px;
  width: 100%;
}

.woocommerce .checkout-page form.checkout .form-row textarea,
.checkout-page textarea {
  min-height: 120px;
}

.woocommerce .checkout-page form.checkout .form-row .select2-container .select2-selection--single,
.checkout-page .select2-container .select2-selection--single {
  align-items: center;
  display: flex;
}

.woocommerce .checkout-page form.checkout .form-row .select2-container--default .select2-selection--single .select2-selection__rendered,
.checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--vgs-ink);
  line-height: 1.4;
  padding-left: 0;
}

.woocommerce .checkout-page form.checkout .form-row input.input-text:focus,
.woocommerce .checkout-page form.checkout .form-row textarea:focus,
.woocommerce .checkout-page form.checkout .form-row select:focus,
.woocommerce .checkout-page form.checkout .form-row .select2-container--open .select2-selection,
.checkout-page input.input-text:focus,
.checkout-page textarea:focus,
.checkout-page select:focus {
  border-color: var(--vgs-gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.18);
  outline: 0;
}

.woocommerce .checkout-page form.checkout .form-row.woocommerce-invalid label,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-validated label {
  color: rgba(90, 42, 58, 0.82);
}

.woocommerce .checkout-page form.checkout .form-row.woocommerce-invalid input.input-text,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-invalid textarea,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-invalid select,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--vgs-gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.18);
}

.woocommerce .checkout-page form.checkout .form-row.woocommerce-validated input.input-text,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-validated textarea,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-validated select,
.woocommerce .checkout-page form.checkout .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--vgs-border);
}

.woocommerce .checkout-page form.checkout .form-row .input-checkbox {
  accent-color: var(--vgs-berry);
  height: 18px;
  margin: 0 10px 0 0;
  width: 18px;
}

.checkout-page .woocommerce-form-login,
.checkout-page .checkout_coupon,
.checkout-page .woocommerce-info,
.checkout-page .woocommerce-error,
.checkout-page .woocommerce-message {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 18px;
  color: var(--vgs-berry);
  margin: 0 auto 20px;
  max-width: 96rem;
  padding: 18px 20px;
}

.checkout-page .checkout_coupon {
  display: flex;
  gap: 12px;
}

.checkout-page .checkout_coupon .form-row {
  flex: 1;
  margin: 0;
}

.checkout-page .button,
.checkout-page button.button,
.checkout-page #place_order {
  background: var(--vgs-berry) !important;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  padding: 14px 24px;
  text-decoration: none;
}

.checkout-page .checkout_coupon .button {
  background: var(--vgs-gold) !important;
  border-radius: 14px;
}

.checkout-page #payment {
  background: transparent;
}

.checkout-page #payment ul.payment_methods {
  background: #f9f8f6;
  border: 1px solid var(--vgs-border);
  border-radius: 16px;
  list-style: none;
  margin: 0 0 20px;
  padding: 18px;
}

.checkout-page #payment div.payment_box {
  background: #fff;
  border-radius: 14px;
  color: rgba(90, 42, 58, 0.72);
  margin: 14px 0 0;
  padding: 16px;
}

.checkout-page .place-order {
  margin-bottom: 0;
}

.checkout-page #place_order {
  box-shadow: 0 18px 36px rgba(90, 42, 58, 0.22);
  font-size: 19px;
  min-height: 64px;
  width: 100%;
}

.checkout-summary {
  align-self: start;
  background: var(--vgs-berry);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(45, 27, 46, 0.2);
  color: #fff;
  padding: 30px;
  position: sticky;
  top: 104px;
}

.checkout-summary__title {
  color: #fff;
  font-size: 32px;
  margin: 0 0 28px;
}

.checkout-summary__items {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.checkout-summary__item {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.checkout-summary__media {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
}

.checkout-summary__media img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.checkout-summary__qty {
  align-items: center;
  background: var(--vgs-gold);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding-inline: 6px;
  position: absolute;
  right: -8px;
  top: -8px;
}

.checkout-summary__product h3 {
  color: #fff;
  font-family: var(--vgs-font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 4px;
}

.checkout-summary__product .variation {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

.checkout-summary__line-total {
  font-weight: 900;
  white-space: nowrap;
}

.checkout-summary__coupon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 28px 0 0;
  padding: 24px 0;
}

.checkout-summary__coupon-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  min-height: 58px;
  padding: 14px 16px;
  width: 100%;
}

.checkout-summary__coupon-input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.checkout-summary__coupon-input:focus {
  border-color: var(--vgs-gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.18);
  outline: 0;
}

.checkout-summary__coupon-button {
  background: var(--vgs-gold);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  min-height: 58px;
  padding: 14px 28px;
}

.checkout-summary__coupon-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.checkout-summary__coupon-message {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  grid-column: 1 / -1;
  min-height: 0;
}

.checkout-summary__coupon-message--error {
  color: #ffd8d8;
}

.checkout-summary__coupon-message--success {
  color: #f4dfab;
}

.checkout-summary__table {
  border-collapse: collapse;
  border-top: 0;
  color: rgba(255, 255, 255, 0.82);
  width: 100%;
}

.checkout-summary__table th,
.checkout-summary__table td {
  border: 0;
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

.checkout-summary__table td {
  color: #fff;
  font-weight: 900;
  text-align: right;
}

.checkout-summary__table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-summary__table .order-total th,
.checkout-summary__table .order-total td {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--vgs-gold);
  font-size: 30px;
  padding-top: 22px;
}

.checkout-summary__trust {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
}

.checkout-summary__trust-icon {
  align-items: center;
  border: 1px solid var(--vgs-gold);
  border-radius: 999px;
  color: var(--vgs-gold);
  display: inline-flex;
  flex: 0 0 26px;
  font-weight: 900;
  height: 26px;
  justify-content: center;
}

.checkout-summary__trust p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.thankyou-page {
  align-items: center;
  background: var(--vgs-cream);
  display: flex;
  justify-content: center;
  min-height: 72vh;
  padding: 64px 24px 84px;
}

.thankyou-page__card {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 48px;
  box-shadow: 0 24px 70px rgba(45, 27, 46, 0.14);
  max-width: 36rem;
  padding: 56px;
  text-align: center;
  width: 100%;
}

.thankyou-page__icon {
  align-items: center;
  background: #e5f3ec;
  border-radius: 999px;
  color: #2e8b57;
  display: inline-flex;
  height: 96px;
  justify-content: center;
  margin-bottom: 28px;
  width: 96px;
}

.thankyou-page__icon--failed {
  background: #fff1f1;
  color: #b3333a;
  font-size: 42px;
  font-weight: 900;
}

.thankyou-page__icon svg {
  fill: none;
  height: 52px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 52px;
}

.thankyou-page__title {
  color: var(--vgs-berry);
  font-size: clamp(42px, 6vw, 58px);
  line-height: 1;
  margin: 0 0 14px;
}

.thankyou-page__message {
  color: rgba(90, 42, 58, 0.72);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 30px;
}

.thankyou-page__order-number {
  align-items: center;
  background: #f9f8f6;
  border: 1px solid var(--vgs-border);
  border-radius: 22px;
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 28px;
  padding: 20px 24px;
  text-align: left;
}

.thankyou-page__package {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(45, 27, 46, 0.08);
  color: var(--vgs-gold);
  display: inline-flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.thankyou-page__package svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 32px;
}

.thankyou-page__label {
  color: rgba(90, 42, 58, 0.62);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.thankyou-page__order-number strong {
  color: var(--vgs-berry);
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 28px;
  line-height: 1;
}

.thankyou-page__details {
  border: 1px solid var(--vgs-border);
  border-radius: 20px;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}

.thankyou-page__details li {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 18px;
}

.thankyou-page__details li + li {
  border-top: 1px solid var(--vgs-border);
}

.thankyou-page__details span {
  color: rgba(90, 42, 58, 0.62);
  font-weight: 800;
}

.thankyou-page__details strong {
  color: var(--vgs-berry);
  text-align: right;
}

.thankyou-page__note {
  color: rgba(90, 42, 58, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 30px;
}

.thankyou-page__actions {
  display: grid;
  gap: 12px;
}

.thankyou-page__button {
  align-items: center;
  background: var(--vgs-berry);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(90, 42, 58, 0.2);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
  width: 100%;
}

.thankyou-page__button:hover {
  background: #4a2230;
  color: #fff;
  transform: translateY(-1px);
}

.thankyou-page__button--secondary {
  background: var(--vgs-border);
  box-shadow: none;
  color: var(--vgs-berry);
}

.thankyou-page__button--secondary:hover {
  background: #d8d1c7;
  color: var(--vgs-berry);
}

.blog-hero {
  background: var(--vgs-plum);
  color: #fff;
  overflow: hidden;
  padding: 112px 24px 96px;
  position: relative;
  text-align: center;
}

.blog-hero__texture {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  inset: 0;
  opacity: 0.03;
  position: absolute;
}

.blog-hero__inner {
  margin-inline: auto;
  max-width: 48rem;
  position: relative;
  z-index: 1;
}

.blog-hero__title {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 24px;
}

.blog-hero__title span {
  color: var(--vgs-border);
  display: inline-block;
  font-style: italic;
  font-weight: 300;
}

.blog-hero__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.blog-archive {
  margin-inline: auto;
  max-width: 96rem;
  padding: 80px 24px 112px;
}

.blog-empty {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 32px;
  box-shadow: 0 12px 32px rgba(45, 27, 46, 0.08);
  margin-inline: auto;
  max-width: 48rem;
  padding: 48px;
  text-align: center;
}

.blog-empty h2 {
  color: var(--vgs-plum);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
}

.blog-empty p {
  color: rgba(45, 27, 46, 0.62);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.blog-section-label {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.blog-section-label span {
  background: var(--vgs-gold);
  height: 1px;
  width: 32px;
}

.blog-section-label h2 {
  color: var(--vgs-gold);
  font-family: var(--vgs-font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.blog-featured {
  margin-bottom: 112px;
}

.blog-featured__card {
  background: var(--vgs-border);
  border-radius: 48px;
  box-shadow: 0 20px 50px rgba(45, 27, 46, 0.14);
  color: #fff;
  display: block;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.blog-featured__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 1s ease;
  width: 100%;
}

.blog-featured__card:hover .blog-featured__image {
  transform: scale(1.05);
}

.blog-featured__overlay {
  background: linear-gradient(to top, rgba(45, 27, 46, 0.92), rgba(45, 27, 46, 0.38), rgba(45, 27, 46, 0.04));
  inset: 0;
  position: absolute;
}

.blog-featured__content {
  bottom: 0;
  left: 0;
  max-width: 58rem;
  padding: 64px;
  position: absolute;
  z-index: 1;
}

.blog-featured__category {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.blog-featured h3 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 24px;
}

.blog-featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 28px;
}

.blog-featured__arrow {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  bottom: 64px;
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 32px;
  height: 80px;
  justify-content: center;
  position: absolute;
  right: 64px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 80px;
  z-index: 1;
}

.blog-featured__card:hover .blog-featured__arrow {
  background: var(--vgs-gold);
  color: #fff;
  transform: rotate(-45deg) scale(1.08);
}

.blog-meta,
.blog-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  gap: 56px 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  aspect-ratio: 4 / 3;
  background: var(--vgs-border);
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(45, 27, 46, 0.08);
  display: block;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.blog-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__media span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--vgs-plum);
  font-size: 12px;
  font-weight: 800;
  left: 24px;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  position: absolute;
  text-transform: uppercase;
  top: 24px;
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card__meta {
  color: rgba(90, 42, 58, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
}

.blog-card h3 a {
  color: var(--vgs-plum);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--vgs-berry);
}

.blog-card p {
  color: rgba(45, 27, 46, 0.62);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 24px;
}

.blog-card__link {
  color: var(--vgs-berry);
  font-weight: 800;
  margin-top: auto;
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--vgs-gold);
}

.blog-pagination {
  margin-top: 64px;
  text-align: center;
}

.blog-cta {
  background: #fff;
  border-top: 1px solid var(--vgs-border);
  padding: 96px 24px;
  text-align: center;
}

.blog-cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 32px;
}

.blog-cta span {
  color: var(--vgs-berry);
  font-style: italic;
  font-weight: 300;
}

.blog-single {
  padding-top: 72px;
}

.blog-single__header {
  margin: 0 auto 48px;
  max-width: 64rem;
  padding: 0 24px;
}

.blog-single__back {
  color: var(--vgs-berry);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-single__back:hover {
  color: var(--vgs-gold);
}

.blog-single__category {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(45, 27, 46, 0.06);
  color: var(--vgs-berry);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.blog-single__title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 32px;
}

.blog-single__meta {
  align-items: center;
  color: rgba(45, 27, 46, 0.62);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-single__author-mini {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.blog-single__author-mini img {
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.blog-single__author-mini span {
  display: grid;
  gap: 4px;
}

.blog-single__author-mini strong {
  color: var(--vgs-plum);
  font-size: 13px;
}

.blog-single__author-mini small {
  color: rgba(45, 27, 46, 0.42);
  font-size: 10px;
}

.blog-single__hero {
  background: var(--vgs-plum);
  height: min(70vh, 720px);
  margin: 0 0 88px;
  overflow: hidden;
  position: relative;
}

.blog-single__hero img {
  height: 140%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: -20%;
  width: 100%;
}

.blog-single__shell {
  display: grid;
  gap: 48px;
  grid-template-columns: 80px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 58rem;
  padding: 0 24px;
}

.blog-single__share {
  align-items: center;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 112px;
}

.blog-single__share span {
  color: rgba(45, 27, 46, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-single__share a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: rgba(45, 27, 46, 0.62);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 40px;
}

.blog-single__share a:hover {
  background: var(--vgs-berry);
  border-color: var(--vgs-berry);
  color: #fff;
}

.blog-single__content {
  color: rgba(45, 27, 46, 0.72);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 300;
  line-height: 1.78;
}

.blog-single__content > *:first-child {
  margin-top: 0;
}

.blog-single__content p,
.blog-single__content li {
  margin-bottom: 24px;
}

.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4 {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-weight: 500;
  line-height: 1.2;
  margin: 48px 0 24px;
}

.blog-single__content h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.blog-single__content a {
  color: var(--vgs-gold);
  text-decoration: none;
}

.blog-single__content a:hover {
  text-decoration: underline;
}

.blog-single__content ul,
.blog-single__content ol {
  padding-left: 1.25em;
}

.blog-single__content blockquote,
.blog-single__content .wp-block-quote {
  background: #fff;
  border-left: 4px solid var(--vgs-gold);
  border-radius: 0 20px 20px 0;
  color: var(--vgs-berry);
  font-family: var(--vgs-font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  line-height: 1.45;
  margin: 48px 0;
  padding: 28px 32px;
}

.blog-single__empty {
  background: #fff;
  border: 1px dashed var(--vgs-border);
  border-radius: 20px;
  color: rgba(45, 27, 46, 0.58);
  font-size: 18px;
  padding: 24px;
}

.blog-single__content figure {
  margin: 48px 0;
}

.blog-single__content figure img,
.blog-single__content > p img,
.blog-single__content .wp-block-image img {
  border-radius: 32px;
  box-shadow: 0 18px 38px rgba(45, 27, 46, 0.12);
  height: auto;
  max-width: 100%;
}

.blog-single__content figcaption {
  color: rgba(45, 27, 46, 0.5);
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
  text-align: center;
}

.blog-single__pages {
  margin-top: 32px;
}

.blog-author {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--vgs-border);
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(45, 27, 46, 0.08);
  display: flex;
  gap: 24px;
  margin-top: 72px;
  padding: 32px;
}

.blog-author img {
  border: 2px solid var(--vgs-border);
  border-radius: 999px;
  height: 96px;
  object-fit: cover;
  width: 96px;
}

.blog-author h2 {
  color: var(--vgs-berry);
  font-family: var(--vgs-font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.blog-author h3 {
  color: var(--vgs-plum);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
}

.blog-author p {
  color: rgba(45, 27, 46, 0.62);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.blog-related {
  background: #fff;
  border-top: 1px solid var(--vgs-border);
  margin-top: 96px;
  padding: 96px 24px;
}

.blog-related__inner {
  margin-inline: auto;
  max-width: 64rem;
}

.blog-related h2 {
  color: var(--vgs-plum);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  margin: 0 0 48px;
  text-align: center;
}

.blog-related__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-related-card {
  align-items: center;
  background: var(--vgs-cream);
  border: 1px solid var(--vgs-border);
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(45, 27, 46, 0.06);
  color: var(--vgs-plum);
  display: grid;
  gap: 18px;
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-related-card:hover {
  border-color: var(--vgs-gold);
  box-shadow: 0 14px 28px rgba(45, 27, 46, 0.1);
}

.blog-related-card img {
  aspect-ratio: 1;
  border-radius: 20px;
  grid-row: span 2;
  object-fit: cover;
  width: 100%;
}

.blog-related-card span {
  color: rgba(90, 42, 58, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-related-card h3 {
  align-self: start;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 800px) {
  .blog-hero {
    padding-block: 84px 72px;
  }

  .blog-archive {
    padding-block: 56px 80px;
  }

  .blog-featured {
    margin-bottom: 72px;
  }

  .blog-featured__card {
    border-radius: 32px;
    min-height: 560px;
  }

  .blog-featured__content {
    padding: 32px;
  }

  .blog-featured__arrow {
    display: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-single {
    padding-top: 48px;
  }

  .blog-single__hero {
    height: 50vh;
    margin-bottom: 56px;
  }

  .blog-single__shell {
    display: block;
  }

  .blog-single__share {
    flex-direction: row;
    margin-bottom: 40px;
    position: static;
  }

  .blog-single__share span {
    display: none;
  }

  .blog-author {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-product-grid {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .home-product-card--offset {
    margin-top: 0;
  }

  .home-product-card__media {
    border-radius: 32px;
  }

  .home-product-card__body {
    padding-right: 0;
  }

  .home-product-card__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .home-product-card__arrow {
    flex-basis: 52px;
    height: 52px;
    width: 52px;
  }

  .home-process {
    padding-block: 96px;
  }

  .home-process__inner {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .home-process__media {
    min-height: 520px;
    order: 2;
  }

  .home-process__content {
    order: 1;
  }

  .home-process__features {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    min-height: 80px;
    padding-inline: 18px;
  }

  .site-header__brand {
    flex: 1;
    font-size: 20px;
    gap: 12px;
    min-width: 0;
  }

  .site-header__logo {
    max-width: min(250px, 58vw);
  }

  .site-header__brand-mark {
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
  }

  .site-header__toggle {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    order: 3;
    position: relative;
    width: 40px;
    z-index: 1002;
  }

  .site-header__toggle-line {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 10px;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 18px;
  }

  .site-header__toggle-line:nth-child(1) {
    transform: translateY(-6px);
  }

  .site-header__toggle-line:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header--open .site-header__toggle-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header--open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header--open .site-header__toggle-line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header__cart {
    flex: 0 0 40px;
    font-size: 0;
    gap: 0;
    order: 2;
    padding: 0;
    position: relative;
  }

  .site-header__cart-icon {
    height: 24px;
    width: 24px;
  }

  .site-header__cart-count {
    align-items: center;
    background: var(--vgs-gold);
    border-radius: 999px;
    color: var(--vgs-plum);
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    height: 18px;
    justify-content: center;
    min-width: 18px;
    padding: 0 5px;
    position: absolute;
    right: -4px;
    top: -5px;
  }

  .site-header__nav {
    flex: 0 0 auto;
    order: 4;
  }

  .site-header--open::before {
    background: rgba(0, 0, 0, 0.58);
    content: "";
    inset: 0;
    position: fixed;
    z-index: 999;
  }

  .site-header__nav-panel {
    background: #fff;
    border: 0;
    box-shadow: 22px 0 70px rgba(45, 27, 46, 0.28);
    color: var(--vgs-plum);
    display: none;
    height: 100vh;
    left: 0;
    margin-inline: 0;
    overflow-y: auto;
    padding: 88px 48px 56px;
    position: fixed;
    top: 0;
    width: min(82vw, 430px);
    z-index: 1001;
  }

  .site-header--open .site-header__nav-panel {
    display: block;
  }

  .site-header__menu {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    justify-content: flex-start;
  }

  .site-header__menu-item {
    align-items: stretch;
    display: block;
    min-height: 0;
  }

  .site-header__menu a {
    color: var(--vgs-plum);
    font-size: 30px;
    font-weight: 800;
  }

  .site-header__menu-item--shop > .site-header__shop-link {
    display: none;
  }

  .site-header__shop-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--vgs-plum);
    display: block;
    margin-top: 0;
    padding: 0;
    position: static;
    transform: none;
    width: 100%;
  }

  .site-header__shop-head {
    align-items: flex-start;
    border: 0;
    flex-direction: column;
    margin: 0 0 28px;
    padding: 0;
  }

  .site-header__shop-head h2,
  .site-header__category {
    color: var(--vgs-plum);
  }

  .site-header__shop-head h2 {
    font-size: 30px;
  }

  .site-header__shop-head p,
  .site-header__shop-head a {
    display: none;
  }

  .site-header__category-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .site-header__category {
    color: rgba(45, 27, 46, 0.72);
    font-size: 28px;
    font-weight: 700;
    gap: 28px;
  }

  .site-header__category img {
    flex: 0 0 74px;
    width: 74px;
  }

  .site-header__menu .site-header__menu-item--artist > a {
    border-color: var(--vgs-border);
    color: var(--vgs-plum);
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    margin-top: 4px;
    width: fit-content;
  }

  .home-hero__image {
    opacity: 0.28;
  }

  .home-hero__image--left {
    left: -64px;
    width: 190px;
  }

  .home-hero__image--right {
    right: -80px;
    width: 240px;
  }

  .artist-grid,
  .product-grid,
  .review-grid,
  .woocommerce ul.products,
  .shop-archive ul.products,
  .site-footer__menus {
    grid-template-columns: 1fr;
  }

  .shop-archive {
    padding-top: 48px;
  }

  .category-hero {
    min-height: 68vh;
    padding-top: 72px;
  }

  .category-hero__overlay {
    background: rgba(0, 0, 0, 0.62);
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-toolbar__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .shop-toolbar__actions,
  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .shop-empty {
    padding: 36px 24px;
  }

  .single-product-detail {
    padding-top: 36px;
  }

  .product-hero,
  .product-story {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .product-gallery__thumb {
    flex: 0 0 76px;
  }

  .product-trust {
    grid-template-columns: 1fr;
  }

  .product-story {
    border-radius: 36px;
  }

  .product-story__media {
    min-height: 320px;
  }

  .cart-page {
    padding: 32px 16px 56px;
  }

  .cart-item {
    align-items: flex-start;
    gap: 16px;
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .cart-item__name {
    font-size: 19px;
  }

  .cart-item__meta,
  .cart-page__actions,
  .cart-page__coupon {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item__subtotal {
    font-size: 15px;
  }

  .cart-page__coupon .input-text,
  .cart-page__coupon-button,
  .cart-page__update {
    width: 100%;
  }

  .cart-summary__table th,
  .cart-summary__table td {
    display: block;
    text-align: left;
    width: 100%;
  }

  .cart-summary__table td {
    padding-top: 0;
  }

  .cart-modal__panel {
    max-width: 100vw;
  }

  .cart-modal__header {
    padding: 20px;
  }

  .cart-modal__body {
    padding: 18px 20px 24px;
  }

  .checkout-page {
    padding: 34px 16px 60px;
  }

  .checkout-page__grid {
    grid-template-columns: 1fr;
  }

  .checkout-panel,
  .checkout-summary {
    border-radius: 22px;
    padding: 22px;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-summary__item {
    align-items: center;
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .checkout-summary__line-total {
    font-size: 14px;
    grid-column: auto;
  }

  .checkout-summary__coupon {
    grid-template-columns: 1fr;
  }

  .checkout-summary__coupon-button {
    width: 100%;
  }

  .checkout-page .checkout_coupon {
    flex-direction: column;
  }

  .thankyou-page {
    padding: 42px 16px 64px;
  }

  .thankyou-page__card {
    border-radius: 34px;
    padding: 36px 24px;
  }

  .thankyou-page__order-number {
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .thankyou-page__details li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .thankyou-page__details strong {
    text-align: left;
  }

  .artist-card--offset {
    margin-top: 0;
  }

  .artist-card__link {
    align-items: flex-start;
    flex-direction: column;
  }

  .artist-card__image {
    flex-basis: auto;
  }
}

@media (max-width: 520px) {
  .blog-featured__content {
    padding: 24px;
  }

  .blog-card__media {
    border-radius: 24px;
  }

  .blog-single__title {
    font-size: 40px;
  }

  .blog-single__header,
  .blog-single__shell {
    padding-inline: 20px;
  }

  .blog-single__content blockquote {
    padding: 24px;
  }

  .blog-related-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .site-header__inner {
    gap: 12px;
    min-height: 80px;
    padding-inline: 14px;
  }

  .site-header__brand-mark {
    flex-basis: 24px;
    height: 24px;
    width: 24px;
  }

  .site-header__cart,
  .site-header__toggle {
    flex-basis: 40px;
    height: 38px;
    width: 34px;
  }

  .site-header__cart-icon {
    height: 24px;
    width: 24px;
  }

  .site-header__toggle-line {
    height: 2px;
    width: 18px;
  }

  .site-header__nav-panel {
    padding: 88px 28px 44px;
    width: min(92vw, 380px);
  }

  .site-header__menu a,
  .site-header__shop-head h2 {
    font-size: 30px;
  }

  .site-header__menu .site-header__category {
    box-sizing: border-box;
    color: rgba(45, 27, 46, 0.72);
    font-size: 26px;
    font-weight: 700;
    gap: 20px;
    max-width: 100%;
    white-space: nowrap;
  }

  .site-header__menu .site-header__menu-item--artist > a {
    font-size: 12px;
    font-weight: 700;
  }

  .site-header__category img {
    flex-basis: 64px;
    width: 64px;
  }
}

.artists-hero {
  background: var(--vgs-plum);
  color: #fff;
  overflow: hidden;
  padding: 128px 24px 96px;
  position: relative;
  text-align: center;
}

.artists-hero__texture {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  inset: 0;
  opacity: 0.03;
  position: absolute;
}

.artists-hero__inner {
  margin-inline: auto;
  max-width: 48rem;
  position: relative;
  z-index: 1;
}

.artists-hero h1 {
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 24px;
}

.artists-hero h1 span {
  color: var(--vgs-border);
  font-style: italic;
  font-weight: 300;
}

.artists-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.artists-archive {
  margin-inline: auto;
  max-width: 96rem;
  padding: 96px 24px 128px;
}

.artists-grid {
  display: grid;
  gap: 40px 64px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-profile-card {
  display: block;
}

.artist-profile-card__link {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(45, 27, 46, 0.06);
  color: var(--vgs-plum);
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.artist-profile-card__cover {
  background: var(--vgs-border);
  display: block;
  height: clamp(190px, 18vw, 260px);
  overflow: hidden;
  position: relative;
}

.artist-profile-card__cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.artist-profile-card__cover span {
  background: rgba(0, 0, 0, 0.2);
  inset: 0;
  position: absolute;
  transition: background 0.25s ease;
}

.artist-profile-card__body {
  display: block;
  padding: 40px;
  position: relative;
}

.artist-profile-card__portrait {
  aspect-ratio: 1;
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(45, 27, 46, 0.14);
  left: 40px;
  object-fit: cover;
  position: absolute;
  top: -52px;
  width: 96px;
}

.artist-profile-card__head {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 44px;
}

.artist-profile-card__head strong {
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.artist-profile-card__head em {
  color: var(--vgs-gold);
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-profile-card__arrow {
  align-items: center;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 24px;
  height: 48px;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 48px;
}

.artist-profile-card__bio {
  color: rgba(45, 27, 46, 0.62);
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  margin: 22px 0;
}

.artist-profile-card__instagram {
  align-items: center;
  color: var(--vgs-berry);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.artist-profile-card:hover .artist-profile-card__link {
  box-shadow: 0 22px 48px rgba(45, 27, 46, 0.14);
  transform: translateY(-4px);
}

.artist-profile-card:hover .artist-profile-card__cover img {
  transform: scale(1.06);
}

.artist-profile-card:hover .artist-profile-card__cover span {
  background: rgba(0, 0, 0, 0.1);
}

.artist-profile-card:hover .artist-profile-card__head strong {
  color: var(--vgs-berry);
}

.artist-profile-card:hover .artist-profile-card__arrow {
  background: var(--vgs-berry);
  border-color: var(--vgs-berry);
  color: #fff;
  transform: rotate(-45deg);
}

.artists-pagination {
  margin-top: 64px;
  text-align: center;
}

.artists-pagination .page-numbers {
  color: var(--vgs-plum);
  font-weight: 800;
  margin-inline: 8px;
  text-decoration: none;
}

.artists-pagination .current {
  color: var(--vgs-gold);
}

@media (max-width: 800px) {
  .artists-hero {
    padding-block: 88px 72px;
  }

  .artists-archive {
    padding-block: 64px 96px;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-profile-card__body {
    padding: 36px 28px;
  }

  .artist-profile-card__portrait {
    left: 28px;
  }
}

.artist-single {
  background: var(--vgs-cream);
  color: var(--vgs-plum);
  min-height: 100vh;
  padding-bottom: 0;
}

.artist-single__cover {
  height: clamp(340px, 50vh, 520px);
  overflow: hidden;
  position: relative;
}

.artist-single__cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.artist-single__cover-shade {
  background: linear-gradient(to top, rgba(45, 27, 46, 0.82), rgba(45, 27, 46, 0));
  inset: 0;
  position: absolute;
}

.artist-single__back {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  left: max(24px, (100vw - 72rem) / 2);
  letter-spacing: 0.12em;
  padding: 12px 18px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  top: 128px;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.artist-single__back:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.artist-single__shell {
  margin: -128px auto 0;
  max-width: 72rem;
  padding: 0 24px 128px;
  position: relative;
  z-index: 2;
}

.artist-single__profile {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 48px;
  box-shadow: 0 24px 60px rgba(45, 27, 46, 0.14);
  display: flex;
  gap: 48px;
  margin-bottom: 80px;
  padding: 64px;
}

.artist-single__portrait {
  aspect-ratio: 1;
  background: var(--vgs-border);
  border: 8px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(45, 27, 46, 0.18);
  flex: 0 0 224px;
  margin-top: -128px;
  object-fit: cover;
  width: 224px;
}

.artist-single__content {
  flex: 1;
  min-width: 0;
}

.artist-single__heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.artist-single__heading h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 12px;
}

.artist-single__meta {
  align-items: center;
  color: var(--vgs-gold);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-single__location {
  color: rgba(45, 27, 46, 0.6);
}

.artist-single__divider {
  color: var(--vgs-border);
}

.artist-single__follow {
  background: var(--vgs-berry);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(90, 42, 58, 0.2);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  min-height: 48px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.artist-single__follow:hover {
  background: #431f2b;
  transform: translateY(-1px);
}

.artist-single__bio {
  color: rgba(45, 27, 46, 0.7);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.artist-single__bio p {
  margin: 0 0 18px;
}

.artist-single__bio p:last-child {
  margin-bottom: 0;
}

.artist-single__bio blockquote {
  border-left: 3px solid var(--vgs-gold);
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  margin: 28px 0;
  padding-left: 24px;
}

.artist-single__stats {
  align-items: center;
  border-top: 1px solid var(--vgs-border);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
}

.artist-single__stats div {
  min-width: 86px;
}

.artist-single__stats strong {
  color: var(--vgs-plum);
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.artist-single__stats span {
  color: rgba(45, 27, 46, 0.42);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-single__instagram {
  align-items: center;
  color: var(--vgs-berry);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.artist-single__instagram:hover {
  color: var(--vgs-gold);
}

.artist-products__eyebrow {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.artist-products__eyebrow span {
  background: var(--vgs-gold);
  display: block;
  height: 1px;
  width: 32px;
}

.artist-products__eyebrow h2 {
  color: var(--vgs-gold);
  font-family: var(--vgs-font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.artist-products__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-product-card__link,
.artist-product-card > span {
  color: inherit;
  display: block;
  text-decoration: none;
}

.artist-product-card__image {
  aspect-ratio: 4 / 5;
  background: var(--vgs-border);
  border-radius: 32px;
  box-shadow: 0 6px 18px rgba(45, 27, 46, 0.08);
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.artist-product-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.artist-product-card__heart {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(45, 27, 46, 0.12);
  color: var(--vgs-plum);
  display: inline-flex;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 42px;
}

.artist-product-card__body {
  display: block;
  padding: 0 8px;
}

.artist-product-card__body strong {
  color: var(--vgs-plum);
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.artist-product-card__body span {
  color: var(--vgs-berry);
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.artist-product-card:hover .artist-product-card__image img {
  transform: scale(1.08);
}

.artist-product-card:hover .artist-product-card__heart {
  opacity: 1;
  transform: translateY(0);
}

.artist-product-card:hover .artist-product-card__body strong {
  color: var(--vgs-berry);
}

@media (max-width: 800px) {
  .artist-single__back {
    left: 24px;
    top: 104px;
  }

  .artist-single__shell {
    margin-top: -96px;
    padding-bottom: 96px;
  }

  .artist-single__profile {
    align-items: center;
    border-radius: 36px;
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px 40px;
    text-align: center;
  }

  .artist-single__portrait {
    flex-basis: 168px;
    margin-top: -104px;
    width: 168px;
  }

  .artist-single__heading {
    align-items: center;
    flex-direction: column;
    gap: 18px;
  }

  .artist-single__meta,
  .artist-single__stats {
    justify-content: center;
  }

  .artist-single__bio {
    font-size: 18px;
  }

  .artist-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .artist-products__grid {
    grid-template-columns: 1fr;
  }

  .artist-single__stats {
    gap: 24px;
  }
}

.contact-page {
  background: var(--vgs-cream);
  color: var(--vgs-plum);
  min-height: 100vh;
}

.contact-hero {
  background: var(--vgs-plum);
  color: #fff;
  overflow: hidden;
  padding: 144px 24px 112px;
  position: relative;
  text-align: center;
}

.contact-hero::before {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  content: "";
  inset: 0;
  opacity: 0.03;
  position: absolute;
}

.contact-hero__inner {
  margin-inline: auto;
  max-width: 56rem;
  position: relative;
  z-index: 1;
}

.contact-hero__eyebrow {
  color: var(--vgs-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 auto 24px;
  max-width: 760px;
}

.contact-hero__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 720px;
}

.contact-layout {
  margin-inline: auto;
  max-width: 72rem;
  padding: 96px 24px 128px;
}

.contact-layout__content {
  align-items: stretch;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 36px;
  box-shadow: 0 16px 42px rgba(45, 27, 46, 0.08);
  padding: clamp(28px, 4vw, 48px);
}

.contact-card h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.contact-card__heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-card__heading span {
  align-items: center;
  background: rgba(201, 165, 106, 0.14);
  border-radius: 999px;
  color: var(--vgs-gold);
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.contact-card--details {
  background: var(--vgs-berry);
  color: #fff;
}

.contact-card--details h2 {
  color: #fff;
  margin-bottom: 28px;
}

.contact-form {
  color: rgba(45, 27, 46, 0.72);
}

.contact-form p {
  margin: 0 0 18px;
}

.contact-form label {
  color: var(--vgs-berry);
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea,
.contact-form select {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 18px;
  color: var(--vgs-plum);
  font: inherit;
  min-height: 56px;
  padding: 14px 18px;
  width: 100%;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  background: var(--vgs-plum);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  min-height: 56px;
  padding: 0 32px;
}

.contact-form--placeholder {
  align-items: flex-start;
  background: var(--vgs-cream);
  border: 1px dashed var(--vgs-border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.contact-form--placeholder p {
  font-size: 18px;
  line-height: 1.6;
}

.contact-form--placeholder a {
  color: var(--vgs-berry);
  font-weight: 900;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
}

.contact-detail {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #fff;
  display: flex;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
}

.contact-detail > span:first-child {
  align-items: center;
  background: rgba(201, 165, 106, 0.18);
  border-radius: 999px;
  color: var(--vgs-gold);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.contact-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-detail em {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 16px;
  font-style: normal;
  line-height: 1.45;
}

.contact-editor-content {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 28px;
  color: rgba(45, 27, 46, 0.7);
  font-size: 18px;
  line-height: 1.7;
  margin-top: 32px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-editor-content h2,
.contact-editor-content h3 {
  color: var(--vgs-plum);
  font-weight: 500;
  line-height: 1.2;
}

.contact-editor-content a {
  color: var(--vgs-berry);
  font-weight: 800;
}

@media (max-width: 900px) {
  .contact-layout__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-block: 104px 76px;
  }

  .contact-layout {
    padding-block: 64px 96px;
  }

  .contact-card {
    border-radius: 28px;
  }
}

/* Product detail final overrides */
.single-product-detail {
  max-width: 112rem;
  padding: 40px 24px 96px;
}

.product-breadcrumb {
  color: rgba(45, 27, 46, 0.42);
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 40px;
}

.product-hero {
  gap: clamp(48px, 5vw, 84px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.product-gallery {
  gap: 18px;
  grid-template-columns: 96px minmax(0, 1fr);
  position: sticky;
  top: 112px;
}

.product-gallery__thumbs {
  align-content: start;
  gap: 16px;
}

.product-gallery__thumb {
  border-radius: 14px;
}

.product-gallery__main {
  border-radius: 28px;
}

.product-gallery__heart {
  font-size: 34px;
  height: 56px;
  right: 26px;
  top: 26px;
  width: 56px;
}

.product-summary {
  padding-top: 6px;
}

.product-summary__title {
  color: var(--vgs-berry);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.product-summary__rating {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.product-summary__stars {
  color: var(--vgs-gold);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.product-summary__reviews {
  color: rgba(45, 27, 46, 0.42);
  font-size: 16px;
  font-weight: 700;
}

.product-summary__excerpt {
  color: rgba(90, 42, 58, 0.66);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 36px;
}

.product-summary__excerpt p {
  margin: 0;
}

.product-summary__price {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 40px;
}

.product-summary__price .price {
  align-items: baseline;
  display: flex;
  gap: 12px;
}

.product-summary__price del {
  color: rgba(45, 27, 46, 0.28);
  font-size: 20px;
  font-weight: 700;
  order: 2;
}

.product-summary__price ins {
  text-decoration: none;
}

.product-customization {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 34px;
  box-shadow: 0 14px 28px rgba(45, 27, 46, 0.1);
  flex: 1 1 100%;
  margin: 0 0 18px;
  overflow: hidden;
  padding: 0;
}

.product-customization[open] .product-customization__chevron {
  transform: rotate(180deg);
}

.product-customization__summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 32px 42px;
}

.product-customization__summary::-webkit-details-marker {
  display: none;
}

.product-customization__icon {
  align-items: center;
  background: rgba(248, 244, 238, 0.86);
  border-radius: 50%;
  color: var(--vgs-gold);
  display: inline-flex;
  flex: 0 0 72px;
  font-size: 38px;
  height: 72px;
  justify-content: center;
  line-height: 1;
  width: 72px;
}

.product-customization__heading {
  display: grid;
  flex: 1;
  gap: 8px;
  min-width: 0;
}

.product-customization__title {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.product-customization__copy {
  color: rgba(45, 27, 46, 0.58);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.product-customization__chevron {
  color: rgba(45, 27, 46, 0.52);
  flex: 0 0 auto;
  font-size: 42px;
  line-height: 1;
  transition: transform 180ms ease;
}

.product-customization__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 42px 34px;
}

.product-customization__field {
  margin: 0;
}

.product-customization__field label {
  color: var(--vgs-plum);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-customization__field input,
.product-customization__field textarea {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 22px;
  box-shadow: none;
  color: var(--vgs-plum);
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 15px 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.product-customization__field textarea {
  min-height: 112px;
  resize: vertical;
}

.product-customization__field input:focus,
.product-customization__field textarea:focus {
  border-color: var(--vgs-gold);
  box-shadow: 0 0 0 4px rgba(207, 170, 100, 0.18);
}

.product-customization__field--wide {
  grid-column: 1 / -1;
}

.product-summary__cart {
  margin-bottom: 44px;
}

.product-summary__cart form.cart {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.product-summary__cart table.variations {
  flex-basis: 100%;
  margin: 0 0 14px;
}

.product-summary__cart table.variations tbody,
.product-summary__cart table.variations tr,
.product-summary__cart table.variations th,
.product-summary__cart table.variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.product-summary__cart table.variations th.label {
  color: var(--vgs-plum);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-summary__cart table.variations select {
  appearance: none;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  color: var(--vgs-plum);
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  min-width: 160px;
  padding: 0 44px 0 22px;
}

.product-summary__cart .reset_variations,
.product-summary__cart .woocommerce-variation-description {
  display: none !important;
}

.product-summary__cart .woocommerce-variation-price {
  color: var(--vgs-berry);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-summary__cart .quantity {
  height: 58px;
  min-width: 160px;
  padding-inline: 18px;
  width: auto;
}

.product-summary__cart .qty {
  appearance: textfield;
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--vgs-plum);
  font-size: 18px;
  height: 42px;
  padding: 0;
  width: 74px;
}

.product-summary__cart .qty::-webkit-outer-spin-button,
.product-summary__cart .qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.product-summary__cart .single_add_to_cart_button {
  background: transparent !important;
  border: 2px solid var(--vgs-berry) !important;
  border-radius: 999px !important;
  color: var(--vgs-berry) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  min-height: 58px;
  min-width: 170px;
  padding-inline: 28px !important;
  text-transform: capitalize;
}

.product-summary__cart .single_add_to_cart_button:hover {
  background: var(--vgs-berry) !important;
  color: #fff !important;
}

.product-summary__buy-now {
  box-shadow: 0 18px 35px rgba(163, 67, 67, 0.22);
  flex-basis: 100%;
  font-size: 20px;
  margin-top: 32px;
  min-height: 72px;
}

.product-trust {
  gap: 18px;
  margin: 0 0 40px;
  padding-top: 48px;
}

.product-artist-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 22px;
  color: var(--vgs-plum);
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-artist-card:hover {
  border-color: var(--vgs-gold);
  box-shadow: 0 16px 36px rgba(45, 27, 46, 0.08);
}

.product-artist-card__portrait {
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(45, 27, 46, 0.14);
  flex: 0 0 58px;
  height: 58px;
  overflow: hidden;
  width: 58px;
}

.product-artist-card__portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-artist-card__body {
  flex: 1;
}

.product-artist-card__body span {
  color: var(--vgs-berry);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-artist-card__body strong {
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}

.product-artist-card__body em {
  color: rgba(45, 27, 46, 0.52);
  display: block;
  font-style: normal;
}

.product-artist-card__arrow {
  align-items: center;
  border: 1px solid var(--vgs-border);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 34px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.product-summary__meta {
  display: none;
}

.product-story {
  min-height: 500px;
}

@media (max-width: 1000px) {
  .product-hero,
  .product-story {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 700px) {
  .single-product-detail {
    padding: 28px 16px 72px;
  }

  .product-hero {
    gap: 36px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .product-gallery__thumb {
    flex: 0 0 76px;
  }

  .product-summary__cart form.cart {
    gap: 14px;
  }

  .product-summary__cart .quantity,
  .product-summary__cart .single_add_to_cart_button {
    flex: 1 1 100%;
    width: 100%;
  }

  .product-customization {
    border-radius: 22px;
    margin-bottom: 14px;
  }

  .product-customization__summary {
    gap: 16px;
    padding: 22px;
  }

  .product-customization__icon {
    flex-basis: 52px;
    font-size: 28px;
    height: 52px;
    width: 52px;
  }

  .product-customization__chevron {
    font-size: 30px;
  }

  .product-customization__grid {
    grid-template-columns: 1fr;
    padding: 0 22px 24px;
  }
}

.page-content--legal {
  max-width: 64rem;
  padding-block: 80px 96px;
}

.page-content__article--legal {
  color: rgba(45, 27, 46, 0.8);
}

.legal-page__breadcrumb {
  align-items: center;
  color: rgba(45, 27, 46, 0.4);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.14em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.legal-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.legal-page__breadcrumb a:hover {
  color: var(--vgs-gold);
}

.legal-page__breadcrumb span:last-child {
  color: rgba(45, 27, 46, 0.8);
}

.legal-page__header {
  border-bottom: 1px solid var(--vgs-border);
  margin-bottom: 64px;
  padding-bottom: 48px;
  text-align: center;
}

.legal-page__header .page-content__title {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 24px;
}

.legal-page__updated {
  color: rgba(45, 27, 46, 0.5);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.page-content__article--legal .page-content__body {
  color: rgba(45, 27, 46, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.page-content__article--legal .page-content__body > :first-child {
  margin-top: 0;
}

.page-content__article--legal .page-content__body > p:first-child,
.page-content__article--legal .page-content__body > .wp-block-group:first-child p:first-child {
  color: var(--vgs-plum);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-content__article--legal .page-content__body h2 {
  color: var(--vgs-berry);
  font-family: var(--vgs-font-heading);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 64px 0 24px;
}

.page-content__article--legal .page-content__body h3 {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  margin: 44px 0 18px;
}

.page-content__article--legal .page-content__body p {
  margin: 0 0 24px;
}

.page-content__article--legal .page-content__body ul,
.page-content__article--legal .page-content__body ol {
  margin: 0 0 32px;
  padding-left: 24px;
}

.page-content__article--legal .page-content__body ul,
.page-content__article--legal .page-content__body ul.wp-block-list {
  list-style: disc;
}

.page-content__article--legal .page-content__body ol,
.page-content__article--legal .page-content__body ol.wp-block-list {
  list-style: decimal;
}

.page-content__article--legal .page-content__body li {
  margin-bottom: 16px;
  padding-left: 2px;
}

.page-content__article--legal .page-content__body li::marker {
  color: var(--vgs-gold);
}

.page-content__article--legal .page-content__body strong {
  color: var(--vgs-plum);
  font-weight: 800;
}

.page-content__article--legal .page-content__body blockquote,
.page-content__article--legal .page-content__body .wp-block-quote {
  background: #fff;
  border: 1px solid var(--vgs-border);
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(45, 27, 46, 0.06);
  color: var(--vgs-berry);
  font-family: var(--vgs-font-heading);
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  margin: 40px 0;
  overflow: hidden;
  padding: 32px 32px 32px 42px;
  position: relative;
}

.page-content__article--legal .page-content__body blockquote::before,
.page-content__article--legal .page-content__body .wp-block-quote::before {
  background: var(--vgs-gold);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}

.page-content__article--legal .page-content__body blockquote p,
.page-content__article--legal .page-content__body .wp-block-quote p {
  margin-bottom: 0;
}

.page-content__article--legal .page-content__body .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--vgs-border);
  margin: 80px 0 40px;
}

.page-content__article--legal .page-content__body .wp-block-buttons {
  margin-top: 40px;
}

.page-content__article--legal .page-content__body .wp-block-button__link,
.page-content__article--legal .page-content__body a.wp-block-button__link {
  background: var(--vgs-plum);
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(45, 27, 46, 0.16);
  color: #fff;
  font-weight: 800;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.page-content__article--legal .page-content__body .wp-block-button__link:hover,
.page-content__article--legal .page-content__body a.wp-block-button__link:hover {
  background: #1a101a;
  box-shadow: 0 18px 30px rgba(45, 27, 46, 0.22);
  transform: translateY(-1px);
}

.page-content__article--legal .page-content__body a:not(.wp-block-button__link) {
  color: var(--vgs-berry);
  font-weight: 700;
  text-decoration-color: rgba(201, 165, 106, 0.45);
  text-underline-offset: 4px;
}

.page-content__article--legal .page-content__body a:not(.wp-block-button__link):hover {
  color: var(--vgs-gold);
}

.page-content__article--legal .legal-page__footer,
.page-content__article--legal .wp-block-group.is-style-legal-footer {
  align-items: center;
  border-top: 1px solid var(--vgs-border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 40px;
}

.page-content__article--legal .legal-page__footer p,
.page-content__article--legal .wp-block-group.is-style-legal-footer p {
  color: rgba(45, 27, 46, 0.6);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .page-content--legal {
    padding-block: 56px 72px;
  }

  .legal-page__breadcrumb {
    margin-bottom: 36px;
  }

  .legal-page__header {
    margin-bottom: 44px;
    padding-bottom: 36px;
  }

  .page-content__article--legal .page-content__body {
    font-size: 16px;
  }

  .page-content__article--legal .page-content__body > p:first-child,
  .page-content__article--legal .page-content__body > .wp-block-group:first-child p:first-child {
    font-size: 18px;
  }

  .page-content__article--legal .page-content__body blockquote,
  .page-content__article--legal .page-content__body .wp-block-quote {
    border-radius: 24px;
    font-size: 18px;
    padding: 28px 24px 28px 34px;
  }
}

.categories-page {
  margin-inline: auto;
  max-width: 96rem;
  padding: 96px 24px 120px;
}

.categories-page__hero {
  margin: 0 auto 80px;
  max-width: 48rem;
  text-align: center;
}

.categories-page__hero h1 {
  color: var(--vgs-plum);
  font-family: var(--vgs-font-heading);
  font-size: clamp(48px, 6vw, 60px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 24px;
}

.categories-page__hero p {
  color: rgba(45, 27, 46, 0.6);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.categories-page__eyebrow {
  color: var(--vgs-gold);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.categories-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.categories-card {
  min-width: 0;
}

.categories-card__link {
  color: inherit;
  display: flex;
  height: 100%;
  text-decoration: none;
}

.categories-card__media {
  aspect-ratio: 4/5;
  border-radius: 24px;
  box-shadow: 0 10px 40px -10px rgba(90, 42, 58, 0.08);
  display: block;
  flex: 1;
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: box-shadow 500ms ease, transform 500ms ease;
}

.categories-card__media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
  width: 100%;
}

.categories-card__wash {
  background: linear-gradient(to top, rgba(45, 27, 46, 0.8), rgba(45, 27, 46, 0.1), transparent);
  inset: 0;
  opacity: 0.6;
  position: absolute;
  transition: opacity 300ms ease;
}

.categories-card__content {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  padding: 32px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.categories-card__content strong {
  color: #fff;
  display: block;
  font-family: var(--vgs-font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.categories-card__content em {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}

.categories-card__arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 34px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease;
  width: 48px;
}

.categories-card:hover .categories-card__media {
  box-shadow: 0 20px 50px -15px rgba(90, 42, 58, 0.15);
  transform: translateY(-8px);
}

.categories-card:hover img {
  transform: scale(1.05);
}

.categories-card:hover .categories-card__wash {
  opacity: 0.8;
}

.categories-card:hover .categories-card__arrow {
  background: var(--vgs-gold);
  color: var(--vgs-plum);
}

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

@media (max-width: 640px) {
  .categories-page {
    padding: 64px 16px 84px;
  }

  .categories-page__hero {
    margin-bottom: 48px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-card__content {
    padding: 24px;
  }
}
