/* ── Ale Arte & Deco — Design System ─────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  --bone:       #F8F5F0;
  --paper:      #EFEAE2;
  --fog:        #E8E3DC;
  --stone:      #C4BDB4;
  --earth:      #9C8B7A;
  --ink:        #3A3530;
  --aero:       #7E9AAE;
  --aero-deep:  #5B7A8F;
  --aero-soft:  #B8C9D4;
  --mid:        #5C544D;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'JetBrains Mono', monospace;

  --hairline: 0.5px;
  --radius: 0;

  --container: 1200px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Base ── */
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
}

/* ── Paper texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.21 0 0 0 0 0.19 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.012 0.9' numOctaves='2' seed='8'/%3E%3CfeColorMatrix values='0 0 0 0 0.61 0 0 0 0 0.55 0 0 0 0 0.48 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23l)'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(52px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(24px, 3.5vw, 42px); }
h4 { font-size: clamp(20px, 2.5vw, 28px); }

.serif-italic { font-family: var(--serif); font-style: italic; }
.caption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--earth);
}
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }

/* ── Decorative elements ── */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--earth);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: var(--hairline);
  background: var(--earth);
  opacity: 0.6;
}
.rule::before { max-width: 64px; }

.diamond-rule {
  position: relative;
  height: 10px;
  width: 100%;
}
.diamond-rule::before, .diamond-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 0.5px;
  background: var(--earth);
  opacity: 0.55;
  width: calc(50% - 8px);
}
.diamond-rule::before { left: 0; }
.diamond-rule::after  { right: 0; }
.diamond-rule-gem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 0.5px solid var(--earth);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.7;
}

/* Corner marks */
.framed {
  position: relative;
}
.framed::before {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--hairline) solid var(--stone);
  pointer-events: none;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: var(--hairline) solid var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-primary:hover { background: var(--earth); border-color: var(--earth); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: var(--hairline) solid var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--ink); color: var(--bone); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-light:hover { background: var(--fog); }

/* Arrow icon inline */
.btn-arrow::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='4' x2='20' y2='4' stroke='currentColor' stroke-width='0.8'/%3E%3Cpolyline points='16,1 20,4 16,7' fill='none' stroke='currentColor' stroke-width='0.8'/%3E%3C/svg%3E") no-repeat center;
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: var(--hairline) solid var(--stone);
  backdrop-filter: blur(8px);
}
.site-header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(580%) hue-rotate(350deg) brightness(96%) contrast(88%);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav .nav-cta a {
  padding: 10px 20px;
  border: var(--hairline) solid var(--stone);
  color: var(--ink);
}
.site-nav .nav-cta a:hover { border-color: var(--ink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--ink);
}

/* ── Hero ── */
.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr min(360px, 40%);
  gap: 80px;
  align-items: center;
  padding-block: 100px 60px;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow::after {
  content: '';
  width: 64px;
  height: var(--hairline);
  background: var(--earth);
  opacity: 0.6;
}
.hero h1 { color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--aero-deep); }
.hero-body {
  font-size: 17px;
  line-height: 1.72;
  color: var(--mid);
  max-width: 440px;
  margin-top: 32px;
  font-weight: 350;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-link-secondary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--aero-deep);
  border-bottom: var(--hairline) solid var(--aero);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.hero-link-secondary:hover { color: var(--earth); border-color: var(--earth); }

/* Hero plate / lámina */
.hero-plate {
  position: relative;
  padding: 28px;
  border: var(--hairline) solid var(--stone);
  background: rgba(255,253,248,0.4);
}
.hero-plate-inner {
  aspect-ratio: 3/4;
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-plate-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero-plate-tag {
  position: absolute;
  top: -13px;
  right: 16px;
  background: var(--bone);
  padding: 3px 12px;
  border: 0.4px solid var(--stone);
}
.hero-plate-caption {
  margin-top: 16px;
  text-align: center;
}

/* Hero bottom bar */
.hero-strip {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  border-top: var(--hairline) solid var(--stone);
  opacity: 0.75;
}
.hero-strip-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-strip-logo img {
  height: 60px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(580%) hue-rotate(350deg) brightness(96%) contrast(88%);
}
.hero-strip-divider {
  width: var(--hairline);
  height: 40px;
  background: var(--stone);
}
.hero-strip-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--earth);
}

/* ── Section header ── */
.section-header {
  margin-bottom: 64px;
}
.section-header .caption { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 0; }

