:root {
  --fx-green: #6e962f;
  --fx-green-dark: #4f6f1f;
  --fx-green-soft: #eef5df;
  --fx-olive: #8dac4a;
  --fx-gold: #c6a74b;
  --fx-dark: #233028;
  --fx-dark-2: #2f3d34;
  --fx-bg: #f5f7f1;
  --fx-surface: #ffffff;
  --fx-surface-2: #fbfcf8;
  --fx-text: #233028;
  --fx-muted: #6e786d;
  --fx-border: #dce6cf;
  --fx-shadow: 0 18px 45px rgba(35, 48, 40, 0.08);
  --fx-radius-xl: 26px;
  --fx-radius-lg: 20px;
  --fx-radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.card {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-success {
    background: #5b7f1a;
    border: none;
}

.btn-warning {
    background: #ffc107;
    border: none;
}

.table th {
    background: #f5f7f2;
}

body {
  background:
    radial-gradient(circle at top right, rgba(141, 172, 74, 0.10), transparent 20%),
    linear-gradient(180deg, #fbfcf8 0%, var(--fx-bg) 100%);
  color: var(--fx-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
}

.topbar-fx {
  background: linear-gradient(90deg, var(--fx-dark) 0%, var(--fx-dark-2) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.topbar-fx .container {
  min-height: 44px;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
}

.topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--fx-gold);
  display: inline-block;
}

.navbar-fx {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 230, 207, 0.95);
}

.navbar-fx .container {
  min-height: 78px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--fx-text) !important;
  letter-spacing: 0.2px;
  font-size: 1.15rem;
}

.brand-seal {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(198, 167, 75, 0.18), rgba(110, 150, 47, 0.16)),
    #fff;
  border: 1px solid rgba(198, 167, 75, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-green-dark);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(35, 48, 40, 0.06);
}

.brand-copy {
  line-height: 1.05;
}

.brand-copy small {
  display: block;
  color: var(--fx-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.nav-link-fx {
  color: var(--fx-text);
  font-weight: 600;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
}

.nav-link-fx:hover {
  background: var(--fx-green-soft);
  color: var(--fx-green-dark);
}

.btn-fx-primary,
.btn-primary {
  background: linear-gradient(135deg, var(--fx-green), var(--fx-green-dark));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(110, 150, 47, 0.22);
}

.btn-fx-primary:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--fx-green-dark), #415b19);
  color: #fff;
}

.btn-outline-fx {
  border: 1px solid var(--fx-border);
  color: var(--fx-green-dark);
  background: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
}

.btn-outline-fx:hover {
  background: var(--fx-green-soft);
  color: var(--fx-green-dark);
  border-color: #c8d8b2;
}

.page-shell {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-fx {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(35, 48, 40, 0.92) 0%, rgba(58, 78, 54, 0.88) 38%, rgba(110, 150, 47, 0.72) 100%);
  border-radius: 32px;
  min-height: 430px;
  box-shadow: var(--fx-shadow);
}

.hero-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(198,167,75,0.22), transparent 18%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: #fff;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  margin: 1.1rem 0 1rem;
  max-width: 900px;
}

.hero-content p {
  max-width: 760px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
}

.hero-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  min-width: 150px;
}

.hero-stat .label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-stat .value {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-selector-wrap {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.hero-selector-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--fx-border);
  border-radius: 26px;
  box-shadow: var(--fx-shadow);
  padding: 1.5rem;
}

.hero-selector-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fx-text);
  margin-bottom: 0.3rem;
}

.hero-selector-subtitle {
  color: var(--fx-muted);
  margin-bottom: 1rem;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-kicker {
  color: var(--fx-green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
}

.section-desc {
  color: var(--fx-muted);
  margin: 0.55rem 0 0;
  max-width: 680px;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.catalog-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}

.catalog-header p {
  margin: 0.55rem 0 0;
  color: var(--fx-muted);
  max-width: 760px;
}

.catalog-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f5faeb 100%);
  border: 1px solid var(--fx-border);
  border-radius: 26px;
  box-shadow: var(--fx-shadow);
  padding: 1.6rem;
  margin-bottom: 1.8rem;
}

.catalog-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--fx-border);
  color: var(--fx-text);
  font-weight: 700;
  font-size: 0.88rem;
}

