:root {
  --spps-brand: #29483a;
  --spps-accent: #8a6349;
  --spps-bg: #f7f4ed;
  --spps-ink: #282d2a;
  --spps-muted: #68706b;
  --spps-line: #d8ddd8;
  --spps-white: #fff;
}

body.spps-product-page {
  overflow-x: clip;
}

.spps-full-product,
.spps-full-product * {
  box-sizing: border-box;
}

.spps-full-product {
  width: 100%;
  min-height: 60vh;
  padding: 0 20px clamp(70px, 8vw, 120px);
  color: var(--spps-ink);
  background: #fff;
}

.spps-page-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.spps-breadcrumbs {
  padding: 22px 0;
  border-bottom: 1px solid var(--spps-line);
}

.spps-breadcrumbs .woocommerce-breadcrumb {
  margin: 0;
  color: var(--spps-muted);
  font-size: 12px;
  letter-spacing: .02em;
}

.spps-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: start;
  gap: clamp(38px, 6vw, 86px);
  padding: clamp(35px, 5.5vw, 76px) 0 clamp(55px, 7vw, 95px);
}

.spps-gallery {
  min-width: 0;
}

.spps-gallery-stage {
  position: relative;
  display: grid;
  aspect-ratio: 1 / .92;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e2ded5;
  background: #f4f1ea;
}

.spps-gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity .2s ease;
}

.spps-gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(41, 72, 58, .92);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.spps-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 1px 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.spps-gallery-thumb {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--spps-line);
  background: #fff;
  opacity: .68;
  scroll-snap-align: start;
  cursor: pointer;
}

.spps-gallery-thumb.is-active,
.spps-gallery-thumb:hover,
.spps-gallery-thumb:focus-visible {
  border-color: var(--spps-brand);
  opacity: 1;
  outline: 0;
}

.spps-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spps-hero-content {
  position: sticky;
  top: 28px;
  padding-top: clamp(6px, 1.5vw, 20px);
}

