/* 
 * amano-editorial.css
 * Reconstrucción integral de la arquitectura visual pública de Amano
 * Inspirada en la composición editorial, proporciones, limpieza y jerarquía de Handmade.
 * Respetando estrictamente la identidad cromática de Amano: #E96B35, #E4B84D, #302D2A, #FFFDF9.
 */

/* ==========================================================================
   1. GLOBAL HEADER & NAVIGATION (HANDMADE REFERENCE)
   ========================================================================== */

/* Nivel Superior: Franja institucional delgada y discreta */
.editorial-top-strip {
  background-color: #FFFDF9;
  border-bottom: 1px solid #F0ECE4;
  font-size: 0.8125rem;
  color: #5A534B;
  padding: 6px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.editorial-top-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Encabezado Adhesivo Editorial */
.sticky-editorial-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFDF9;
  box-shadow: 0 1px 4px rgba(48, 45, 42, 0.05);
}

/* Container principal del header: Ancho máximo ~1440px con padding lateral adaptable de 24px a 40px */
.site-header.sticky-editorial-header .container,
.editorial-header-main .container,
.editorial-search-row .container,
.editorial-category-nav-row .container {
  max-width: 1440px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: clamp(24px, -15px + 3.85vw, 40px) !important;
  padding-right: clamp(24px, -15px + 3.85vw, 40px) !important;
  box-sizing: border-box;
}

/* Fila Principal: Logotipo absolutamente centrado en pantalla, accesos limpios a izquierda y derecha */
.editorial-header-main {
  background-color: #FFFDF9;
  padding: 0;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-header-main .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: relative;
  min-height: 74px !important;
  height: auto !important;
}

.editorial-header-left {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.75rem);
  justify-content: flex-start;
  z-index: 2;
}

.editorial-header-left a,
.header-cat-btn {
  color: #302D2A;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Fraunces', serif;
  transition: color 0.2s ease;
  padding: 0;
}

.editorial-header-left a:hover,
.header-cat-btn:hover {
  color: #E96B35;
}

.editorial-header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.editorial-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #302D2A;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

.editorial-logo span {
  color: #E96B35;
}

.editorial-header-right {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2.5rem);
  justify-content: flex-end;
  z-index: 2;
}

@media (min-width: 992px) and (max-width: 1180px) {
  .editorial-header-left {
    gap: 1rem !important;
  }

  .editorial-header-right {
    gap: 0.75rem !important;
  }

  .cta-sell-header {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.82rem !important;
    gap: 0.25rem !important;
  }

  .editorial-logo img {
    height: 32px !important;
    max-width: 140px !important;
  }

  .account-btn {
    font-size: 0.88rem !important;
  }
}

.editorial-header-right a,
.editorial-header-right button.account-btn {
  color: #302D2A;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  transition: color 0.2s ease;
  padding: 0;
}

.editorial-header-right a:hover,
.editorial-header-right button.account-btn:hover {
  color: #E96B35;
}

.cart-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge-editorial {
  background-color: #E96B35;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.1rem 0.45rem;
  margin-left: 0.25rem;
}

/* Menús Desplegables de Cabecera (Categorías y Cuenta) */
.header-categories-dropdown-wrapper,
.account-menu-wrapper {
  position: relative;
  display: inline-block;
}

.account-dropdown-menu,
.header-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #FFFDF9;
  border: 1px solid #D6D0C8;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(48, 45, 42, 0.08);
  min-width: 230px;
  z-index: 2000;
  padding: 0.5rem 0;
}

.header-dropdown-menu {
  left: 0;
  right: auto;
}

.account-dropdown-menu.show,
.header-dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #302D2A;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background: #FAF8F5;
  color: #E96B35;
}

.dropdown-divider {
  height: 1px;
  background: #EAE5DE;
  margin: 0.4rem 0;
}

/* Búsqueda y Navegación Horizontal */
.editorial-search-row {
  background-color: #FFFDF9;
  padding: 0.85rem 0 0.4rem;
  border-bottom: none;
}

