:root {
  --ink: #1a1b1c;
  --ink-soft: #3d3f42;
  --muted: #6e7175;
  --line: #e2e0dc;
  --paper: #f2f1ee;
  --paper-2: #e8e6e1;
  --white: #fafaf8;
  --gold: #a8894a;
  --gold-soft: #c4a86a;
  --wa: #1f9e55;
  --wa-deep: #178447;
  --page-max: 480px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, #ddd9d1 0%, transparent 55%),
    linear-gradient(180deg, #ebe8e2 0%, var(--paper) 35%, #e5e3de 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  min-height: 100vh;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(26, 27, 28, 0.04);
}

/* —— Top intro (Taplink-style) —— */
.top {
  padding: 28px 16px 8px;
  text-align: center;
  background: #f5f5f5;
}

.top__avatar {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.top__avatar-mark {
  display: block;
  width: 78%;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  background: linear-gradient(180deg, #f0e0b0 0%, #c9a45a 45%, #8a6a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.btn-tips {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1.5px solid #000;
  background: #fbd201;
  color: #000;
  text-align: center;
}

.btn-tips::after {
  content: "";
  width: 48px;
  flex-shrink: 0;
}

.btn-tips:active {
  filter: brightness(0.97);
}

.btn-reminder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin: 10px 0 4px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #343a40;
  background: #c0eb75;
  color: #000;
  text-align: center;
}

.btn-reminder__title {
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-reminder__sub {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #222;
}

.highlights {
  margin: 22px 0 8px;
  padding: 8px 8px 4px;
  text-align: center;
}

.highlights__brand {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #313233;
}

.highlights__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlights__list li {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #313233;
}

.btn-tips__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
}

.btn-tips__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.btn-tips__title {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-tips__sub {
  font-size: 0.82rem;
  line-height: 1.35;
  color: #222;
}

.top__heading {
  margin: 8px 0 10px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  color: #313233;
}

.top__hello {
  margin: 0 0 10px;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #313233;
}

.top__intro {
  margin: 0 auto 12px;
  max-width: 38ch;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  color: #313233;
}

.section--gallery {
  padding: 8px 16px 0;
  background: #f5f5f5;
}

.section--after-catalog {
  padding: 20px 16px 28px;
  background: #f5f5f5;
}

.carousel.carousel--gallery {
  margin: 0 0 14px;
  background: #e4e7e9;
  border-radius: 3px;
}

.carousel.carousel--gallery .carousel__slide img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Tip strip — compact, not a card promo */
.tip-bar {
  margin: 0;
  padding: 10px 18px;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  color: var(--muted);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.tip-bar a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sections */
.section {
  padding: 36px 20px 10px;
}

.section--tight {
  padding-top: 28px;
}

.section--offer {
  background:
    linear-gradient(180deg, #f7f5f1 0%, #efece6 100%);
  margin-top: 18px;
  padding-bottom: 28px;
}

.section--contact {
  padding-bottom: 48px;
  background: linear-gradient(180deg, transparent, #f0eee9 40%);
}

.heading {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--ink);
}

.lead {
  margin: 0 auto 22px;
  max-width: 40ch;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Media */
.media-link {
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.media-link img,
.media-link--static img {
  width: 100%;
}

.media-link--static {
  margin-top: 16px;
}

/* Brand catalog grids */
.section--catalog {
  padding-top: 12px;
  padding-bottom: 8px;
}

.section--catalog .lead {
  margin-bottom: 14px;
}

.cat-block {
  margin: 0 0 16px;
}

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

.cat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  transition: transform 0.15s ease;
}

.cat-item:active {
  transform: scale(0.985);
}

.cat-item__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

.cat-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.cat-item__name {
  display: block;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WhatsApp buttons */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 8px 0 4px;
  padding: 18px 20px;
  border: 0;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  font-family: "Open Sans", var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
}

.btn-wa:hover {
  filter: brightness(0.96);
}

.btn-wa:active {
  filter: brightness(0.92);
}

.btn-wa--contact {
  margin: 0 0 22px;
}

.btn-wa__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.btn-wa__icon svg {
  width: 24px;
  height: 24px;
}

/* Carousel — Taplink-style horizontal slide */
.carousel {
  position: relative;
  margin: 0 0 8px;
  overflow: hidden;
  background: #efeeea;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.carousel:active {
  cursor: grabbing;
}

.carousel.is-dragging {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.5s ease;
  transform: translate3d(0, 0, 0);
}

.carousel.is-dragging .carousel__track {
  transition: none;
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.carousel__slide img {
  width: 100%;
  object-fit: cover;
  background: #ececec;
  pointer-events: none;
  -webkit-user-drag: none;
}

.carousel__slide img:not([src]) {
  display: block;
  min-height: 180px;
}

.carousel[data-ratio="3/4"] .carousel__slide img {
  aspect-ratio: 3 / 4;
}

.carousel[data-ratio="9/16"] .carousel__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel--caption {
  background: #f3f1ec;
}

.carousel--caption .carousel__slide {
  background: #f3f1ec;
}

.carousel--caption .carousel__slide img {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: min(72vh, 560px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  background: #f3f1ec;
}

.carousel__caption {
  position: static;
  padding: 12px 14px 4px;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.carousel__caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.carousel__caption span {
  font-size: 0.82rem;
  opacity: 0.85;
  color: var(--muted);
}

.carousel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  padding: 16px 14px;
  background: #32a80f;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 4px;
}

.carousel__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c5bf;
  cursor: pointer;
}

.carousel__dots button.is-active {
  background: var(--ink);
  width: 18px;
  border-radius: 999px;
}

.carousel__arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 250, 248, 0.9);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.carousel__arrow--prev { left: 8px; }
.carousel__arrow--next { right: 8px; }

/* Timer / flip */
.timer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin: 4px 0 22px;
  perspective: 600px;
}

.timer__unit {
  text-align: center;
}

.timer__label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.timer__digits {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.timer__sep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-bottom: 14px;
  margin: 0 2px;
}

.timer__sep i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8a8780;
  display: block;
}

.flip {
  --flip-w: 30px;
  --flip-h: 42px;
  --flip-bg-top: #35373a;
  --flip-bg-bot: #232527;
  position: relative;
  width: var(--flip-w);
  height: var(--flip-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0f0f0;
  font-variant-numeric: tabular-nums;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  user-select: none;
  transform-style: preserve-3d;
  perspective: 280px;
}

.flip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10;
  pointer-events: none;
}

.flip__inn {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  overflow: hidden;
}

.flip__up,
.flip__down {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.flip__up {
  top: 0;
  background: linear-gradient(180deg, #3d3f42 0%, var(--flip-bg-top) 100%);
  border-radius: 5px 5px 0 0;
}

.flip__down {
  bottom: 0;
  background: linear-gradient(180deg, var(--flip-bg-bot) 0%, #1a1c1e 100%);
  border-radius: 0 0 5px 5px;
}

.flip__up span,
.flip__down span,
.flip__flap span {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--flip-h);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.flip__up span,
.flip__flap--top span { top: 0; }

.flip__down span,
.flip__flap--bottom span { bottom: 0; }

.flip__flap {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  z-index: 5;
}

.flip__flap--top {
  top: 0;
  transform-origin: bottom center;
  background: linear-gradient(180deg, #3d3f42 0%, var(--flip-bg-top) 100%);
  border-radius: 5px 5px 0 0;
  z-index: 6;
}

.flip__flap--bottom {
  bottom: 0;
  transform-origin: top center;
  background: linear-gradient(180deg, var(--flip-bg-bot) 0%, #1a1c1e 100%);
  border-radius: 0 0 5px 5px;
  transform: rotateX(90deg);
}

.flip.play .flip__flap--top {
  animation: flipTop 0.28s ease-in forwards;
}

.flip.play .flip__flap--bottom {
  animation: flipBottom 0.28s ease-out 0.28s forwards;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 32px 14px 0;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__body {
  padding: 0 0 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.faq__body p {
  margin: 10px 0 0;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
}

.contact-block__label,
.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-phone {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.15s ease;
}

.contact-phone:hover,
.contact-phone:active {
  color: #25d366;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: color 0.15s ease;
}

.contact-card:hover {
  color: var(--gold);
}

.contact-card:hover .contact-card__label {
  color: var(--gold-soft);
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  word-break: break-all;
}

.footnote {
  margin: 18px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
}

/* Float WA */
.float-wa {
  position: fixed;
  right: 14px;
  top: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 50;
}

/* Taplink button animations */
.has-anim {
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.has-anim--buzz {
  animation-name: animation-buzz;
}

.has-anim--shake-x {
  animation-name: animation-shake-x;
}

.has-anim--heart {
  animation-name: animation-heart-beat;
  animation-duration: 1s;
}

@keyframes animation-buzz {
  0%, 4% { transform: translateX(3px) rotate(1deg); }
  2%, 6% { transform: translateX(-3px) rotate(-1deg); }
  8%, 12% { transform: translateX(2px) rotate(1deg); }
  10%, 14% { transform: translateX(-2px) rotate(-1deg); }
  16%, 18% { transform: translateX(1px) rotate(1deg); }
  20%, 100% { transform: translateX(0) rotate(0); }
}

@keyframes animation-shake-x {
  0%, 20%, 100% { transform: translate3d(0, 0, 0); }
  2%, 6%, 10%, 14%, 18% { transform: translate3d(-3px, 0, 0); }
  4%, 8%, 12%, 16% { transform: translate3d(3px, 0, 0); }
}

@keyframes animation-heart-beat {
  0%, 20%, 70%, 100% { transform: scale(1); }
  14% { transform: scale(1.02); }
  42% { transform: scale(1.05); }
}

@keyframes flipTop {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-90deg); }
}

@keyframes flipBottom {
  from { transform: rotateX(90deg); }
  to { transform: rotateX(0deg); }
}

@media (min-width: 560px) {
  :root {
    --page-max: 720px;
  }

  .page {
    margin: 28px auto 48px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(26, 27, 28, 0.1);
  }

  /* Align float WA to content column, not viewport edge */
  .float-wa {
    right: max(16px, calc((100vw - var(--page-max)) / 2 + 16px));
    top: 44px;
  }
}

@media (min-width: 900px) {
  :root {
    --page-max: 840px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-anim,
  .float-wa {
    animation: none !important;
  }

  .carousel__track {
    transition: none;
  }
}
