:root {
  --blush: #f6e6e6;
  --cream: #fbf6f4;
  --burgundy: #4a1e28;
  --burgundy-soft: #6b2d3c;
  --pink: #e85a9a;
  --pink-hover: #d44888;
  --pink-soft: #f3d5d8;
  --rose-gold: #c9a07a;
  --white: #ffffff;
  --muted: #8a6f76;
  --text: #3a2428;
  --line: #ead5d8;
  --card: #f4eceb;
  --shadow: 0 18px 50px rgba(74, 30, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;
  --container: 1180px;
  --header-h: 82px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-over-hero:not(.is-scrolled) {
  background: transparent;
}

.site-header.is-scrolled,
.site-header:not(.is-over-hero) {
  background: rgba(251, 246, 244, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.brand-sinta {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--burgundy);
}

.brand-prazer {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--rose-gold);
  line-height: 1;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--burgundy-soft);
}

.site-nav a.is-active,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav a:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  font-weight: 500;
  font-size: 0.92rem;
}

.cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--pill);
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--pill);
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.68rem;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: var(--pill);
}

.icon-btn svg,
.cart-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--pink-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.btn-ghost:hover {
  background: var(--blush);
  border-color: var(--pink-soft);
}

.btn-add {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  min-height: 90vh;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  background-color: #f3d4d6;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 212, 214, 0.15) 42%, rgba(74, 30, 40, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin: 110px auto 70px;
  display: grid;
  justify-items: end;
  text-align: right;
}

.hero-kicker {
  font-family: var(--font-script);
  font-size: 3.4rem;
  color: var(--burgundy);
  line-height: 1;
}

.hero-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 4px 0 22px;
}

/* Features */
.features {
  background: var(--white);
  padding: 42px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--pill);
  background: var(--blush);
  color: var(--pink);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 1.02rem;
  color: var(--burgundy);
}

.feature p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Categories */
.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 42px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 600;
  color: var(--burgundy);
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
}

.vitrine-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--burgundy);
}

.cat-card p {
  color: var(--muted);
  margin: 8px 0 16px;
}

.cat-card .text-link {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-card img {
  margin-top: auto;
  height: 240px;
  object-fit: contain;
}

/* Catalog */
.vitrine {
  background: var(--white);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  min-width: 0;
}

.catalog-results {
  min-width: 0;
  max-width: 100%;
}

.catalog-layout.is-home {
  grid-template-columns: 1fr;
}

.filters {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 100px;
}

.filters h3,
.filters-toggle {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.filters-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.filters-toggle span:first-child {
  flex: 1;
}

.filters-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--pill);
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filters-caret {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.filters.is-open .filters-caret {
  transform: rotate(180deg);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0 12px;
}

.field textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  margin: 8px 0 16px;
}

.filter-actions {
  display: flex;
  gap: 8px;
}

.filter-actions .btn {
  flex: 1;
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.68rem;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.toolbar:has(.field) {
  align-items: flex-end;
}

.toolbar .check {
  margin: 0;
  min-height: 44px;
}

.toolbar .btn {
  min-height: 44px;
}

.search-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: 0;
  background: transparent;
  min-height: 46px;
  padding: 0 18px;
  outline: none;
}

.search-box button {
  border: 0;
  background: var(--pink);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-card__media {
  position: relative;
  display: block;
  background: var(--card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 52px;
  height: 52px;
  border-radius: var(--pill);
  background: var(--pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
}

.product-card__body {
  padding-top: 14px;
}

.product-card__cat,
.product-card__cat a {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 2px 0 6px;
  overflow-wrap: anywhere;
}

.product-card h3 a:hover {
  color: var(--pink);
}

.woocommerce-result-count,
.toolbar p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.woocommerce-pagination {
  margin-top: 36px;
}

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.woocommerce-pagination a.page-numbers:hover {
  background: var(--blush);
  border-color: var(--pink-soft);
  color: var(--pink);
}

.woocommerce-pagination span.page-numbers.current {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.woocommerce-pagination span.page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: 24px;
  padding: 0;
  color: var(--muted);
}

.woocommerce-products-header,
.woocommerce .page-title,
.woocommerce-ordering,
.woocommerce-breadcrumb {
  display: none;
}

.price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--burgundy);
  font-weight: 600;
}

.price del {
  color: var(--muted);
  font-size: 0.9rem;
}

.price ins {
  text-decoration: none;
  color: var(--pink);
  font-weight: 600;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 12px;
}

.empty-state a {
  color: var(--pink);
  font-weight: 600;
}

/* Help */
.help {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.help h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--burgundy);
  line-height: 1.25;
}

.help .phone {
  margin-top: 18px;
  color: var(--pink);
  font-weight: 600;
  font-size: 1.1rem;
}

.help p + p {
  margin-top: 14px;
}

.help p {
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
}

.testi-card.large {
  min-height: 100%;
  align-content: center;
}

.testi-stack {
  display: grid;
  gap: 20px;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: var(--pill);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--rose-gold));
}

