:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f5f5;
  --color-text: #1f1f1f;
  --color-muted: #666666;
  --color-primary: #ff5a7e;
  --color-primary-hover: color-mix(in srgb, var(--color-primary) 88%, black);
  --color-primary-contrast: #ffffff;
  --color-secondary: #ffd166;
  --color-accent: #7fd8be;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-whatsapp: #25d366;
  --font-display: system-ui, sans-serif;
  --font-body: system-ui, sans-serif;
  --text-base: 1rem;
  --leading: 1.6;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --btn-radius: var(--radius-pill);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.14);
  --hero-shape: var(--radius-lg);
  --hero-frame: none;
  --hero-rotate: 0deg;
  --hero-bg: none;
  --hero-media-padding: 0px;
  --cta-bg: var(--color-primary);
  --cta-text: var(--color-primary-contrast);
  --cta-btn-bg: var(--cta-text);
  --cta-btn-text: var(--color-primary);
  --section-y: clamp(48px, 8vw, 96px);
  --container: 1120px;
  --gutter: 20px;
}
@media (min-width: 768px) {
  :root {
    --gutter: 40px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 106.25%;
  }
}
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
button:disabled {
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
}
h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}
p {
  max-width: 65ch;
}
small,
.text-small {
  font-size: 0.85rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn .icon {
  width: 1.1em;
  height: 1.1em;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.btn-ghost {
  background: transparent;
  color: var(--color-muted);
  padding-inline: 8px;
  min-height: auto;
}
.btn-ghost:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  min-height: 36px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-block {
  width: 100%;
}
button.btn:disabled {
  background: var(--color-surface-alt);
  color: var(--color-muted);
  transform: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-alt);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 12px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.site-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--color-surface-alt);
  flex-shrink: 0;
}
.site-header__monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.site-header__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 399px) {
  .site-header__cta-label {
    display: none;
  }
  .site-header__cta {
    padding-inline: 12px;
  }
}
.hero {
  padding-block: var(--section-y);
}
.hero__inner {
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
}
.hero__content {
  order: 2;
}
.hero__media {
  order: 1;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 55% 45%;
    gap: 48px;
  }
  .hero__content {
    order: 1;
  }
  .hero__media {
    order: 2;
  }
}
.hero__tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 12px;
}
.hero__description {
  color: var(--color-muted);
  max-width: 48ch;
  margin-top: 12px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__dots {
  display: none;
}
@media (min-width: 900px) {
  .hero__dots {
    display: flex;
    gap: 8px;
    margin-top: 32px;
  }
  .hero__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
  }
  .hero__dots span:nth-child(2) {
    background: var(--color-secondary);
  }
  .hero__dots span:nth-child(3) {
    background: var(--color-accent);
  }
}
.hero__media {
  position: relative;
  background: var(--hero-bg);
  border-radius: var(--hero-shape);
  padding: var(--hero-media-padding);
}
.hero__image,
.hero__media picture {
  width: 100%;
}
.hero__image {
  border-radius: var(--hero-shape);
  border: var(--hero-frame);
  transform: rotate(var(--hero-rotate));
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.hero__scroll-cue {
  display: none;
  color: var(--color-muted);
  order: 3;
}
@media (max-width: 899px) {
  .hero__scroll-cue {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
    margin-top: 8px;
    animation: hero-bounce 1.8s ease-in-out infinite;
  }
}
@keyframes hero-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue {
    animation: none;
  }
}
.badges {
  position: relative;
  z-index: 10;
}
@media (min-width: 900px) {
  .badges .container {
    margin-top: -32px;
  }
}
.badges__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
@media (min-width: 640px) {
  .badges__list--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .badges__list--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.badges__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.badges__item .icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.products {
  padding-block: var(--section-y);
}
.products__title {
  text-align: center;
}
.products__subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-top: 8px;
  margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid--cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 1024px) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-surface-alt);
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card.is-sold-out .product-card__image {
  filter: grayscale(1) opacity(0.6);
}
.product-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-secondary);
  color: var(--color-text);
}
.product-card__tag--sold-out {
  background: var(--color-muted);
  color: #fff;
}
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
}
.product-card__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__description {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}
.product-card__price-prefix {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
}
.about {
  padding-block: var(--section-y);
}
.about__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 48px;
  }
}
.about__inner--no-image {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.about__image {
  width: 100%;
  border-radius: var(--hero-shape);
  border: var(--hero-frame);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.about__content h2 {
  margin-bottom: 16px;
}
.about__content p + p {
  margin-top: 14px;
}
.info {
  padding-block: var(--section-y);
  background: var(--color-surface-alt);
}
.info__location {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}
.info__location .icon {
  width: 34px;
  height: 34px;
  margin-inline: auto;
}
.info__location .info__maps-link {
  justify-content: center;
  margin-top: 4px;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.info__grid--with-location {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 640px) {
  .info__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .info__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info__column .icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.info__column h3 {
  margin-bottom: 10px;
}
.info__column p {
  color: var(--color-muted);
}
.info__column p + p {
  margin-top: 6px;
}
.info__column a {
  color: var(--color-primary);
  font-weight: 600;
}
.info__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.info__maps-link .icon {
  width: 16px;
  height: 16px;
  margin-bottom: 0;
}
.info__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info__hours li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info__hours strong {
  color: var(--color-text);
}
.info__hours span {
  color: var(--color-muted);
  font-size: 0.92rem;
}
.info__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info__payment .icon {
  width: 16px;
  height: 16px;
  margin-bottom: 0;
  color: currentColor;
}
.info__social {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.info__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.info__social-link .icon {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  color: currentColor;
}
.info__social-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.info__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info__contact-line .icon {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  color: var(--color-primary);
}
.cta {
  padding-block: var(--section-y);
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  background: var(--cta-bg);
  color: var(--cta-text);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.cta__inner h2 {
  color: var(--cta-text);
}
.cta__inner p {
  max-width: 48ch;
  color: var(--cta-text);
  opacity: 0.92;
}
.cta__inner .btn-primary {
  margin-top: 16px;
  background: var(--cta-btn-bg);
  color: var(--cta-btn-text);
  text-shadow: none;
}
.cta__inner .btn-primary:hover {
  opacity: 0.9;
}
.cta__share {
  margin-top: 8px;
  color: var(--cta-text);
  opacity: 0.85;
  text-shadow: none;
}
.site-footer {
  padding-block: 32px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.site-footer__inner a {
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer__inner a:hover {
  color: var(--color-primary);
}
.fab-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fab-whatsapp .icon {
  width: 28px;
  height: 28px;
}
.fab-whatsapp.is-shown {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
@media (min-width: 900px) {
  .fab-whatsapp {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp {
    transition: opacity 0.01s linear;
  }
}
:root {
  --color-bg: #f5f0e8;
  --color-surface: #ffffff;
  --color-surface-alt: #ede6d8;
  --color-text: #2b2b24;
  --color-muted: #6b6b5e;
  --color-primary: #4a5a3a;
  --color-primary-contrast: #ffffff;
  --color-secondary: #c9a961;
  --color-accent: #e8dcc8;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --btn-radius: 6px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --hero-shape: 58% 42% 55% 45% / 48% 55% 45% 52%;
  --hero-frame: none;
  --hero-bg: none;
  --hero-media-padding: 0px;
  --cta-bg: var(--color-primary);
  --section-y: clamp(58px, 9.6vw, 115px);
}
h1 {
  font-weight: 500;
}
.btn-secondary {
  border: 1px solid var(--color-text);
  color: var(--color-text);
}
.btn-secondary:hover {
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
}