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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sand: #d9cfc0;
  --clay: #b89e84;
  --terracotta: #c17a5a;
  --moss: #7a8c6e;
  --charcoal: #2a2a25;
  --ink: #1a1a16;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --nav-h: 140px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 300;
  overflow-x: hidden;
}

/* ---- LOGO IMG ---- */
.logo-img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-logo-desktop .logo-img {
  height: 80px;
}

@media (min-width: 1281px) {
  .nav-logo-desktop .logo-img {
    height: 160px;
  }
}

/* ---- LOGO FOOTER (HTML text) ---- */
.logo-html {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  margin-bottom: 20px;
}

.logo-t-main {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: rgba(217, 207, 192, 0.85);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-t-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 6px;
  color: rgba(217, 207, 192, 0.5);
  letter-spacing: 5px;
  margin-top: 4px;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 40px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 160, 130, 0.15);
  transition: background var(--transition);
}

.nav-row-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-row-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.nav-row-bottom .nav-actions {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-100% - 8px));
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 14.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1;
  transition: color var(--transition);
}

.nav-actions button:hover {
  color: var(--terracotta);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--warm-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--terracotta);
}

.mobile-menu-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.mobile-menu-lang .lang-btn {
  font-size: 14px !important;
  letter-spacing: 0.15em;
  color: var(--clay);
}

.mobile-menu-lang .lang-btn.active {
  color: var(--ink);
  font-weight: 700;
}

.mobile-menu-lang .lang-sep {
  font-size: 14px !important;
  color: rgba(180, 160, 130, 0.5);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--charcoal);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.hero-left {
  overflow: hidden;
  min-height: 600px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 600px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(193, 122, 90, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 140, 110, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #d9cfc0 0%, #c8bfb0 40%, #b89e84 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(193, 122, 90, 0.12);
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -80px;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 10%;
  background: rgba(122, 140, 110, 0.15);
}

.hero-product-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.furniture-svg {
  width: min(400px, 80%);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s 0.4s var(--transition) forwards;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 70px;
  position: relative;
  overflow: hidden;
}

.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-left {
  position: relative;
}

.hero-right-text {
  position: absolute;
  top: 100px;
  left: 200px;
  z-index: 5;
  text-align: left;
  max-width: 300px;
}

@media (max-width: 1280px) {
  .hero-right-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 270px;
    width: auto;
  }
}

.hero-right-text p {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}


.hero-right-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #6a6259;
  max-width: 380px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--warm-white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: var(--terracotta);
}

.btn-secondary {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.btn-secondary:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: var(--charcoal);
  color: var(--sand);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}

.marquee-item {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 48px;
  font-weight: 400;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  vertical-align: middle;
  margin: 0 4px;
}

/* ---- CATEGORIES ---- */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.categories {
  padding: 100px 60px;
  background: var(--warm-white);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.cat-card:first-child {
  grid-row: span 2;
}

.cat-card-img {
  width: 100%;
  padding-top: 130%;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.cat-card:first-child .cat-card-img {
  padding-top: 120%;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.05);
}

.bg-living {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(193, 122, 90, 0.3) 0%, transparent 55%),
    linear-gradient(150deg, #c8bfb0 0%, #a89078 100%);
}

.bg-bedroom {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(122, 140, 110, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #b8c4ad 0%, #8a9e7e 100%);
}

.bg-kitchen {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184, 158, 132, 0.4) 0%, transparent 55%),
    linear-gradient(140deg, #d4c9b8 0%, #b8a590 100%);
}

.bg-outdoor {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(120, 155, 110, 0.4) 0%, transparent 55%),
    linear-gradient(170deg, #c0cfb8 0%, #8aab80 100%);
}

.bg-textile {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(193, 150, 120, 0.4) 0%, transparent 55%),
    linear-gradient(145deg, #d8c4b0 0%, #c0a080 100%);
}

.cat-svg-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
}

.cat-svg-art svg {
  width: 55%;
  height: 55%;
}

.cat-label {
  margin-top: 16px;
}

