/*
Theme Name: Vigne Blanc
Theme URI: https://github.com/Shin-seong-su
Author: Shin-seong-su
Description: WordPress theme scaffold to migrate Vigne Blanc React pages into WordPress + WooCommerce.
Version: 0.2.0
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: vinblanc
*/

:root {
  --vb-container-max: 1440px;
  --vb-bg: #fff;
  --vb-bg-soft: #efefef;
  --vb-text: #111;
  --vb-muted: #666;
  --vb-border: #d9d9d9;
  --vb-button: #111;
  --vb-button-text: #fff;
}

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

body.vinblanc-theme,
body {
  margin: 0;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: var(--vb-bg);
  color: var(--vb-text);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.vb-container {
  width: 100%;
  max-width: var(--vb-container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.vb-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.vb-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vb-logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vb-logo--image {
  letter-spacing: 0;
  text-transform: none;
}

.vb-logo__image {
  display: block;
  width: auto;
  max-width: min(320px, 42vw);
  max-height: var(--vb-logo-max-height, 44px);
  height: auto;
}

.vb-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vb-nav-user {
  display: none;
}

.vb-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid #111;
  background: #fff;
  padding: 8px 7px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.vb-nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.vb-header.is-nav-open .vb-nav-toggle span:nth-child(1),
.vb-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.vb-header.is-nav-open .vb-nav-toggle span:nth-child(2),
.vb-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.vb-header.is-nav-open .vb-nav-toggle span:nth-child(3),
.vb-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.vb-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.vb-user-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.vb-user-nav a {
  white-space: nowrap;
}

.vb-icon-link {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vb-icon-link::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.vb-icon-link--account::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c1.8-3.2 5-5 8-5s6.2 1.8 8 5'/%3E%3C/svg%3E");
}

.vb-icon-link--cart::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.6'/%3E%3Ccircle cx='18' cy='20' r='1.6'/%3E%3Cpath d='M3 4h2.3l2.4 11.2h10.5l2.1-8.2H6.1'/%3E%3C/svg%3E");
}

.vb-icon-link:hover,
.vb-icon-link:focus-visible {
  background: #151515;
}

.vb-icon-link:hover::before,
.vb-icon-link:focus-visible::before {
  filter: invert(1);
}

.vb-icon-link:focus-visible {
  outline: 2px solid #151515;
  outline-offset: 2px;
}

.vb-icon-link__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #da2a2a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.vb-nav-backdrop {
  display: none;
}

.vb-main {
  width: 100%;
}

.vb-admin-guide {
  border-bottom: 1px solid #eadfbe;
  background: #fff9e7;
}

.vb-admin-guide .vb-container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.vb-admin-guide__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vb-admin-guide h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.vb-admin-guide__close {
  min-height: 32px;
  border: 1px solid #c8b889;
  background: #fff3cf;
  color: #5f4f22;
  padding: 0 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.vb-admin-guide__close:hover {
  background: #f8e8bb;
}

.vb-admin-guide p {
  margin: 6px 0;
  font-size: 14px;
  color: #4b4638;
}

.vb-admin-guide code {
  background: #f0e7c8;
  padding: 2px 6px;
  border-radius: 4px;
}

.vb-main .wp-block-group,
.vb-main .wp-block-columns,
.vb-main .wp-block-column {
  margin-block-start: 0;
  margin-block-end: 0;
}

.vb-hero {
  padding: 72px 0;
}

.vb-hero--slider {
  padding: 0;
  background: #fff;
}

.vb-hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr 1.25fr;
}

.vb-hero__visual {
  min-height: 440px;
  border-radius: 4px;
  background:
    linear-gradient(130deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0)),
    linear-gradient(35deg, #e4e0d7, #f6f3ec 48%, #d9d4c9);
}

.vb-hero__visual--shop {
  min-height: 360px;
}

.vb-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vb-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  max-width: 12ch;
}

.vb-hero p {
  margin: 24px 0 0;
  font-size: 19px;
  max-width: 42ch;
}