.editorial-search-row .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.editorial-search-form {
  width: 100%;
  max-width: 740px;
  position: relative;
  margin: 0 auto;
}

.editorial-search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1.4rem;
  border: 1px solid #E2DDD5;
  border-radius: 9999px;
  background-color: #F8F6F0;
  font-size: 0.9375rem;
  color: #302D2A;
  transition: all 0.2s ease;
}

.editorial-search-input:focus {
  outline: none;
  background-color: #FFFDF9;
  border-color: #E96B35;
  box-shadow: 0 0 0 3px rgba(233, 107, 53, 0.12);
}

.editorial-search-btn {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  background: #E96B35;
  border: none;
  color: #FFF;
  cursor: pointer;
  padding: 0.55rem;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.editorial-search-btn:hover {
  background: #D55A26;
}

.editorial-category-nav-row {
  background-color: #FFFDF9;
  padding: 0.4rem 0 0.85rem;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 2.8vw, 3.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.editorial-nav-list a {
  color: #4A443E;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.editorial-nav-list a:hover,
.editorial-nav-list a.active {
  color: #E96B35;
}

/* ==========================================================================
   2. HERO DIVIDIDO (SPLIT HERO - HANDMADE REFERENCE)
   ========================================================================== */

.editorial-hero {
  background-color: #FFFDF9;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 520px;
  max-width: 1440px;
  margin: 0 auto;
}

.editorial-hero-content {
  background-color: #302D2A;
  color: #FFFDF9;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

.editorial-hero-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E4B84D;
  margin-bottom: 1.25rem;
}

.editorial-hero-title {
  font-family: 'Fraunces', serif;
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #FFFDF9;
}

.editorial-hero-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #D6D0C8;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.editorial-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  background-color: transparent;
  border: 1.5px solid #FFFDF9;
  color: #FFFDF9;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-editorial-primary:hover {
  background-color: #FFFDF9;
  color: #302D2A;
}

.link-editorial-secondary {
  color: #E4B84D;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.link-editorial-secondary:hover {
  color: #FFFDF9;
}

.editorial-hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #EAE5DE;
}

.editorial-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================================
   3. FRANJA DE CONFIANZA (TRUST BANNER - HANDMADE REFERENCE)
   ========================================================================== */

.editorial-trust-strip {
  background-color: #FFFDF9;
  padding: 3rem 0;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-trust-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.editorial-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.editorial-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #C84F1E;
  color: #D55A26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.editorial-trust-label {
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #302D2A;
  line-height: 1.3;
}

/* ==========================================================================
   4. SECCIÓN EXPLORAR POR CATEGORÍA (PHOTO CARDS REFERENCE)
   ========================================================================== */

.editorial-section {
  padding: 4.5rem 0;
  background-color: #FFFDF9;
}

.editorial-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.editorial-section-title {
  font-family: 'Fraunces', serif;
  font-size: 2.15rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 0.5rem;
}

.editorial-section-subtitle {
  font-size: 0.95rem;
  color: #6C645B;
}

.editorial-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
  group: true;
}

.editorial-category-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.editorial-category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-category-card:hover .editorial-category-image-wrap img {
  transform: scale(1.04);
}

.editorial-category-label {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #302D2A;
  text-align: center;
  transition: color 0.2s ease;
}

.editorial-category-card:hover .editorial-category-label {
  color: #E96B35;
}

/* ==========================================================================
   5. GRILLA DE PRODUCTOS EDITORIAL (HANDMADE CATALOG & HOME)
   ========================================================================== */

.editorial-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Medalla de Agotado */
.editorial-sold-out-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(217, 56, 30, 0.92);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
  backdrop-filter: blur(4px);
}

.editorial-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none !important;
}

.editorial-product-maker-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.8125rem;
  color: #6C645B;
}

.editorial-product-maker-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #E96B35;
  color: #FFFDF9;
  font-weight: 600;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.editorial-product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 4px;
  margin-bottom: 0.85rem;
  position: relative;
}

