:root {
  color-scheme: light;
  --bg: #fbf7f2;
  --surface: #fffdf9;
  --ink: #211d1c;
  --muted: #6e625d;
  --line: rgba(33, 29, 28, 0.13);
  --rose: #d96594;
  --rose-dark: #a93668;
  --botanical: #344c38;
  --gold: #b89559;
  --shadow: 0 24px 70px rgba(33, 29, 28, 0.14);
  --radius: 8px;
  --transition: 180ms ease;
  --container: min(1120px, calc(100% - 40px));
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #151412;
  --surface: #201d1a;
  --ink: #fff8ef;
  --muted: #c9bbb0;
  --line: rgba(255, 248, 239, 0.16);
  --rose: #ed8bb2;
  --rose-dark: #f0a1c1;
  --botanical: #d6e4cf;
  --gold: #d5b97a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

[data-lightbox-image] {
  cursor: zoom-in;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  box-shadow: 0 16px 45px rgba(33, 29, 28, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 370px;
  border: 1px solid color-mix(in srgb, var(--rose) 32%, transparent);
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--rose) 10%, transparent)),
    var(--surface);
  box-shadow: 0 18px 45px rgba(169, 54, 104, 0.13);
  padding: 10px 22px 10px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.brand:hover {
  border-color: color-mix(in srgb, var(--rose) 68%, transparent);
  box-shadow: 0 22px 58px rgba(169, 54, 104, 0.2);
  transform: translateY(-1px);
}

.brand img {
  width: 118px;
  height: 78px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(169, 54, 104, 0.14));
}

.brand-copy {
  display: grid;
  gap: 7px;
  line-height: 1;
}

.brand-name {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(169, 54, 104, 0.12);
}

.brand-tagline {
  margin-top: 2px;
  color: var(--rose-dark);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--rose-dark);
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  gap: 9px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.cart-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  padding: 10px 13px;
  font-weight: 900;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose-dark);
  color: #fffaf7;
  font-size: 0.78rem;
}

.nav-cta,
.btn-primary {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rose-dark) 92%, #111 8%), var(--rose));
  color: #fffaf7;
  box-shadow: 0 16px 30px rgba(169, 54, 104, 0.24);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--ink) 38%, transparent);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
  transform: translateY(-2px);
}

.theme-toggle,
.nav-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  padding: 4px;
}

.lang-btn {
  min-width: 36px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lang-btn:hover {
  color: var(--rose-dark);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: var(--rose-dark);
  color: #fffaf7;
}

.theme-toggle {
  display: inline-flex;
  min-width: 88px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--rose-dark) 24%, var(--line));
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--gold) 14%, transparent)),
    var(--surface);
  box-shadow: 0 14px 30px rgba(184, 149, 89, 0.18);
  color: var(--rose-dark);
  padding: 0 14px;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.theme-toggle:hover {
  border-color: color-mix(in srgb, var(--gold) 72%, var(--line));
  box-shadow: 0 18px 38px rgba(184, 149, 89, 0.25);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--gold) 18%, transparent),
    0 0 18px color-mix(in srgb, var(--gold) 46%, transparent);
}

.theme-toggle-icon::after {
  position: absolute;
  inset: 3px auto auto 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface);
  content: "";
}

.theme-toggle-label::after {
  content: "Glow";
}

[data-theme="dark"] .theme-toggle-label::after {
  content: "Day";
}

[data-theme="dark"] .theme-toggle-icon {
  background: #fff8ef;
  box-shadow:
    0 0 0 4px rgba(255, 248, 239, 0.12),
    0 0 18px rgba(255, 248, 239, 0.34);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 92%, transparent) 0%, color-mix(in srgb, var(--bg) 68%, transparent) 46%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  display: grid;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: min(100%, 280px);
  height: 220px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(169, 54, 104, 0.16));
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 94px 0;
}

.intro-band {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.feature-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 9px 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.2;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.feature-chip:hover,
.feature-chip.is-active {
  border-color: color-mix(in srgb, var(--rose-dark) 46%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rose-dark) 92%, #111 8%), var(--rose));
  color: #fffaf7;
  box-shadow: 0 14px 30px rgba(169, 54, 104, 0.16);
  transform: translateY(-1px);
}

.catalog {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--rose) 9%, transparent), transparent 28%),
    var(--bg);
}

.catalog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  gap: 30px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.catalog-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: 900 0.78rem/1 Barlow, Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 11px 15px;
  text-transform: uppercase;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.catalog-tab:hover,
.catalog-tab.is-active {
  border-color: color-mix(in srgb, var(--rose-dark) 38%, var(--line));
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-1px);
}

.catalog-section {
  display: grid;
  gap: 16px;
}

.catalog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.catalog-section-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(33, 29, 28, 0.08);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover img {
  transform: scale(1.04);
}