.card-item {
  height: 100%;
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--fx-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-item:hover {
  transform: translateY(-6px);
}

.card-item-media {
  position: relative;
}

.card-item img,
.card-item .img-placeholder {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-item .img-placeholder {
  background:
    radial-gradient(circle at top right, rgba(141,172,74,0.18), transparent 20%),
    linear-gradient(135deg, #eff5e4, #fbfcf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-muted);
  font-weight: 800;
}

.media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(35, 48, 40, 0.86);
  color: #fff;
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-item .card-body {
  padding: 1.35rem;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.fx-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.fx-badge.soft {
  background: var(--fx-green-soft);
  color: var(--fx-green-dark);
}

.fx-badge.stock {
  background: #edf8ee;
  color: #2d7f39;
}

.card-item h5 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.card-item .desc {
  color: var(--fx-muted);
  min-height: 50px;
  margin-bottom: 1rem;
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-box .price {
  font-size: 1.62rem;
  font-weight: 900;
  color: var(--fx-green-dark);
  line-height: 1;
}

.price-box .unit {
  color: var(--fx-muted);
  font-size: 0.84rem;
  margin-top: 5px;
}

.code-box {
  text-align: right;
  color: var(--fx-muted);
  font-size: 0.82rem;
}

.code-box strong {
  display: block;
  color: var(--fx-text);
  font-size: 0.95rem;
  margin-top: 2px;
}

.table-shell {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 26px;
  box-shadow: var(--fx-shadow);
  overflow: hidden;
}

.table-topbar {
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, #f7faef 0%, #ffffff 100%);
  border-bottom: 1px solid var(--fx-border);
}

.table thead th {
  background: #f5faeb;
  color: var(--fx-text);
  border-bottom: 1px solid var(--fx-border);
  font-weight: 800;
}

.table td,
.table th {
  vertical-align: middle;
}

.cart-item-name {
  font-weight: 800;
}

.cart-code {
  color: var(--fx-muted);
  font-size: 0.84rem;
}

.summary-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 26px;
  box-shadow: var(--fx-shadow);
  overflow: hidden;
}

.summary-head {
  background: linear-gradient(135deg, var(--fx-dark) 0%, #41513f 100%);
  color: #fff;
  padding: 1.3rem 1.4rem;
}

.summary-head h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.summary-head p {
  margin: 0.45rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.summary-body {
  padding: 1.35rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--fx-border);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row.total strong {
  color: var(--fx-green-dark);
  font-size: 1.2rem;
}

.empty-box,
.notice-box {
  background: #fff;
  border: 1px solid var(--fx-border);
  border-radius: 22px;
  box-shadow: var(--fx-shadow);
  padding: 1.5rem;
}

.success-box {
  background: linear-gradient(135deg, #ffffff 0%, #f5faeb 100%);
  border: 1px solid var(--fx-border);
  border-radius: 30px;
  box-shadow: var(--fx-shadow);
  padding: 3rem 2rem;
  text-align: center;
}

.badge-entregado {
    background: #e3f2fd;
    color: #1976d2 !important; /* 👈 esto es clave */
    border: 1px solid #bbdefb;
}

.success-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--fx-green), var(--fx-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(110, 150, 47, 0.28);
}

.success-token {
  display: inline-block;
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--fx-border);
  color: var(--fx-green-dark);
  border-radius: 18px;
  padding: 1rem 1.4rem;
  font-size: 1.18rem;
  font-weight: 900;
}

.footer-note {
  text-align: center;
  color: var(--fx-muted);
  font-size: 0.9rem;
  margin-top: 3rem;
}

.form-label {
  color: var(--fx-text);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.form-control,
.form-select,
textarea {
  border: 1px solid var(--fx-border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--fx-text);
  background: #fff;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #b8cd92;
  box-shadow: 0 0 0 0.22rem rgba(110, 150, 47, 0.12);
}

/* Visual profesional inspirado en fexpocruz.com.bo */
:root {
  --fx-green: #8cc63f;
  --fx-green-dark: #5a8f20;
  --fx-green-deep: #3f6f16;
  --fx-lime: #9acd32;
  --fx-gray: #7b868c;
  --fx-dark: #24272a;
  --fx-bg: #f7f8f6;
  --fx-border: #d6ded2;
  --fx-shadow: 0 14px 40px rgba(33, 39, 42, .10);
}

body {
  background: #fff;
  color: var(--fx-dark);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.top-strip-fx {
  background: #f7f8f6;
  color: #5f686d;
  border-bottom: 1px solid #edf0ec;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.navbar-fx {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #edf0ec;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  backdrop-filter: blur(10px);
}

.nav-inner-fx {
  min-height: 82px;
}

.brand-fexpocruz {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--fx-dark);
  text-decoration: none;
}

.brand-logo-text {
  font-weight: 900;
  font-size: 1.35rem;
  line-height: .82;
  letter-spacing: -.05em;
  color: #606569;
}

.brand-logo-text strong {
  color: #606569;
}

.brand-x {
  color: #94c83d;
  position: relative;
}

.brand-x::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 4px;
  background: #e3342f;
  transform: rotate(-45deg);
  left: 0;
  top: 13px;
  border-radius: 999px;
}

.brand-divider {
  width: 1px;
  height: 42px;
  background: #dfe5dc;
}

.brand-service-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #3a3f42;
  line-height: 1;
}

.brand-service-name small {
  display: block;
  margin-top: 6px;
  color: #879198;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-menu-fx {
  gap: 4px;
}

.nav-link-fx {
  color: #51595e;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .86rem;
  border-radius: 999px;
  padding: .72rem .95rem;
}

.nav-link-fx:hover {
  color: var(--fx-green-dark);
  background: #f1f8e9;
}

.btn-fx-primary,
.btn-primary {
  background: #92c83e;
  color: #17210f;
  border: 2px solid #92c83e;
  border-radius: 14px;
  padding: .82rem 1.35rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(146,200,62,.25);
}

.btn-fx-primary:hover,
.btn-primary:hover {
  background: #7fb630;
  border-color: #7fb630;
  color: #17210f;
  transform: translateY(-1px);
}

.btn-outline-fx {
  border: 2px solid #77b21f;
  color: #6daf19;
  background: #fff;
  border-radius: 14px;
  font-weight: 900;
}

.btn-outline-fx:hover {
  background: #f3fae9;
  border-color: #77b21f;
  color: #5a8f20;
}

.btn-cart-fx span {
  background: #fff;
  color: #5a8f20;
  border-radius: 999px;
  padding: .1rem .45rem;
  margin-left: .35rem;
}

.page-shell {
  padding-top: 2.4rem;
  padding-bottom: 4rem;
}

.hero-fx {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 48%, rgba(148,200,61,.68) 100%),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,.5), transparent 26%),
    linear-gradient(135deg, #f7f9f3 0%, #e6f3d3 100%);
  border: 1px solid #e6ecde;
  border-radius: 30px;
  min-height: 410px;
  box-shadow: var(--fx-shadow);
}

.hero-fx::before {
  background: linear-gradient(90deg, #92c83e 0 6px, transparent 6px 100%);
  width: 100%;
}

.hero-content {
  color: #24272a;
  padding: 3.2rem;
}

.hero-pill {
  background: #eff8e4;
  color: #5b8f21;
  border: 1px solid #d8eac5;
}

.hero-content h1 {
  color: #24272a;
  font-weight: 900;
  max-width: 880px;
}

.hero-content p {
  color: #4c5459;
  font-size: 1.12rem;
}

.hero-stat {
  background: #fff;
  border: 1px solid #e1ead8;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.hero-stat .label {
  color: #839098;
}

.hero-stat .value {
  color: #2b2f31;
}

.hero-selector-card,
.catalog-banner,
.card-item,
.table-shell,
.summary-card,
.empty-box,
.notice-box,
.success-box,
.payment-box {
  border-radius: 24px;
  border: 1px solid #dfe6db;
  box-shadow: 0 12px 34px rgba(32,38,40,.09);
}

.hero-selector-title,
.catalog-header h2,
.section-title {
  color: #24272a;
  font-weight: 900;
}

.section-kicker {
  color: #75ad22;
  letter-spacing: .12em;
}

.catalog-banner {
  background: linear-gradient(135deg, #fff 0%, #f4faeb 100%);
}

.catalog-header p,
.hero-selector-subtitle,
.section-desc {
  color: #77838a;
}

.meta-chip,
.fx-badge.soft {
  background: #f3fae9;
  border-color: #dcecca;
  color: #5a8f20;
}

.card-item {
  overflow: hidden;
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(32,38,40,.13);
}

.card-item img,
.card-item .img-placeholder {
  height: 250px;
}

.media-badge {
  background: rgba(36,39,42,.86);
}

.price-box .price,
.summary-row.total strong,
.success-token {
  color: #5a8f20;
}

.summary-head {
  background: linear-gradient(135deg, #24272a 0%, #556219 100%);
}

.payment-box {
  border: 1px solid #dfe6db;
}

.payment-box-header {
  background: #92c83e;
  color: #17210f;
}

.footer-fx {
  margin-top: 2rem;
  background: #24272a;
  color: #fff;
  padding: 2.3rem 0 1rem;
}

.footer-main-fx {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
}

.footer-brand span {
  color: #92c83e;
}

.footer-main-fx p {
  max-width: 560px;
  margin: .6rem 0 0;
  color: rgba(255,255,255,.72);
}

.footer-links-fx {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.footer-links-fx a {
  color: rgba(255,255,255,.84);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .55rem .85rem;
}

.footer-links-fx a:hover {
  background: #92c83e;
  color: #17210f;
}

.footer-bottom-fx {
  padding-top: 1rem;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

/* Selector de ubicación sobre plano para Área Externa */
.map-selector-card {
    border: 1px solid rgba(134, 170, 84, 0.35);
    border-radius: 28px;
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(30, 44, 35, 0.08);
}

.map-selector-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.map-selector-head h4 {
    margin: 0 0 6px;
    color: #25332b;
    font-weight: 800;
}

.map-selector-head p {
    margin: 0;
    color: #728078;
}

.btn-map-reset {
    border: 1px solid #83bf26;
    color: #5ea900;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 16px;
    font-weight: 800;
}

.map-selector-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    color: #5d6b62;
    font-size: 0.95rem;
}

.map-status {
    font-weight: 800;
    color: #4c681a;
}

.map-status.is-ok {
    color: #218838;
}

.map-coordinates {
    font-weight: 700;
}

.map-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -100%);
    display: none;
    z-index: 3;
}

.map-marker::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: #e53935;
    border: 4px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: translateX(-50%) rotate(-45deg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.map-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
}

.map-marker.is-visible {
    display: block;
}

/* Modal grande para seleccionar ubicación en plano */
body.modal-plano-open {
    overflow: hidden;
}

.modal-plano-area {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.modal-plano-area.is-open {
    display: block;
}

.modal-plano-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 25, 22, 0.78);
}

.modal-plano-content {
    position: relative;
    z-index: 2;
    width: min(96vw, 1500px);
    height: 94vh;
    margin: 3vh auto;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-plano-header {
    background: linear-gradient(135deg, #24272a 0%, #556219 100%);
    color: #ffffff;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.modal-plano-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
}

.modal-plano-header p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.78);
}

.modal-plano-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}

.modal-plano-close:hover {
    background: rgba(255,255,255,.25);
}

.modal-plano-body {
    flex: 1;
    min-height: 0;
    background: #f5f7f1;
}

.modal-plano-scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 18px;
    text-align: center;
}

.modal-plano-map-wrap {
    position: relative;
    display: inline-block;
    cursor: crosshair;
    background: #ffffff;
    border: 1px solid #d8e3d4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(30, 44, 35, 0.12);
}

.modal-plano-map-wrap img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    user-select: none;
    pointer-events: none;
}

