:root {
  --primary: #000;
  --secondary: #fff;
  --accent: #e2001a;
  --gray: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-bg: #121212;
  --transition: all 0.3s ease;
  --gold: #c6a769;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--secondary);
  color: var(--primary);
  overflow-x: hidden;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: sticky;
  top: 0px;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.top-header {
  padding-top: 4px;
  padding-bottom: 4px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.logo-img {
  font-weight: 800;
  height: 60px;
  width: 60px;
  margin-right: 10px;
}

.logo span {
  font-weight: 400;
  color: #e2001a;
  font-style: italic;
}

.cart-icon {
  color: #333 !important;
  font-size: 20px !important;
  margin-left: 20px !important;
  margin-right: auto !important;
  transition: color 0.3s;
  order: 1;
  position: relative;
  display: inline-block;
}
/* --- Aumentar tamaño del carrito --- */
.cart-icon i {
  font-size: 30px !important; /* prueba con 36px, puedes subir más */
}
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background-color: #e2001a;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* --- Pegar carrito al logo (sin tocar HTML) --- */
.top-header .header-content{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px; /* separacion mínima entre logo y carrito */
}

.top-header .logo{
  margin-right:0 !important;
}

.top-header .cart-icon{
  order:0 !important;                 /* evita reordenación */
  margin-left:6px !important;         /* pequeño respiro desde el logo */
  margin-right:0 !important;          /* anula empuje hacia la izquierda */
  font-size:24px !important;          /* acorde al alto del logo */
  line-height:1;
  vertical-align:middle;
}

.top-header .cart-icon .cart-count{
  top:-7px; right:-7px;               /* badge bien colocado */
}

/* Opcional: aún más “pegado” (sin espacio) */
/* .top-header .header-content{ gap:0 } */
/* Hero Section */
.hero-section {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.28),
    rgba(0,0,0,.12) 40%,
    rgba(0,0,0,.38)
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.hero-content h1 {
  font-size: clamp(1.1rem, 3vw, 2rem);
  margin: 0 0 6px;
  font-weight: 800;
}

.hero-content p {
  font-size: 0.85rem;
  color: white;
}

.btn-hero {
  background: #8a1538;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
}

.btn-hero:hover {
  background: #600f29;
}
.link-tallas {
    color: #8a1538; /* burdeos MEDALLO Jeans */
    text-decoration: none; /* quita el underline */
    font-weight: bold; /* mantiene fuerza visual */
  }
  .link-tallas:hover {
    text-decoration: underline; /* opcional al pasar el ratón */
  }
/* Reducir separación entre secciones */
section {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* Ajustar solo títulos de sección */
.section-title {
  margin-top: 10px !important;
  margin-bottom: 15px !important;
}

/* Ajustar contenedores que tenían demasiado espacio */
.quality-section,
.product-videos-local,
.premium-section,
.catalogo-banner,
.seo-content {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
/* Quality Section */
.quality-section {
  background-color: #f9f9f9;
  padding: 5rem 0;
  position: relative;
}

.quality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.quality-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.2;
}

.quality-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3a7bd5, #00d2ff);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.quality-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.quality-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  max-width: 900px;
  margin: 0 auto;
}

.quality-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px -15px rgba(0,0,0,.2);
}

.quality-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .5s ease;
}

.quality-image:hover img {
  transform: scale(1.03);
}

.quality-question {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin: 30px 0 20px;
  text-align: center;
}

/* Product Videos */
.product-videos-local {
  padding: 60px 20px;
  background: #f8f8f8;
  position: relative;
}