.testi-card p {
  color: var(--text);
}

.testi-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--burgundy);
}

/* CTA band */
.cta-band {
  background: var(--blush);
  padding: 64px 0 48px;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--burgundy);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.cta-row img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  border: 8px solid var(--white);
}

/* Footer */
.site-footer {
  background: var(--white);
  padding: 64px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: 180px;
  margin: 0 auto 16px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  display: grid;
  place-items: center;
  color: var(--burgundy);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--burgundy);
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-copy {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--blush);
  padding: 130px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--burgundy);
}

.page-hero.has-image {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 48px 0;
  text-align: right;
  background-color: #f3d4d6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero.has-image .page-hero-content {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  display: grid;
  justify-items: end;
  text-align: right;
}

.page-hero.has-image h1 {
  font-family: var(--font-script);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.breadcrumb a:hover {
  color: var(--pink);
}

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  position: relative;
  display: grid;
  gap: 12px;
}

ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

ul.products.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products[class*="columns-"] li.product,
ul.products li.product {
  margin: 0 !important;
  padding: 0;
  width: auto !important;
  max-width: 100%;
  min-width: 0;
  float: none !important;
  clear: none !important;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.woocommerce a.button.btn-ghost,
.woocommerce a.button.btn-add,
.product-card .btn-ghost,
.product-card a.button {
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  background: var(--white);
  color: var(--burgundy);
  border: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.woocommerce a.button.btn-ghost:hover,
.woocommerce a.button.btn-add:hover,
.product-card .btn-ghost:hover,
.product-card a.button:hover {
  background: var(--blush);
  color: var(--burgundy);
  border-color: var(--pink-soft);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce button.single_add_to_cart_button {
  background: var(--pink);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce button.single_add_to_cart_button:hover {
  background: var(--pink-hover);
}

.woocommerce .quantity .qty {
  width: 64px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.woocommerce-page .woocommerce {
  color: var(--text);
}

.single-product div.product,
.single-product .product-layout,
.single-product .product-info,
.single-product .product-gallery,
.single-product .woocommerce-product-gallery,
.single-product div.product div.images,
.single-product div.product div.summary {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
}

.product-gallery > img,
.product-gallery .woocommerce-product-gallery__image img,
.product-gallery .wp-post-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--card);
  border-radius: var(--radius);
}

.woocommerce-product-gallery__trigger {
  display: none !important;
}

.product-info form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
}

.product-info form.cart .quantity {
  margin: 0;
}

.related.products > h2,
.upsells.products > h2 {
  display: none;
}

.thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}

.thumb.is-active {
  border-color: var(--pink);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info .eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.product-info h1 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--burgundy);
  margin: 6px 0 12px;
}

.product-info .price {
  font-size: 1.35rem;
  margin: 8px 0 16px;
}

.qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.qty-box {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-box button,
.qty-box input {
  width: 42px;
  height: 46px;
  border: 0;
  background: var(--white);
  text-align: center;
  cursor: pointer;
}

.meta-line {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 16px;
}

.product-tabs {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-table th,
.cart-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--card);
}

.cart-product p {
  color: var(--muted);
  font-size: 0.82rem;
}

.link-danger {
  border: 0;
  background: none;
  color: var(--pink);
  cursor: pointer;
}

aside.summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
}

aside.summary h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.summary-row,
.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.summary-item {
  align-items: center;
}

.summary-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--card);
}

.summary-item div {
  flex: 1;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

aside.summary .grand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.coupon-form {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.coupon-form input {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}

/* Checkout / account */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.panel h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.success-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}

.success-box h2 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  margin-bottom: 8px;
}

.split-2.woocommerce-account {
  grid-template-columns: minmax(200px, 260px) 1fr;
  align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .account-nav,
.woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

.account-nav ul,
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.account-nav li,
.woocommerce-MyAccount-navigation li {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.account-nav a,
.woocommerce-MyAccount-navigation a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--burgundy);
  font-weight: 500;
}

.account-nav a::before,
.account-nav a::after,
.woocommerce-MyAccount-navigation a::before,
.woocommerce-MyAccount-navigation a::after {
  content: none;
  display: none;
}

.account-nav a:hover,
.account-nav a.is-active,
.account-nav .is-active > a,
.woocommerce-MyAccount-navigation .is-active > a {
  background: var(--pink-soft);
}

.account-auth {
  max-width: 520px;
  margin: 0 auto;
}

#customer_login.account-auth,
#customer_login.split-2 {
  align-items: start;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
  display: grid;
  gap: 6px;
  float: none;
  clear: none;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
}