.cat-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.cat-count {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ---- FEATURED PRODUCT BANNER ---- */
.feature-banner {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.feature-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(193, 122, 90, 0.25) 0%, transparent 60%),
    linear-gradient(160deg, #3a3830 0%, #2a2820 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-art::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(184, 158, 132, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-art::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(184, 158, 132, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-product-svg {
  width: 55%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
  color: var(--cream);
  background: var(--charcoal);
}

.feature-eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  font-weight: 400;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.feature-title em {
  font-style: italic;
  color: var(--terracotta);
}

.feature-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(217, 207, 192, 0.7);
  max-width: 420px;
  margin-bottom: 48px;
}

.feature-price {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--sand);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.feature-mat {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
  font-weight: 400;
}

.feature-dim {
  font-size: 15px;
  color: rgba(217, 207, 192, 0.55);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.feature-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 24px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--clay);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: none;
  font-family: var(--font-sans);
  font-weight: 400;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  width: fit-content;
}

.btn-outline:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ---- PRODUCT GRID ---- */
.products-section {
  padding: 100px 60px;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.product-card {
  cursor: pointer;
}

.product-img {
  position: relative;
  padding-top: 125%;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 18px;
}

.product-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-img-bg svg {
  width: 55%;
  height: 55%;
  opacity: 0.65;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: white;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 400;
}

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(250, 248, 244, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 50%;
}

.product-card:hover .product-wishlist {
  opacity: 1;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.product-material {
  font-size: 11px;
  color: var(--clay);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--charcoal);
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  background: var(--warm-white);
}

.philosophy-left .section-label {
  margin-bottom: 20px;
  display: block;
}

.philosophy-left p {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.philosophy-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.philosophy-item {}

.philosophy-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--terracotta);
}

.philosophy-item h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

.philosophy-item p {
  font-size: 13px;
  line-height: 1.8;
  color: #7a7268;
  letter-spacing: 0.02em;
}

/* ---- EDITORIAL STRIP ---- */
.editorial {
  position: relative;
  padding: 100px 60px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(193, 122, 90, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(122, 140, 110, 0.1) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}

.editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- BLOG PRINCIPAL --- */
.blog-principal {
  width: 100%;
}

.blog-principal-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 20px;
}

.blog-principal-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* --- BLOG SECONDARIES GRID --- */
.blog-secondaries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin-bottom: 16px;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-text {
  padding-top: 4px;
}

.blog-card-excerpt {
  font-size: 12px;
  line-height: 1.75;
  color: #7a7268;
  letter-spacing: 0.02em;
}

/* Sin imagen */
.blog-principal.blog-card--no-img .blog-card-text,
.blog-card.blog-card--no-img .blog-card-text {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 28px 24px;
}