.editorial-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.editorial-product-card:hover .editorial-product-image-wrap img {
  transform: scale(1.03);
}

.editorial-product-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.editorial-product-card:hover .editorial-product-title {
  color: #E96B35;
}

.editorial-product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #302D2A;
}

/* ==========================================================================
   6. SECCIÓN HISTORIA O INSPIRACIÓN ARTESANAL (HANDMADE REFERENCE)
   ========================================================================== */

.editorial-story-section {
  padding: 5rem 0;
  background-color: #F8F6F0;
  border-top: 1px solid #EAE5DE;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-story-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 4rem;
}

.editorial-story-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 4px;
}

.editorial-story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-story-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.editorial-story-title {
  font-family: 'Fraunces', serif;
  font-size: 2.35rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.editorial-story-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5A534B;
  margin-bottom: 2rem;
}

.link-editorial-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #302D2A;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: color 0.2s ease;
}

.link-editorial-dark:hover {
  color: #E96B35;
}

/* ==========================================================================
   7. ARTESANOS DESTACADOS & LLAMADO PARA ARTESANOS
   ========================================================================== */

.editorial-artisan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-artisan-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
}

.editorial-artisan-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background-color: #F2EFE9;
  margin-bottom: 1.25rem;
}

.editorial-artisan-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.editorial-artisan-card:hover .editorial-artisan-photo-wrap img {
  transform: scale(1.03);
}

.editorial-artisan-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 0.25rem;
}

.editorial-artisan-meta {
  font-size: 0.875rem;
  color: #6C645B;
  margin-bottom: 0.75rem;
}

.editorial-artisan-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E96B35;
  text-decoration: none;
}

.editorial-callout-section {
  padding: 5rem 0;
  background-color: #302D2A;
  color: #FFFDF9;
  text-align: center;
}

.editorial-callout-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-callout-title {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #FFFDF9;
  margin-bottom: 1.25rem;
}

.editorial-callout-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #D6D0C8;
  margin-bottom: 2.25rem;
}

/* ==========================================================================
   8. FOOTER EDITORIAL COMPLETO (6 COLUMNAS)
   ========================================================================== */

.editorial-footer {
  background-color: #FFFDF9;
  border-top: 1px solid #EAE5DE;
  padding: 4.5rem 0 2rem 0;
  color: #5A534B;
}

.editorial-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
}

.editorial-footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #302D2A;
  margin-bottom: 1.25rem;
}

.editorial-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.editorial-footer-col ul a {
  color: #5A534B;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.editorial-footer-col ul a:hover {
  color: #E96B35;
}

.editorial-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  border-top: 1px solid #F0ECE4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #8C847A;
}

/* ==========================================================================
   9. CATÁLOGO EDITORIAL (FILTER BAR & CATALOG GRID)
   ========================================================================== */

.editorial-catalog-header {
  padding: 3rem 0 2rem 0;
  background-color: #FFFDF9;
  text-align: center;
  border-bottom: 1px solid #EAE5DE;
}

.editorial-filter-bar {
  background-color: #FFFDF9;
  border-bottom: 1px solid #EAE5DE;
  padding: 1rem 0;
}

.editorial-filter-bar .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.editorial-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid #D6D0C8;
  border-radius: 9999px;
  background-color: #FFFDF9;
  color: #302D2A;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.editorial-filter-btn:hover {
  border-color: #302D2A;
}

/* ==========================================================================
   10. PERFIL DE ARTESANO EDITORIAL (HANDMADE MAKER REFERENCE)
   ========================================================================== */

.editorial-profile-cover {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #EAE5DE;
  position: relative;
}

.editorial-profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-profile-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -64px;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.editorial-profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid #FFFDF9;
  overflow: hidden;
  background-color: #E96B35;
  color: #FFFDF9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: 'Fraunces', serif;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.editorial-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-profile-name {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 0.35rem;
}

