/* ============================================================
   Cecinas Bengoa - Estático para cPanel
   Réplica fiel del sitio original cecinasbengoa.cl
   Paleta: rojo #e02b20, dorado #E09900, negro, gris #3d3d3d
   Fuente: Open Sans (300-800 + italics)
   ============================================================ */

/* Reset básico */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 500;
  color: #666;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #e02b20; text-decoration: none; transition: all .4s ease-in-out; }
a:hover { opacity: 0.7; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 500;
  line-height: 1em;
  padding-bottom: 10px;
  margin: 0;
}
h1 { font-size: 30px; }
h2 { font-size: 26px; padding-bottom: 16px; margin-bottom: 10px; }
h3 { font-size: 22px; padding: 0.3em 0; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; line-height: 1.4em; }

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: 900px; }

/* Utility */
.text-center { text-align: center; }
.white-text { color: #fff !important; }
.red-bg { background-color: #e02b20; color: #fff; }
.red-bg h1, .red-bg p, .red-bg a { color: #fff; }
.black-bg { background-color: #000; color: #fff; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* ============================================================
   HEADER (Top bar + Main header sticky)
   ============================================================ */
#top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #cd5c5c;
  color: #fff;
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
  padding: 8px 0;
  transition: background-color .4s ease-in-out;
}
#top-header.scrolled { background-color: #e02b20; }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.top-bar-item:hover { opacity: 0.8; color: #fff; }
.top-bar-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: transparent;
  border: none;
}

#main-header-wrapper {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
  transition: all .4s ease-in-out;
}
#main-header-wrapper.scrolled {
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding .4s ease-in-out;
}
#main-header-wrapper.scrolled .header-inner { padding: 8px 0; }
.logo-link { display: inline-block; }
.logo {
  height: 70px;
  width: auto;
  transition: height .4s ease-in-out;
}
#main-header-wrapper.scrolled .logo { height: 55px; }

/* Nav */
#top-menu-nav { display: flex; }
#top-menu { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  color: rgba(0,0,0,.6);
  font-size: 14px;
  font-weight: 600;
  padding: 22px 0;
  text-decoration: none;
  transition: all .4s ease-in-out;
}
#main-header-wrapper.scrolled .nav-link { padding: 16px 0; font-size: 16px; }
.nav-link:hover, .nav-link.active { color: #e02b20; opacity: 1; }
.nav-arrow { font-size: 10px; margin-left: 4px; }
.nav-submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  padding: 10px 0;
  min-width: 180px;
  list-style: none;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 100;
}
.nav-has-children:hover .nav-submenu,
.nav-has-children:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
}
.nav-submenu-link {
  display: block;
  padding: 8px 18px;
  color: rgba(0,0,0,.6);
  font-size: 14px;
  text-decoration: none;
}
.nav-submenu-link:hover, .nav-submenu-link.active { color: #e02b20; background: #fafafa; }

#mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
}