.vb-button {
  display: inline-flex;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #111;
  background: var(--vb-button);
  color: var(--vb-button-text);
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.vb-button:hover {
  opacity: 0.85;
}

.wp-block-button.vb-button {
  margin-top: 32px;
}

.wp-block-button.vb-button .wp-block-button__link {
  border: 1px solid #111;
  border-radius: 0;
  background: var(--vb-button);
  color: var(--vb-button-text);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.wp-block-button.vb-button .wp-block-button__link:hover {
  opacity: 0.85;
}

.vb-section {
  padding: 80px 0;
}

body.page:not(.home):not(.woocommerce-page) .vb-main > .vb-section {
  padding-top: 0;
}

body.page.vb-page-top-spaced:not(.home):not(.woocommerce-page) .vb-main > .vb-section {
  padding-top: 58px;
}

.home .vb-main .vb-section {
  padding: 96px 0;
}

.vb-section--gray {
  background: var(--vb-bg-soft);
}

.vb-section--narrow .vb-post {
  max-width: 860px;
  margin: 0 auto;
}

.vb-section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.vb-section-title--featured {
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.08;
}

.vb-section-subtitle {
  margin: 14px 0 0;
  color: var(--vb-muted);
}

.vb-shop-editor-content {
  padding-bottom: 8px;
}

.vb-shop-editor-content .vb-section-subtitle,
.vb-shop-editor-content .vb-container > :last-child {
  margin-bottom: 0;
}

.vb-shop-editor-content > .vb-container .vb-container {
  padding-left: 0;
  padding-right: 0;
}

.vb-shop-editor-content + .vb-section#products {
  padding-top: 8px;
}

.vb-section table:not(.wc-block-cart-items):not(.shop_table) {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
}

.vb-section table:not(.wc-block-cart-items):not(.shop_table) td {
  border: 1px solid var(--vb-border);
  padding: 14px 16px;
}

.vb-section table:not(.wc-block-cart-items):not(.shop_table) td:first-child {
  width: 40%;
  color: var(--vb-muted);
}

.vb-card-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vb-card-grid--feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vb-block,
.vb-lookbook {
  border-radius: 3px;
  min-height: 230px;
  background: linear-gradient(35deg, #dbd6cc, #f7f5ef);
}

.vb-lookbook:nth-child(2n) {
  background: linear-gradient(35deg, #d5d1c8, #ece8df);
}

.vb-spec-grid {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vb-spec-grid div {
  background: #fff;
  border: 1px solid var(--vb-border);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vb-spec-grid strong {
  font-size: 20px;
}

.vb-spec-grid span {
  color: var(--vb-muted);
}

.vb-chip-row {
  margin: 24px 0 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vb-chip-row--category {
  margin-bottom: 14px;
}

.vb-chip-row--color {
  margin-top: 0;
  margin-bottom: 28px;
}

.vb-chip {
  min-height: 36px;
  border: 1px solid #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
}

.vb-chip.is-active {
  color: #fff;
  background: #1b1b1b;
}

.vb-color-chip {
  min-height: 34px;
  border: 1px solid #1b1b1b;
  background: #fff;
  color: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vb-color-chip:hover {
  background: #f5f5f5;
}

.vb-color-chip.is-active {
  background: #1b1b1b;
  color: #fff;
}

.vb-color-chip__swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--vb-color-chip, #b3b3b3);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.vb-color-chip__label {
  font-size: 13px;
  line-height: 1;
}

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

.vb-product-teaser {
  border: 1px solid #f0f0f0;
  background: #fff;
}

.vb-product-teaser a {
  display: block;
  padding: 16px;
}

.vb-product-teaser__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  background: #f5f5f5;
}

.vb-product-teaser__thumb img {
  display: block;
  width: 88%;
  height: 88%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.vb-product-teaser__thumb.is-image-swapping img {
  opacity: 0.36;
}

.vb-product-teaser__thumb--demo {
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #ddd8ce, #f4f1ea 52%, #e2ddd3);
}

.vb-product-teaser h3 {
  margin: 14px 0 8px;
  font-size: 16px;
}

.vb-product-teaser__size-line {
  margin: 6px 0 0;
}

.vb-product-teaser__price-line {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6e6e6e;
  white-space: nowrap;
}

.vb-product-teaser__size {
  font-weight: 300;
  text-transform: uppercase;
}

.vb-product-teaser__discount-rate {
  color: #b40018;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.vb-product-teaser__price-line .vb-price {
  margin: 0;
  font-size: 13px;
  line-height: 1;
  text-align: left;
}

.vb-product-teaser__price-line .vb-price del {
  margin-right: 4px;
  font-size: 12px;
}

.vb-product-teaser__price-line .vb-price ins {
  font-size: 13px;
}

.is-vb-color-hidden {
  display: none !important;
}

/* Main collection cards */
.vb-collection-shell .vb-product-teaser {
  border: 0;
  background: transparent;
}

.vb-collection-shell .vb-product-teaser a {
  padding: 0;
}

.vb-collection-shell .vb-product-teaser__thumb {
  border: 0 !important;
  box-shadow: none;
  background: #f7f7f7;
}

.vb-collection-shell .vb-product-teaser h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}

.vb-lookbook-gallery {
  margin-top: 24px;
}

.vb-lookbook-gallery .wp-block-image {
  min-height: 220px;
  border-radius: 3px;
  background: linear-gradient(35deg, #dbd6cc, #f7f5ef);
}

.vb-lookbook-grid {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vb-lookbook-grid.is-scrollable {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.vb-lookbook-grid.is-scrollable .vb-lookbook-card {
  flex: 0 0 280px;
  max-width: 280px;
}

.vb-lookbook-card {
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
}

.vb-lookbook-card__link {
  display: block;
}

.vb-lookbook-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.vb-lookbook-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.vb-lookbook-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(35deg, #dcd7cd, #f5f2ec);
}

.vb-lookbook-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  z-index: 2;
}

.vb-lookbook-card__title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.vb-lookbook-card:hover .vb-lookbook-card__media img,
.vb-lookbook-card:focus-within .vb-lookbook-card__media img {
  transform: scale(1.08);
}

.vb-price {
  margin: 0;
  color: #222;
  font-weight: 700;
}

.vb-price del {
  color: #8f8f8f;
  font-weight: 500;
  margin-right: 6px;
}

.vb-price ins {
  color: #111;
  text-decoration: none;
}

.vb-new-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vb-new-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
}

.vb-new-card a {
  display: block;
  padding: 16px;
}

.vb-new-card h3 {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.vb-shop-toolbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
}

.vb-shop-toolbar .woocommerce-result-count {
  margin: 0;
  float: none;
  width: auto;
  flex: 0 0 auto;
  text-align: right;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  color: var(--vb-muted);
}

.vb-shop-toolbar .woocommerce-ordering {
  margin: 0;
  float: none;
  width: auto;
  flex: 0 0 auto;
}

.vb-shop-toolbar .woocommerce-ordering .orderby {
  min-height: 40px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

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

.woocommerce ul.products li.product.vb-product-teaser {
  width: auto;
  margin: 0;
  float: none;
  clear: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.woocommerce ul.products li.product.vb-product-teaser > a {
  padding: 0;
}

.woocommerce ul.products li.product.vb-product-teaser .vb-product-teaser__thumb {
  border: 0 !important;
  box-shadow: none;
  background: #f7f7f7;
  padding: 18px;
}

.woocommerce ul.products li.product.vb-product-teaser .vb-product-teaser__thumb img {
  width: 88%;
  height: 88%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.woocommerce ul.products li.product.vb-product-teaser h3 {
  margin: 12px 0 6px;
  font-size: 15px;
}

.woocommerce ul.products li.product.vb-product-card {
  width: auto;
  margin: 0;
  float: none;
  clear: none;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 14px;
}

.vb-product-card__thumb {
  position: relative;
  min-height: 240px;
  border: 0 !important;
  box-shadow: none;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
}

.vb-product-card__thumb img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.vb-product-card__thumb.is-image-swapping img {
  opacity: 0.36;
}

.vb-product-card__title {
  margin: 14px 0 6px;
  font-size: 16px;
}

.vb-product-card__meta {
  margin: 0 0 10px;
  color: var(--vb-muted);
  font-size: 13px;
}

.vb-product-card__actions .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 38px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  padding: 0 14px;
  font-weight: 600;
}

/* Keep Woo notice "View cart" button vertically centered */
.woocommerce .woocommerce-message .button.wc-forward,
.woocommerce .woocommerce-info .button.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  line-height: 1.2;
}

.vb-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #686868;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.vb-badge--discount {
  width: auto;
  min-width: 74px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #c62e2e;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.vb-badge--best {
  width: 52px;
  height: 52px;
  background: #1c1c1c;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vb-pdp__layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.vb-pdp__gallery-main {
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.vb-pdp__gallery-main img {
  width: 82%;
  height: 82%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.vb-pdp__thumbs {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vb-pdp__thumb {
  background: #f3f3f3;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.vb-pdp__thumb img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.vb-pdp__summary {
  border: 1px solid #ececec;
  padding: 24px;
  background: #fff;
}

.vb-pdp__kicker {
  margin: 0 0 8px;
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vb-pdp__title {
  margin: 0;
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.2;
}

.vb-pdp__spec-inline-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.vb-pdp__spec-inline-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #5e5e5e;
  font-size: 13px;
}

.vb-pdp__spec-inline-label {
  min-width: 70px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vb-pdp__spec-inline-value {
  font-weight: 400;
}

.vb-pdp__rating {
  margin-top: 12px;
}

.vb-pdp__price {
  margin: 10px 0 0;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
}

.vb-pdp__price del {
  color: #9a9a9a;
  font-size: 0.62em;
  font-weight: 500;
  margin-right: 6px;
}

.vb-pdp__price ins {
  color: #181818;
  font-size: 0.92em;
  text-decoration: none;
}

.vb-pdp__short-desc {
  margin-top: 16px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.vb-pdp__option {
  margin-top: 16px;
}

.vb-pdp__option-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1b1b1b;
}

.vb-pdp__color-row {
  margin: 0;
}

.vb-pdp__color-row .vb-color-chip {
  min-height: 32px;
}

.vb-pdp__buybox {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 0;
}

.vb-pdp__buybox form.cart {
  display: flex;
  gap: 10px 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.vb-pdp__buybox .vb-pdp__option-label--qty {
  flex: 0 0 100%;
  margin: 0 0 6px;
}

.vb-pdp__buybox .single_variation_wrap {
  width: 100%;
}

.vb-pdp__buybox .variations_button {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.vb-pdp__buybox .variations_button .vb-pdp__option-label--qty {
  margin: 0 0 4px;
}

.vb-pdp__buybox .quantity {
  margin: 0 !important;
  float: none !important;
}

.vb-pdp__buybox .quantity .qty {
  min-height: 42px;
  border: 1px solid #ddd;
  min-width: 76px;
}

.vb-pdp__buybox .single_add_to_cart_button,
.vb-pdp__buybox .vb-buy-now-button {
  float: none !important;
  margin: 0 !important;
}

.vb-pdp__buybox .single_add_to_cart_button {
  min-height: 42px;
  border-radius: 0;
  padding: 0 18px;
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.vb-pdp__buybox .vb-buy-now-button {
  min-height: 42px;
  border-radius: 0;
  padding: 0 18px;
  border: 1px solid #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.vb-pdp__buybox .vb-buy-now-button.disabled,
.vb-pdp__buybox .vb-buy-now-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.vb-address-search {
  margin-top: 10px;
}

.vb-address-search__button {
  width: 100%;
  min-height: 44px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.vb-address-search__button:hover,
.vb-address-search__button:focus {
  background: #f5f5f5;
}

.vb-line-item-color {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

.vb-line-item-discount {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 1px 6px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #4a4a4a;
  background: #fff;
}

.vb-checkout-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  vertical-align: top;
}

.vb-checkout-item__thumb {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  padding: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.vb-checkout-item__thumb-image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image img,
body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__image img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent;
  padding: 0 !important;
  border: 0;
}

body.woocommerce-cart td.product-thumbnail img,
body.woocommerce-checkout td.product-thumbnail img,
body.woocommerce-cart .vb-cart-item__thumb-image,
body.woocommerce-checkout .vb-cart-item__thumb-image {
  display: block;
  width: 82% !important;
  height: auto !important;
  max-width: 82% !important;
  margin: 8px auto !important;
  object-fit: contain !important;
  object-position: center center;
  background: transparent;
  padding: 0 !important;
  border: 0;
}

body.woocommerce-cart .vb-cart-item__thumb,
body.woocommerce-checkout .vb-cart-item__thumb {
  display: block;
}

body.woocommerce-cart .vb-cart-checkout-select {
  margin: 10px 0 0;
}

body.woocommerce-cart .vb-cart-checkout-select__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555;
  line-height: 1.3;
}

body.woocommerce-cart .vb-cart-checkout-select__input {
  width: 14px;
  height: 14px;
  margin: 0;
}

body.woocommerce-checkout .vb-checkout-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
}

body.woocommerce-checkout .vb-checkout-qty__btn {
  width: 24px;
  height: 24px;
  border: 1px solid #bdbdbd;
  background: #fff;
  color: #222;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

body.woocommerce-checkout .vb-checkout-qty__input {
  width: 52px;
  height: 24px;
  border: 1px solid #bdbdbd;
  padding: 0 4px;
  text-align: center;
  font-size: 13px;
}

.vb-pdp__policy-accordion {
  margin-top: 24px;
  border-top: 1px solid #ececec;
}

.vb-pdp__policy-item {
  margin: 0;
  border-bottom: 1px solid #ececec;
}

.vb-pdp__policy-summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 28px 14px 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.vb-pdp__policy-summary::-webkit-details-marker {
  display: none;
}

.vb-pdp__policy-summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: #888;
}

.vb-pdp__policy-item[open] .vb-pdp__policy-summary::after {
  content: "−";
}

.vb-pdp__policy-content {
  margin: 0 0 14px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.vb-pdp__policy-content p {
  margin: 0;
}

.vb-pdp__policy-content p + p {
  margin-top: 10px;
}

.vb-pdp__section {
  margin-top: 52px;
}

.vb-pdp__section h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.vb-pdp__description {
  color: #232323;
}

.vb-pdp__description p:first-child {
  margin-top: 0;
}

.vb-post__title {
  margin: 0 0 18px;
  font-size: 40px;
}

.vb-page-header-media {
  margin: 0 0 24px;
  height: var(--vb-page-header-height, 360px);
  min-height: 180px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #f4f4f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--vb-page-header-image-position, center center);
}

.vb-page-header-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.vb-page-header-media__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: auto;
  padding: 0 0 clamp(20px, 2.3vw, 34px);
}

.vb-page-header-media.is-fixed {
  background-attachment: fixed;
}

.vb-page-header-media.is-fullwidth {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.vb-page-header-media.is-fullwidth .vb-page-header-media__content {
  width: min(100%, var(--vb-container-max, 1440px));
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.vb-post__slogan {
  margin: -6px 0 20px;
  color: var(--vb-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vb-page-header-media .vb-post__title {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.vb-page-header-media .vb-post__slogan {
  margin: 8px 0 0;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.vb-post.has-page-header-layout .vb-post__title,
.vb-post.has-page-header-layout .vb-post__slogan {
  text-align: var(--vb-page-header-text-align, left);
}

.vb-post.has-page-header-text-color .vb-post__title,
.vb-post.has-page-header-text-color .vb-post__slogan {
  color: var(--vb-page-header-text-color, inherit);
}

.vb-post__featured {
  margin: 0 0 24px;
}

.vb-post__featured img {
  width: 100%;
  height: auto;
  display: block;
}

.vb-post__content {
  color: #2e2e2e;
}

body.vb-page-community .vb-post {
  max-width: 980px;
}

body.vb-page-community .vb-post__title {
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

body.vb-page-community .vb-post__content {
  max-width: 980px;
}

body.vb-page-community .vb-post__content > p:first-child {
  margin: 0 0 26px;
  color: #5b564f;
  font-size: 15px;
  line-height: 1.8;
}

body.vb-page-community .vb-post__content .jsneo-tab-group {
  margin-top: 10px;
}

body.vb-page-community .vb-post__content .jsneo-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0 0 18px;
  list-style: none;
  border-bottom: 1px solid #e5ddd1;
}

body.vb-page-community .vb-post__content .jsneo-tab-nav li {
  margin: 0;
  border: 1px solid #d9d0c5;
  border-radius: 999px;
  background: #fcfaf7;
  color: #38342f;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body.vb-page-community .vb-post__content .jsneo-tab-nav li.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

body.vb-page-community .vb-post__content .jsneo-tab-more {
  display: none;
}

body.vb-page-community .vb-post__content .jsneo-tab-title {
  display: none;
}

body.vb-page-community .vb-post__content .jsneo-tab-content > p:first-child {
  margin-top: 0;
}

body.vb-page-community .vb-post__content .jsneo-accordion-group {
  display: grid;
  gap: 12px;
}

body.vb-page-community .vb-post__content .jsneo-accordion-item {
  margin: 0;
  border: 1px solid #e8e0d5;
  border-radius: 18px;
  background: #fffdfa;
  overflow: hidden;
}

body.vb-page-community .vb-post__content .jsneo-accordion-item .jsneo-accordion-toggle {
  padding: 22px 24px;
  gap: 16px;
  align-items: center;
}

body.vb-page-community .vb-post__content .jsneo-accordion-title {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #1f1c18;
  letter-spacing: -0.01em;
}

body.vb-page-community .vb-post__content .jsneo-accordion-item .accordion-indicator {
  min-width: 24px;
  text-align: center;
  font-size: 20px;
  color: #625c54;
}

body.vb-page-community .vb-post__content .jsneo-accordion-content {
  background: #fff;
}

body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap {
  padding: 0 24px 24px;
}

body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap p,
body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap li {
  color: #555048;
  font-size: 15px;
  line-height: 1.85;
}

body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap ul {
  margin: 14px 0 0 18px;
  padding: 0;
}

body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap strong {
  color: #1f1c18;
}

body.vb-page-community .vb-post__content .wp-block-buttons {
  margin-top: 28px;
}

body.vb-page-contact .vb-post {
  max-width: 1080px;
}

body.vb-page-contact .vb-post__title {
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

body.vb-page-contact .vb-post__content {
  max-width: 1080px;
}

.vb-contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.vb-contact-page__intro {
  padding: 34px 34px 36px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fff;
}

.vb-contact-page__eyebrow,
.vb-contact-page__form-kicker {
  margin: 0 0 10px;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-contact-page__headline,
.vb-contact-page__form-title {
  margin: 0;
  color: #16130f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.vb-contact-page__headline {
  font-size: clamp(24px, 3vw, 32px);
}

.vb-contact-page__form-title {
  font-size: clamp(24px, 3vw, 32px);
}

.vb-contact-page__lede {
  margin: 18px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.85;
}

.vb-contact-page__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.vb-contact-page__card {
  min-height: 118px;
  padding: 18px 18px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fafafa;
}

.vb-contact-page__card-label {
  margin: 0 0 10px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-contact-page__card-value {
  margin: 0;
  color: #1a1713;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

a.vb-contact-page__card-value:hover {
  text-decoration: underline;
}

.vb-contact-page__note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fafafa;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}

.vb-contact-page__note strong {
  color: #1a1713;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.vb-contact-page__actions {
  margin-top: 18px;
}

.vb-contact-page__actions .vb-button {
  min-height: 42px;
  border-radius: 0;
}

.vb-contact-page__privacy-link {
  margin: 16px 0 0;
  color: #555;
  font-size: 13px;
}

.vb-contact-page__privacy-link a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vb-contact-page__form-panel {
  padding: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.vb-contact-page__form-head {
  margin-bottom: 22px;
}

body.vb-page-contact .wpcf7 {
  margin: 0;
}

body.vb-page-contact .wpcf7 form {
  display: grid;
  gap: 14px;
}

body.vb-page-contact .wpcf7 form .vb-contact-page__form-grid {
  display: grid;
  gap: 14px;
}

body.vb-page-contact .wpcf7 form .vb-contact-page__form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.vb-page-contact .wpcf7 form p {
  margin: 0;
}

body.vb-page-contact .wpcf7 form label {
  display: grid;
  gap: 8px;
  color: #1c1814;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.vb-page-contact .wpcf7 form .wpcf7-form-control-wrap {
  display: block;
}

body.vb-page-contact .wpcf7 form input[type="text"],
body.vb-page-contact .wpcf7 form input[type="email"],
body.vb-page-contact .wpcf7 form input[type="tel"],
body.vb-page-contact .wpcf7 form select,
body.vb-page-contact .wpcf7 form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  background: #fff;
  color: #1d1915;
  padding: 0 16px;
  font-size: 15px;
  box-shadow: none;
}

body.vb-page-contact .wpcf7 form textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

body.vb-page-contact .wpcf7 form input[type="text"]:focus,
body.vb-page-contact .wpcf7 form input[type="email"]:focus,
body.vb-page-contact .wpcf7 form input[type="tel"]:focus,
body.vb-page-contact .wpcf7 form select:focus,
body.vb-page-contact .wpcf7 form textarea:focus {
  outline: none;
  border-color: #181512;
  background: #fff;
}

body.vb-page-contact .wpcf7 form .wpcf7-list-item {
  margin: 0;
}

body.vb-page-contact .wpcf7 form .vb-contact-page__consent {
  padding: 2px 2px 0;
}

body.vb-page-contact .wpcf7 form .wpcf7-acceptance label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  color: #555;
}

body.vb-page-contact .wpcf7 form .wpcf7-acceptance input {
  margin-top: 3px;
}

body.vb-page-contact .wpcf7 form .wpcf7-submit {
  min-height: 52px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

body.vb-page-contact .wpcf7 form .vb-contact-page__submit {
  margin-top: 6px;
}

body.vb-page-contact .wpcf7 form .wpcf7-spinner {
  margin: 10px 0 0;
}

body.vb-page-contact .wpcf7 form .wpcf7-response-output {
  margin: 14px 0 0;
  border-radius: 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
}

body.vb-page-privacy-policy .vb-post {
  max-width: 980px;
  margin: 0 auto;
}

body.vb-page-privacy-policy .vb-post__title {
  margin-bottom: 30px;
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

body.vb-page-privacy-policy .vb-post__content {
  max-width: 820px;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.9;
}

body.vb-page-privacy-policy .vb-post__content > .subtitle {
  margin: 0 0 22px;
  color: #787068;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

body.vb-page-privacy-policy .vb-post__content #privacy.wrap_inner {
  max-width: none;
}

body.vb-page-privacy-policy .vb-post__content #privacy p,
body.vb-page-privacy-policy .vb-post__content #privacy dd {
  margin: 0;
}

body.vb-page-privacy-policy .vb-post__content #privacy p + p,
body.vb-page-privacy-policy .vb-post__content #privacy dd + dd {
  margin-top: 14px;
}

body.vb-page-privacy-policy .vb-post__content #privacy > ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

body.vb-page-privacy-policy .vb-post__content #privacy > ul > li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9e3dc;
}

body.vb-page-privacy-policy .vb-post__content #privacy > ul > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

body.vb-page-privacy-policy .vb-post__content #privacy > ul > li > dl,
body.vb-page-privacy-policy .vb-post__content #privacy dd > dl {
  margin: 0;
}

body.vb-page-privacy-policy .vb-post__content #privacy > ul > li > dl > dt {
  margin: 0 0 12px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

body.vb-page-privacy-policy .vb-post__content #privacy dd > dl > dt {
  margin: 22px 0 8px;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

body.vb-page-privacy-policy .vb-post__content #privacy ul ul,
body.vb-page-privacy-policy .vb-post__content #privacy ol {
  margin: 14px 0 0;
  padding-left: 1.2em;
}

body.vb-page-privacy-policy .vb-post__content #privacy ul ul li,
body.vb-page-privacy-policy .vb-post__content #privacy ol li {
  margin-top: 8px;
  padding-left: 0.1em;
}

body.vb-page-privacy-policy .vb-post__content #privacy a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
}

body.vb-page-privacy-policy .vb-post__content #privacy strong {
  font-weight: 700;
  color: #111;
}

/* Checkout */
body.woocommerce-checkout .vb-section--narrow .vb-post,
body.woocommerce-cart .vb-section--narrow .vb-post {
  max-width: none;
}

body.woocommerce-checkout .vb-post__title,
body.woocommerce-cart .vb-post__title {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
}

body.woocommerce-checkout .vb-post__content,
body.woocommerce-cart .vb-post__content {
  font-size: 14px;
  color: #222;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row,
body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-items__row {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total .wc-block-components-sale-badge,
body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__total .wc-block-components-sale-badge {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  background: #f8f8f8;
  color: #222;
  list-style: none;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-cart .woocommerce-message {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.woocommerce-checkout .woocommerce-message .button.wc-forward,
body.woocommerce-cart .woocommerce-message .button.wc-forward {
  margin-left: auto;
  float: none;
}

body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-error::before,
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  padding-left: 16px !important;
}

body.woocommerce-checkout .woocommerce form .form-row {
  margin: 0 0 14px;
  padding: 0;
}

body.woocommerce-checkout .woocommerce form .form-row label {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

body.woocommerce-checkout .woocommerce form .form-row .input-text,
body.woocommerce-checkout .woocommerce form .form-row select,
body.woocommerce-checkout .woocommerce form .form-row textarea {
  min-height: 50px;
  border: 1px solid #bfc3c8;
  border-radius: 0;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 50px;
  border: 1px solid #bfc3c8;
  border-radius: 0;
  background: #fff;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 14px;
  color: #111;
  font-size: 14px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 8px;
}

body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  grid-template-areas: "customer review";
  column-gap: 30px;
  row-gap: 0;
  align-items: start;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
  float: none;
  width: auto;
}

body.woocommerce-checkout #customer_details.col2-set {
  grid-area: customer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "billing extra";
  gap: 16px;
  align-items: start;
}

body.woocommerce-checkout #customer_details.col2-set .col-1,
body.woocommerce-checkout #customer_details.col2-set .col-2 {
  float: none;
  width: auto;
  margin: 0;
  align-self: start;
}

body.woocommerce-checkout #customer_details.col2-set .col-1 {
  grid-area: billing;
  order: 1;
}

body.woocommerce-checkout #customer_details.col2-set .col-2 {
  grid-area: extra;
  order: 2;
}

body.woocommerce-checkout #order_review_heading {
  display: none;
}

body.woocommerce-checkout #order_review {
  grid-area: review;
}

body.woocommerce-checkout #customer_details > div,
body.woocommerce-checkout #order_review {
  border: 1px solid #e5e7eb;
  background: #fafafa;
  padding: 20px;
}

body.woocommerce-checkout #customer_details > div + div {
  margin-top: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-shipping-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout #order_review > #order_review_heading {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.woocommerce-checkout #order_review {
  padding-top: 20px;
}

body.woocommerce-checkout .woocommerce-shipping-fields:empty {
  display: none;
}

body.woocommerce-checkout .woocommerce-shipping-fields {
  margin: 0;
  padding: 0;
  min-height: 0;
}

body.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout #order_review > #order_review_heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3::before,
body.woocommerce-checkout .woocommerce-additional-fields > h3::before,
body.woocommerce-checkout #order_review > #order_review_heading::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #222;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

body.woocommerce-checkout .woocommerce-billing-fields > h3::before {
  content: "1";
}

body.woocommerce-checkout .woocommerce-additional-fields > h3::before {
  content: "2";
}

body.woocommerce-checkout #order_review > #order_review_heading::before {
  content: "3";
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #e3e5e8;
  vertical-align: top;
  font-size: 14px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: #6a6d73;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  white-space: nowrap;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  padding-right: 16px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
  border-bottom: 0;
  padding-top: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

body.woocommerce-checkout #payment {
  margin-top: 16px;
  border: 0;
  background: transparent;
}

body.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0;
  list-style: none;
}

body.woocommerce-checkout #payment .form-row.place-order {
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout #payment .place-order .button.alt,
body.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 52px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body.woocommerce-checkout #payment .place-order .button.alt:hover,
body.woocommerce-checkout #payment #place_order:hover {
  opacity: 0.9;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 10px 0 14px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
  margin: 0;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .woocommerce-form-login-toggle {
  margin-bottom: 10px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info {
  margin-bottom: 0;
  border: 1px solid #e3e5e8;
  background: #fafafa;
}

body.woocommerce-checkout .woocommerce form.checkout_coupon,
body.woocommerce-checkout .woocommerce form.login {
  margin: 8px 0 16px;
  border: 1px solid #e3e5e8;
  border-radius: 0;
  background: #fff;
}

body.woocommerce-checkout .vb-checkout-item__name {
  line-height: 1.35;
}

body.woocommerce-checkout .vb-line-item-color {
  margin-top: 5px;
}

/* My Account */
body.woocommerce-account .vb-section--narrow .vb-post {
  max-width: none;
}

body.woocommerce-account .vb-post__title {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.01em;
}

body.woocommerce-account .vb-post__content {
  font-size: 14px;
  color: #222;
}

body.woocommerce-account .woocommerce-notices-wrapper {
  margin-bottom: 14px;
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  background: #f8f8f8;
  color: #222;
  list-style: none;
}

body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-error::before {
  display: none !important;
}

body.woocommerce-account.vb-myaccount-auth #customer_login {
  display: block;
}

body.woocommerce-account.vb-myaccount-auth #customer_login::after {
  content: "";
  display: block;
  clear: both;
}

body.woocommerce-account.vb-myaccount-auth #customer_login .u-column1,
body.woocommerce-account.vb-myaccount-auth #customer_login .u-column2 {
  float: none;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

body.woocommerce-account.vb-myaccount-login-mode #customer_login .u-column2 {
  display: none;
}

body.woocommerce-account.vb-myaccount-register-mode #customer_login .u-column1 {
  display: none;
}

body.woocommerce-account.vb-myaccount-auth #customer_login h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.woocommerce-account.logged-in .woocommerce,
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none !important;
  width: 250px !important;
  flex: 0 0 250px;
  margin: 0 !important;
  order: 1;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  border: 1px solid transparent;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: #fff;
  border-color: #e5e7eb;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: #111;
  border-color: #111;
  color: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  order: 2;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  padding: 22px;
  min-height: 320px;
}

body.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #333;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.woocommerce-account table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

body.woocommerce-account table.shop_table th,
body.woocommerce-account table.shop_table td {
  padding: 12px 10px;
  border: 0;
  border-bottom: 1px solid #e3e5e8;
  font-size: 14px;
  vertical-align: top;
}

body.woocommerce-account table.shop_table thead th {
  color: #6a6d73;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.woocommerce-account .woocommerce-button.button,
body.woocommerce-account .button,
body.woocommerce-account button.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1.2;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none !important;
}

body.woocommerce-account .woocommerce-button.button:hover,
body.woocommerce-account .button:hover,
body.woocommerce-account button.button:hover {
  opacity: 0.9;
}

body.woocommerce-account .woocommerce form .form-row {
  margin: 0 0 14px;
  padding: 0;
}

body.woocommerce-account .woocommerce form .form-row label {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

body.woocommerce-account .woocommerce form .form-row .input-text,
body.woocommerce-account .woocommerce form .form-row select,
body.woocommerce-account .woocommerce form .form-row textarea {
  min-height: 48px;
  border: 1px solid #bfc3c8;
  border-radius: 0;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
}

body.woocommerce-account .woocommerce-Addresses,
body.woocommerce-account .woocommerce-Addresses.col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.woocommerce-account .woocommerce-Addresses.col2-set .col-1,
body.woocommerce-account .woocommerce-Addresses.col2-set .col-2,
body.woocommerce-account .woocommerce-Addresses.col2-set .u-column1,
body.woocommerce-account .woocommerce-Addresses.col2-set .u-column2 {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  align-self: start;
}

body.woocommerce-account .woocommerce-Addresses.col2-set .col-1,
body.woocommerce-account .woocommerce-Addresses.col2-set .u-column1 {
  order: 1;
}

body.woocommerce-account .woocommerce-Addresses.col2-set .col-2,
body.woocommerce-account .woocommerce-Addresses.col2-set .u-column2 {
  order: 2;
}

body.woocommerce-account .woocommerce-Address {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 16px;
}

body.woocommerce-account .woocommerce-Address-title,
body.woocommerce-account .woocommerce-Address-title.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

body.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0;
  font-size: 18px;
  float: none !important;
}

body.woocommerce-account .woocommerce-Address-title .edit {
  float: none !important;
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}

body.woocommerce-account .woocommerce-order-details,
body.woocommerce-account .woocommerce-customer-details {
  margin-top: 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 16px;
}

body.woocommerce-account .woocommerce > h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.woocommerce-account .vb-social-auth,
.vb-auth-page .vb-social-auth {
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fcfcfb, #f5f3ef);
}

body.woocommerce-account .vb-social-auth__eyebrow,
.vb-auth-page .vb-social-auth__eyebrow {
  margin: 0 0 12px;
  color: #6e675f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-account .vb-social-auth__buttons,
.vb-auth-page .vb-social-auth__buttons {
  display: grid;
  gap: 10px;
}

body.woocommerce-account .vb-social-auth__button,
.vb-auth-page .vb-social-auth__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

body.woocommerce-account .vb-social-auth__button.is-disabled,
.vb-auth-page .vb-social-auth__button.is-disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

body.woocommerce-account .vb-social-auth__button:hover,
.vb-auth-page .vb-social-auth__button:hover,
body.woocommerce-account .vb-social-auth__button:focus-visible,
.vb-auth-page .vb-social-auth__button:focus-visible {
  opacity: 0.96;
  transform: translateY(-1px);
}

body.woocommerce-account .vb-social-auth__symbol,
.vb-auth-page .vb-social-auth__symbol {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

body.woocommerce-account .vb-social-auth__button--kakao,
.vb-auth-page .vb-social-auth__button--kakao,
body.woocommerce-account .vb-social-auth__button--naver,
.vb-auth-page .vb-social-auth__button--naver {
  background: #111;
  border-color: #111;
  color: #fff;
}

body.woocommerce-account .vb-social-auth__button--kakao .vb-social-auth__symbol,
.vb-auth-page .vb-social-auth__button--kakao .vb-social-auth__symbol,
body.woocommerce-account .vb-social-auth__button--naver .vb-social-auth__symbol,
.vb-auth-page .vb-social-auth__button--naver .vb-social-auth__symbol {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

body.woocommerce-account .vb-social-auth__hint,
.vb-auth-page .vb-social-auth__hint {
  margin: 12px 0 0;
  color: #6e675f;
  font-size: 12px;
  line-height: 1.6;
}

body.woocommerce-account .vb-social-auth__subtext,
.vb-auth-page .vb-social-auth__subtext {
  margin: 12px 0 0;
  color: #4f4a44;
  font-size: 12px;
  line-height: 1.6;
}

body.woocommerce-account .vb-auth-switch,
.vb-auth-page .vb-auth-switch {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e4dfd7;
}

body.woocommerce-account .vb-auth-switch__link,
.vb-auth-page .vb-auth-switch__link {
  display: inline-flex;
  align-items: center;
  color: #2f2b27;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.woocommerce-account .woocommerce form.login,
body.woocommerce-account .woocommerce form.register,
body.woocommerce-account .woocommerce form.lost_reset_password {
  max-width: 560px;
  margin: 0;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  border-radius: 0;
  padding: 20px;
}

/* Auth fallback (without WooCommerce) */
.vb-auth-page .vb-auth-post {
  max-width: 560px;
}

.vb-auth-page .vb-post__title {
  margin-bottom: 18px;
}

.vb-auth-page .vb-post__content {
  border: 1px solid #e5e7eb;
  background: #fafafa;
  padding: 20px;
}

.vb-auth-page .vb-auth-message {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  background: #f8f8f8;
  color: #222;
  font-size: 13px;
}

.vb-auth-page .vb-auth-message--error {
  border-color: #e5b0b0;
  background: #fff5f5;
  color: #862b2b;
}

.vb-auth-page .vb-auth-form .form-row {
  margin: 0 0 14px;
}

.vb-auth-page .vb-auth-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.vb-auth-page .vb-auth-form .input-text {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfc3c8;
  border-radius: 0;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  color: #111;
}

.vb-auth-page .vb-auth-form .button {
  width: 100%;
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.vb-auth-page .vb-auth-form .button:hover {
  opacity: 0.9;
}

.vb-auth-page .vb-auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.vb-auth-page .vb-auth-checkbox input {
  width: 16px;
  height: 16px;
}

.vb-auth-page .vb-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.vb-auth-page .vb-auth-links a {
  font-size: 13px;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vb-footer {
  margin-top: 84px;
  border-top: 1px solid var(--vb-border);
  background: #fff;
}

.vb-footer__grid {
  padding: 52px 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.vb-footer__brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.vb-footer__brand--image {
  text-decoration: none;
}

.vb-footer__logo-image {
  display: block;
  width: auto;
  max-width: min(260px, 65vw);
  max-height: var(--vb-footer-logo-max-height, 36px);
  height: auto;
}

.vb-footer__desc {
  margin: 0;
  max-width: 34ch;
  color: var(--vb-muted);
}

.vb-footer__legal {
  margin: 18px 0 0;
  display: grid;
  gap: 6px;
}

.vb-footer__legal-row {
  display: grid;
  grid-template-columns: 11ch 1fr;
  column-gap: 10px;
  align-items: start;
}

.vb-footer__legal dt,
.vb-footer__legal dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.vb-footer__legal dt {
  color: #444;
}

.vb-footer__legal dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vb-footer__links h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.vb-footer__links h3 a {
  color: inherit;
  text-decoration: none;
}

.vb-footer__links h3 a:hover,
.vb-footer__links h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vb-footer-menu {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.vb-footer .vb-footer-menu ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.vb-footer .vb-footer-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.vb-footer-menu li + li {
  margin-top: 6px !important;
}

.vb-footer-menu a {
  display: block;
  margin: 0;
  padding: 0 !important;
  color: var(--vb-muted);
  font-size: 14px;
  line-height: 1.35;
}

.vb-footer-menu a:hover,
.vb-footer-menu a:focus-visible {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vb-footer__menu-note {
  margin: 12px 0 0;
  color: #8c8c8c;
  font-size: 12px;
  line-height: 1.5;
}

.vb-footer__links--menu-note {
  grid-column: 2 / -1;
}

.vb-footer__copyright {
  border-top: 1px solid #efefef;
}

.vb-footer__copyright p {
  margin: 0;
  padding: 16px 0 20px;
  color: #999;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .vb-hero__grid,
  .vb-pdp__layout {
    grid-template-columns: 1fr;
  }

  .vb-product-grid,
  .vb-lookbook-grid,
  .vb-new-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .vb-page-header-media {
    margin-bottom: 18px;
    height: min(var(--vb-page-header-height, 360px), 56vw);
    min-height: 180px;
    padding: 16px 14px;
  }

  .vb-page-header-media.is-fixed {
    background-attachment: scroll;
  }

  .vb-page-header-media__content {
    padding-bottom: 14px;
  }

  .vb-page-header-media.is-fullwidth .vb-page-header-media__content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .vb-page-header-media .vb-post__title {
    font-size: clamp(26px, 7.1vw, 34px);
  }

  .vb-post__slogan {
    margin-top: -2px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  body.vb-page-privacy-policy .vb-post__title {
    margin-bottom: 24px;
    font-size: clamp(28px, 8vw, 36px);
  }

  body.vb-page-community .vb-post__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  body.vb-page-contact .vb-post__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .vb-contact-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vb-contact-page__intro,
  .vb-contact-page__form-panel {
    padding: 24px 20px;
    border-radius: 0;
  }

  .vb-contact-page__cards {
    grid-template-columns: 1fr;
  }

  .vb-contact-page__headline {
    font-size: clamp(28px, 8vw, 38px);
  }

  .vb-contact-page__lede,
  body.vb-page-contact .wpcf7 form input[type="text"],
  body.vb-page-contact .wpcf7 form input[type="email"],
  body.vb-page-contact .wpcf7 form input[type="tel"],
  body.vb-page-contact .wpcf7 form select,
  body.vb-page-contact .wpcf7 form textarea {
    font-size: 14px;
  }

  body.vb-page-contact .wpcf7 form input[type="text"],
  body.vb-page-contact .wpcf7 form input[type="email"],
  body.vb-page-contact .wpcf7 form input[type="tel"],
  body.vb-page-contact .wpcf7 form select {
    min-height: 48px;
  }

  body.vb-page-contact .wpcf7 form .vb-contact-page__form-grid--two {
    grid-template-columns: 1fr;
  }

  body.vb-page-community .vb-post__content > p:first-child {
    margin-bottom: 22px;
    font-size: 14px;
  }

  body.vb-page-community .vb-post__content .jsneo-tab-nav {
    gap: 8px;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }

  body.vb-page-community .vb-post__content .jsneo-tab-nav li {
    padding: 9px 14px;
    font-size: 12px;
  }

  body.vb-page-community .vb-post__content .jsneo-accordion-item .jsneo-accordion-toggle {
    padding: 18px 18px 18px 20px;
  }

  body.vb-page-community .vb-post__content .jsneo-accordion-title {
    font-size: 15px;
  }

  body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap {
    padding: 0 20px 20px;
  }

  body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap p,
  body.vb-page-community .vb-post__content .jsneo-accordion-inner-wrap li {
    font-size: 14px;
    line-height: 1.78;
  }

  body.page.vb-page-top-spaced:not(.home):not(.woocommerce-page) .vb-main > .vb-section {
    padding-top: 38px;
  }

  body.vb-page-privacy-policy .vb-post__content {
    font-size: 14px;
    line-height: 1.82;
  }

  body.vb-page-privacy-policy .vb-post__content > .subtitle {
    margin-bottom: 18px;
    font-size: 12px;
  }

  body.vb-page-privacy-policy .vb-post__content #privacy > ul {
    margin-top: 26px;
  }

  body.vb-page-privacy-policy .vb-post__content #privacy > ul > li {
    margin-top: 24px;
    padding-top: 24px;
  }

  body.vb-page-privacy-policy .vb-post__content #privacy > ul > li > dl > dt {
    margin-bottom: 10px;
    font-size: 18px;
  }

  body.vb-page-privacy-policy .vb-post__content #privacy dd > dl > dt {
    margin-top: 18px;
    font-size: 14px;
  }

  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "customer"
      "review";
    row-gap: 16px;
  }

  body.woocommerce-checkout #customer_details.col2-set {
    grid-template-columns: 1fr;
    grid-template-areas:
      "billing"
      "extra";
    gap: 14px;
  }

  body.woocommerce-checkout #order_review {
    position: static;
  }

  body.woocommerce-account.logged-in .woocommerce,
  body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    flex-direction: column;
    gap: 16px;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    flex: 0 0 auto;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    background: #fff;
  }

  body.woocommerce-account .woocommerce-Addresses,
  body.woocommerce-account .woocommerce-Addresses.col2-set {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row,
  body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    column-gap: 10px;
  }

  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__image,
  body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__image {
    padding: 6px !important;
    padding-right: 6px !important;
    background: #f5f5f5;
  }

  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__product,
  body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__product {
    min-width: 0 !important;
    grid-column-end: 3 !important;
  }

  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__quantity,
  body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__quantity {
    padding-right: 6px !important;
  }

  body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-item__total,
  body.woocommerce-checkout table.wc-block-cart-items .wc-block-cart-item__total {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin-top: 4px;
    text-align: left !important;
  }

  body.woocommerce-cart .wc-block-components-product-name,
  body.woocommerce-cart .wc-block-components-product-price,
  body.woocommerce-cart .wc-block-components-formatted-money-amount,
  body.woocommerce-checkout .wc-block-components-product-name,
  body.woocommerce-checkout .wc-block-components-product-price,
  body.woocommerce-checkout .wc-block-components-formatted-money-amount {
    font-size: 14px;
    line-height: 1.4;
    word-break: keep-all;
  }

  body.woocommerce-cart .wc-block-components-quantity-selector input,
  body.woocommerce-cart .wc-block-components-quantity-selector__button,
  body.woocommerce-checkout .wc-block-components-quantity-selector input,
  body.woocommerce-checkout .wc-block-components-quantity-selector__button {
    min-height: 32px;
    font-size: 14px;
  }

  body.woocommerce-cart .vb-line-item-color,
  body.woocommerce-cart .vb-line-item-discount {
    font-size: 12px;
  }

  .vb-checkout-item {
    gap: 10px;
  }

  .vb-checkout-item__thumb {
    flex-basis: 92px;
    width: 92px;
    height: 92px;
    padding: 6px;
  }

  body.woocommerce-checkout #customer_details > div,
  body.woocommerce-checkout #order_review {
    padding: 14px;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    padding-right: 8px;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 19px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content,
  body.woocommerce-account .woocommerce form.login,
  body.woocommerce-account .woocommerce form.register,
  body.woocommerce-account .woocommerce form.lost_reset_password {
    padding: 14px;
  }

  body.woocommerce-account .vb-social-auth,
  .vb-auth-page .vb-social-auth {
    padding: 14px;
  }

  body.vb-nav-open {
    overflow: hidden;
  }

  .vb-header__inner {
    min-height: 72px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .vb-logo__image {
    max-height: var(--vb-logo-max-height-mobile, 36px);
  }

  .vb-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 42;
  }

  .vb-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 84vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    z-index: 41;
    margin: 0;
    padding: 86px 22px 26px;
    border-left: 1px solid #ebebeb;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }

  .vb-header.is-nav-open .vb-nav {
    transform: translateX(0);
  }

  .vb-nav-toggle[aria-expanded="true"] + .vb-nav {
    transform: translateX(0);
  }

  .vb-menu {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    font-size: 16px;
    padding: 0;
  }

  .vb-menu a {
    display: block;
    line-height: 1.35;
  }

  .vb-nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
    font-size: 15px;
  }

  .vb-nav-user > a:not(.vb-icon-link) {
    font-weight: 600;
    font-size: 15px;
  }

  .vb-user-nav {
    display: none;
  }

  .vb-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    z-index: 40;
    transition: opacity 0.24s ease;
  }

  .vb-header.is-nav-open .vb-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .vb-nav-toggle[aria-expanded="true"] ~ .vb-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .vb-pdp__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vb-pdp__summary {
    padding: 18px;
  }

  .vb-product-grid,
  .vb-lookbook-grid,
  .vb-new-grid,
  .vb-card-grid,
  .vb-card-grid--feature,
  .vb-spec-grid,
  .woocommerce ul.products,
  .vb-footer__grid {
    grid-template-columns: 1fr;
  }

  .vb-section {
    padding: 56px 0;
  }

  .vb-shop-editor-content {
    padding-bottom: 6px;
  }

  .vb-shop-editor-content + .vb-section#products {
    padding-top: 6px;
  }

  .home .vb-main .vb-section {
    padding: 68px 0;
  }

  .home .vb-collection-shell .vb-product-grid,
  /* Tablet: 1024px 이하 */
  @media (max-width: 1024px) {
    .home .vb-lookbook-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
  }

  /* Mobile: 768px 이하 */
  @media (max-width: 768px) {
    .home .vb-lookbook-grid {
      display: flex !important; /* 그리드 해제, 강제 플렉스 전환 */
      grid-template-columns: none !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding: 0 20px 24px;
      margin: 0 -20px;
      -webkit-overflow-scrolling: touch;
    }

    .home .vb-lookbook-grid .vb-lookbook-card {
      flex: 0 0 85%; /* 화면의 85% 차지 */
      max-width: none;
      scroll-snap-align: start;
    }

    /* 모바일 카드 비율 최적화 (세로형 4:5) */
    .home .vb-lookbook-grid .vb-lookbook-card .vb-lookbook-card__media {
      aspect-ratio: 4 / 5;
    }
  }

  .vb-shop-toolbar {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vb-shop-toolbar .woocommerce-result-count {
    flex: 0 0 auto;
    text-align: left;
  }
}