.editorial-profile-meta {
  font-size: 0.95rem;
  color: #6C645B;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.editorial-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #E4B84D;
  font-weight: 600;
  font-size: 0.85rem;
}

.editorial-profile-bio {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5A534B;
  margin-bottom: 2rem;
}

.editorial-profile-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-bottom: 1px solid #EAE5DE;
  margin-bottom: 3rem;
  width: 100%;
}

.editorial-profile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: #6C645B;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.editorial-profile-nav a:hover,
.editorial-profile-nav a.active {
  color: #E96B35;
  border-bottom-color: #E96B35;
}

/* ==========================================================================
   11. DETALLE DEL PRODUCTO EDITORIAL (HANDMADE PRODUCT REFERENCE)
   ========================================================================== */

.editorial-detail-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
}

.editorial-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.editorial-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #F2EFE9;
  border-radius: 4px;
  overflow: hidden;
}

.editorial-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-info {
  display: flex;
  flex-direction: column;
}

.editorial-detail-maker {
  font-size: 0.95rem;
  color: #E96B35;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.editorial-detail-title {
  font-family: 'Fraunces', serif;
  font-size: 2.35rem;
  font-weight: 500;
  color: #302D2A;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.editorial-detail-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: #302D2A;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   12. MEDIA QUERIES RESPONSIVE (1440px, 768px, 390px)
   ========================================================================== */

@media (max-width: 1024px) {

  .editorial-hero-grid,
  .editorial-story-container,
  .editorial-detail-container {
    grid-template-columns: 1fr;
  }

  .editorial-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .editorial-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .editorial-header-main .container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .editorial-header-left,
  .editorial-header-right {
    gap: 1rem;
  }

  .editorial-nav-list {
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    width: 100%;
    justify-content: flex-start;
  }

  .editorial-hero-content {
    padding: 2.5rem 1.5rem;
  }

  .editorial-hero-title {
    font-size: 2.2rem;
  }

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

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

  .editorial-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

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

@media (max-width: 480px) {
  .editorial-header-main .container {
    padding: 0 1rem;
  }

  .editorial-logo {
    font-size: 1.5rem;
  }

  .editorial-hero-title {
    font-size: 1.85rem;
  }

  .editorial-category-grid,
  .editorial-artisan-grid,
  .editorial-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.85rem;
  }

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

/* ==========================================================================
   2. DETALLE DE PRODUCTO EDITORIAL (HANDMADE REFERENCE PROPORTIONS)
   ========================================================================== */
.editorial-detail-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 2rem 5rem 2rem;
}

.editorial-detail-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3.5rem;
  align-items: start;
  /* Información alineada al borde superior de la fotografía */
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}

.editorial-detail-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-detail-main-img {
  width: 100%;
  height: 600px;
  max-height: 600px;
  /* Altura máxima visual aproximada de 600-620 px */
  border-radius: 12px;
  overflow: hidden;
  background-color: #FAF8F5;
  border: 1px solid #EAE5DE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-detail-main-img img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  /* Mostrar la pieza completa siempre que sea posible */
  display: block;
}

.editorial-detail-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.editorial-detail-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #EAE5DE;
  cursor: pointer;
  transition: border-color 0.2s ease;
  background: #FFFDF9;
  flex-shrink: 0;
}

.editorial-detail-thumbs img.active,
.editorial-detail-thumbs img:hover {
  border-color: #E96B35;
}

.editorial-detail-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .editorial-detail-wrapper {
    padding: 1rem 1rem 3.5rem 1rem;
  }

  .editorial-detail-grid {
    grid-template-columns: 1fr;
    /* Móvil: una sola columna, imagen primero, info después */
    gap: 2rem;
  }

  .editorial-detail-main-img {
    height: 420px;
    max-height: 420px;
  }
}

/* ==========================================================================
   3. HISTORIA DEL ARTESANO Y PESTAÑAS (HANDMADE PROFILE REFERENCE)
   ========================================================================== */
.artisan-profile-tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 1px solid #EAE5DE;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.artisan-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #5A534B;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
}