.modal-marker {
    z-index: 10;
}

.modal-plano-footer {
    padding: 14px 18px;
    background: #ffffff;
    border-top: 1px solid #dfe6db;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.modal-plano-footer strong {
    display: block;
    color: #4c681a;
    margin-bottom: 2px;
}

.modal-plano-footer span {
    color: #5d6b62;
    font-weight: 700;
}

/* Plano visible en preparación de entrega */
.delivery-map-card {
    border: 1px solid rgba(134, 170, 84, 0.35);
    border-radius: 28px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(30, 44, 35, 0.08);
}

.delivery-map-info {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: #25332b;
}

.delivery-map-info span {
    color: #647268;
    font-weight: 700;
}

.delivery-map-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #d8e3d4;
}

.delivery-map-wrap img {
    width: 100%;
    display: block;
}

@media (max-width: 991px) {
  .hero-content {
    padding: 2rem;
  }

  .hero-selector-wrap {
    margin-top: -24px;
  }

  .summary-card {
    position: static;
  }

  .section-title-wrap,
  .catalog-header {
    flex-direction: column;
    align-items: start;
  }

  .brand-divider,
  .brand-service-name {
    display: none;
  }

  .nav-menu-fx {
    padding: 1rem 0;
    align-items: stretch !important;
  }

  .hero-content {
    padding: 2.2rem;
  }

  .footer-main-fx {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
    .map-selector-head,
    .map-selector-footer {
        flex-direction: column;
    }

    .modal-plano-content {
        width: 96vw;
        height: 94vh;
        margin: 3vh auto;
        border-radius: 18px;
    }

    .modal-plano-header,
    .modal-plano-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 575px) {
  .top-strip-fx {
    display: none;
  }

  .brand-logo-text {
    font-size: 1.15rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    display: none;
  }
}

/* HEADER OFICIAL FEXPOCRUZ PREMIUM */

.official-header-fx {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    transition: all .28s ease;
}

.official-topline {
    height: 4px;
    background: linear-gradient(90deg, #6fbf2c, #9bdc4f);
}
.official-nav-wrap {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #edf0ec;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    transition: all .28s ease;
}

.official-nav-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.official-brand img {
    height: 62px;
    width: auto;
    display: block;
    transition: all .28s ease;
}

.official-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.official-menu a {
    color: #51595e;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .22s ease;
}

.official-menu a:hover {
    color: #7ac143;
}

.official-cart {
    background: #94c83d;
    color: #17210f !important;
    border-radius: 18px;
    padding: 18px 28px;
    box-shadow: 0 14px 34px rgba(148,200,61,.28);
}

.official-cart span {
    background: #ffffff;
    color: #5a8f20;
    border-radius: 999px;
    padding: 4px 10px;
    margin-left: 8px;
}

.official-header-fx.is-sticky-active .official-nav-wrap {
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

.official-header-fx.is-sticky-active .official-nav-inner {
    min-height: 72px;
}

.official-header-fx.is-sticky-active .official-brand img {
    height: 48px;
}

.official-header-fx.is-sticky-active .official-cart {
    padding: 14px 24px;
}

.official-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.official-menu-toggle span {
    display: block;
    height: 3px;
    width: 28px;
    background: #24272a;
    border-radius: 999px;
    transition: all .25s ease;
}

.official-menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.official-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.official-menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .official-nav-inner {
        min-height: 78px;
    }

    .official-brand img {
        height: 50px;
    }

    .official-menu-toggle {
        display: flex;
    }

    .official-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #edf0ec;
        box-shadow: 0 14px 34px rgba(0,0,0,.12);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        display: none;
    }

    .official-menu.is-open {
        display: flex;
    }

    .official-cart {
        text-align: center;
    }
}

/* HERO LIMPIO PREMIUM */

.hero-clean {
    padding: 60px 0 20px;
}

.hero-clean-box {
    background: linear-gradient(135deg, #f7f9f3 0%, #e6f3d3 100%);
    border-radius: 28px;
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.hero-clean-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #8cc63f;
}

.hero-clean-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: #eff8e4;
    color: #5a8f20;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.hero-clean h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #24272a;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-clean p {
    font-size: 1.1rem;
    color: #5f686d;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.catalog-search-box {
    background: #ffffff;
    border: 1px solid #dfe6db;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 12px 34px rgba(32,38,40,.07);
}

.catalog-search-box .form-control {
    min-height: 58px;
    font-size: 1rem;
}

.catalog-search-counter {
    background: #f3fae9;
    border: 1px solid #dcecca;
    color: #5a8f20;
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 900;
    text-align: center;
}

.catalog-search-counter span {
    font-size: 1.4rem;
    margin-right: 4px;
}

@media (min-width: 992px) {
    .catalog-item-col .card-item img,
    .catalog-item-col .card-item .img-placeholder {
        height: 210px;
    }

    .catalog-item-col .card-body {
        padding: 1.1rem;
    }

    .catalog-item-col .price-box .price {
        font-size: 1.35rem;
    }

    .catalog-item-col .card-item h5 {
        font-size: 1rem;
    }
}

.fx-badge.stock {
    background: #e3f2fd !important;
    color: #1976d2 !important;
    border: 1px solid #bbdefb !important;
}

.official-menu-admin {
    gap: 18px;
}

.official-menu-admin a {
    color: #51595e;
    font-size: 1.05rem;        /* ⬅ más grande */
    font-weight: 900;          /* ⬅ más fuerte */
    letter-spacing: .14em;
    text-transform: uppercase;
}

.official-menu-admin .official-cart {
    padding: 14px 22px;
}

@media (max-width: 1200px) {
    .official-menu-admin {
        gap: 10px;
    }

    .official-menu-admin a {
        font-size: 0.72rem;
    }
}


.official-menu-admin {
    gap: 34px;
    align-items: center;
}

.official-menu-admin a {
    color: #51595e;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}

.official-menu-admin a:hover {
    color: #7ac143;
}

.official-menu-admin .official-cart {
    background: #94c83d;
    color: #17210f !important;
    border-radius: 18px;
    padding: 18px 34px;
    box-shadow: 0 14px 34px rgba(148,200,61,.28);
}

.official-menu-admin .official-cart:hover {
    background: #8cc63f;
    color: #17210f !important;
}

/* MENU ADMINISTRADOR PREMIUM CON INDICADORES */
.official-menu-admin {
    gap: 34px;
    align-items: center;
}

.official-menu-admin a {
    color: #51595e;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.official-menu-admin a:hover {
    color: #7ac143;
}

.official-menu-admin .official-cart {
    background: #94c83d;
    color: #17210f !important;
    border-radius: 18px;
    padding: 16px 30px;
    box-shadow: 0 14px 34px rgba(148,200,61,.28);
}

.official-menu-admin .official-cart:hover {
    background: #8cc63f;
    color: #17210f !important;
}

.admin-menu-indicator {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.admin-menu-indicator.indicator-alert {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

.admin-menu-indicator.indicator-info {
    background: #fff8e1;
    color: #f57c00;
    border-color: #ffecb3;
}

@media (max-width: 1400px) {
    .official-menu-admin {
        gap: 18px;
    }

    .official-menu-admin a {
        font-size: .88rem;
        letter-spacing: .08em;
    }

    .official-menu-admin .official-cart {
        padding: 14px 22px;
    }
}


/* ADMIN HEADER CENTRALIZADO - ajuste uniforme para todos los modulos */
.official-header-fx .official-nav-inner { width: 100%; max-width: none; min-height: 88px; padding-left: 34px; padding-right: 34px; gap: 28px; }
.official-header-fx.is-sticky-active .official-nav-inner { min-height: 82px; }
.official-brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.official-brand img, .official-header-fx.is-sticky-active .official-brand img { height: 72px; width: auto; max-width: 170px; object-fit: contain; }
.official-menu-admin { margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.55vw, 28px); flex-wrap: nowrap; min-width: 0; }
.official-menu-admin a { color: #51595e; font-size: clamp(.78rem, .78vw, .98rem); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; line-height: 1; }
.official-menu-admin a:hover { color: #7ac143; transform: translateY(-1px); }
.official-menu-admin .official-cart { background: #94c83d; color: #17210f !important; border-radius: 18px; padding: 18px 28px; box-shadow: 0 14px 34px rgba(148,200,61,.28); letter-spacing: .16em; }
.official-header-fx.is-sticky-active .official-menu-admin .official-cart { padding: 18px 28px; }
.admin-menu-indicator { min-width: 23px; height: 23px; padding: 0 7px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: #e3f2fd; color: #1976d2; border: 1px solid #bbdefb; font-size: .70rem; font-weight: 900; letter-spacing: 0; line-height: 1; }
.admin-menu-indicator.indicator-alert { background: #ffebee; color: #c62828; border-color: #ffcdd2; }
.admin-menu-indicator.indicator-info { background: #fff8e1; color: #f57c00; border-color: #ffecb3; }
@media (max-width: 1200px) { .official-header-fx .official-nav-inner { padding-left: 18px; padding-right: 18px; gap: 16px; } .official-brand img, .official-header-fx.is-sticky-active .official-brand img { height: 58px; max-width: 135px; } .official-menu-admin { gap: 12px; } .official-menu-admin a { font-size: .72rem; letter-spacing: .08em; } .official-menu-admin .official-cart, .official-header-fx.is-sticky-active .official-menu-admin .official-cart { padding: 15px 22px; } }
@media (max-width: 991px) { .official-menu-toggle { display: flex; margin-left: auto; } .official-menu-admin { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #ffffff; border-bottom: 1px solid #edf0ec; box-shadow: 0 14px 34px rgba(0,0,0,.12); padding: 18px; flex-direction: column; align-items: stretch; gap: 14px; display: none; } .official-menu-admin.is-open { display: flex; } .official-menu-admin a { justify-content: space-between; font-size: .92rem; letter-spacing: .08em; padding: 12px 10px; } .official-menu-admin .official-cart { justify-content: center; text-align: center; } }

/* Fase PRO - indicadores vivos y acciones rapidas admin */
.admin-menu-indicator.is-pulse {
    animation: adminIndicatorPulse .65s ease;
}

@keyframes adminIndicatorPulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.admin-inline-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-inline-actions .btn {
    width: 100%;
    border-radius: 12px;
    padding: 9px 12px;
}

@media (max-width: 768px) {
    .admin-inline-actions {
        grid-template-columns: 1fr;
    }
}


html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.page-shell {
    flex: 1;
}
.footer {
    margin-top: auto;
}
.footer-fx {
    background: #1f2326; /* MISMO TONO OSCURO */
    color: #cfd3d6;
    padding: 50px 0 20px;
}

.footer-fx h5,
.footer-fx h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: #8BC34A;
}

.footer-logo {
    width: 140px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #2a2f33;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #8BC34A;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #9aa0a6;
}

.admin-theme-toggle {
    border: 1px solid rgba(139, 195, 74, .35);
    background: #f5ffe9;
    color: #1f2a20;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.admin-theme-toggle:hover {
    background: #8bc34a;
}

/* MODO OSCURO ADMIN */
body.admin-dark {
    background: #111418;
    color: #e8edf2;
}

body.admin-dark .official-header-fx,
body.admin-dark .admin-header,
body.admin-dark header {
    background: #151a20;
    border-bottom-color: #26313a;
}

body.admin-dark .official-menu a,
body.admin-dark .admin-menu a {
    color: #dfe6ee;
}

body.admin-dark .catalog-banner,
body.admin-dark .summary-card,
body.admin-dark .table-shell,
body.admin-dark .card,
body.admin-dark .modal-content {
    background: #181f26 !important;
    color: #e8edf2;
    border-color: #2d3a43;
}

body.admin-dark .summary-head,
body.admin-dark .table-topbar {
    background: linear-gradient(135deg, #111820, #263b13) !important;
    color: #fff;
}

body.admin-dark .form-control,
body.admin-dark .form-select,
body.admin-dark textarea {
    background: #10151a;
    color: #f1f5f9;
    border-color: #33414d;
}

body.admin-dark .form-control::placeholder,
body.admin-dark textarea::placeholder {
    color: #98a2ad;
}

body.admin-dark .table {
    color: #e8edf2;
}

body.admin-dark .table thead th {
    background: #202a20;
    color: #f1f5f9;
}

body.admin-dark .table td,
body.admin-dark .table th {
    border-color: #2f3a45;
}

body.admin-dark .btn-outline-fx {
    background: transparent;
    color: #9be15d;
    border-color: #9be15d;
}

body.admin-dark .admin-theme-toggle {
    background: #202a20;
    color: #ffffff;
    border-color: #8bc34a;
}
/* DARK MODE ADMIN COMPLETO */
body.admin-dark {
    background: #0f1419 !important;
    color: #e9eef3 !important;
}

body.admin-dark .page-shell,
body.admin-dark .container,
body.admin-dark main {
    background: transparent !important;
}

/* Header */
body.admin-dark .official-header-fx,
body.admin-dark .official-nav-wrap,
body.admin-dark .admin-header {
    background: #151a20 !important;
    border-bottom: 1px solid #26313a !important;
}

body.admin-dark .official-menu a,
body.admin-dark .admin-menu a {
    color: #dce6ef !important;
}

/* Tarjetas / bloques */
body.admin-dark .catalog-banner,
body.admin-dark .summary-card,
body.admin-dark .table-shell,
body.admin-dark .filter-card,
body.admin-dark .card,
body.admin-dark .modal-content {
    background: #172029 !important;
    color: #e9eef3 !important;
    border-color: #2d3a45 !important;
}

/* Cabeceras internas */
body.admin-dark .summary-head,
body.admin-dark .table-topbar,
body.admin-dark .filter-head {
    background: linear-gradient(135deg, #141b20, #213b13) !important;
    color: #ffffff !important;
}

/* Textos */
body.admin-dark h1,
body.admin-dark h2,
body.admin-dark h3,
body.admin-dark h4,
body.admin-dark h5,
body.admin-dark h6,
body.admin-dark p,
body.admin-dark label,
body.admin-dark strong,
body.admin-dark .form-label {
    color: #e9eef3 !important;
}

body.admin-dark .section-kicker {
    color: #8bc34a !important;
}

/* Inputs */
body.admin-dark .form-control,
body.admin-dark .form-select,
body.admin-dark textarea,
body.admin-dark input,
body.admin-dark select {
    background: #0f1419 !important;
    color: #ffffff !important;
    border-color: #34424e !important;
}

body.admin-dark .form-control::placeholder,
body.admin-dark textarea::placeholder {
    color: #9aa6b2 !important;
}

/* TABLAS - esto es lo que te falta */
body.admin-dark table,
body.admin-dark .table,
body.admin-dark .table-responsive {
    background: #172029 !important;
    color: #e9eef3 !important;
}

body.admin-dark .table thead,
body.admin-dark .table thead tr,
body.admin-dark .table thead th {
    background: #20301f !important;
    color: #ffffff !important;
    border-color: #34424e !important;
}

body.admin-dark .table tbody,
body.admin-dark .table tbody tr,
body.admin-dark .table tbody td {
    background: #172029 !important;
    color: #e9eef3 !important;
    border-color: #34424e !important;
}

body.admin-dark .table tbody tr:hover td {
    background: #1d2a33 !important;
}

/* Botones outline */
body.admin-dark .btn-outline-fx {
    background: transparent !important;
    color: #9be15d !important;
    border-color: #9be15d !important;
}

/* Chips */
body.admin-dark .meta-chip {
    background: #20301f !important;
    color: #b7f27a !important;
    border-color: #395b22 !important;
}

/* Alertas */
body.admin-dark .alert-success {
    background: #17351f !important;
    color: #b7f7c0 !important;
    border-color: #2f6b3f !important;
}

body.admin-dark .alert-danger {
    background: #3a1518 !important;
    color: #ffc7cc !important;
    border-color: #8a2d35 !important;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #2b2f33;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover base */
.social-icons a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* FACEBOOK */
.social-icons a:nth-child(1):hover {
    background: #1877f2;
    box-shadow: 0 0 15px #1877f2;
}

/* INSTAGRAM */
.social-icons a:nth-child(2):hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    box-shadow: 0 0 15px #dd2a7b;
}

/* X (Twitter) */
.social-icons a:nth-child(3):hover {
    background: #000;
    box-shadow: 0 0 15px #000;
}

/* LINKEDIN */
.social-icons a:nth-child(4):hover {
    background: #0a66c2;
    box-shadow: 0 0 15px #0a66c2;
}

/* TIKTOK */
.social-icons a:nth-child(5):hover {
    background: #010101;
    box-shadow: 0 0 15px #00f2ea;
}

/* YOUTUBE */
.social-icons a:nth-child(6):hover {
    background: #ff0000;
    box-shadow: 0 0 15px #ff0000;
}

/* Efecto glow interno */
.social-icons a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.social-icons a:hover::after {
    left: 100%;
}
.social-icons a i,
.social-icons a img {
    color: #fff !important;
    filter: brightness(0) invert(1);
}
.social-icons a:hover i {
    color: #fff !important;
}
.social-icons a img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo {
    max-width: 180px;
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

/* HOVER: activa animación */
.footer-logo:hover {
    transform: scale(1.05);
    animation: glowBreathing 2.5s ease-in-out infinite;
}

/* ANIMACIÓN RESPIRACIÓN */
@keyframes glowBreathing {
    0% {
        filter: brightness(1)
                drop-shadow(0 0 4px rgba(255,255,255,0.3))
                drop-shadow(0 0 8px rgba(255,255,255,0.2));
    }

    50% {
        filter: brightness(1.1)
                drop-shadow(0 0 10px rgba(255,255,255,0.6))
                drop-shadow(0 0 20px rgba(255,255,255,0.4));
    }

    100% {
        filter: brightness(1)
                drop-shadow(0 0 4px rgba(255,255,255,0.3))
                drop-shadow(0 0 8px rgba(255,255,255,0.2));
    }
}
.section-title {
    font-weight: 600;
    font-size: 15px;
    margin: 10px 0 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #2c3e50;
}

.checkout-section-card {
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
}

.checkout-section-entrega {
    background: #f1f8f4;
    border-left: 5px solid #198754;
}

.checkout-section-pago {
    background: #fff8e6;
    border-left: 5px solid #ffc107;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checkout-section-card .form-control,
.checkout-section-card .form-select {
    background-color: #ffffff;
}
/* 🔥 BOTÓN CARRITO FLOTANTE */
.official-cart {
    position: fixed;
    top: 90px; /* debajo del header */
    right: 25px;
    z-index: 9999;

    background: #93d23a;
    color: #102018 !important;

    padding: 18px 34px;
    border-radius: 28px;

    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    box-shadow: 0 12px 30px rgba(147, 210, 58, 0.35);
    transition: all 0.3s ease;
}

/* Contador */
.official-cart #cart-count {
    background: #ffffff;
    color: #4b8f00;
    margin-left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
}

/* Hover */
.official-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(147, 210, 58, 0.45);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .official-cart {
        top: auto;
        bottom: 20px;
        right: 20px;
        padding: 14px 22px;
        font-size: 14px;
        border-radius: 24px;
    }
}

.official-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #d9e8cf;
    background: #ffffff;
    color: #315c14 !important;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.official-lang-btn:hover {
    background: #f4faef;
}
.official-cart {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;

    background: #8cc63f !important;
    color: #111 !important;

    padding: 16px 34px !important;
    border-radius: 999px !important;

    text-decoration: none !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;

    box-shadow: 0 18px 35px rgba(140, 198, 63, 0.35) !important;
}

.cart-icon-amazon {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 34px !important;
}

.cart-icon-amazon i {
    font-size: 34px !important;
    color: #111 !important;
    line-height: 1 !important;
}

.official-cart #cart-count.cart-count-amazon {
    position: absolute !important;
    top: -13px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    background: transparent !important;
    color: #ff9900 !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;

    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

.cart-text-amazon {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
}
.official-user-dropdown{
    position:relative;
}

.official-user-trigger{
    border:none;
    background:#dfe9d0;
    border-radius:999px;
    padding:12px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
}

.official-user-menu{
    position:absolute;
    right:0;
    top:100%;
    margin-top:12px;
    background:#fff;
    border-radius:18px;
    min-width:240px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    padding:12px;
    display:none;
    z-index:9999;
}

.official-user-menu.is-open{
    display:flex;
    flex-direction:column;
}

.official-user-menu a{
    padding:12px 14px;
    border-radius:12px;
    text-decoration:none;
    color:#2c2c2c;
    font-weight:700;
}

.official-user-menu a:hover{
    background:#f4f7ef;
}

.btn-fx-warning {
    border: 2px solid #f5b301;
    background: #fff;
    color: #c98a00;
    border-radius: 18px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 15px;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-fx-warning:hover {
    background: #f5b301;
    color: #fff;
}