.editorial-badge {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ---- NEWSLETTER ---- */
.newsletter {
  background: var(--charcoal);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-left .section-label {
  color: var(--clay);
  margin-bottom: 20px;
  display: block;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.newsletter-title em {
  font-style: italic;
  color: var(--terracotta);
}

.newsletter-right p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(217, 207, 192, 0.65);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(184, 158, 132, 0.3);
  border-right: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(217, 207, 192, 0.35);
}

.newsletter-input:focus {
  border-color: var(--clay);
}

.newsletter-submit {
  padding: 14px 28px;
  background: var(--terracotta);
  border: none;
  cursor: pointer;
  color: white;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background var(--transition);
}

.newsletter-submit:hover {
  background: #a36042;
}

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  padding: 80px 60px 40px;
  color: var(--sand);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-top--simple {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(217, 207, 192, 0.5);
  max-width: 260px;
  letter-spacing: 0.02em;
}

.footer-col h5 {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(217, 207, 192, 0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 158, 132, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(217, 207, 192, 0.3);
  letter-spacing: 0.1em;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(217, 207, 192, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--terracotta);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1280px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    padding: 60px 24px;
  }

  .categories {
    padding: 70px 24px;
  }

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

  .cat-card:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }

  .feature-banner {
    grid-template-columns: 1fr;
  }

  .feature-art {
    min-height: 50vw;
  }

  .feature-content {
    padding: 60px 24px;
  }

  .products-section {
    padding: 70px 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .philosophy {
    grid-template-columns: 1fr;
    padding: 70px 24px;
    gap: 48px;
  }

  .philosophy-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial {
    padding: 70px 24px;
  }

  .blog-secondaries {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    padding: 70px 24px;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(184, 158, 132, 0.3);
    border-bottom: none;
  }

  footer {
    padding: 60px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card:first-child {
    grid-column: span 1;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

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

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ---- CATALOG REAL IMAGES ---- */
.catalog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 16px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.catalog-card:hover .catalog-img img {
  transform: scale(1.06);
}

/* ---- CATALOG SECTION ---- */
.catalog-section {
  padding: 100px 60px;
  background: var(--warm-white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}

.catalog-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border: 1px solid rgba(180, 160, 130, 0.15);
  transition: box-shadow var(--transition), transform var(--transition);
}

.catalog-card:hover {
  box-shadow: 0 8px 40px rgba(42, 42, 37, 0.1);
  transform: translateY(-4px);
}

.catalog-img {
  position: relative;
  padding-top: 110%;
  overflow: hidden;
  background: var(--sand);
}

.catalog-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.catalog-img-bg svg {
  width: 55%;
  height: 55%;
  opacity: 0.7;
}

.catalog-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-material {
  font-size: 11px;
  letter-spacing: 0.03em;
  color: #7a7268;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.catalog-material-label {
  display: inline;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-family: var(--font-sans);
  margin-right: 4px;
}

.catalog-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.catalog-desc {
  font-size: 12px;
  line-height: 1.75;
  color: #7a7268;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.catalog-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(180, 160, 130, 0.15);
  padding-top: 16px;
}

.catalog-price {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
}

.btn-cart {
  padding: 10px 20px;
  background: var(--ink);
  color: var(--warm-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 1px;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-cart:hover {
  background: var(--terracotta);
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 26, 22, 0.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

/* Fixed size — no scroll on the box itself */
.modal-box {
  background: var(--warm-white);
  width: 100%;
  max-width: 880px;
  height: 82vh;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--charcoal);
  z-index: 10;
  line-height: 1;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--terracotta);
}

/* Body fills the box height */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
  height: 100%;
}

/* Gallery — fixed, no scroll */
.modal-gallery {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-main-img {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-main-img svg {
  width: 55%;
  height: 55%;
  opacity: 0.75;
}

.modal-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: rgba(0,0,0,0.04);
  flex-shrink: 0;
}

.modal-thumb {
  width: 56px;
  height: 56px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-thumb.active {
  border-color: var(--terracotta);
}

.modal-thumb svg {
  width: 70%;
  height: 70%;
  opacity: 0.65;
}

/* Details — scroll only here */
.modal-details {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
}

.modal-material {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #7a7268;
  margin-top: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
  line-height: 1.5;
}

.modal-material-label {
  display: inline;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: var(--font-sans);
  margin-right: 6px;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.1;
  flex-shrink: 0;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.modal-desc {
  font-size: 13px;
  line-height: 1.85;
  color: #7a7268;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.modal-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(180, 160, 130, 0.3);
  width: fit-content;
  flex-shrink: 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--charcoal);
  transition: background var(--transition);
}

.qty-btn:hover {
  background: var(--sand);
}

#modalQty {
  width: 48px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  border-left: 1px solid rgba(180, 160, 130, 0.3);
  border-right: 1px solid rgba(180, 160, 130, 0.3);
  line-height: 40px;
  display: block;
}

.modal-colors {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.modal-colors-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.color-btn {
  padding: 7px 18px;
  border: 1px solid rgba(180, 160, 130, 0.45);
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  border-radius: 1px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.color-btn:hover {
  border-color: var(--charcoal);
}

.color-btn.active {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.cart-item-color {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.modal-add-btn {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  flex-shrink: 0;
  margin-top: auto;
}

/* Catalog responsive */
@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1280px) {
  .catalog-section {
    padding: 70px 24px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  /* Modal mobile — gallery top, details scrollable below */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    width: 100%;
    max-width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
  }

  .modal-body {
    grid-template-columns: 1fr;
    grid-template-rows: 42% 1fr;
    height: 100%;
  }

  .modal-gallery {
    height: 100%;
  }

  .modal-details {
    padding: 20px 20px 24px;
    overflow-y: auto;
  }

  .modal-material {
    display: block;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .modal-material-label {
    display: inline;
  }
}

@media (max-width: 540px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- CART BADGE ---- */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* ---- CART OVERLAY ---- */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 26, 22, 0.45);
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  display: block;
}

/* ---- CART DRAWER ---- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100vw;
  background: var(--warm-white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 40px rgba(26, 26, 22, 0.12);
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(180, 160, 130, 0.2);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--charcoal);
  transition: color var(--transition);
  line-height: 1;
}

.cart-drawer-close:hover {
  color: var(--terracotta);
}

/* ---- CART ITEMS ---- */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--clay);
}

.cart-empty svg {
  opacity: 0.3;
}

.cart-empty p {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(180, 160, 130, 0.12);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img svg {
  width: 70%;
  height: 70%;
  opacity: 0.75;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}

.cart-item-material {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--charcoal);
  margin-top: 4px;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(180, 160, 130, 0.3);
  border-radius: 1px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
  transition: background var(--transition);
}

.cart-item-qty button:hover {
  background: var(--sand);
}

.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-serif);
  color: var(--ink);
  border-left: 1px solid rgba(180, 160, 130, 0.3);
  border-right: 1px solid rgba(180, 160, 130, 0.3);
  line-height: 28px;
  display: block;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  transition: color var(--transition);
}

.cart-item-remove:hover {
  color: var(--terracotta);
}

/* ---- CART FOOTER ---- */
.cart-footer {
  padding: 20px 28px 32px;
  border-top: 1px solid rgba(180, 160, 130, 0.2);
  background: var(--warm-white);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cart-total-row span:first-child {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.cart-total-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
}

/* ---- CATALOG FILTERS ---- */
.catalog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 24px;
  background: none;
  border: 1px solid rgba(180, 160, 130, 0.35);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 1px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover {
  border-color: var(--charcoal);
}

.filter-btn.active {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.catalog-card {
  transition: box-shadow var(--transition), transform var(--transition), opacity 0.3s ease;
}

.catalog-card.hidden {
  display: none;
}

/* ---- SOBRE NOSOTROS ---- */
.about-section {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  background: var(--cream);
}

.about-label-col {
  padding-top: 8px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 36px;
}

.about-title em {
  font-style: italic;
  color: var(--terracotta);
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: #6a6259;
  letter-spacing: 0.02em;
  max-width: 620px;
}

.about-body + .about-body {
  margin-top: 24px;
}

@media (max-width: 1280px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 32px;
  }
}

/* ---- MOBILE FAB ---- */
/* FAB — mini by default (visible on all screen sizes) */
.mobile-fab {
  display: flex;
  position: fixed;
  bottom: 28px;
  left: 24px;
  top: auto;
  transform: none;
  z-index: 250;
  background: var(--terracotta);
  color: white;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(193, 122, 90, 0.4);
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition),
              bottom 0.4s ease, left 0.4s ease, top 0.4s ease,
              transform 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
}

.mobile-fab .fab-text {
  display: none;
}

.mobile-fab:hover {
  background: #a36042;
  box-shadow: 0 8px 28px rgba(193, 122, 90, 0.55);
  transform: translateY(-2px);
}

/* Full mode — centered on the join between inicio2 and inicio1 */
.mobile-fab.full {
  top: calc(var(--nav-h) + 64vw);
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(26, 26, 22, 0.35);
}

.mobile-fab.full:hover {
  transform: translate(-50%, -52%);
}

.mobile-fab.full .fab-text {
  display: inline;
}

.mobile-fab.full:hover {
  transform: translate(-50%, -52%);
}

/* Hide FAB */
.mobile-fab.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .mobile-fab {
    display: flex;
  }

  /* ---- HERO MOBILE ---- */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto !important;
    padding-top: var(--nav-h);
  }

  .hero-left {
    height: auto;
    min-height: unset;
  }

  .hero-img {
    height: auto !important;
    min-height: unset !important;
    object-fit: cover !important;
    width: 100% !important;
    display: block !important;
  }

  .hero-right {
    height: auto;
    min-height: unset;
    padding: 0;
  }

  .hero-right-img {
    position: static !important;
    inset: unset !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
  }

  .hero-right-content {
    bottom: 20px !important;
    left: 20px !important;
  }

  /* ---- NAV MOBILE ---- */
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ---- CATALOG MOBILE ---- */
  .catalog-section {
    padding: 60px 20px 100px;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }

  .catalog-filters {
    gap: 6px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .filter-btn {
    padding: 8px 16px;
    flex-shrink: 0;
  }

  .catalog-name {
    font-size: 16px;
  }

  .catalog-desc {
    display: none;
  }

  .catalog-material {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
  }

  .catalog-material-label {
    display: inline;
  }

  .catalog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-cart {
    width: 100%;
    text-align: center;
  }

  /* ---- FEATURE BANNER MOBILE ---- */
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .feature-art {
    min-height: 55vw;
  }

  .feature-content {
    padding: 48px 20px;
  }

  /* ---- PHILOSOPHY MOBILE ---- */
  .philosophy {
    grid-template-columns: 1fr;
    padding: 64px 20px;
    gap: 40px;
  }

  .philosophy-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ---- ABOUT MOBILE ---- */
  .about-section {
    grid-template-columns: 1fr;
    padding: 64px 20px;
    gap: 24px;
  }

  /* ---- EDITORIAL MOBILE ---- */
  .editorial {
    padding: 64px 20px;
  }

  .blog-secondaries {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-principal-title {
    font-size: 24px;
  }

  .modal-name {
    font-size: 26px;
  }

  /* ---- CART DRAWER MOBILE ---- */
  .cart-drawer {
    width: 100vw;
  }

  /* ---- FOOTER MOBILE ---- */
  footer {
    padding: 56px 20px 120px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 28px;
  }
}

/* ---- FILTER ACCORDION ---- */
.filter-accordion-toggle {
  display: none;
}

.filter-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1280px) {
  .catalog-filters {
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(180, 160, 130, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 32px;
  }

  .filter-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: var(--warm-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
  }

  .filter-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .catalog-filters.open .filter-arrow {
    transform: rotate(180deg);
  }

  .filter-options {
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(180, 160, 130, 0.2);
    background: var(--warm-white);
  }

  .catalog-filters.open .filter-options {
    display: flex;
  }

  .filter-btn {
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(180, 160, 130, 0.12);
    border-radius: 0;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filter-btn:last-child {
    border-bottom: none;
  }

  .filter-btn.active::after {
    content: '✓';
    font-size: 12px;
    color: var(--terracotta);
  }

  .filter-btn.active {
    background: rgba(193, 122, 90, 0.06);
    color: var(--ink);
    border-color: transparent;
  }

  /* FAB full mode only on mobile */
}

/* ---- WHATSAPP WIDGET ---- */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wa-panel {
  width: 300px;
  background: var(--warm-white);
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(26, 26, 22, 0.18);
  overflow: hidden;
  animation: fadeUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.wa-panel-header {
  background: #25d366;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-panel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-panel-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
}

.wa-panel-status {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.wa-panel-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}

.wa-panel-close:hover {
  color: white;
}

.wa-panel-body {
  padding: 20px 16px 12px;
  background: #ece5dd;
}

.wa-bubble {
  background: white;
  border-radius: 0 8px 8px 8px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  max-width: 90%;
}

.wa-panel-input {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.wa-textarea {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 9px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--charcoal);
  background: white;
  resize: none;
  outline: none;
  line-height: 1.5;
  max-height: 100px;
  overflow-y: auto;
}

.wa-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.wa-send-btn:hover {
  background: #1da851;
}

@media (max-width: 1280px) {
  .wa-widget {
    bottom: 24px;
    right: 20px;
  }

  .wa-panel {
    width: calc(100vw - 40px);
    max-width: 320px;
  }
}

/* ---- NAV MOBILE LAYOUT ---- */
@media (max-width: 1280px) {
  nav {
    padding: 0 20px;
    justify-content: space-between;
  }

  /* Hamburger left */
  .hamburger {
    display: flex;
    order: 1;
  }

  /* Logo center */
  .nav-logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Nav links hidden */
  .nav-links {
    display: none;
  }

  /* Cart right */
  .nav-actions {
    order: 3;
  }
}

/* ---- HERO CTA BUTTONS — hide on mobile ---- */
@media (max-width: 1280px) {
  .hero-cta-btn {
    display: none;
  }
}

/* ---- FAB dark color (matches hero buttons) ---- */
.mobile-fab {
  background: rgba(26, 26, 22, 0.85);
  box-shadow: 0 4px 20px rgba(26, 26, 22, 0.3);
}

.mobile-fab:hover {
  background: rgba(26, 26, 22, 0.95);
  box-shadow: 0 8px 28px rgba(26, 26, 22, 0.4);
}

.mobile-fab.full {
  background: rgba(26, 26, 22, 0.85);
  box-shadow: 0 8px 32px rgba(26, 26, 22, 0.35);
}

/* FAB — hide cart icon in full mode, show only text */
.mobile-fab.full .fab-icon {
  display: none;
}


/* ---- TABLET INTERMEDIATE (iPad Pro landscape, Android tablets) ---- */
@media (min-width: 1025px) and (max-width: 1280px) {
  nav {
    padding: 0 28px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 10px;
  }

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

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .catalog-section {
    padding: 80px 40px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .philosophy {
    padding: 80px 40px;
    gap: 48px;
  }

  .editorial {
    padding: 80px 40px;
  }

  .about-section {
    padding: 80px 40px;
  }

  .categories {
    padding: 80px 40px;
  }

  .feature-content {
    padding: 60px 48px;
  }
}

/* ---- LARGER TOUCH TARGETS FOR SMALL-SCREEN PHONES ---- */
@media (max-width: 420px) {
  .wa-btn {
    width: 64px;
    height: 64px;
  }

  .wa-btn svg {
    width: 32px;
    height: 32px;
  }

  .mobile-fab {
    padding: 18px;
  }

  .mobile-fab .fab-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-fab.full {
    padding: 18px 36px;
  }
}

@media (max-width: 1280px) {
  .wa-btn {
    width: 62px;
    height: 62px;
  }

  .wa-btn svg {
    width: 30px;
    height: 30px;
  }

  .mobile-fab {
    padding: 17px;
  }
}

/* ---- ABOUT LOGO ---- */
.about-logo {
  display: block;
  width: 160px;
  height: auto;
  margin-top: 28px;
  opacity: 0.9;
}

@media (max-width: 1280px) {
  .about-logo {
    width: 140px;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .about-logo {
    width: 120px;
    margin-top: 12px;
  }
}

/* ---- HERO CENTER BUTTON ---- */
.hero-center-btn {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(26, 26, 22, 0.82);
  color: white;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: heroPulse 2.4s ease-in-out infinite;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-center-btn:hover {
  background: rgba(193, 122, 90, 0.92);
  animation: none;
  transform: translate(-50%, -50%) scale(1.04);
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(26, 26, 22, 0.4);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(26, 26, 22, 0);
    transform: translate(-50%, -50%) scale(1.03);
  }
}


/* Hide on mobile (FAB handles it) */
@media (max-width: 1280px) {
  .hero-center-btn {
    display: none;
  }
}

/* ---- NAV DESKTOP ROWS ---- */
/* Hide hamburger on desktop */
nav > .hamburger {
  display: none;
}

/* ======================================
   NAV — MOBILE (≤1280px): logo centrado,
   hamburger izquierda, carrito derecha
   ====================================== */
@media (max-width: 1280px) {
  :root { --nav-h: 90px; }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    height: var(--nav-h);
  }

  /* Hamburger visible a la izquierda */
  nav > .hamburger {
    display: flex;
    position: relative;
    z-index: 1;
    order: 1;
  }

  /* Logo centrado absolutamente */
  .nav-row-top {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }

  /* Links ocultos (están en el menú móvil) */
  .nav-row-bottom {
    display: flex;
    position: static;
    width: auto;
    order: 3;
  }

  .nav-row-bottom .nav-links {
    display: none;
  }

  /* Carrito visible a la derecha */
  .nav-row-bottom .nav-actions {
    position: static;
    transform: none;
    z-index: 1;
  }
}

/* ======================================
   NAV — DESKTOP (>1280px): logo arriba,
   links + carrito abajo
   ====================================== */
@media (min-width: 1281px) {
  nav > .hamburger { display: none; }

  .nav-row-bottom .nav-actions {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1281px) {
}

/* ---- DESKTOP NAV EXTRAS ---- */
.nav-desktop-left {
  display: none;
  position: absolute;
  left: 0;
  align-items: center;
  gap: 14px;
}

.nav-accordion-btn {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-accordion-btn span {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.nav-accordion-btn:hover span {
  background: var(--terracotta);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--clay);
  transition: color var(--transition);
  padding: 0;
}

.lang-btn.active {
  color: var(--charcoal);
  font-weight: 700;
}

.lang-btn:hover {
  color: var(--terracotta);
}

.lang-sep {
  font-size: 11px;
  color: rgba(180, 160, 130, 0.5);
}

.nav-instagram {
  color: var(--charcoal);
  display: flex;
  align-items: center;
  transition: color var(--transition);
  text-decoration: none;
}

.nav-instagram:hover {
  color: var(--terracotta);
}

/* Show desktop extras only on desktop */
@media (min-width: 1281px) {
  .nav-desktop-left {
    display: flex;
  }

  .nav-row-bottom {
    justify-content: center;
  }
}

/* Hide on mobile */
@media (max-width: 1280px) {
  .nav-desktop-left { display: none; }
  .nav-instagram { display: none; }
}

/* Alineación vertical uniforme en nav-row-bottom */
@media (min-width: 1281px) {
  .nav-row-bottom {
    align-items: center;
  }

  .nav-desktop-left {
    align-items: center;
    gap: 16px;
  }

  .nav-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
  }

  .nav-lang {
    align-items: center;
    height: 40px;
  }

  .nav-actions {
    align-items: center;
    gap: 20px;
  }

  .nav-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
  }

  .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
  }
}

/* ---- DESKTOP EXTRAS (outside nav) ---- */
.desktop-extras {
  display: none;
  position: fixed;
  left: 32px;
  top: calc(var(--nav-h) + 16px);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 1281px) {
  .desktop-extras {
    display: flex;
  }

  /* Hide from nav-row-bottom */
  .nav-desktop-left {
    display: none;
  }
}

@media (max-width: 1280px) {
  .desktop-extras {
    display: none !important;
  }
}

/* nav-desktop-left alineado con el carrito en nav-row-bottom */
@media (min-width: 1281px) {
  .nav-desktop-left {
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 16px;
  }

  .nav-row-bottom .nav-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* nav-desktop-left: centrado verticalmente en el nav entre logo y links */
@media (min-width: 1281px) {
  .nav-desktop-left {
    display: flex;
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 16px;
    z-index: 101;
  }
}

/* nav-desktop-right: centrado verticalmente en el nav, lado derecho */
@media (min-width: 1281px) {
  .nav-desktop-right {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 101;
  }
}

@media (max-width: 1280px) {
  .nav-desktop-right {
    display: none;
  }
}

/* Carrito solo en móvil */
.nav-mobile-cart {
  display: none;
}

@media (max-width: 1280px) {
  .nav-mobile-cart {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    order: 3;
  }
}

/* ============================================
   NAV — REGLAS DEFINITIVAS MÓVIL vs ESCRITORIO
   ============================================ */

/* MÓVIL (≤1280px): hamburger | logo+subtítulo | carrito */
@media (max-width: 1280px) {
  :root { --nav-h: 90px; }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 0;
    height: var(--nav-h);
  }

  /* Hamburger izquierda */
  nav > .hamburger { display: flex; order: 1; position: relative; z-index: 1; }

  /* Logo centrado con subtítulo */
  .nav-row-top {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }
  .logo-desktop-img { display: none !important; }
  .logo-mobile-img  { display: block !important; }

  /* Ocultar todo lo de escritorio */
  .nav-row-bottom   { display: none; }
  .nav-desktop-left { display: none !important; }
  .nav-desktop-right{ display: none !important; }

  /* Carrito derecha */
  .nav-mobile-cart  { display: flex; order: 3; position: relative; z-index: 1; }
}

/* ESCRITORIO (>1280px): layout de dos filas */
@media (min-width: 1281px) {
  :root { --nav-h: 140px; }

  nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    gap: 6px;
    height: var(--nav-h);
  }

  /* Logo sin subtítulo */
  .logo-desktop-img { display: block !important; }
  .logo-mobile-img  { display: none !important; }

  /* Hamburger nativo oculto */
  nav > .hamburger  { display: none; }

  /* Carrito móvil oculto */
  .nav-mobile-cart  { display: none !important; }

  /* Filas visibles */
  .nav-row-top    { display: flex; width: 100%; justify-content: center; }
  .nav-row-bottom { display: flex; width: 100%; justify-content: center; position: relative; }

  /* Izquierda: acordeón + idioma */
  .nav-desktop-left {
    display: flex !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 16px;
    z-index: 101;
  }

  /* Derecha: instagram + carrito */
  .nav-desktop-right {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    gap: 20px;
    z-index: 101;
  }

  /* Links centrados */
  .nav-row-bottom .nav-links { display: flex; }
}

/* ================================================
   NAV DEFINITIVO — separación limpia móvil/escritorio
   ================================================ */

/* Escritorio (>1280px): fila única, logo izq, links centro, idioma+carrito der */
@media (min-width: 1281px) {
  :root { --nav-h: 150px; }

  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: var(--nav-h);
  }

  /* Mostrar elementos de escritorio */
  .nav-logo-desktop { display: flex; }
  .nav-links        { display: flex; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-desktop-right{ display: flex !important; position: static; transform: none; align-items: center; gap: 20px; }
  .nav-lang         { display: flex; }

  /* Ocultar elementos móvil */
  .hamburger        { display: none !important; }
  .nav-logo-mobile  { display: none !important; }
  .nav-mobile-cart  { display: none !important; }
  .nav-row-top      { display: none; }
  .nav-row-bottom   { display: none; }
  .nav-desktop-left { display: none !important; }
}

/* Móvil (≤1280px): hamburger izq | logo centro | carrito der */
@media (max-width: 1280px) {
  :root { --nav-h: 90px; }

  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--nav-h);
  }

  /* Mostrar elementos móvil */
  .hamburger        { display: flex !important; order: 1; }
  .nav-logo-mobile  { display: flex !important; order: 2; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-mobile-cart  { display: flex !important; order: 3; }
  .nav-logo-mobile .logo-img { height: 72px; }

  /* Ocultar elementos escritorio */
  .nav-logo-desktop { display: none !important; }
  .nav-links        { display: none !important; }
  .nav-desktop-right{ display: none !important; }
  .nav-desktop-left { display: none !important; }
  .nav-row-top      { display: none; }
  .nav-row-bottom   { display: none; }
}

/* ---- DESKTOP: logo más grande, carrito y switch más pequeños ---- */
@media (min-width: 1281px) {

  .cart-icon-desktop {
    width: 32px !important;
    height: 32px !important;
    display: block;
  }

  .nav-desktop-right .lang-btn {
    font-size: 15px !important;
    letter-spacing: 0.1em;
  }

  .nav-desktop-right .lang-sep {
    font-size: 15px !important;
  }
}
