/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  margin-bottom: 16px;
}
.eyebrow.center, .section-title.center { text-align: center; }
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 60px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.btn--dark { background: #111; color: #fff; border-color: #111; }
.btn--dark:hover { background: #fff; color: #111; }
.btn--light { background: #fff; color: #111; border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; }
.btn--ghost { background: transparent; color: #111; border-color: #111; }
.btn--ghost:hover { background: #111; color: #fff; }

.link-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  transition: all .3s ease;
}
.link-arrow:hover { padding-bottom: 8px; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 100;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
}
.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__menu a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity .3s;
}
.nav__menu a:hover { opacity: 0.5; }
.nav__cta {
  border: 1px solid #111;
  padding: 8px 18px;
}
.nav__cta:hover { background: #111; color: #fff; opacity: 1 !important; }

.nav__cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  display: flex;
  align-items: center;
  padding: 6px;
  transition: opacity .3s;
}
.nav__cart:hover { opacity: 0.6; }
.nav__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .25s ease, transform .25s ease;
}
.nav__cart-count.is-visible {
  opacity: 1;
  transform: scale(1);
}
.nav__cart-count.is-pulse {
  animation: cart-pop .4s ease;
}
@keyframes cart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); background: #25D366; }
  100% { transform: scale(1); }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: #111;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  color: #fff;
  background: #1a1a1a;
}
.hero__slides {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease, transform 8s ease-out;
  will-change: opacity, transform;
}
@media (max-width: 768px) {
  .hero__slide { background-position: center 15%; }
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .35s ease, transform .35s ease, width .35s ease;
}
.hero__dots button:hover { background: rgba(255,255,255,0.7); }
.hero__dots button.is-active {
  background: #fff;
  width: 26px;
  border-radius: 4px;
}
.hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 12px;
  margin-bottom: 30px;
  color: #f0e6d8;
}
.hero__title {
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.hero__title span {
  font-style: italic;
  font-weight: 400;
  display: inline-block;
}
.hero__tagline {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8dccb;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn--ghost { color: #fff; border-color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: #111; }

/* ===== About ===== */
.about { padding: 120px 0; background: #fff; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img {
  aspect-ratio: 4/5;
  background-image: url('/assets/img/AMA_1503-1367x2048.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about__text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}
.about__text p { color: #555; margin-bottom: 16px; }

/* ===== Ecosistema ===== */
.ecosystem { padding: 140px 0; background: #faf8f5; }
.ecosystem__intro {
  text-align: center;
  max-width: 560px;
  margin: -40px auto 80px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 56px 40px 48px;
  background: #fff;
  border: 1px solid #ece5da;
  border-radius: 4px;
  text-decoration: none;
  color: #111;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow .5s ease,
              border-color .5s ease;
  overflow: hidden;
}
.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9a87a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.eco-card:hover::before { transform: scaleX(1); }

.eco-card--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}
.eco-card--dark .eco-card__num { color: #c9a87a; }
.eco-card--dark .eco-card__divider { background: #c9a87a; }
.eco-card--dark .eco-card__cat { color: #888; }
.eco-card--dark .eco-card__desc { color: #b8b8b8; }
.eco-card--dark .eco-card__link { color: #fff; }
.eco-card--dark::before { background: #fff; }

.eco-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  color: #d4c5b3;
  margin-bottom: 8px;
  transition: transform .5s ease;
}
.eco-card:hover .eco-card__num { transform: translateX(-2px); }

.eco-card__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a87a;
  margin: 0 0 28px;
  transition: width .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-card:hover .eco-card__divider { width: 80px; }

.eco-card__cat {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  margin-bottom: 14px;
}

.eco-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: inherit;
}
.eco-card__title em {
  display: block;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 4px;
  letter-spacing: 0;
}

.eco-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 32px;
  flex: 1;
}

.eco-card__link {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}
.eco-card__arrow {
  display: inline-block;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-card:hover .eco-card__arrow { transform: translateX(8px); }

@media (max-width: 900px) {
  .ecosystem { padding: 80px 0; }
  .ecosystem__intro { margin-bottom: 50px; }
  .eco-card { padding: 44px 32px 36px; }
  .eco-card__num { font-size: 72px; }
  .eco-card__title { font-size: 28px; }
}

/* ===== Brands ===== */
.brands {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}
.brands__track {
  margin-top: 40px;
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.brands__row {
  display: flex;
  gap: 60px;
  align-items: center;
}
.brands__row span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #999;
  white-space: nowrap;
  letter-spacing: 2px;
}
@keyframes scroll {
  to { transform: translateX(calc(-50% - 30px)); }
}

/* ===== Testimonials ===== */
.testimonials { padding: 120px 0; background: #111; color: #fff; }
.testimonials .eyebrow { color: #888; }
.testimonials__group { margin-top: 56px; }
.testimonials__group:first-of-type { margin-top: 0; }
.testimonials__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #c9a87a;
  margin-bottom: 28px;
  padding-left: 28px;
  position: relative;
}
.testimonials__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #c9a87a;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transition: border-color .35s ease, transform .35s ease;
}
.testimonial:hover {
  border-color: #c9a87a;
  transform: translateY(-4px);
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
  color: #f0ece5;
}
.testimonial figcaption {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a87a;
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
}

/* ===== Tips ===== */
.tips { padding: 120px 0; background: #fff; }
.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tip { display: block; transition: transform .3s ease; }
.tip:hover { transform: translateY(-4px); }
.tip__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ede6dd 0%, #d4c5b3 100%);
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s ease;
}
.tip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tip:hover .tip__img { transform: scale(1.03); }
.tip h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.tip span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* ===== Shop ===== */
.shop { padding: 120px 0; background: #faf8f5; }
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.product__img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: #f5f0e8;
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
  pointer-events: none;
}
.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: #111;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  z-index: 1;
}
.product__tag--hot {
  background: #111;
  color: #fff;
}
.product__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.product h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.product__body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}
.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #111;
}
.product__price s {
  color: #aaa;
  font-size: 16px;
  margin-right: 6px;
}
.product .btn {
  padding: 10px 20px;
  font-size: 11px;
}
.shop__cta {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shop__grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery { padding: 120px 0; background: #fff; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery__item {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f0e8;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(20%);
}
.gallery__item:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}
.gallery__item--tall { grid-row: span 2; }

@media (max-width: 700px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 2; }
}

/* ===== Contact ===== */
.contact { padding: 120px 0; background: #faf8f5; }
.contact__sub {
  text-align: center;
  color: #555;
  max-width: 500px;
  margin: 0 auto 48px;
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  padding: 16px 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  border-radius: 2px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
  box-sizing: border-box;
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus { border-color: #111; }
.contact__form button { align-self: center; margin-top: 8px; }
.contact__select {
  position: relative;
}
.contact__select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23555' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.contact__select select:invalid { color: #999; }
.contact__select select option { color: #111; }

/* ===== Article Page ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.article__back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
  transition: color .25s ease, transform .25s ease;
}
.article__back:hover { color: #111; transform: translateX(-4px); }
.article__header { margin-bottom: 48px; }
.article__header .eyebrow {
  color: #c9a87a;
  margin-bottom: 16px;
}
.article__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #111;
}
.article__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
  font-weight: 300;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.article__meta .dot { color: #ccc; }

.article__hero {
  margin: 48px -40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.article__hero img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 25%;
}

.article__body {
  font-size: 17px;
  line-height: 1.8;
  color: #2d2d2d;
}
.article__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin: 56px 0 20px;
  color: #111;
  line-height: 1.2;
}
.article__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: #111;
  letter-spacing: 0;
}
.article__body p {
  margin-bottom: 22px;
}
.article__body em { font-style: italic; color: #555; }
.article__body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: #111;
  border-left: 3px solid #c9a87a;
  padding: 16px 0 16px 28px;
  margin: 40px 0;
}

.article__cta {
  margin-top: 64px;
  padding: 48px 40px;
  background: #faf8f5;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #ece5da;
}
.article__cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.3;
  color: #111;
  margin-bottom: 24px;
  font-style: italic;
}

/* Related */
.related {
  background: #faf8f5;
  padding: 100px 0 120px;
}
.related .section-title { margin-bottom: 56px; }
.related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ece5da;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
  color: #111;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
}
.related-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.related-card:hover .related-card__img img { transform: scale(1.04); }
.related-card__cat {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a87a;
  margin: 24px 24px 8px;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 24px 24px;
  color: #111;
}

.article-notfound {
  text-align: center;
  padding: 200px 24px 100px;
  max-width: 600px;
  margin: 0 auto;
}
.article-notfound h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin: 16px 0;
}
.article-notfound p { color: #666; margin-bottom: 32px; }

@media (max-width: 700px) {
  .article { padding: 110px 24px 60px; }
  .article__hero { margin: 40px -24px; border-radius: 0; }
  .article__body { font-size: 16px; }
  .article__body h2 { font-size: 26px; margin: 40px 0 16px; }
  .article__cta { padding: 32px 24px; }
  .article__cta p { font-size: 20px; }
  .related__grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer { background: #111; color: #fff; padding: 80px 0 32px; }
.footer .container { text-align: center; }
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  display: block;
}
.footer__tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-top: 8px;
  margin-bottom: 56px;
}
.footer__brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.footer-brand h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}
.footer-brand__sub {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a87a;
  margin-bottom: 18px;
}
.footer-brand__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-brand__socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
  padding: 6px 4px;
  transition: color .25s ease, transform .25s ease;
}
.footer-brand__socials a:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-brand__socials svg {
  flex-shrink: 0;
}
.footer__copy {
  font-size: 11px;
  color: #777;
  letter-spacing: 1px;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .footer__brands {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0;
  }
  .footer-brand__socials { flex-direction: row; gap: 24px; }
}

/* ===== Shop Page ===== */
.shop-hero {
  padding: 160px 0 60px;
  background: #faf8f5;
  text-align: center;
}
.shop-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 12px 0 16px;
}
.shop-hero__sub {
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.shop-filters {
  background: #faf8f5;
  padding: 0 0 40px;
}
.filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter {
  background: transparent;
  border: 1px solid #ddd;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  border-radius: 24px;
  cursor: pointer;
  transition: all .25s ease;
}
.filter:hover { border-color: #111; color: #111; }
.filter.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.shop-page {
  padding: 0 0 120px;
  background: #faf8f5;
}

.nav__menu a.is-active { font-weight: 500; border-bottom: 1px solid #111; }

/* ===== Cart Drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 998;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f0f0;
}
.cart-drawer__header h2 {
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
.cart-drawer__close {
  font-size: 32px;
  line-height: 1;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  transition: color .2s;
}
.cart-drawer__close:hover { color: #111; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 28px;
}
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  color: #888;
}
.cart-drawer__empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
}
.cart-drawer__empty span {
  font-size: 13px;
  letter-spacing: 1px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f3f3;
  align-items: center;
}
.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f0e8;
}
.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item__info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}
.cart-item__cat {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
}
.cart-item__qty button {
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #555;
  transition: background .2s;
}
.cart-item__qty button:hover { background: #f5f5f5; }
.cart-item__qty span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.cart-item__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item__right strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
}
.cart-item__remove {
  background: none;
  border: none;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.cart-item__remove:hover { color: #c0392b; }

.cart-drawer__footer {
  padding: 20px 28px 24px;
  border-top: 1px solid #f0f0f0;
  background: #faf8f5;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-drawer__total span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.cart-drawer__total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
}
.cart-drawer__checkout {
  width: 100%;
  display: block;
  text-align: center;
}
.cart-drawer__note {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .cart-item { grid-template-columns: 64px 1fr auto; }
  .cart-item__img { width: 64px; height: 64px; }
}

/* ===== Checkout Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: flex;
  animation: modal-fade .3s ease;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 40px 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: modal-slide .35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modal-slide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  line-height: 1;
  width: 36px;
  height: 36px;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.modal__close:hover { background: #f3f3f3; color: #111; }

.modal__header { margin-bottom: 24px; }
.modal__header h2 {
  font-size: 32px;
  margin: 8px 0 10px;
}
.modal__sub {
  color: #666;
  font-size: 14px;
}

/* Formulario */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: flex; flex-direction: column; }
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row label {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  font-weight: 500;
  gap: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}
.form-row textarea { resize: vertical; min-height: 70px; }
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23555' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Resumen en el modal */
.checkout-summary {
  margin-top: 8px;
  padding: 16px 18px;
  background: #faf8f5;
  border-radius: 6px;
}
.checkout-summary h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: #444;
  border-bottom: 1px dashed #e5e0d8;
}
.checkout-summary__row em {
  font-style: normal;
  color: #999;
  font-size: 12px;
}
.checkout-summary__row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  margin-top: 6px;
}
.checkout-summary__total span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.checkout-summary__total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
}

.checkout-form__submit {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-color: #25D366;
  width: 100%;
}
.checkout-form__submit:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}
.checkout-form__note {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .modal__panel { padding: 28px 22px 22px; }
  .modal__header h2 { font-size: 26px; }
  .form-row--2 { grid-template-columns: 1fr; }
}

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.2);
  animation-play-state: paused;
}
.wa-float__icon {
  width: 32px;
  height: 32px;
}
.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111;
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.15), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float__icon { width: 28px; height: 28px; }
  .wa-float__tooltip { display: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { z-index: 1102 !important; }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 1103;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .nav__toggle span {
    position: absolute;
    transition: transform .35s ease, opacity .25s ease, top .35s ease;
  }
  .nav__toggle span:nth-child(1) { top: 8px; }
  .nav__toggle span:nth-child(2) { top: 14px; }
  .nav__toggle span:nth-child(3) { top: 20px; }
  .nav__toggle.is-active span:nth-child(1) { top: 14px; transform: rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

  .nav__menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 280px !important;
    max-width: 85vw !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 88px 0 32px !important;
    gap: 0 !important;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15) !important;
    transform: translateX(100%) !important;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1100 !important;
    overflow-y: auto !important;
  }
  .nav__menu.is-open { transform: translateX(0) !important; }

  .nav__menu > a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: #111 !important;
    background: transparent !important;
    padding: 18px 32px !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #efe9df !important;
    text-decoration: none !important;
    text-align: left !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: background .25s ease !important;
  }
  .nav__menu > a:first-of-type {
    border-top: 1px solid #efe9df !important;
  }
  .nav__menu > a:hover,
  .nav__menu > a:focus {
    background: #faf6ef !important;
    color: #111 !important;
    opacity: 1 !important;
  }

  .nav__cta {
    margin: 24px 32px 0 !important;
    width: auto !important;
    text-align: center !important;
    padding: 14px 18px !important;
    border: 1px solid #111 !important;
    border-bottom: 1px solid #111 !important;
  }

  .nav__menu > .nav__cart {
    display: flex !important;
    margin: 28px 32px 0 !important;
    padding: 0 !important;
    align-self: flex-start !important;
    border: 0 !important;
    background: transparent !important;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 1098;
  }
  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .ecosystem__grid,
  .testimonials__grid,
  .tips__grid { grid-template-columns: 1fr; }
  .about__img { max-width: 400px; margin: 0 auto; width: 100%; }
}