.artisan-tab-btn:hover {
  color: #E96B35;
}

.artisan-tab-btn.active {
  color: #302D2A;
  font-weight: 600;
  border-bottom-color: #E96B35;
}

.artisan-tab-content {
  display: none;
}

.artisan-tab-content.active {
  display: block;
}

.editorial-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0 3rem 0;
}

.editorial-story-box {
  background: #FAF8F5;
  border: 1px solid #EAE5DE;
  border-radius: 12px;
  padding: 2rem;
}

@media (max-width: 768px) {
  .editorial-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   13. ESTILOS DE LA BARRA DE CATEGORÍAS Y MENÚS DESPLEGABLES
   ========================================================================== */

.editorial-category-nav-row {
  background-color: #FFFDF9;
  border-bottom: 1px solid #EAE5DE;
  height: 54px !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.editorial-category-nav-row .container {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.editorial-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  justify-content: space-between !important;
}

.editorial-nav-list>li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* Estilo visual de Amano para categoría activa o hover */
.editorial-nav-list a.nav-link-main {
  color: #4A443E;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.editorial-nav-list a.nav-link-main:hover,
.editorial-nav-list>li:hover a.nav-link-main,
.editorial-nav-list>li.active-dropdown a.nav-link-main,
.editorial-nav-list a.nav-link-main.active {
  background-color: #E96B35 !important;
  color: #FFFDF9 !important;
}

.editorial-nav-list a.nav-link-main .chevron-icon {
  transition: transform 0.2s;
}

.editorial-nav-list>li:hover a.nav-link-main .chevron-icon,
.editorial-nav-list>li.active-dropdown a.nav-link-main .chevron-icon {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.category-dropdown-panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 999;
  min-width: 480px;
  background: #FFFDF9;
  border: 1px solid #EAE5DE;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(48, 45, 42, 0.12);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mouse bridge so hover is continuous */
.category-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

/* Trigger panel visibility on hover or active class */
.editorial-nav-list>li:hover .category-dropdown-panel,
.editorial-nav-list>li.active-dropdown .category-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-column-ver-todo {
  border-bottom: 1px solid #F0ECE6;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.dropdown-ver-todo-btn {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #E96B35 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.dropdown-ver-todo-btn:hover {
  color: #D55A26 !important;
}

.dropdown-subcategories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dropdown-col a {
  color: #6C645B !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.1rem 0;
}

.dropdown-col a:hover {
  color: #E96B35 !important;
  padding-left: 4px;
}

/* "Nuevas creaciones" capsule style */
.new-creations-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background-color: #E96B35;
  color: #FFFDF9 !important;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 9999px;
  /* Capsule shape */
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(233, 107, 53, 0.25);
  border: 1.5px solid #C84F1E;
  white-space: nowrap;
}

.new-creations-capsule:hover {
  background-color: #D55A26 !important;
  color: #FFFDF9 !important;
  border-color: #B54215 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 107, 53, 0.35);
}

.badge-new-tag {
  background-color: #FFFDF9;
  color: #E96B35;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(233, 107, 53, 0.2);
  line-height: 1;
}

/* Accordion in Mobile Drawer */
.drawer-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.drawer-detail {
  border-bottom: 1px solid #F0ECE6;
  padding-bottom: 0.5rem;
}

.drawer-detail[open] {
  padding-bottom: 0.75rem;
}

.drawer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #302D2A;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0.25rem;
  outline: none;
  user-select: none;
}

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

.drawer-summary svg {
  transition: transform 0.2s;
}

.drawer-detail[open] .drawer-summary svg {
  transform: rotate(180deg);
}

.drawer-subcategories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

.drawer-subcategories a {
  color: #6C645B !important;
  font-size: 0.88rem !important;
  text-decoration: none;
  padding: 0.25rem 0;
  display: block;
}

.drawer-subcategories a:first-child {
  color: #E96B35 !important;
  font-weight: 600;
}

/* ==========================================================================
   15. SECCIONES DESTACADAS Y CARRUSELES DE PORTADA (REDISEÑO EDITORIAL)
   ========================================================================== */

.editorial-section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto 2.5rem auto;
  padding: 0 2rem;
  gap: 1rem;
}

.editorial-header-actions {
  display: flex;
  gap: 0.5rem;
}

.editorial-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFDF9;
  border: 1px solid #D8D2C9;
  color: #302D2A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(48, 45, 42, 0.04);
}

