:root {
  --ws-bg: #f7f6f1;
  --ws-surface: #ffffff;
  --ws-text: #111111;
  --ws-muted: #666666;
  --ws-border: #d9d9d9;
  --ws-border-strong: #a7a7a7;
  --ws-chip-bg: #fafaf8;
  --ws-search-bg: #dedede;
  --ws-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}
* { box-sizing: border-box; }
html { margin: 0; padding: 0; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ws-text);
  background:
    radial-gradient(circle at 10% 20%, rgba(0,0,0,0.028) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 40%, rgba(0,0,0,0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fbfaf6 0%, var(--ws-bg) 100%);
  background-size: 18px 18px, 24px 24px, auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text { position: absolute; left: -9999px; }

.ws-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: rgba(255,255,255,0.38);
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  box-shadow: var(--ws-shadow);
  position: relative;
}
.ws-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 14px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 246, 241, 0.78);
}
.ws-menu-toggle {
  width: 34px; height: 34px; border: 0; background: transparent; padding: 0; cursor: pointer; position: relative;
}
.ws-menu-toggle span {
  display: block; width: 26px; height: 2px; background: #303030; border-radius: 99px; position: absolute; left: 2px; transition: .2s ease;
}
.ws-menu-toggle span:first-child { top: 11px; }
.ws-menu-toggle span:last-child { top: 19px; width: 18px; }
.ws-menu-toggle.is-open span:first-child { transform: rotate(45deg); top: 15px; }
.ws-menu-toggle.is-open span:last-child { transform: rotate(-45deg); top: 15px; width: 26px; }
.ws-branding { flex: 1; display: flex; justify-content: center; }
.ws-logo-text,
.ws-branding .custom-logo-link { display: inline-flex; align-items: center; justify-content: center; }
.ws-logo-text { font-size: 18px; font-weight: 400; letter-spacing: -0.02em; }
.ws-branding .custom-logo { max-height: 34px; width: auto; }
.ws-header-actions { display: flex; gap: 10px; }
.ws-icon-circle {
  width: 41px; height: 41px; border-radius: 50%; border: 2px solid #000; background: #fff; display: grid; place-items: center; position: relative;
}
.ws-icon-circle--filled { background: #000; }
.ws-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; border-radius: 99px; background: #000; color: #fff; font-size: 10px; display: grid; place-items: center; border: 1px solid #fff; }
.ws-icon { display: inline-block; position: relative; }
.ws-bag-icon { width: 16px; height: 14px; border: 2px solid #000; border-radius: 0 0 5px 5px; }
.ws-bag-icon::before { content: ''; position: absolute; width: 8px; height: 5px; border: 2px solid #000; border-bottom: 0; border-radius: 8px 8px 0 0; left: 2px; top: -7px; }
.ws-user-icon { width: 15px; height: 15px; }
.ws-user-icon::before, .ws-user-icon::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); border: 1.8px solid currentColor; }
.ws-icon-circle--filled .ws-user-icon { color: #fff; }
.ws-user-icon::before { width: 7px; height: 7px; top: 0; border-radius: 50%; }
.ws-user-icon::after { width: 12px; height: 7px; bottom: 0; border-radius: 9px 9px 4px 4px; border-top-left-radius: 10px; border-top-right-radius: 10px; }
.ws-main { padding: 18px 18px 40px; }
.ws-drawer {
  position: absolute; left: 0; right: 0; top: 78px; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--ws-border); padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.ws-drawer.is-open { max-height: 240px; padding-bottom: 16px; }
.ws-nav-menu { list-style: none; padding: 0; margin: 0; }
.ws-nav-menu li a { display: block; padding: 12px 0; font-size: 14px; }
.ws-breadcrumbs, .woocommerce-breadcrumb {
  font-size: 12px; letter-spacing: 0.08em; color: rgba(0,0,0,.7); margin: 18px 0 8px;
}
.ws-page-title, .woocommerce-products-header__title.page-title {
  margin: 0 0 18px; font-size: 20px; line-height: 1.15; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
.ws-page-title--shop { margin-bottom: 16px; }
.ws-search-wrap { margin-bottom: 26px; }
.ws-search-form {
  background: var(--ws-search-bg); display: flex; align-items: center; gap: 12px; padding: 12px 16px; min-height: 40px;
}
.ws-search-icon { font-size: 24px; line-height: 1; color: #222; }
.ws-search-input { border: 0; background: transparent; width: 100%; font: inherit; color: var(--ws-text); letter-spacing: 0.18em; font-size: 11px; text-align: right; outline: none; }
.ws-filter-block { margin-bottom: 32px; }
.ws-filter-toggle {
  display: inline-flex; gap: 8px; align-items: center; border: 0; background: transparent; padding: 0; font-size: 16px; font-weight: 700; letter-spacing: 0.14em; cursor: pointer; margin-bottom: 16px;
}
.ws-chevron { font-size: 26px; line-height: 1; font-weight: 400; transform: translateY(-1px); }
.ws-filter-chips { display: flex; gap: 10px 14px; flex-wrap: wrap; }
.ws-chip {
  display: inline-flex; justify-content: center; align-items: center; min-width: 101px; min-height: 24px; padding: 4px 10px; border: 1px solid var(--ws-border-strong); background: var(--ws-chip-bg); color: var(--ws-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.03em;
}
.ws-chip.is-active { border-color: #555; color: #111; }
.ws-filter-block.is-collapsed .ws-filter-chips { display: none; }

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  list-style: none;
}
.ws-product-card { display: block; }
.ws-product-image-link { display: block; }
.ws-product-image-frame {
  position: relative; aspect-ratio: 166 / 156; border: 1px solid var(--ws-border); background: #fff; overflow: hidden; display: grid; place-items: center;
}
.ws-product-image { width: 74%; height: 100%; object-fit: cover; }
.ws-product-plus {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; border: 0; background: transparent; font-size: 20px; line-height: 1; color: #444; padding: 0;
}
.ws-product-meta { padding-top: 12px; }
.ws-product-title { margin: 0 0 8px; font-size: 14px; line-height: 1.55; font-weight: 500; }
.ws-product-title a { color: inherit; }
.ws-product-price,
.ws-product-price .amount,
.woocommerce ul.products li.product .price {
  color: #111 !important; font-size: 20px !important; line-height: 1.1 !important; font-weight: 600 !important; margin: 0 !important;
}
.ws-empty-state { font-size: 14px; line-height: 1.7; color: var(--ws-muted); }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a { padding: 8px 12px; border: 1px solid var(--ws-border); }

.ws-home-hero {
  padding: 8px 0 26px;
}
.ws-hero-title { font-size: 34px; line-height: 0.95; margin: 0 0 16px; letter-spacing: 0.06em; }
.ws-hero-copy { font-size: 14px; line-height: 1.8; color: var(--ws-muted); margin: 0 0 20px; }
.ws-primary-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 20px; border-radius: 999px; background: #111; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
}
.ws-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.ws-section-head h2 { margin: 0; font-size: 18px; }
.ws-section-head a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ws-muted); }
.ws-generic-page, .ws-home-grid-preview { padding-bottom: 24px; }
.ws-page-content { font-size: 14px; line-height: 1.8; }
.ws-footer { padding: 20px 18px 32px; color: var(--ws-muted); font-size: 12px; }

.single-product div.product { display: grid; gap: 18px; }
.single-product .product_title { font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; }
.single-product div.product p.price, .single-product div.product span.price { color: #111; font-size: 22px; font-weight: 600; }
.single-product .quantity .qty { min-height: 42px; border: 1px solid var(--ws-border); }
.single-product button.single_add_to_cart_button.button { background: #111; color: #fff; border-radius: 999px; min-height: 44px; }

@media (min-width: 760px) {
  .ws-shell { max-width: 920px; }
  .ws-main { padding: 28px 32px 48px; }
  .ws-header { padding: 26px 32px 18px; }
  .ws-drawer { top: 86px; padding: 0 32px; }
  .ws-home-hero { max-width: 620px; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 24px; }
}
