:root {
  --colorBtnPrimary: #111111;
  --colorBtnPrimaryText: #ecdccf;
  --colorNavText: #333333;
  --colorAnnouncement: #000000;
  --colorAnnouncementText: #ffffff;
  --colorFooter: #fafafa;
  --colorTextBody: #111111;
  --buttonRadius: 0px;
  --typeBaseSize: 12px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--colorTextBody);
  background: #fff;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; color: inherit; }
.page-width { max-width: 1500px; margin: 0 auto; padding: 0 17px; }
@media (min-width: 1280px) {
  .page-width { padding: 0 40px; }
}
.announcement-bar {
  background: var(--colorAnnouncement);
  color: var(--colorAnnouncementText);
  text-align: center;
  font-size: calc(var(--typeBaseSize) * 0.75);
}
.announcement-bar-static {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 500;
  background: #000;
}
.announcement-bar a { color: #fff; }
@media (min-width: 769px) {
  .announcement-bar { font-size: calc(var(--typeBaseSize) * 0.85); }
}
.site-header { background: #fff; }
.header-layout { display: flex; align-items: center; min-height: 64px; }
.header-item { display: flex; align-items: center; flex: 1 1 auto; }
.header-item--logo { flex: 0 0 auto; }
.header-item--icons { justify-content: flex-end; }
.site-header__logo-link { display: block; width: 89px; height: 21px; }
.site-header__logo-link svg { width: 100%; height: 100%; }
.site-nav__link--icon,
.icon-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0;
  cursor: pointer;
  color: inherit;
}
.site-nav__link--icon svg,
.icon-plain svg { width: 24px; height: 24px; }
.site-nav__link--icon-trans { width: 32px; }
.site-nav__link--icon-trans svg { width: 22px; height: 22px; }
.nav-toggle { display: none; }
.site-nav__search { font-size: 14px; }
.site-nav__search .site-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 7px 0;
  border-bottom: 1px solid #cecece;
}
.site-nav__search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #999;
  padding: 0 28px 0 0;
}
.site-nav__search svg { position: absolute; right: 0; width: 24px; height: 24px; }
.cart-link { position: relative; display: inline-flex; }
.cart-link__bubble {
  display: none;
  position: absolute;
  top: -2px;
  right: -6px;
  height: 18px;
  min-width: 18px;
  line-height: 18px;
  padding: 0 4px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  background: #999;
  border-radius: 100px;
}
.cart-link__bubble--visible { display: block; }
.site-nav-user { position: relative; }
.site-nav-user__dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 278px;
  z-index: 30;
  background: #fff;
  box-shadow: 0 10px 20px #00000017;
}
.site-nav-user.is-open .site-nav-user__dropdown,
.site-nav-user:hover .site-nav-user__dropdown { display: block; }
.site-nav-user_info_wrapper {
  background: #f0f0f0;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.site-nav-user_login_wrapper { padding: 16px 16px 12px; }
.site-nav-user_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #000;
}
.site-nav-user_btn.btn-text {
  height: auto;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  color: #000;
  background: #fff;
}
.header-item--navigation-pc { border-top: 0; }
.site-navigation {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
}
.site-nav__item { position: relative; margin-right: 21px; }
.site-nav__item:last-child { margin-right: 0; }
.site-nav__link--underline {
  position: relative;
  display: inline-block;
  line-height: 45px;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--colorNavText);
}
.site-nav__link--underline:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 100%;
  border-bottom: 2px solid var(--colorNavText);
  transition: right .5s;
}
.site-nav__item:hover .site-nav__link--underline:after { right: 0; }
.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e8e8e1;
  z-index: 20;
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown { display: block; }
.site-nav__dropdown a { display: block; padding: 8px 16px; font-size: 12px; color: #333; }
.site-nav__dropdown a:hover { background: #fafafa; }
.btn,
#loginform .button-primary,
.stack-form button,
.cart-form > button {
  line-height: 1.42;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-block;
  padding: 13px 20px;
  margin: 0;
  min-width: 90px;
  border: 1px solid transparent;
  border-radius: 0;
  color: #ecdccf;
  background: #111111;
  cursor: pointer;
  appearance: none;
}
.btn--full,
#loginform .button-primary,
.stack-form button { width: 100%; }
.product-add { display: flex; align-items: center; gap: 12px; }
.add-to-cart {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 54px;
}
.wishlist-square {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  background: #fff;
  padding: 0;
  cursor: pointer;
}
.wishlist-square svg { width: 26px; height: 26px; }
.section { padding: 42px 0 10px; }
.section-title,
.prose h1,
.auth h1,
.account h1,
.product-info h1 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
.product-info h1,
.prose h1,
.auth h1,
.account h1 { text-align: left; font-size: 22px; letter-spacing: 0.04em; }
.wrap { width: min(1500px, calc(100% - 34px)); margin: 0 auto; }
.product-grid, .category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 17px;
}
.product-card h3 {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .price {
  margin-top: 2px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #333;
}
.product-card img, .category-tile img, .img-fallback {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #f3f3f3;
}
.category-tile { position: relative; display: block; }
.category-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero img { width: 100%; height: auto; }
.about-band { margin-top: 36px; padding: 48px 0; background: var(--colorFooter); text-align: center; }
.about-band h2 { margin: 0 0 8px; letter-spacing: 0.14em; font-size: 13px; font-weight: 500; }
.text-link { display: inline-block; margin-top: 8px; border-bottom: 1px solid #111; }
.site-footer { margin-top: 40px; background: var(--colorFooter); padding: 36px 0 20px; color: #000; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.site-footer h2 { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.legal { width: min(1500px, calc(100% - 80px)); margin: 28px auto 0; color: #666; font-size: 12px; }
.prose, .auth, .account { padding: 48px 0 64px; max-width: 720px; }
.product { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; padding: 28px 0 10px; }
.product-photo-img { width: 100%; }
.buy-form, .stack-form, #loginform { display: grid; gap: 12px; max-width: 420px; }
.stack-form label, #loginform p, .buy-form label { display: grid; gap: 6px; }
.stack-form input, .stack-form textarea, #loginform input, .buy-form input[type="number"], .cart-table input {
  border: 1px solid #e8e8e1;
  padding: 10px;
  width: 100%;
}
.price-lg { font-size: 14px; font-weight: 600; color: #333; }
.form-error { color: #c20000; }
.account-nav { display: flex; gap: 16px; margin: 18px 0; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.account-facts { display: grid; gap: 12px; }
.account-facts div { display: grid; grid-template-columns: 90px 1fr; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td { border-bottom: 1px solid #e8e8e1; padding: 12px 8px; vertical-align: middle; }
.cart-photo img { width: 84px; aspect-ratio: 2 / 3; object-fit: cover; }
.nav-links { margin-top: 18px; text-align: center; }
.nav-links .page-numbers { margin: 0 6px; }
.drawer {
  display: none;
  position: fixed;
  inset: 0 auto 0 0;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 40;
  padding: 20px;
  overflow: auto;
  border-right: 1px solid #e8e8e1;
}
.drawer.is-open { display: block; }
.drawer ul { list-style: none; margin: 16px 0 0; padding: 0; }
.drawer a { display: block; padding: 8px 0; letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px; }
.drawer ul ul { margin: 0 0 8px 12px; }
.drawer-close { border: 0; background: none; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .header-item--navigation-pc, .site-nav__search, .site-nav__link--icon-trans { display: none; }
  .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product, .footer-grid { grid-template-columns: 1fr; }
  .header-item--logo .site-header__logo-link { width: 77px; height: 21px; }
}

/* ---- WooCommerce list/grid alignment with the reference storefront ---- */
.product-card { position: relative; }
.product-card__media {
  position: relative;
  overflow: hidden;
  display: block;
}
.product-card__image-link { display: block; }
.product-card__meta { display: block; }

/* Hover "quick add" button, matching the reference .quick-product__btn */
.product-card .quick-add,
.product-card .add_to_cart_button,
.product-card .added_to_cart {
  position: absolute;
  bottom: 40px;
  left: 22%;
  right: 22%;
  z-index: 2;
  display: block;
  padding: 8px 5px;
  border: 1px solid #000;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease-out, background .4s ease, color .4s ease;
}
.product-card:hover .quick-add,
.product-card:hover .add_to_cart_button,
.product-card:hover .added_to_cart,
.product-card .quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card .quick-add:hover,
.product-card .add_to_cart_button:hover {
  background: #000;
  color: #e7cdbb;
}
.product-card .added_to_cart { bottom: 8px; }
.product-card .quick-add.loading { opacity: 1; }
.product-card .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Touch devices have no hover: keep the button visible */
@media (hover: none) {
  .product-card .quick-add,
  .product-card .add_to_cart_button { opacity: 1; transform: none; }
}

/* Subtle image zoom on hover, as on the reference grid */
.product-card__media img { transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.03); }

/* ---- Collection toolbar (result count + sorting) ---- */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e1;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}
.collection-toolbar .woocommerce-result-count { margin: 0; }
.collection-toolbar .woocommerce-ordering { margin: 0; }
.collection-toolbar select {
  appearance: none;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  padding: 7px 30px 7px 12px;
  font: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='none' stroke='%23111' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
@media (max-width: 768px) {
  .collection-toolbar { flex-wrap: wrap; font-size: 11px; }
}

/* ---- Home page sections mirroring the reference storefront ---- */
.hero { position: relative; }
.hero-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}
.hero-badge span { font-size: 9px; letter-spacing: 0.1em; font-weight: 500; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  align-items: start;
}
.feature-tile { position: relative; display: block; }
.feature-tile img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #f3f3f3; }
.feature-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
/* staggered rhythm, as on the reference grid */
.feature-tile--1 { margin-top: 42px; }
.feature-tile--3 { margin-top: 42px; }

.banner-full { margin: 34px 0; }
.banner-full img {
  width: 100%;
  display: block;
  aspect-ratio: 1800 / 560;
  object-fit: cover;
  object-position: center;
}

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.split-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.category-grid--four { grid-template-columns: repeat(4, 1fr); }
.category-grid--four img { aspect-ratio: 3 / 4; object-fit: cover; }

.about-band .btn-outline {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 26px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.about-band .btn-outline:hover { background: #111; color: #fff; }

.press-strip { background: #111; padding: 18px 0; }
.press-strip img { display: block; width: min(1500px, calc(100% - 34px)); margin: 0 auto; height: auto; }

.influencer-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 17px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.influencer-card { scroll-snap-align: start; }
.influencer-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #f3f3f3; }

/* Header: logo sits on the left, search rides with the icons on the right */
.header-item--left { gap: 14px; }
.header-item--left .site-header__logo-link { display: block; width: 89px; height: 21px; }
.site-nav__search { flex: 0 1 250px; margin-right: 14px; }

@media (max-width: 768px) {
  .feature-grid, .category-grid--four { grid-template-columns: repeat(2, 1fr); }
  .feature-tile--1, .feature-tile--3 { margin-top: 0; }
  .split-grid { grid-template-columns: 1fr; }
  .influencer-rail { grid-auto-columns: minmax(62%, 1fr); }
  .hero-badge { right: 14px; bottom: 14px; width: 46px; height: 46px; font-size: 11px; }
}

/* ---- Footer, four columns with subscribe block ---- */
.footer-grid { grid-template-columns: repeat(4, 1fr); }
.footer-col h2 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; }
.footer-subscribe { display: flex; gap: 0; margin: 0 0 10px; }
.footer-subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #d8d8d0;
  border-right: 0;
  border-radius: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.footer-subscribe button {
  flex: 0 0 auto;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-subscribe button:hover { background: #333; border-color: #333; }
.footer-fine { font-size: 11px; line-height: 17px; color: #8a8a82; margin: 0 0 18px; }
.footer-follow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 10px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; }
.footer-social a { color: #666; text-decoration: none; }
.footer-social a:hover { color: #111; }

.footer-bottom {
  border-top: 1px solid #e8e8e1;
  margin-top: 28px;
  padding: 20px 0 28px;
  text-align: center;
}
.payment-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
}
.payment-row span {
  display: inline-block;
  min-width: 46px;
  padding: 5px 9px;
  border: 1px solid #e0e0d8;
  border-radius: 3px;
  background: #fff;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #555;
}
.footer-bottom .legal { font-size: 11px; color: #8a8a82; margin: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Collection page: sidebar + grid, per the reference storefront ---- */
.collection-layout {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 31px;
  width: min(1500px, calc(100% - 34px));
  margin: 18px auto 0;
  align-items: start;
}
.collection-sidebar { position: sticky; top: 16px; }
.filter-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.filter-head h2 { margin: 0; font-size: 15px; font-weight: 500; letter-spacing: 0.02em; }
.filter-reset {
  border: 0; background: none; padding: 0; cursor: pointer;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #888;
}
.filter-reset:hover { color: #111; }

.filter-group { border-top: 1px solid #ececE6; padding: 12px 0; }
.filter-group:first-of-type { border-top: 0; }
.filter-group > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.04em; color: #111;
}
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group > summary::after { content: "⌄"; font-size: 14px; color: #999; transform: translateY(-2px); }
.filter-group[open] > summary::after { content: "⌃"; transform: translateY(2px); }
.filter-body { padding-top: 12px; }

.filter-body input[type="range"] { width: 100%; accent-color: #111; }
.filter-price-labels { display: flex; justify-content: space-between; font-size: 11px; color: #666; margin-top: 4px; }

.filter-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 10px; }
.filter-checks label { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #444; cursor: pointer; }
.filter-checks input { width: 13px; height: 13px; accent-color: #111; }

.filter-apply {
  width: 100%; margin-top: 16px; padding: 10px;
  border: 1px solid #111; background: #111; color: #fff;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}
.filter-apply:hover { background: #333; border-color: #333; }

.collection-main { min-width: 0; }
.collection-layout .collection-toolbar {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.view-switch { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #666; }
.view-btn { border: 0; background: none; cursor: pointer; font-size: 16px; line-height: 1; color: #bbb; padding: 0 2px; }
.view-btn.is-active { color: #111; }

/* card: hover image swap, tag, sale price, swatches, rating */
.product-card__media { background: #f3f3f3; }
.product-card__img--hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s ease;
}
.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__media img.product-card__img { transform: none; }

.card-tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  padding: 3px 7px;
  background: #f6efe6;
  color: #7a4b22;
  font-size: 10px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.card-tag--new { background: #efefe9; color: #444; }

.product-card .price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.price-sale { color: #c0392b; font-weight: 600; }
.price-off { color: #c0392b; font-size: 12px; }
.price-was { color: #999; font-size: 12px; text-decoration: line-through; font-weight: 400; }

.card-swatches { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.card-swatch { width: 13px; height: 13px; border-radius: 50%; border: 1px solid #e2e2dc; display: inline-block; }
.card-swatch-more { font-size: 10px; color: #888; }

.card-rating { display: flex; align-items: center; gap: 5px; margin-top: 5px; font-size: 11px; color: #666; }
.card-stars {
  position: relative; color: #ddd; letter-spacing: 1px;
}
.card-stars::before {
  content: "★★★★★";
  position: absolute; left: 0; top: 0;
  width: var(--filled, 0%);
  overflow: hidden;
  color: #111;
}
.card-reviews { color: #999; }

/* two-up density from the View switch */
.product-grid.is-two { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar { position: static; }
  .filter-checks { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Card media: lock every tile to the reference 2:3 frame ---- */
.product-card__media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f3f3f3;
}
.product-card__image-link { position: absolute; inset: 0; display: block; }
.product-card__media img,
.product-card__media .product-card__img,
.product-card__media .product-card__img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.product-card__media .product-card__img--hover { opacity: 0; }
.product-card:hover .product-card__media .product-card__img--hover { opacity: 1; }
.product-card__meta { display: block; margin-top: 8px; }
.product-grid { align-items: start; }

/* Colour filter chips */
.filter-colors { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-color { position: relative; cursor: pointer; line-height: 0; }
.filter-color input { position: absolute; opacity: 0; width: 0; height: 0; }
.filter-color__chip {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid #e2e2dc;
  box-shadow: 0 0 0 0 #111;
  transition: box-shadow .15s ease;
}
.filter-color input:checked + .filter-color__chip { box-shadow: 0 0 0 2px #111; }

/* row rhythm matches the reference grid */
.product-grid { gap: 26px 17px; }

/* Collection banner, shown when artwork exists for the slug */
.collection-hero { width: 100%; }
.collection-hero img {
  width: 100%;
  display: block;
  aspect-ratio: 1560 / 361;
  object-fit: cover;
}
.collection-hero + .collection-layout { margin-top: 18px; }

/* ---- Product page, mirroring the reference layout ---- */
.pdp-crumbs { padding: 14px 0; font-size: 11px; color: #888; display: flex; gap: 6px; flex-wrap: wrap; }
.pdp-crumbs a:hover { color: #111; }
.pdp-crumbs strong { font-weight: 400; color: #444; }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 578px;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
}
.pdp-gallery { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 17px; align-items: start; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.pdp-thumb {
  padding: 0; border: 1px solid transparent; background: none; cursor: pointer; line-height: 0;
}
.pdp-thumb.is-active { border-color: #111; }
.pdp-thumb img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; }
.pdp-main { max-width: 601px; }
.pdp-main img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; background: #f3f3f3; }

.pdp-title { margin: 0 0 8px; font-size: 18px; font-weight: 400; letter-spacing: 0.01em; line-height: 1.35; }
.pdp-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 11px; color: #777; }

.pdp-price { display: flex; align-items: baseline; gap: 9px; margin: 0 0 14px; }
.pdp-price__now { font-size: 24px; font-weight: 600; color: #c0392b; }
.pdp-price__was { font-size: 14px; color: #999; text-decoration: line-through; }
.pdp-price__off { font-size: 11px; color: #fff; background: #c0392b; padding: 2px 6px; }

.pdp-option { margin-bottom: 16px; }
.pdp-option__head { font-size: 12px; color: #666; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.pdp-option__head strong { color: #111; font-weight: 600; letter-spacing: 0.04em; }
.pdp-sizeguide { margin-left: auto; font-size: 11px; color: #666; text-decoration: underline; }

.pdp-colors { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-color { cursor: pointer; line-height: 0; }
.pdp-color input { position: absolute; opacity: 0; width: 0; height: 0; }
.pdp-color__chip {
  display: inline-block; width: 34px; height: 34px;
  border: 1px solid #e2e2dc; box-shadow: 0 0 0 0 #111; transition: box-shadow .15s ease;
}
.pdp-color input:checked + .pdp-color__chip { box-shadow: 0 0 0 2px #111; }

.pdp-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-size { cursor: pointer; }
.pdp-size input { position: absolute; opacity: 0; width: 0; height: 0; }
.pdp-size span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 34px; padding: 0 10px;
  border: 1px solid #d8d8d0; font-size: 12px; color: #333; background: #fff;
}
.pdp-size input:checked + span { border-color: #111; box-shadow: inset 0 0 0 1px #111; }

.pdp-speedy {
  display: inline-block; margin: 4px 0 16px; padding: 4px 9px;
  background: #f6efe6; color: #7a4b22; font-size: 11px;
}

.pdp-actions { display: flex; gap: 10px; align-items: stretch; margin-bottom: 14px; }
.pdp-wish {
  flex: 0 0 52px; border: 1px solid #d8d8d0; background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.pdp-wish svg { width: 20px; height: 20px; }
.pdp-add {
  flex: 1 1 auto; border: 0; border-radius: 0; background: #111; color: #fff;
  padding: 16px 20px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}
.pdp-add:hover { background: #333; }

.pdp-perks { list-style: none; margin: 0 0 18px; padding: 0; font-size: 12px; color: #555; }
.pdp-perks li { padding: 3px 0; }

.pdp-accordion { border-top: 1px solid #ececE6; padding: 12px 0; }
.pdp-accordion > summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #111;
}
.pdp-accordion > summary::-webkit-details-marker { display: none; }
.pdp-accordion > summary::after { content: "+"; font-size: 15px; color: #999; }
.pdp-accordion[open] > summary::after { content: "–"; }
.pdp-accordion__body { padding-top: 10px; font-size: 12px; line-height: 1.7; color: #555; }

.product-grid--five { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .pdp { grid-template-columns: 1fr; gap: 24px; }
  .product-grid--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; overflow-x: auto; }
  .pdp-thumb { flex: 0 0 64px; }
  .product-grid--five { grid-template-columns: repeat(2, 1fr); }
}

/* colour chips render the variant photo, as on the reference product page */
.pdp-color__chip--img {
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 52px;
}

/* ---- Slide-out bag ---- */
.bag-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0; transition: opacity .25s ease;
}
.bag-backdrop.is-open { opacity: 1; }
.bag-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
  width: min(420px, 100%);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
}
.bag-drawer.is-open { transform: translateX(0); }
.bag-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #ececE6;
}
.bag-drawer__head h2 { margin: 0; font-size: 15px; font-weight: 500; letter-spacing: 0.04em; }
.bag-drawer__close { border: 0; background: none; font-size: 24px; line-height: 1; cursor: pointer; color: #666; }
.bag-drawer__close:hover { color: #111; }
.bag-drawer__contents { flex: 1 1 auto; overflow-y: auto; display: flex; flex-direction: column; }

.bag-empty { padding: 56px 24px; text-align: center; }
.bag-empty__title { margin: 0 0 6px; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.bag-empty__hint { margin: 0 0 22px; font-size: 12px; color: #8a8a82; }
.bag-empty__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.btn-outline, .btn-solid {
  display: inline-block; padding: 11px 20px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
  border: 1px solid #111; text-decoration: none;
}
.btn-outline { background: #fff; color: #111; }
.btn-outline:hover { background: #111; color: #fff; }
.btn-solid { background: #111; color: #fff; }
.btn-solid:hover { background: #333; color: var(--colorBtnPrimaryText); }
.btn-block { display: block; width: 100%; margin-top: 8px; }

.bag-lines { list-style: none; margin: 0; padding: 8px 20px; flex: 1 1 auto; }
.bag-line { display: grid; grid-template-columns: 72px 1fr 20px; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0f0ea; }
.bag-line__img img { width: 72px; aspect-ratio: 2 / 3; object-fit: cover; background: #f3f3f3; }
.bag-line__title { font-size: 12px; line-height: 17px; color: #333; display: block; }
.bag-line__opts { margin: 4px 0 0; font-size: 11px; color: #8a8a82; letter-spacing: 0.04em; }
.bag-line__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; }
.bag-line__qty { font-size: 11px; color: #8a8a82; }
.bag-line__price { font-size: 13px; font-weight: 600; color: #111; }
.bag-line__remove { font-size: 18px; color: #bbb; line-height: 1; }
.bag-line__remove:hover { color: #c0392b; }

.bag-foot { padding: 16px 20px 22px; border-top: 1px solid #ececE6; background: #fff; }
.bag-foot__row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.bag-foot__row strong { font-size: 15px; }
.bag-foot__note { margin: 0 0 12px; font-size: 11px; color: #8a8a82; }

/* ---- Cart page in the storefront's own clothes ---- */
.woocommerce-cart .shop_table { border: 0; border-collapse: collapse; width: 100%; }
.woocommerce-cart .shop_table th {
  border: 0; border-bottom: 1px solid #111; padding: 10px 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #666; text-align: left;
}
.woocommerce-cart .shop_table td { border: 0; border-bottom: 1px solid #f0f0ea; padding: 16px 8px; vertical-align: middle; }
.woocommerce-cart .product-thumbnail img { width: 84px; aspect-ratio: 2 / 3; object-fit: cover; background: #f3f3f3; }
.woocommerce-cart .product-name a { font-size: 13px; color: #333; }
.woocommerce-cart .product-price, .woocommerce-cart .product-subtotal { font-size: 13px; }
.woocommerce-cart .quantity .qty {
  width: 72px; height: 40px; border: 1px solid #d8d8d0; border-radius: 0; text-align: center; font-size: 13px;
}
.woocommerce-cart a.remove {
  color: #bbb !important; font-size: 20px; line-height: 1;
}
.woocommerce-cart a.remove:hover { color: #c0392b !important; background: none !important; }
.woocommerce-cart .coupon .input-text {
  height: 44px; border: 1px solid #d8d8d0; border-radius: 0; padding: 0 12px; font-size: 13px; min-width: 200px;
}
.woocommerce-cart .button,
.woocommerce-cart .checkout-button {
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  padding: 13px 22px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}
.woocommerce-cart .button:hover,
.woocommerce-cart .checkout-button:hover { background: #333 !important; border-color: #333 !important; color: var(--colorBtnPrimaryText) !important; }
.woocommerce-cart .cart_totals h2 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.woocommerce-cart .cart_totals table { border: 0; }
.woocommerce-cart .cart_totals th, .woocommerce-cart .cart_totals td {
  border: 0; border-bottom: 1px solid #f0f0ea; padding: 12px 8px; font-size: 13px;
}
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; max-width: 420px; float: right; }

@media (max-width: 560px) {
  .bag-drawer { width: 100%; }
}

/* ---- Header language switcher ---- */
.site-lang { position: relative; }
.site-lang__toggle {
  display: inline-flex; align-items: center; gap: 4px;
  border: 0; background: none; padding: 0; cursor: pointer; color: inherit;
}
.site-lang__toggle svg { width: 20px; height: 20px; }
.site-lang__code { font-size: 12px; letter-spacing: 0.06em; }
.site-lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 60;
  min-width: 150px; margin: 0; padding: 6px 0;
  list-style: none; background: #fff; border: 1px solid #ececE6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-lang.is-open .site-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-lang__menu a {
  display: block; padding: 9px 14px; font-size: 12px; color: #444; letter-spacing: 0.03em;
}
.site-lang__menu a:hover { background: #faf8f5; color: #111; }
.site-lang__menu a.is-current { color: #111; font-weight: 500; }