/* ── Workshops ── */
.workshops-section {
  padding-block: 100px;
  border-top: var(--hairline) solid var(--stone);
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}
.workshop-card {
  background: var(--bone);
  border: var(--hairline) solid var(--stone);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s;
  position: relative;
}
.workshop-card:hover { border-color: var(--earth); }
.workshop-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.workshop-modality {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--aero-deep);
  text-transform: uppercase;
}
.workshop-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--stone);
}
.workshop-card h3 {
  font-size: 26px;
  line-height: 1.1;
}
.workshop-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  flex: 1;
}
.workshop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: var(--hairline) solid var(--stone);
}
.workshop-price {
  font-family: var(--serif);
  font-size: 28px;
}
.workshop-price .currency {
  font-size: 16px;
  font-style: italic;
  color: var(--mid);
}
.workshop-cupos {
  text-align: right;
}
.workshop-cupos-count {
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1;
}
.workshop-cupos-count.low { color: var(--earth); }
.workshop-cupos-count.full { color: #c0392b; }
.workshop-cupos-label {
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.workshop-card-cta {
  width: 100%;
  justify-content: center;
}

/* ── Single Workshop ── */
.workshop-single {
  padding-block: 80px;
}
.workshop-single-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.workshop-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--fog);
  border: var(--hairline) solid var(--stone);
}
.workshop-image img { width: 100%; height: 100%; object-fit: cover; }
.workshop-header-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.workshop-single h1 { margin-bottom: 24px; }
.workshop-description {
  font-size: 17px;
  line-height: 1.78;
  color: var(--mid);
}
.workshop-description p { margin-bottom: 1.2em; }
.workshop-description ul {
  padding-left: 20px;
  margin-bottom: 1.2em;
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
  border: var(--hairline) solid var(--stone);
  padding: 40px;
  background: var(--bone);
}
.booking-sidebar-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: var(--hairline) solid var(--stone);
}
.booking-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 12px;
  border-bottom: var(--hairline) solid var(--fog);
}
.booking-info-label {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.booking-info-value {
  font-family: var(--serif);
  font-size: 18px;
}
.booking-price-large {
  padding-block: 24px;
  text-align: center;
}
.booking-price-large .amount {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}
.booking-price-large .currency-label {
  font-size: 13px;
  font-style: italic;
  color: var(--mid);
}
.booking-cupos-bar {
  margin-block: 20px;
}
.booking-cupos-bar-track {
  height: 2px;
  background: var(--fog);
  width: 100%;
}
.booking-cupos-bar-fill {
  height: 2px;
  background: var(--earth);
  transition: width .5s ease;
}
.booking-cupos-text {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.cupos-available {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.cupos-available.low { color: var(--earth); }
.cupos-available.full { color: #c0392b; font-style: italic; }

/* ── Booking Form ── */
.booking-form { margin-top: 24px; }
.booking-form-group {
  margin-bottom: 16px;
}
.booking-form-group label {
  display: block;
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--paper);
  border: var(--hairline) solid var(--stone);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  appearance: none;
}
.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  border-color: var(--earth);
}
.booking-form .btn-primary { width: 100%; justify-content: center; }
.booking-form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--stone);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
}

/* Form messages */
.booking-message {
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  display: none;
}
.booking-message.success {
  display: block;
  background: rgba(155,139,122,0.12);
  border: var(--hairline) solid var(--earth);
  color: var(--ink);
}
.booking-message.error {
  display: block;
  background: rgba(192,57,43,0.08);
  border: var(--hairline) solid #c0392b;
  color: #c0392b;
}

/* ── Shop / Tienda ── */
.shop-section {
  padding-block: 100px;
  border-top: var(--hairline) solid var(--stone);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.product-card {
  background: var(--bone);
  border: var(--hairline) solid var(--stone);
  overflow: hidden;
  transition: border-color .2s;
}
.product-card:hover { border-color: var(--earth); }
.product-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--fog);
  position: relative;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.03); }
.product-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fog);
}
.product-card-info { padding: 28px 24px; }
.product-card-category {
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.product-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 20px;
}
.product-card-price {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 16px;
}
.product-card-price .woocommerce-Price-currencySymbol { font-style: italic; font-size: 18px; }
.product-card .btn-outline { width: 100%; justify-content: center; font-size: 10px; }