#header-spacer { height: 130px; }
#main-header-wrapper.scrolled ~ #header-spacer { height: 100px; }

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  justify-content: flex-end;
}
.mobile-menu-overlay:not([hidden]) {
  display: flex;
}
.mobile-menu-panel {
  background: #fff;
  width: 80%;
  max-width: 320px;
  height: 100%;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-logo { height: 50px; width: auto; }
#mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #333;
  line-height: 1;
}
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid #eee; }
.mobile-nav > ul > li > a {
  display: block;
  padding: 14px 0;
  color: #333;
  font-weight: 600;
  font-size: 16px;
}
.mobile-nav > ul > li > a.active { color: #e02b20; }
.mobile-nav ul ul { padding-left: 16px; }
.mobile-nav ul ul li { border-bottom: 1px solid #f5f5f5; }
.mobile-nav ul ul a {
  display: block;
  padding: 10px 0;
  color: #666;
  font-size: 14px;
}
.mobile-nav ul ul a.active { color: #e02b20; }
.mobile-contact { margin-top: 30px; font-size: 13px; color: #666; }
.mobile-contact p { margin: 8px 0; }
.mobile-contact strong { color: #e02b20; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #E09900;
  background-color: #E09900;
  color: #000 !important;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 3px;
  transition: all 300ms ease 0ms;
  letter-spacing: .5px;
  cursor: pointer;
}
.btn:hover { background-color: #c48600; border-color: #c48600; opacity: 1; }
.btn-red {
  background-color: #e02b20;
  border-color: #e02b20;
  color: #fff !important;
}
.btn-red:hover { background-color: #c41e15; border-color: #c41e15; }
.btn-small { font-size: 13px; padding: 8px 16px; }
.btn-outline-red {
  background: transparent;
  border: 2px solid #e02b20;
  color: #e02b20 !important;
}
.btn-outline-red:hover { background: #e02b20; color: #fff !important; }
.wa-btn {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wa-btn:hover { background-color: #128c7e !important; border-color: #128c7e !important; }

/* ============================================================
   HOME
   ============================================================ */
/* Hero */
.hero-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}
.hero-logo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.hero-tagline {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0,0,0,.6);
  line-height: 1.4em;
}
.hero-subtitle {
  color: #fff;
  font-size: 16px;
  margin-top: 8px;
  text-shadow: 1px 1px 4px rgba(0,0,0,.6);
}

/* About */
.about-section {
  padding: 80px 0 60px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image { text-align: center; }
.about-image img { width: 70%; max-width: 350px; margin: 0 auto; }
.about-icon { width: 40px; margin-bottom: 20px; }
.about-paragraph {
  font-size: 17px;
  line-height: 1.8em;
  color: #666;
  margin: 0 0 24px;
}

/* Products categories (black) */
.products-section {
  background: #000;
  color: #fff;
  padding: 60px 0 70px;
}
.section-title-image {
  text-align: center;
  margin-bottom: 40px;
}
.section-title-image img { max-width: 260px; margin: 0 auto; }
.products-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-cat-card {
  text-align: center;
  display: block;
  text-decoration: none;
}
.product-cat-card img { width: 93%; margin: 0 auto; }
.product-cat-card h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 600;
  padding: 0;
}
.product-cat-card:hover h3 { opacity: 0.85; }
.section-cta { text-align: center; margin-top: 40px; }

/* Locations */
.locations-section {
  padding: 80px 0 60px;
  background: #fff;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-card { text-align: center; }
.location-card img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 16px;
}
.location-card h2, .location-card h3 {
  color: #333;
  margin-bottom: 8px;
}
.location-card h4 {
  color: #666;
  font-weight: 500;
  margin-bottom: 16px;
}
.location-card p { color: #666; margin-bottom: 16px; }

/* Shipping (black) */
.shipping-section {
  background: #000;
  color: #fff;
  padding: 50px 0;
}
.shipping-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  align-items: center;
}
.shipping-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.shipping-icons img:first-child { width: 18%; min-width: 50px; }
.shipping-icons img:last-child { width: 26%; min-width: 70px; }
.shipping-text { text-align: center; }
.shipping-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
  padding-bottom: 8px;
}
.shipping-text p {
  color: #fff;
  font-size: 17px;
  line-height: 1.6em;
}

/* News / Instagram */
.news-section {
  padding: 60px 0 80px;
  background: #fff;
}
.news-follow { text-align: center; font-size: 16px; color: #666; margin-bottom: 24px; }
.news-follow a { color: #e02b20; font-weight: 600; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}
.insta-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.insta-grid a:hover img { transform: scale(1.05); opacity: 0.9; }

/* ============================================================
   PAGES HEADER + BREADCRUMBS
   ============================================================ */
.page-header {
  padding: 40px 0;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}
.page-header p { color: #fff; margin: 0; }
.breadcrumbs ol {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 12px;
}
.breadcrumbs a { color: #fff; }
.breadcrumbs .sep { opacity: .7; }

.breadcrumb-bar {
  background: #f5f5f5;
  padding: 16px 0;
}
.breadcrumb-bar .breadcrumbs ol { justify-content: flex-start; margin-top: 0; }
.breadcrumb-bar .breadcrumbs a { color: #e02b20; }
.breadcrumb-bar .breadcrumbs .sep { color: #999; }
.breadcrumb-bar .breadcrumbs li:last-child { color: #666; }

.content-section { padding: 60px 0; }
.prose p { font-size: 16px; line-height: 1.8em; color: #666; margin: 0 0 20px; }
.prose strong { color: #333; }
.red-title { color: #e02b20; font-size: 26px; margin-bottom: 16px; font-weight: 700; }
.page-logo { max-width: 200px; margin: 0 auto; }
.brand-tagline {
  margin-top: 12px;
  font-size: 16px;
  color: #e02b20;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Values section */
.values-section { padding: 60px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.value-card { text-align: center; }
.value-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: #E09900;
}
.value-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.value-card p { color: #fff; font-size: 14px; }

/* History hero */
.history-hero {
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.history-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.history-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0,0,0,.6);
  padding-bottom: 4px;
}
.history-content p {
  color: #fff;
  font-size: 18px;
  margin-top: 8px;
  text-shadow: 1px 1px 4px rgba(0,0,0,.6);
}

/* ============================================================
   TIENDA
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
}
.shop-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  border: 1px solid #eee;
  padding: 20px;
}
.sidebar-box h2 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar-box input[type="search"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
}
.category-list { list-style: none; }
.category-list li { margin-bottom: 8px; }
.cat-btn {
  background: transparent;
  border: none;
  padding: 6px 0;
  width: 100%;
  text-align: left;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}
.cat-btn:hover { color: #e02b20; }
.cat-btn.active { color: #e02b20; font-weight: 700; }
.sidebar-wa { background: #fafafa; }
.sidebar-wa h2 { color: #e02b20; font-size: 16px; }
.sidebar-wa p { font-size: 13px; color: #666; margin-bottom: 12px; }

.shop-main {}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-header p { font-size: 14px; color: #666; margin: 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  text-align: center;
  transition: all .3s ease;
}
.product-card:hover {
  border-color: #e02b20;
  box-shadow: 0 4px 20px rgba(224,43,32,.15);
}
.product-link { display: block; color: inherit; text-decoration: none; }
.product-link:hover { opacity: 1; }
.product-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fafafa;
  padding-top: 100%;
}
.product-image-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-name {
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.3em;
  min-height: 42px;
  padding: 0;
}
.product-cat {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.5em;
}
.product-view-btn {
  display: inline-block;
  width: 100%;
}
.no-results {
  padding: 60px 20px;
  text-align: center;
  border: 1px solid #eee;
  color: #666;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2,
.contact-form-wrap h2 {
  color: #e02b20;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-block { margin-bottom: 24px; }
.contact-block h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-block p { color: #666; font-size: 15px; margin: 0; }
.contact-store { margin-bottom: 12px; }
.contact-store-name { color: #e02b20; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.form-help { color: #666; font-size: 14px; margin-bottom: 20px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
}
.form-field textarea { resize: vertical; }
.form-success {
  color: #128c7e;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.map-card h3 {
  color: #e02b20;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.map-card p { color: #666; font-size: 14px; text-align: center; margin-bottom: 12px; }
.map-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  border: 1px solid #ddd;
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-link { text-align: center; margin-top: 10px; }
.map-link a { color: #e02b20; font-size: 13px; font-weight: 600; }

/* ============================================================
   PRODUCTO DETALLE
   ============================================================ */
.product-detail-section { padding: 40px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-detail-image {
  border: 1px solid #eee;
  padding: 20px;
  background: #fafafa;
}
.product-detail-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
}
.product-detail-cat {
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-detail-info h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2em;
}
.product-detail-desc {
  font-size: 16px;
  line-height: 1.7em;
  color: #666;
  margin-bottom: 24px;
}
.product-meta {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-bottom: 24px;
}
.product-meta p { font-size: 14px; color: #666; margin: 0 0 8px; }
.product-meta p:last-child { margin-bottom: 0; }
.product-meta strong { color: #333; }

.quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.quantity-row label { font-size: 14px; color: #333; font-weight: 600; }
.quantity-row button {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  color: #333;
}
.quantity-row input {
  width: 60px;
  height: 36px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-family: inherit;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badges {
  margin-top: 30px;
  padding: 16px;
  background: #fafafa;
  border: 1px solid #eee;
  font-size: 13px;
  color: #666;
}
.trust-badges p { margin: 0 0 6px; }
.trust-badges p:last-child { margin-bottom: 0; }

.related-section {
  padding: 40px 0 60px;
  background: #fafafa;
}
.related-section h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-product-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
}
.related-product-card:hover {
  border-color: #e02b20;
  opacity: 1;
}
.related-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  padding-top: 100%;
  background: #fff;
}
.related-image-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-product-card h3 {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3em;
  padding: 0;
}
.related-view {
  font-size: 12px;
  color: #e02b20;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
  background-color: #3d3d3d;
  color: #fff;
  padding: 50px 0 0;
  margin-top: auto;
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-widget h4,
.footer-widget .footer-title {
  color: #e02b20;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}
.footer-widget p { color: #fff; font-size: 14px; line-height: 1.8; margin: 0; }
.footer-widget a { color: #fff; text-decoration: none; }
.footer-widget a:hover { color: #E09900; opacity: 1; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
  text-decoration: none;
}
.footer-wa-btn:hover { background: #128c7e; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e02b20;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.footer-menu a { color: #fff; text-decoration: none; }
.footer-info {
  color: #fff;
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT (bottom-left, igual al original)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
  transition: background-color .3s ease, transform .3s ease;
  opacity: 0;
  transform: scale(0);
  animation: joinchat-show .5s cubic-bezier(.18,.89,.32,1.28) 3s forwards;
}
.whatsapp-float:hover { background: #128c7e; transform: scale(1.05); }
@keyframes joinchat-show {
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  #top-menu-nav { display: none; }
  #mobile-menu-toggle { display: block; }
  
  .about-grid,
  .shipping-grid,
  .contact-grid,
  .product-detail-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .products-cats-grid,
  .locations-grid,
  .values-grid,
  .maps-grid,
  .footer-widgets {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  #header-spacer { height: 100px; }
  
  .hero-section { min-height: 350px; }
  .hero-logo { max-width: 320px; }
  .hero-tagline { font-size: 16px; }
}

@media (max-width: 560px) {
  .products-grid,
  .related-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }
  
  .top-bar-left { gap: 12px; }
  .top-bar-item { font-size: 11px; }
  
  .container { padding: 0 16px; }
  
  .page-header h1 { font-size: 28px; }
  .product-detail-info h1 { font-size: 26px; }
}