.video-grid-local {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.video-card-local {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.video-card-local:hover {
  transform: translateY(-5px);
}

.video-wrapper-local {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper-local video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(198, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display: none !important;
}

.play-button:hover {
  background: rgba(160, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info-local {
  padding: 20px;
}

.video-info-local h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #2a3c4e;
}

.video-info-local p {
  margin: 0 0 15px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.video-link-local {
  display: inline-flex;
  align-items: center;
  color: #8a1538;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.video-link-local:hover {
  color: #a00000;
}

.video-link-local i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.video-link-local:hover i {
  transform: translateX(3px);
}

.video-cta-local {
  text-align: center;
  margin-top: 40px;
}

.btn-video-local {
  display: inline-flex;
  align-items: center;
  background: #8a1538;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-video-local i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-video-local:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198, 0, 0, 0.3);
}

/* Brand Logos */
.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 18px 0 8px;
}

.brand-logo img {
  max-width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

/* Filters */
.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  padding: 8px 20px;
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab.active, .filter-tab:hover {
  background: #000;
  color: #fff;
}

.sorting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sorting select {
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Products Grid */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-image {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-title {
    padding: 12px 8px;
  }
  
  .product-title a {
    font-size: 0.9rem;
  }
}

.premium-product {
  position: relative;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
}

.premium-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-link {
  display: block;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.premium-product:hover .product-image {
  transform: scale(1.05);
}

.mini-cart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a1538;
  text-decoration: none;
  z-index: 10;
}

.product-title {
  padding: 15px;
  text-align: center;
  margin: 0;
}

.product-title a {
  color: #1a3a6c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.made-in-colombia {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #003366;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Catalog Banner */
.catalogo-banner {
  margin-top: 60px;
  text-align: center;
}

.catalogo-banner img {
  width: 100%;
  max-width: 973px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.boton-catalogo-premium {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #c70039, #ff416c);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.boton-catalogo-premium:hover {
  background: linear-gradient(135deg, #ff416c, #c70039);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Premium Section */
.premium-section {
  width: 100%;
  margin: 40px 0;
  padding: 40px 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  color: #000000;
  margin: 0 auto 15px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* SEO Content */
.seo-content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.seo-content h2 {
  color: #0033a0;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.seo-content h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #e2001a;
}

.seo-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin: 25px 0 15px;
}

.seo-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.seo-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.seo-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.seo-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #e2001a;
  font-weight: bold;
}

/* Reviews */
.medallo-reviews-container {
  font-family: 'Montserrat', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-text {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 20px 0;
  position: relative;
  padding-left: 30px;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.stars {
  color: #f1c40f;
  font-size: 20px;
  margin-right: 15px;
}

/* RESEÑAS MINIMALISTA PREMIUM - MEDALLO JEANS */
.medallo-reviews-container {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

/* Header Ultra Minimalista */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #2a3c4e;
}

.header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 1px solid #f0f0f0;
    filter: grayscale(20%);
}

.header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}

/* Tarjetas Minimalistas */
.review-card {
    background: #fafafa;
    border-radius: 2px;
    padding: 50px 40px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    background: #ffffff;
    border-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Reseña Destacada - Sutil */
.review-card.featured {
    background: #fefefe;
    border-left: 3px solid #2a3c4e;
    border-top: 1px solid #f0f0f0;
}

/* Badge Minimalista */
.product-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    color: #2a3c4e;
    padding: 6px 15px;
    border: 1px solid #2a3c4e;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Título del Producto */
.review-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Texto de Reseña - Tipografía refinada */
.review-text {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
    position: relative;
    padding-left: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.review-text > div {
    position: absolute;
    left: -10px;
    top: -15px;
    font-size: 3rem;
    color: #2a3c4e;
    font-family: Georgia, serif;
    opacity: 0.1;
}

/* Información del Cliente - Disposición elegante */
.reviewer-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 35px;
}

.client-photo {
    grid-row: span 2;
}

.client-photo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.reviewer-info:hover .client-photo img {
    border-color: #2a3c4e;
}

.stars {
    color: #2a3c4e;
    font-size: 1.1rem;
    letter-spacing: 2px;
    align-self: end;
}

.reviewer-info strong {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Acciones - Discreta pero funcional */
.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.btn {
    background: transparent;
    color: #2a3c4e;
    padding: 10px 25px;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #2a3c4e;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2a3c4e;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: #ffffff;
}

.btn:hover::before {
    left: 0;
}

.link {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.link:hover {
    color: #2a3c4e;
}

.see-more {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    letter-spacing: 1px;
    position: relative;
}

.see-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2a3c4e;
    transition: width 0.3s ease;
}

.see-more:hover {
    color: #2a3c4e;
}

.see-more:hover::after {
    width: 100%;
}

.see-more span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.see-more:hover span {
    transform: translateX(3px);
}

/* Colores sutiles para diferenciar tarjetas */
.review-card:nth-child(2) .review-text > div {
    color: #2a3c4e;
}

.review-card:nth-child(3) .review-text > div {
    color: #2a3c4e;
}

.review-card:nth-child(2) {
    border-left-color: #666;
}

.review-card:nth-child(3) {
    border-left-color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .medallo-reviews-container {
        padding: 60px 15px;
    }
    
    .header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .header img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .header h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .reviewer-info {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .client-photo {
        justify-self: center;
    }
    
    .review-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .review-actions .btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Animaciones sutiles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Efectos de carga progresiva */
.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

/* Estados de focus para accesibilidad */
.btn:focus,
.link:focus,
.see-more:focus {
    outline: 2px solid #2a3c4e;
    outline-offset: 2px;
}

/* Mejora de rendimiento */
.review-card {
    will-change: transform;
}

/* Soporte para modo oscuro */
@media (prefers-color-scheme: dark) {
    .medallo-reviews-container {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .review-card {
        background: #2a2a2a;
        border-color: #333;
        color: #ffffff;
    }
    
    .review-card:hover {
        background: #2d2d2d;
    }
    
    .review-card h3,
    .reviewer-info strong {
        color: #ffffff;
    }
    
    .review-text {
        color: #e0e0e0;
    }
    
    .reviewer-info span,
    .link {
        color: #999;
    }
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-section h2 {
  text-align: center;
  color: #2a2a2a;
  font-size: 1.7rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: #3a3a3a;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta .btn {
  background-color: #8a1538;
  color: white !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
}

.faq-cta .btn:hover {
  background-color: #b38a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 147, 74, 0.3);
}

/* Blog Teasers */
.home-blog-teasers {
  --ink: #0f172a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --gold: #f59e0b;
  --surface: #fff;
  --bg: #f8fafc;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  margin: 56px auto;
  max-width: 1200px;
  padding: 0 16px;
}

.hbt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.hbt-head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
  letter-spacing: .2px;
  color: var(--ink);
}

.hbt-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: .2s;
}

.hbt-viewall:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15,23,42,.08);
}

.hbt-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hbt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hbt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
}

.hbt-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.hbt-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg);
}

.hbt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hbt-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(220, 38, 38, 0.95);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.hbt-body {
  padding: 14px 16px 16px;
}

.hbt-title {
  margin: 0 0 6px;
  font-size: clamp(1rem, .9rem + 0.5vw, 1.15rem);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 800;
}

.hbt-excerpt {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.5;
}

.hbt-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: .88rem;
  font-weight: 700;
}

.hbt-meta .dot {
  opacity: .5;
}

/* Contact Form */
.premium-contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #f0f0f0;
}

.contact-form-title {
  font-size: 1.3rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  border-bottom: 2px solid #e2001a;
  padding-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.input-with-icon {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
}

.input-with-icon i {
  margin-right: 10px;
  font-size: 1.3rem;
  color: #c50000;
}

.premium-input, .premium-textarea {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.premium-textarea {
  resize: vertical;
  min-height: 120px;
}

.premium-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  background: #8a1538;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.premium-submit-btn:hover {
  background: #b60017;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-footer-note {
  text-align: center;
  font-size: 0.95rem;
  color: black !important;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Payment Methods */
.payment-badge-container-white {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.payment-title-white {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}

.payment-icons-white {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icons-white a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 40px;
  color: #fff;
  font-size: 28px;
}

.payment-icons-white img {
  height: 24px;
  width: auto;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.wa-label {
  position: fixed;
  right: 74px;
  bottom: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  z-index: 1100;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .quality-title {
    font-size: 2.2rem;
  }
  
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hbt-track {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 140px;
  }
  
  .quality-section {
    padding: 4rem 0;
  }
  
  .quality-title {
    font-size: 2rem;
  }
  
  .quality-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .video-grid-local {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-videos-local {
    padding: 40px 15px;
  }
  
  .filters-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .hbt-track {
    display: flex;
    gap: 16px;
    overflow: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .hbt-card {
    min-width: 80%;
    scroll-snap-align: start;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .premium-contact-card {
    padding: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
  
  .wa-label {
    right: 65px;
    bottom: 25px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .quality-section {
    padding: 3rem 0;
  }
  
  .quality-title {
    font-size: 1.8rem;
  }
  
  .quality-text {
    text-align: justify;
  }
  
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .seo-content {
    padding: 20px;
  }
  
  .seo-content h2 {
    font-size: 1.4rem;
  }
  
  .seo-content h3 {
    font-size: 1.2rem;
  }
  
  .payment-icons-white {
    gap: 1px;
  }
  
  .payment-icons-white a {
    min-width: 50px;
    min-height: 30px;
    font-size: 30px;
  }
  
  .payment-icons-white img {
    height: 25px;
    width: 60px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===== Fuerza 2 productos por fila ===== */
#jeans.premium-grid{
  display:grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

/* Tablets: 3 por fila */
@media (min-width: 768px){
  #jeans.premium-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

/* Desktop: 4 por fila */
@media (min-width: 1024px){
  #jeans.premium-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    max-width: 1200px; /* ya lo tienes, lo reafirmamos */
    margin: 0 auto;
  }
}

/* Asegurar que ninguna tarjeta rompa el grid */
#jeans .premium-product{
  width: 100% !important;
  max-width: none !important;
}
#jeans .product-image{
  width: 100% !important;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
}
/* Footer */
footer {
  background: #ffffff;
  color: black;
  padding: 80px 20px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: black !important;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #c6a769;
}

.footer-col p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-col li {
  margin-bottom: 15px;
  color: black;
}

.footer-col ul li a {
  color: black !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-col a {
  color: black !important;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background: #333;
  border-radius: 50%;
  color: white !important;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: #c6a769;
  transform: translateY(-5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 30px 20px 0;
  border-top: 1px solid #eee;
  text-align: center;
  color: #333;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #333 !important;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: #c6a769;
  transition: var(--transition);
}

.footer-links a:hover:after {
  width: 100%;
}
/* === Fix contraste footer === */
footer .footer-col h4 {
  color: #111 !important;
  font-weight: 700;
}

footer .footer-col ul li a {
  color: #222 !important;
  font-weight: 600;
  opacity: 1 !important;
  text-decoration: none;
}

footer .footer-col ul li a:hover {
  color: #000 !important;
  text-decoration: underline;
}

/* Ajuste del texto del bloque LEGAL y ARTÍCULOS */
footer .footer-col p,
footer .footer-col li {
  color: #222 !important;
  opacity: 1 !important;
}

/* Enlaces legales en bloque inferior */
footer .footer-links a {
  color: #222 !important;
  font-weight: 600;
  opacity: 1 !important;
}
/* === Fix botón Zaragoza en footer === */
.video-cta-local .btn-video-local {
  background: #8a1538;         /* burdeos corporativo */
  color: #fff !important;      /* texto blanco bien fuerte */
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-cta-local .btn-video-local:hover {
  background: #6a0f2c;         /* un burdeos más oscuro en hover */
  color: #fff !important;
  transform: translateY(-2px);
}
/* ===== Bloque de filtros en dos líneas centradas ===== */
.filters-container.ultra-filters {
  max-width: 1200px;
  margin: 0 auto 25px auto;   /* centrado con espacio abajo */
  padding: 10px 20px;
  display: flex;
  flex-direction: column;     /* fuerza dos líneas */
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

/* Fila de pestañas */
.filters-container.ultra-filters .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    /* centra horizontalmente */
  gap: 10px;
}

/* Botones */
.filters-container.ultra-filters .filter-tab {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filters-container.ultra-filters .filter-tab:hover,
.filters-container.ultra-filters .filter-tab.active {
  background: linear-gradient(135deg, #8a1538, #c6a769);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Fila de ordenado */
.filters-container.ultra-filters .sorting {
  display: flex;
  align-items: center;
  justify-content: center;   /* centrado */
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.filters-container.ultra-filters .sorting span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filters-container.ultra-filters .sorting select {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 25px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters-container.ultra-filters .sorting select:hover {
  border-color: #8a1538;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 576px) {
  .filters-container.ultra-filters .filter-tabs {
    gap: 8px;
  }
  .filters-container.ultra-filters .filter-tab {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  .filters-container.ultra-filters .sorting {
    flex-direction: column;
    gap: 8px;
  }
}
  /* GRID GENERAL (escritorio y tablet) */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

/* Estilos base para los productos */
.premium-product {
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 12px;
  padding: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.20); /* sombra inicial */
}

.premium-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15); /* sombra al pasar el dedo */
}

/* MÓVIL */
@media (max-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr); /* dos por fila */
    gap: 2px !important; /* espacio entre productos */
    padding: 0 8px; /* margen lateral */
  }

  .premium-product {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* sombra más visible */
  }

  .premium-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
}
  /* Estilos generales (escritorio y tablet) */
.product-title a {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: block;
  margin-top: 8px;
  text-align: center;
}

.made-in-colombia {
  font-size: 0.9rem;
  color: #555;
  margin-top: 6px;
  text-align: center;
}
.made-in-colombia img {
  height: 14px;
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}

/* SOLO MÓVIL */
@media (max-width: 768px) {
  .product-title a {
    font-size: 0.70rem;   /* más pequeño */
    line-height: 1.3;
    margin-top: 2px;
  }

  .made-in-colombia {
    font-size: 0.65rem;   /* más pequeño */
    color: #666;
    margin-top: 4px;
  }

  .made-in-colombia img {
    height: 16px;
    margin-right: 1px;
  }
}
  /* ===== HERO overrides y ajustes visuales extra ===== */
.hero-section.hero--thin{
  min-height:0 !important;
  padding:0 !important;
}
.hero-section.hero--thin .hero-img{
  width:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}
.hero-section.hero--thin .hero-content{ padding:8px !important; }

/* ===== AVISO “AMOR Y AMISTAD” efectos decorativos ===== */
.aa-toast::before{
  content:""; position:absolute; inset:-2px; border-radius:inherit; z-index:-1;
  background:conic-gradient(from 0deg, #ff3366, #ffb703, #8a1538, #0033a0, #ff3366);
  filter:saturate(1.2);
  animation:aa-rot 6s linear infinite;
  -webkit-mask:linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.aa-link{ background:linear-gradient(90deg,#8a1538,#0033a0,#ff8a00); -webkit-background-clip:text; background-clip:text; color:transparent; position:relative; }
.aa-link .heart{ filter:drop-shadow(0 0 8px rgba(255,75,120,.65)); }
.aa-link::after{
  content:""; position:absolute; left:-5%; top:0; width:110%; height:100%;
  background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.85) 45%,transparent 60%);
  transform:translateX(-120%) skewX(-20deg); pointer-events:none; mix-blend-mode:screen;
  animation:aa-shine 2.8s ease-in-out infinite;
}
.aa-close:hover{ background:#e9e9ef }

/* ===== Animaciones ===== */
@keyframes aa-in{ to{ transform:translateY(0); opacity:1 } }
@keyframes aa-rot{ to{ transform:rotate(1turn) } }
@keyframes aa-shine{ 0%{transform:translateX(-120%) skewX(-20deg)} 60%{transform:translateX(120%) skewX(-20deg)} 100%{transform:translateX(120%) skewX(-20deg)} }
@keyframes aa-bob{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-3px) } }

/* Responsive refinado (móvil con animaciones) */
@media (max-width:560px){
  .aa-toast{ padding-right:10px; }
}
  /* ===== Hero en formato delgado (banner) ===== */
.hero-section.hero--thin {
  width: 100%;
  height: 220px;           /* Altura en escritorio */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.hero-section.hero--thin .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section.hero--thin .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-section.hero--thin .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.28),
    rgba(0,0,0,.12) 40%,
    rgba(0,0,0,.38)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-section.hero--thin .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  text-align: center;
  color: #fff;
}

/* Móvil: aún más fino */
@media (max-width: 768px) {
  .hero-section.hero--thin {
    height: 120px; /* Altura en móvil */
  }
  .hero-section.hero--thin .hero-content h1 {
    font-size: 1.2rem;
  }
  .hero-section.hero--thin .hero-content p {
    display: none; /* opcional si quieres más limpio en móvil */
  }
}