.editorial-carousel-btn:hover {
  background-color: #E96B35;
  border-color: #E96B35;
  color: #FFFDF9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 107, 53, 0.25);
}

/* Explorar por categoría - Fila horizontal compacta */
.editorial-category-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 1rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.editorial-category-carousel::-webkit-scrollbar {
  display: none;
}

.editorial-category-card-compact {
  flex: 0 0 170px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
}

.editorial-category-image-wrap-compact {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(216, 210, 201, 0.5);
  box-shadow: 0 2px 8px rgba(48, 45, 42, 0.04);
}

.editorial-category-image-wrap-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-category-card-compact:hover .editorial-category-image-wrap-compact img {
  transform: scale(1.06);
}

.editorial-category-label-compact {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #302D2A;
  text-align: center;
  transition: color 0.2s ease;
}

.editorial-category-card-compact:hover .editorial-category-label-compact {
  color: #E96B35;
}

/* Artesanías Destacadas - Máximo 5 productos en escritorio */
.editorial-handicrafts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-handicraft-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
  background: transparent;
  border: none;
}

.editorial-handicraft-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  position: relative;
  border: 1px solid rgba(216, 210, 201, 0.5);
}

.editorial-handicraft-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-handicraft-card:hover .editorial-handicraft-image-wrap img {
  transform: scale(1.04);
}

.editorial-handicraft-maker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6C645B;
  font-weight: 600;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editorial-handicraft-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #302D2A;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.editorial-handicraft-card:hover .editorial-handicraft-title {
  color: #E96B35;
}

.editorial-handicraft-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #302D2A;
}

/* En tablet y celular, convertir en carrusel horizontal para reducir cantidad visible */
@media (max-width: 992px) {
  .editorial-handicrafts-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 2rem 1rem 2rem;
    scrollbar-width: none;
  }
  .editorial-handicrafts-grid::-webkit-scrollbar {
    display: none;
  }
  .editorial-handicraft-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .editorial-handicrafts-grid {
    padding: 0 1rem 1rem 1rem;
  }
  .editorial-handicraft-card {
    flex: 0 0 180px;
  }
  .editorial-category-card-compact {
    flex: 0 0 140px;
  }
}

/* Creaciones Destacadas - 3 creaciones visibles en escritorio, 1 por artesano, con carrusel si hay más */
.editorial-creations-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 1rem 2rem;
  scrollbar-width: none;
}

.editorial-creations-carousel::-webkit-scrollbar {
  display: none;
}

.editorial-creation-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  scroll-snap-align: start;
  background-color: #FFFDF9;
  border: 1px solid #EAE5DE;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.editorial-creation-card:hover {
  box-shadow: 0 10px 30px rgba(48, 45, 42, 0.06);
  border-color: #D8D2C9;
}

.editorial-creation-maker-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #302D2A;
}

.editorial-creation-maker-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E96B35;
  border: 1px solid #EAE5DE;
}

.editorial-creation-maker-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.editorial-creation-maker-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #302D2A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editorial-creation-maker-sub {
  font-size: 0.75rem;
  color: #6C645B;
}

.editorial-creation-product-link {
  text-decoration: none;
  color: #302D2A;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.editorial-creation-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(216, 210, 201, 0.5);
}

.editorial-creation-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-creation-card:hover .editorial-creation-image-wrap img {
  transform: scale(1.05);
}

.editorial-creation-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #302D2A;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.editorial-creation-card:hover .editorial-creation-title {
  color: #E96B35;
}

.editorial-creation-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #302D2A;
  margin-bottom: 1.25rem;
}