.spps-hero-categories {
  margin-bottom: 18px;
  color: var(--spps-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.spps-hero-categories a {
  color: inherit;
  text-decoration: none;
}

.spps-hero-content h1 {
  margin: 0 0 18px;
  color: var(--spps-brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.spps-hero-sku {
  margin: 0 0 23px;
  color: var(--spps-muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.spps-hero-description {
  max-width: 670px;
  color: #4f5853;
  font-size: 16px;
  line-height: 1.72;
}

.spps-hero-description > :first-child {
  margin-top: 0;
}

.spps-hero-description > :last-child {
  margin-bottom: 0;
}

.spps-hero-price {
  margin: 24px 0 0;
  color: var(--spps-accent);
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 760;
}

.spps-hero-price del {
  color: var(--spps-muted);
  font-size: .65em;
}

.spps-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--spps-line);
  border-left: 1px solid var(--spps-line);
}

.spps-hero-facts > div {
  min-height: 74px;
  padding: 13px 15px;
  border-right: 1px solid var(--spps-line);
  border-bottom: 1px solid var(--spps-line);
  background: #fbfaf7;
}

.spps-hero-facts span {
  display: block;
  margin-bottom: 5px;
  color: var(--spps-muted);
  font-size: 11px;
}

.spps-hero-facts strong {
  color: var(--spps-ink);
  font-size: 14px;
  line-height: 1.4;
}

.spps-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.spps-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 20px;
  color: var(--spps-muted);
  font-size: 11px;
  line-height: 1.45;
}

.spps-trust-strip span::first-letter {
  color: var(--spps-brand);
}

.spps-product-description {
  padding: clamp(65px, 8vw, 110px) 0;
  border-top: 1px solid var(--spps-line);
}

.spps-product-description-content {
  width: min(100%, 880px);
  color: #47504b;
  font-size: 16px;
  line-height: 1.78;
}

.spps-product-description-content h2,
.spps-product-description-content h3,
.spps-product-description-content h4 {
  margin: 1.8em 0 .65em;
  color: var(--spps-brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.2;
}

.spps-product-description-content img,
.spps-product-description-content video,
.spps-product-description-content iframe {
  max-width: 100%;
}

.spps-related-products {
  padding-top: clamp(60px, 7vw, 90px);
  border-top: 1px solid var(--spps-line);
}

.spps-related-products > .related > h2,
.spps-related-products > h2 {
  margin-bottom: 32px;
  color: var(--spps-brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
}

.spps-product-page .woocommerce-product-gallery__image img {
  object-fit: contain;
  object-position: center;
  background: #f4f1ea;
}

.spps-product-page .woocommerce-product-gallery,
.spps-product-page .summary.entry-summary {
  margin-bottom: 36px;
}

.spps-product-page .woocommerce-product-gallery {
  padding: clamp(8px, 1.4vw, 18px);
  border: 1px solid #e0ddd4;
  background: #f6f3ed;
}

.spps-product-page .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 10px;
  padding: 0 0 4px;
  scroll-snap-type: x proximity;
}

.spps-product-page .woocommerce-product-gallery .flex-control-thumbs li {
  min-width: 78px;
  flex: 0 0 78px;
  scroll-snap-align: start;
}

.spps-product-page .woocommerce-product-gallery .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.spps-product-page .product_title {
  color: var(--spps-brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 3.4vw, 49px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.spps-product-page .summary.entry-summary .price {
  color: var(--spps-accent);
  font-size: 20px;
  font-weight: 750;
}

.spps-product-page .summary.entry-summary .product_meta {
  padding-top: 17px;
  border-top: 1px solid var(--spps-line);
  color: var(--spps-muted);
  font-size: 12px;
}

.spps-product-page .summary.entry-summary .single_add_to_cart_button,
.spps-product-page .summary.entry-summary .button {
  min-height: 47px;
  border-radius: 1px;
  color: #fff;
  background: var(--spps-brand);
  box-shadow: none;
}

.spps-summary,
.spps-studio,
.spps-studio * {
  box-sizing: border-box;
}

.spps-summary {
  clear: both;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--spps-line);
  color: var(--spps-ink);
}

.spps-kicker,
.spps-section-heading > span,
.spps-config-intro > span,
.spps-summary-top > span {
  display: block;
  margin-bottom: 12px;
  color: var(--spps-brand);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
}

.spps-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 22px;
  border-top: 1px solid var(--spps-line);
  border-left: 1px solid var(--spps-line);
}

.spps-quick-item {
  min-height: 72px;
  padding: 14px 16px;
  border-right: 1px solid var(--spps-line);
  border-bottom: 1px solid var(--spps-line);
  background: rgba(255, 255, 255, .5);
}

.spps-quick-item span,
.spps-spec-grid dt {
  display: block;
  margin-bottom: 6px;
  color: var(--spps-muted);
  font-size: 12px;
  line-height: 1.35;
}

.spps-quick-item strong {
  color: var(--spps-ink);
  font-size: 15px;
  line-height: 1.35;
}

.spps-summary-actions,
.spps-config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spps-button,
.spps-studio .spps-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid var(--spps-brand);
  border-radius: 2px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
  cursor: pointer;
}

.spps-button:hover,
.spps-button:focus-visible {
  transform: translateY(-1px);
}

.spps-button-primary {
  color: #fff !important;
  background: var(--spps-brand) !important;
}

.spps-button-secondary {
  color: var(--spps-brand) !important;
  background: transparent !important;
}

.spps-button-quiet {
  border-color: var(--spps-line);
  color: var(--spps-ink) !important;
  background: #fff !important;
}

.spps-verified-note {
  margin: 15px 0 0;
  color: var(--spps-muted);
  font-size: 12px;
  line-height: 1.5;
}

.spps-verified-note span,
.spps-data-state {
  color: var(--spps-brand);
}

.spps-studio {
  width: 100vw;
  max-width: none;
  margin: 55px calc(50% - 50vw) 0;
  padding: clamp(55px, 7vw, 100px) max(24px, calc((100vw - 1220px) / 2));
  color: var(--spps-ink);
  background: var(--spps-bg);
  border-top: 1px solid var(--spps-line);
}

.spps-section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.spps-section-heading h2,
.spps-config-intro h2 {
  margin: 0 0 15px;
  color: var(--spps-brand);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.spps-section-heading p,
.spps-config-intro p {
  margin: 0;
  color: var(--spps-muted);
  font-size: 16px;
  line-height: 1.65;
}

.spps-spec-layout {
  display: grid;
  grid-template-columns: minmax(220px, 31%) 1fr;
  min-height: 430px;
  border: 1px solid var(--spps-line);
  background: rgba(255, 255, 255, .46);
}

.spps-spec-nav {
  border-right: 1px solid var(--spps-line);
}

.spps-spec-tab {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid var(--spps-line);
  color: var(--spps-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.spps-spec-tab span {
  color: var(--spps-accent);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 500;
}

.spps-spec-tab.is-active,
.spps-spec-tab:hover {
  color: #fff;
  background: var(--spps-brand);
}

.spps-spec-tab.is-active span,
.spps-spec-tab:hover span {
  color: #fff;
}

.spps-spec-panels {
  min-width: 0;
  padding: clamp(25px, 5vw, 56px);
}

.spps-spec-panel {
  display: none;
}

.spps-spec-panel.is-active {
  display: block;
  animation: sppsFade .22s ease;
}

.spps-spec-panel h3 {
  margin: 0 0 24px;
  color: var(--spps-brand);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.spps-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--spps-line);
  border-left: 1px solid var(--spps-line);
}

.spps-spec-grid > div {
  min-height: 84px;
  padding: 17px 19px;
  border-right: 1px solid var(--spps-line);
  border-bottom: 1px solid var(--spps-line);
}

.spps-spec-grid dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--spps-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.spps-data-state {
  display: inline-flex;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.spps-empty-note {
  padding: 26px;
  border: 1px solid var(--spps-line);
  color: var(--spps-muted);
  background: rgba(255,255,255,.48);
}

.spps-configurator {
  margin-top: clamp(65px, 9vw, 120px);
  padding-top: clamp(50px, 7vw, 85px);
  border-top: 1px solid var(--spps-line);
}

.spps-config-intro {
  max-width: 790px;
  margin-bottom: 40px;
}

.spps-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  align-items: start;
  gap: clamp(25px, 4vw, 52px);
}

.spps-config-form {
  min-width: 0;
}

.spps-config-fields,
.spps-contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.spps-contact-fields {
  padding-top: 28px;
  border-top: 1px solid var(--spps-line);
}

.spps-contact-fields legend {
  width: 100%;
  margin-bottom: 18px;
  color: var(--spps-brand);
  font-family: Georgia, serif;
  font-size: 22px;
}

.spps-config-field,
.spps-contact-fields label {
  display: grid;
  gap: 8px;
  color: var(--spps-ink);
  font-size: 13px;
  font-weight: 700;
}

.spps-contact-fields .is-wide {
  grid-column: 1 / -1;
}

.spps-config-field input,
.spps-config-field select,
.spps-contact-fields input,
.spps-contact-fields textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #cbd1cc;
  border-radius: 1px;
  color: var(--spps-ink);
  background: rgba(255,255,255,.76);
  font-size: 15px;
  box-shadow: none;
}

.spps-contact-fields textarea {
  min-height: 92px;
  resize: vertical;
}

.spps-input-unit {
  position: relative;
}

.spps-input-unit input {
  padding-right: 52px;
}

.spps-input-unit em {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--spps-muted);
  font-size: 12px;
  font-style: normal;
  transform: translateY(-50%);
}

.spps-config-summary {
  position: sticky;
  top: 30px;
  padding: 25px;
  border: 1px solid var(--spps-brand);
  color: var(--spps-ink);
  background: rgba(255,255,255,.64);
}

.spps-summary-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--spps-line);
}

.spps-summary-top strong {
  display: block;
  color: var(--spps-brand);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.spps-selected-items {
  min-height: 120px;
  padding: 17px 0;
}

.spps-selected-items p {
  margin: 0;
  color: var(--spps-muted);
  font-size: 13px;
  line-height: 1.55;
}

.spps-selected-items dl {
  margin: 0;
}

.spps-selected-items div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--spps-line);
}