.woocommerce form .form-row::before,
.woocommerce form .form-row::after,
.woocommerce-page form .form-row::before,
.woocommerce-page form .form-row::after {
  content: none;
  display: none;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce form .form-row-wide {
  float: none;
  width: 100%;
}

.woocommerce form .form-row label {
  float: none;
  width: auto;
  font-size: 0.82rem;
  color: var(--muted);
}

.woocommerce form .form-row .required {
  color: var(--pink);
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row input[type="tel"],
.woocommerce-Input {
  float: none;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0 12px;
  box-sizing: border-box;
}

.woocommerce form .password-input {
  display: block;
  position: relative;
  width: 100%;
}

.woocommerce form .password-input input {
  padding-right: 44px;
}

.woocommerce form .show-password-input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.woocommerce-form-login__rememberme,
.woocommerce form .check {
  display: flex;
  align-items: center;
  gap: 8px;
  float: none;
  margin: 4px 0 16px;
  font-size: 0.9rem;
  color: var(--text);
}

.woocommerce-form-login__rememberme input,
.woocommerce form .check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--pink);
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce-ResetPassword .button,
.woocommerce-form-login .wp-element-button,
.woocommerce-form-register .wp-element-button {
  float: none;
  position: static;
  width: auto;
  margin: 0;
  align-self: start;
}

.woocommerce-LostPassword,
.lost_password {
  margin-top: 16px;
}

.woocommerce-LostPassword a,
.lost_password a {
  color: var(--burgundy);
  font-weight: 500;
}

.woocommerce-LostPassword a:hover,
.lost_password a:hover {
  color: var(--pink);
}

.account-switch {
  margin-top: 14px;
  color: var(--burgundy);
  font-weight: 500;
}

.account-switch a {
  color: var(--pink);
  font-weight: 600;
}

.account-switch a:hover {
  color: var(--pink-hover);
}

.account-auth:not(.is-register) .woocommerce-form-register {
  display: none;
}

.account-auth.is-register .woocommerce-form-login {
  display: none;
}

.woocommerce-form-register .woocommerce-privacy-policy-text,
.woocommerce-ResetPassword > p {
  color: var(--muted);
  margin-bottom: 16px;
}

.woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.map-placeholder {
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-soft), var(--blush));
  display: grid;
  place-items: center;
  color: var(--burgundy);
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 90;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .product-grid,
  ul.products,
  ul.products.columns-3,
  ul.products.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-layout,
  .cart-layout,
  .product-layout,
  .help,
  .testi-grid,
  .footer-grid,
  .split-2,
  .split-2.woocommerce-account,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    padding: 4px 18px 4px;
  }

  .filters-heading {
    display: none;
  }

  .filters-toggle {
    display: flex;
    min-height: 52px;
    margin-bottom: 0;
  }

  .filters:not(.is-open) .filters-body {
    display: none;
  }

  .filters.is-open {
    padding-bottom: 18px;
  }

  .filters.is-open .filters-body {
    display: block;
    padding-top: 4px;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 14px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .cart-link .cart-total {
    display: none;
  }

  .hero-content {
    justify-items: center;
    text-align: center;
  }

  .hero-kicker {
    font-size: 2.6rem;
  }

  .features-grid,
  .cat-grid,
  .product-grid,
  ul.products,
  ul.products.columns-3,
  ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card .btn,
  .product-card a.button,
  .woocommerce ul.products li.product a.button {
    padding: 0 8px;
    font-size: 0.64rem;
    letter-spacing: 0.02em;
  }

  .testi-card {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .footer-copy {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding-top: 110px;
  }

  .page-hero.has-image {
    min-height: 240px;
    padding: 36px 0;
  }

  .page-hero.has-image .page-hero-content {
    justify-items: center;
    text-align: center;
  }

  .page-hero.has-image h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 560px) {
  .features-grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  ul.products,
  ul.products.columns-3,
  ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .cat-card {
    min-height: 0;
  }

  .woocommerce-pagination a.page-numbers,
  .woocommerce-pagination span.page-numbers {
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
  }

  .section.vitrine {
    padding: 28px 0 48px;
  }
}

.product-card__media img,
.woocommerce ul.products img,
ul.products img {
  contain-intrinsic-size: unset;
  max-width: 100%;
}

@media (max-width: 800px) {
  .container,
  .catalog-layout,
  .catalog-results {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products[class*="columns-"],
  ul.products.sinta-product-grid,
  ul.products.product-grid,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  ul.products.sinta-product-grid li.product,
  ul.products li.product {
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    overflow: hidden;
  }

  .product-card .btn,
  .product-card a.button,
  .woocommerce ul.products li.product a.button {
    width: 100%;
    max-width: 100%;
    padding: 0 6px;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }
}