.editorial-creation-profile-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background-color: #F5F2EC;
  color: #302D2A;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #EAE5DE;
  transition: all 0.2s ease;
  text-align: center;
}

.editorial-creation-profile-btn:hover {
  background-color: #302D2A;
  color: #FFFDF9;
  border-color: #302D2A;
}

@media (max-width: 992px) {
  .editorial-creation-card {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
}

@media (max-width: 640px) {
  .editorial-section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  .editorial-creations-carousel {
    padding: 0 1rem 1rem 1rem;
    gap: 1rem;
  }
  .editorial-creation-card {
    flex: 0 0 260px;
  }
}

/* ==========================================================================
   16. REDISEÑO DE CREACIÓN DESTACADA (1 ARTESANO EN SPOTLIGHT)
   ========================================================================== */

.editorial-spotlight-section {
  padding: 5rem 0;
  background-color: #FFFDF9;
}

.editorial-spotlight-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.editorial-switcher-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.editorial-switcher-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFDF9;
  border: 1px solid #D8D2C9;
  color: #302D2A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.editorial-switcher-arrow:hover {
  background-color: #E96B35;
  border-color: #E96B35;
  color: #FFFDF9;
  transform: translateY(-1px);
}

.editorial-switcher-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.editorial-switcher-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #EAE5DE;
  background-color: #F5F2EC;
}

.editorial-switcher-info {
  display: flex;
  flex-direction: column;
}

.editorial-switcher-name {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #302D2A;
  margin: 0 0 0.15rem 0;
  line-height: 1.2;
}

.editorial-switcher-tagline {
  font-size: 0.95rem;
  color: #6C645B;
  margin: 0;
}

/* Slide container */
.editorial-spotlight-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.editorial-spotlight-slide.active {
  display: block;
  opacity: 1;
}

/* 4-column product grid matching reference */
.editorial-creations-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.editorial-spotlight-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
}

.editorial-spotlight-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  position: relative;
  border: 1px solid rgba(216, 210, 201, 0.4);
}

.editorial-spotlight-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-spotlight-product-card:hover .editorial-spotlight-image-wrap img {
  transform: scale(1.04);
}

.editorial-spotlight-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #302D2A;
  color: #FFFDF9;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.editorial-spotlight-product-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #302D2A;
  text-align: center;
  line-height: 1.35;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}

.editorial-spotlight-product-card:hover .editorial-spotlight-product-title {
  color: #E96B35;
}

/* Tablet & Mobile responsive for Spotlight */
@media (max-width: 992px) {
  .editorial-switcher-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .editorial-switcher-name {
    font-size: 1.5rem;
  }
  .editorial-creations-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .editorial-switcher-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .editorial-creations-spotlight-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .editorial-creations-spotlight-grid::-webkit-scrollbar {
    display: none;
  }
  .editorial-spotlight-product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   17. SECCIÓN CATEGORÍAS EN PORTADA (MÁXIMO 4 ELEMENTOS)
   ========================================================================== */

.editorial-category-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.editorial-category-card-four {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #302D2A;
  background-color: #FFFDF9;
  border: 1px solid #EAE5DE;
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(48, 45, 42, 0.03);
}

.editorial-category-card-four:hover {
  box-shadow: 0 8px 24px rgba(48, 45, 42, 0.06);
  border-color: #D8D2C9;
}

.editorial-category-image-wrap-four {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #F2EFE9;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid rgba(216, 210, 201, 0.4);
}

.editorial-category-image-wrap-four img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-category-card-four:hover .editorial-category-image-wrap-four img {
  transform: scale(1.05);
}

.editorial-category-label-four {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #302D2A;
  margin-top: 0.25rem;
  text-align: center;
  transition: color 0.2s ease;
}

.editorial-category-card-four:hover .editorial-category-label-four {
  color: #E96B35;
}

@media (max-width: 768px) {
  .editorial-category-grid-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
  .editorial-category-card-four {
    padding: 0.85rem;
  }
}