.sale-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: var(--rose-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.product-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-card h3,
.product-card h4 {
  margin: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: grid;
  gap: 2px;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  font-family: Barlow, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: line-through;
}

.product-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.payment-policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.85fr;
  gap: 24px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.payment-policy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.payment-policy p,
.policy-list {
  color: var(--muted);
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  font-weight: 750;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 640px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.testimonial-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(33, 29, 28, 0.07);
}

.service-card {
  min-height: 230px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--rose) 56%, transparent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card.is-focused {
  border-color: color-mix(in srgb, var(--rose-dark) 68%, var(--line));
  box-shadow:
    var(--shadow),
    0 0 0 4px color-mix(in srgb, var(--rose) 16%, transparent);
  transform: translateY(-4px);
}

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.service-card p,
.about-copy p,
.testimonial-card blockquote,
.cta-section p,
.footer p {
  color: var(--muted);
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--rose-dark);
  content: "✓";
}

.gallery-grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.section-heading.centered p:not(.eyebrow) {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
}

.gallery-section {
  display: grid;
  gap: 18px;
}

.gallery-section-heading {
  display: grid;
  gap: 6px;
}

.gallery-section-heading h3,
.gallery-section-heading p {
  margin: 0;
}

.gallery-section-heading h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.gallery-section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-weight: 700;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-photo-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(33, 29, 28, 0.09);
  margin: 0;
}

.gallery-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-photo-card:hover img {
  transform: scale(1.04);
}

.gallery-photo-card figcaption {
  margin: 0;
  padding: 12px 13px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonials {
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 26px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.testimonial-card figcaption {
  color: var(--rose-dark);
  font-weight: 900;
}

.cta-section {
  padding: 94px 0;
  background:
    linear-gradient(135deg, rgba(217, 101, 148, 0.16), transparent 38%),
    var(--botanical);
  color: #fffaf4;
}

[data-theme="dark"] .cta-section {
  background:
    linear-gradient(135deg, rgba(217, 101, 148, 0.22), transparent 38%),
    #2b382c;
}

.cta-section .eyebrow,
.cta-section p {
  color: #f3dccd;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.contact-panel {
  padding: 26px;
  color: var(--ink);
}

.phone-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 800;
}

.email-link,
.social-link {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.email-link:hover,
.social-link:hover {
  color: var(--rose-dark);
}

.social-link {
  color: var(--rose-dark);
}

address {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.full {
  width: 100%;
  margin-top: 20px;
}

.footer {
  padding: 54px 0 24px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 36px;
}

.footer h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.footer a:hover {
  color: var(--rose-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #27d96f, #0aa84f);
  color: #fff;
  box-shadow:
    0 18px 40px rgba(10, 168, 79, 0.34),
    0 0 0 8px rgba(37, 211, 102, 0.11);
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 50px rgba(10, 168, 79, 0.42),
    0 0 0 10px rgba(37, 211, 102, 0.14);
}

.floating-whatsapp .whatsapp-icon {
  width: 34px;
  height: 34px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 18, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: relative;
  justify-self: end;
  width: min(460px, 100%);
  height: 100%;
  overflow: auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cart-panel h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 18px;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-row button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quantity-row span {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  padding: 12px;
  font: inherit;
}

.cart-summary {
  display: grid;
  gap: 10px;
  border-block: 1px solid var(--line);
  padding: 18px 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.cart-summary strong {
  color: var(--ink);
}

.cart-summary .summary-total {
  color: var(--ink);
  font-size: 1.1rem;
}

.cart-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  pointer-events: auto;
  opacity: 1;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 101, 148, 0.2), transparent 34%),
    rgba(21, 20, 18, 0.82);
  cursor: zoom-out;
}

.image-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(1080px, 100%);
  max-height: min(86vh, 820px);
  margin: 0;
}

.image-lightbox-frame img {
  width: 100%;
  max-height: calc(86vh - 72px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #fffaf7;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.image-lightbox-frame figcaption {
  color: #fffaf7;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.image-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #fffaf7;
  color: var(--rose-dark);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.image-lightbox-close:hover {
  background: var(--rose-dark);
  color: #fffaf7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 104px 16px auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a,
  .theme-toggle,
  .language-switch,
  .cart-button {
    width: 100%;
  }

  .language-switch {
    justify-content: center;
  }

  .nav-menu a:not(.nav-cta) {
    padding: 12px;
  }

  .hero-content,
  .section-grid,
  .about-grid,
  .cta-grid,
  .catalog-header,
  .payment-policy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-card {
    max-width: 420px;
  }

  .services-grid,
  .testimonial-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 88px);
    gap: 9px;
    padding: 7px 10px 7px 7px;
  }

  .brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .brand-tagline {
    margin-top: 1px;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .brand img {
    width: 76px;
    height: 52px;
  }

  .nav {
    min-height: 82px;
  }

  .nav-menu {
    top: 84px;
  }

  .section,
  .cta-section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .catalog-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-grid {
    grid-template-columns: 1fr;
  }

  .catalog-tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .phone-link {
    font-size: 1.65rem;
  }

  .footer-bottom {
    display: block;
  }

  .image-lightbox {
    padding: 16px;
  }

  .image-lightbox-frame img {
    max-height: calc(86vh - 64px);
  }

  .image-lightbox-close {
    top: 10px;
    right: 10px;
  }
}