/* WooCommerce overrides */
.woocommerce-notices-wrapper { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: 14px 20px;
  border: var(--hairline) solid var(--stone);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 24px;
  list-style: none;
}
.woocommerce-message { border-color: var(--earth); }
.woocommerce-error  { border-color: #c0392b; background: rgba(192,57,43,0.06); }

/* ── Klouser Banner ── */
.klouser-banner {
  background: var(--ink);
  color: var(--bone);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.klouser-banner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 0.4px solid rgba(248,245,240,0.15);
  pointer-events: none;
}
.klouser-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.klouser-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.klouser-eyebrow .caption { color: var(--bone); opacity: 0.7; }
.klouser-banner h2 { color: var(--bone); }
.klouser-banner h2 em { font-style: italic; color: var(--aero-soft); }
.klouser-banner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(248,245,240,0.75);
  margin-top: 12px;
  font-weight: 300;
}
.klouser-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.klouser-price {
  text-align: right;
}
.klouser-price-desde {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(248,245,240,0.5);
  margin-bottom: 4px;
}
.klouser-price-amount {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--bone);
  line-height: 1;
}
.klouser-note {
  font-size: 11px;
  color: rgba(248,245,240,0.5);
  font-family: var(--mono);
  letter-spacing: 0.1em;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 64px;
  filter: brightness(0) invert(1) brightness(0.96) sepia(0.08);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(248,245,240,0.65);
}
.footer-heading {
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.45);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(248,245,240,0.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--bone); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: var(--hairline) solid rgba(248,245,240,0.15);
  font-size: 11px;
  color: rgba(248,245,240,0.4);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* ── WooCommerce shop page ── */
.shop-page-header {
  padding-block: 64px 48px;
  border-bottom: var(--hairline) solid var(--stone);
  margin-bottom: 64px;
}
.shop-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.woocommerce-result-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.woocommerce-ordering select {
  background: transparent;
  border: var(--hairline) solid var(--stone);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  appearance: none;
  padding-right: 32px;
  cursor: pointer;
}

/* ── Single product WooCommerce ── */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 80px;
  align-items: start;
}
.product-gallery { border: var(--hairline) solid var(--stone); }
.product-gallery img { width: 100%; }
.product-details h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}
.price ins, .woocommerce-Price-amount {
  font-family: var(--serif);
  font-size: 36px;
  text-decoration: none;
  color: var(--ink);
}
.woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.72;
  color: var(--mid);
  margin-block: 24px;
}
.quantity { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.quantity label { font-size: 11px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.quantity input[type="number"] {
  width: 72px;
  padding: 12px;
  border: var(--hairline) solid var(--stone);
  background: var(--paper);
  font-size: 16px;
  text-align: center;
  border-radius: 0;
  color: var(--ink);
  outline: none;
}
.single_add_to_cart_button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background .2s;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.single_add_to_cart_button:hover { background: var(--earth); }

/* Cart & Checkout clean styling */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.woocommerce table.shop_table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 12px 16px;
  border-bottom: var(--hairline) solid var(--stone);
  text-align: left;
  font-weight: 400;
}
.woocommerce table.shop_table td {
  padding: 20px 16px;
  border-bottom: var(--hairline) solid var(--fog);
  vertical-align: middle;
}
.woocommerce-cart-form__cart-item .product-name { font-family: var(--serif); font-size: 18px; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding-block: 20px;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  color: var(--stone);
  border-bottom: var(--hairline) solid var(--stone);
  margin-bottom: 0;
}
.breadcrumb a { color: var(--stone); transition: color .2s; }
.breadcrumb a:hover { color: var(--earth); }
.breadcrumb-sep { margin-inline: 10px; }

/* ── Admin metabox styles ── */
.workshop-metabox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
}
.workshop-meta-field { display: flex; flex-direction: column; gap: 6px; }
.workshop-meta-field label { font-weight: 600; font-size: 12px; }
.workshop-meta-field input, .workshop-meta-field select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

/* ── Spot counter badge ── */
.cupos-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: var(--hairline) solid var(--earth);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
}
.cupos-badge.low { color: var(--earth); border-color: var(--earth); }
.cupos-badge.full { color: #c0392b; border-color: #c0392b; }
.cupos-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
.cupos-badge.full .cupos-badge-dot { animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Mobile responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 60px 40px;
  }
  .hero-plate { display: none; }
  .hero-strip { display: none; }
  .klouser-banner .container { grid-template-columns: 1fr; gap: 36px; }
  .klouser-cta-block { align-items: flex-start; }
  .workshop-single-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .single-product-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bone);
    padding: 32px var(--gutter);
    border-bottom: var(--hairline) solid var(--stone);
    gap: 24px;
    z-index: 99;
  }
}

@media (max-width: 600px) {
  .workshops-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}