.spps-selected-items dt,
.spps-selected-items dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.spps-selected-items dd {
  color: var(--spps-brand);
  font-weight: 750;
  text-align: right;
}

.spps-config-disclaimer {
  margin: 0 0 17px;
  color: var(--spps-muted);
  font-size: 11px;
  line-height: 1.55;
}

.spps-whatsapp-button {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--spps-brand);
  color: var(--spps-brand);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.spps-form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--spps-brand);
  font-size: 13px;
  font-weight: 650;
}

@keyframes sppsFade {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
	.spps-product-hero {
		grid-template-columns: 1fr;
		gap: 38px;
	}
	.spps-hero-content {
		position: static;
	}
  .spps-studio {
    padding-right: 22px;
    padding-left: 22px;
  }
  .spps-spec-layout,
  .spps-config-grid {
    grid-template-columns: 1fr;
  }
  .spps-spec-nav {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--spps-line);
    scrollbar-width: thin;
  }
  .spps-spec-tab {
    width: auto;
    min-width: max-content;
    border-right: 1px solid var(--spps-line);
    border-bottom: 0;
  }
  .spps-config-summary {
    position: static;
  }
}

@media (max-width: 600px) {
	.spps-full-product {
		padding-right: 14px;
		padding-left: 14px;
	}
	.spps-breadcrumbs {
		padding: 15px 0;
	}
	.spps-product-hero {
		padding-top: 22px;
	}
	.spps-gallery-stage {
		aspect-ratio: 1 / 1.02;
	}
	.spps-gallery-badge {
		top: 11px;
		left: 11px;
		font-size: 9px;
	}
	.spps-gallery-thumb {
		width: 68px;
		height: 68px;
		flex-basis: 68px;
	}
	.spps-hero-content h1 {
		font-size: clamp(34px, 11vw, 47px);
	}
	.spps-hero-actions,
	.spps-hero-facts {
		grid-template-columns: 1fr;
	}
  .spps-quick-grid,
  .spps-spec-grid,
  .spps-config-fields,
  .spps-contact-fields {
    grid-template-columns: 1fr;
  }
  .spps-summary-actions,
  .spps-config-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .spps-button {
    width: 100%;
  }
  .spps-studio {
    margin-top: 40px;
    padding-top: 50px;
  }
  .spps-section-heading h2,
  .spps-config-intro h2 {
    font-size: 31px;
  }
  .spps-spec-panels {
    padding: 22px 17px;
  }
  .spps-spec-grid > div {
    min-height: 74px;
  }
  .spps-contact-fields .is-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spps-button,
  .spps-spec-panel.is-active {
    animation: none;
    transition: none;
  }
}
.spps-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
