:root {
  --blue-deep: #001c44;
  --blue: #00255c;
  --blue-light: #003785;
  --orange: #f28c00;
  --orange-dark: #d97706;
  --green: #25d366;
  --slate-950: #0f172a;
  --slate-900: #172033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #fff;
  --display: "Outfit", sans-serif;
  --sans: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --shadow: 0 10px 28px rgba(15, 23, 42, .1);
  --shadow-xl: 0 24px 60px rgba(0, 28, 68, .22);
  --radius: 16px
}

[hidden] {
  display: none !important
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--slate-800);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.locked {
  overflow: hidden
}

button,
input,
textarea {
  font: inherit
}

button,
a {
  touch-action: manipulation
}

button {
  border: 0;
  cursor: pointer
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 2
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  color: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%)
}

.skip-link:focus {
  transform: none
}

*:focus-visible {
  outline: 3px solid rgba(242, 140, 0, .5);
  outline-offset: 2px
}

::selection {
  background: rgba(242, 140, 0, .3);
  color: var(--blue-deep)
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-track {
  background: var(--slate-100)
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 8px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange)
}

.announcement {
  min-height: 33px;
  padding: 7px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: var(--blue-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em
}

.announcement svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  animation: pulse 2s infinite
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 37, 92, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 140, 0, .2);
  box-shadow: 0 4px 10px rgba(15, 23, 42, .15)
}

.header-main {
  min-height: 75px;
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none
}

.logo-mark {
  display: block;
  width: 48px;
  height: 48px;
  transition: .3s
}

.logo:hover .logo-mark {
  transform: scale(1.05)
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, .18))
}

.logo-copy {
  display: flex;
  flex-direction: column;
  user-select: none
}

.logo-copy small {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .16em;
  line-height: 1
}

.logo-copy strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -.02em;
  line-height: 1;
  margin-top: 3px
}

.search {
  position: relative
}

.search>svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-300);
  width: 19px;
  height: 19px;
  pointer-events: none
}

.search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 28, 68, .55);
  color: #fff;
  border-radius: 16px;
  padding: 11px 40px 11px 43px;
  outline: none;
  font-size: 14px
}

.search input::placeholder {
  color: var(--slate-300)
}

.search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242, 140, 0, .16)
}

.search input::-webkit-search-cancel-button {
  display: none
}

.clear-search {
  display: none;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  background: transparent;
  color: var(--slate-300)
}

.clear-search.visible {
  display: grid
}

.clear-search svg {
  width: 15px;
  height: 15px
}

.search-desktop {
  display: flex;
  flex: 1;
  max-width: 448px
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.cart-trigger {
  position: relative;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--blue-deep);
  color: var(--slate-200);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: .2s
}

.cart-trigger:hover {
  background: rgba(0, 28, 68, .8);
  color: #fff
}

.cart-trigger>svg {
  width: 20px;
  height: 20px
}

.cart-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1
}

.cart-copy small {
  font: 9px var(--mono);
  color: var(--slate-300)
}

.cart-copy strong {
  font-size: 12px;
  color: #fff;
  margin-top: 4px
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
  animation: bounce 1.2s infinite
}

.location-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--slate-100, #f8fafc);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--display);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.location-header:hover {
  background: rgba(242, 140, 0, 0.18);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 140, 0, 0.25);
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.location-header:hover .location-icon {
  transform: scale(1.15);
}

.location-icon svg {
  width: 18px;
  height: 18px;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
  transition: .2s
}

.whatsapp-header:hover,
.whatsapp-button:hover {
  background: #1ebd59
}

.whatsapp-icon {
  font-size: 18px
}

.mobile-search-wrap {
  display: none;
  padding: 4px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 112px;
  background: var(--blue-deep);
  color: #fff
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none
}

.hero-orb-one {
  width: 384px;
  height: 384px;
  right: 0;
  top: 50%;
  background: rgba(242, 140, 0, .08);
  transform: translateY(-50%)
}

.hero-orb-two {
  width: 320px;
  height: 320px;
  left: 40px;
  bottom: -80px;
  background: rgba(0, 55, 133, .3)
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.eyebrow-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.5s infinite
}

.hero h1 {
  margin: 0;
  font: 800 clamp(42px, 5vw, 64px)/1.08 var(--display);
  letter-spacing: -.035em
}

.hero h1 em {
  font-style: normal;
  color: var(--orange)
}

.hero-copy>p {
  max-width: 590px;
  margin: 0;
  color: var(--slate-300);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65
}

.hero-copy>p strong {
  color: #fff;
  font-weight: 600
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s
}

.button:hover {
  transform: scale(1.02)
}

.button-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .15)
}

.button-orange:hover {
  background: var(--orange-dark)
}

.button-glass {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff
}

.button-glass:hover {
  background: rgba(255, 255, 255, .2)
}

.button-glass svg {
  color: var(--orange);
  width: 16px
}

.button-blue {
  background: var(--blue);
  color: #fff
}

.hero-product {
  position: relative;
  width: min(100%, 384px);
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
  animation: reveal .6s ease both
}

.hero-product::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -10px;
  top: -10px;
  background: rgba(242, 140, 0, .16);
  filter: blur(25px);
  border-radius: 50%
}

.hero-product-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, .1)
}

.hero-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: .7s
}

.hero-product-image:hover img {
  transform: scale(1.05)
}

.hero-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
  gap: 14px
}

.hero-product-meta small {
  font: 700 10px var(--mono);
  color: var(--orange);
  letter-spacing: .1em
}

.hero-product-meta h2 {
  font: 700 16px var(--display);
  margin: 3px 0
}

.hero-product-meta p {
  font-size: 12px;
  color: var(--slate-300);
  margin: 0
}

.hero-price {
  text-align: right
}

.hero-price del {
  display: block;
  color: var(--slate-400);
  font: 12px var(--mono)
}

.hero-price strong {
  display: block;
  color: var(--orange);
  font: 700 19px var(--display)
}

.hero-details {
  width: 100%;
  margin-top: 16px;
  padding: 11px;
  background: #fff;
  color: var(--blue-deep);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  transition: .2s
}

.hero-details:hover {
  background: var(--slate-100)
}

.benefits {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--slate-100)
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.benefits article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  transition: .2s
}

.benefits article:hover {
  background: var(--slate-50)
}

.benefit-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center
}

.benefit-icon svg {
  width: 24px;
  height: 24px
}

.benefit-icon.orange {
  background: rgba(242, 140, 0, .1);
  color: var(--orange)
}

.benefit-icon.blue {
  background: rgba(0, 37, 92, .1);
  color: var(--blue)
}

.benefits h3 {
  margin: 2px 0 6px;
  font: 700 14px var(--display)
}

.benefits p {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.4
}

.catalog {
  padding-top: 64px;
  padding-bottom: 64px
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px
}

.section-heading>span,
.section-kicker {
  color: var(--orange);
  font: 700 12px var(--mono);
  letter-spacing: .12em
}

.section-heading h2,
.location h2 {
  margin: 8px 0 0;
  color: var(--slate-950);
  font: 800 clamp(30px, 4vw, 40px)/1.15 var(--display);
  letter-spacing: -.025em
}

.section-heading i {
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 10px;
  background: var(--orange);
  margin: 16px auto
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.6
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--slate-100)
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 1px
}

.category-tab {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: .2s
}

.category-tab:hover {
  border-color: var(--slate-300);
  color: var(--slate-800)
}

.category-tab.active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 28, 68, .2)
}

.catalog-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 500
}

.catalog-stats p {
  margin: 0
}

.catalog-stats strong {
  color: var(--slate-800)
}

.compare-status {
  display: flex;
  align-items: center;
  gap: 8px
}

.compare-status>span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ping 1.5s infinite
}

.compare-status strong {
  color: var(--orange)
}

.compare-status button {
  background: none;
  padding: 0 0 0 8px;
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
  font-size: 12px
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  transition: .3s;
  animation: cardIn .35s both
}

.product-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, .13);
  border-color: rgba(0, 37, 92, .2);
  transform: translateY(-2px)
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12)
}

.badge.discount {
  background: var(--orange)
}

.badge.stock {
  background: #ef4444;
  animation: pulse 1.6s infinite
}

.compare-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 240, .7);
  background: rgba(255, 255, 255, .88);
  color: var(--slate-600);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  transition: .2s
}

.compare-toggle svg {
  width: 16px
}

.compare-toggle.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.compare-toggle.active svg {
  transform: rotate(45deg)
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--slate-50);
  cursor: pointer
}

.product-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.product-card:hover .product-image>img {
  transform: scale(1.05)
}

.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 28, 68, .42);
  opacity: 0;
  transition: .3s
}

.product-card:hover .image-overlay {
  opacity: 1
}

.image-overlay button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: .2s
}

.image-overlay button:hover {
  transform: scale(1.05)
}

.product-info {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--slate-500);
  font: 11px var(--mono);
  gap: 6px
}

.category-label {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em
}

.product-title {
  height: 48px;
  display: flex;
  align-items: center;
  margin: 5px 0 0;
  color: var(--slate-800);
  font: 600 16px/1.3 var(--display);
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.product-title:hover {
  color: var(--blue)
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

.stars .empty {
  color: var(--slate-200)
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px
}

.review-count {
  color: var(--slate-400);
  font-size: 11px
}

.spec-preview {
  margin-top: 14px;
  padding: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 9px
}

.spec-preview p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 6px;
  color: var(--slate-600);
  font-size: 10px
}

.spec-preview p:last-child {
  margin: 0
}

.spec-preview strong {
  font-weight: 600
}

.spec-preview span {
  max-width: 140px;
  color: var(--slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.product-buy {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px
}

.price {
  display: flex;
  flex-direction: column
}

.price del {
  font: 11px var(--mono);
  color: var(--slate-400)
}

.price strong {
  font: 700 21px var(--display);
  color: var(--blue-deep)
}

.add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  transition: .2s
}

.add-cart:hover {
  background: var(--orange-dark);
  transform: scale(1.02)
}

.add-cart.in-cart {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0
}

.empty-results {
  text-align: center;
  padding: 80px 20px
}

.empty-results>span {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--slate-100);
  color: var(--slate-400)
}

.empty-results h3 {
  font: 600 18px var(--display);
  margin: 0
}

.empty-results p {
  color: var(--slate-400);
  font-size: 14px;
  max-width: 420px;
  margin: 7px auto 24px
}

.advice-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: #fff
}

.advice-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -60px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(242, 140, 0, .16);
  filter: blur(50px)
}

.advice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center
}

.advice-grid>div>span {
  color: var(--orange);
  font: 700 12px var(--mono);
  letter-spacing: .1em
}

.advice-grid h2 {
  font: 800 clamp(26px, 4vw, 38px)/1.2 var(--display);
  margin: 12px 0
}

.advice-grid p {
  max-width: 760px;
  color: var(--slate-300);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0
}

.whatsapp-button {
  justify-self: end;
  background: var(--green);
  color: #fff;
  padding: 16px 28px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18)
}

.whatsapp-button span {
  font-size: 24px
}

.testimonials {
  padding: 64px 0;
  background: rgba(241, 245, 249, .55)
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .5);
  border-radius: 16px;
  text-align: left
}

.quote {
  position: absolute;
  right: 24px;
  top: 8px;
  color: rgba(242, 140, 0, .2);
  font: 52px serif
}

.testimonial-card .stars {
  margin-bottom: 16px
}

.testimonial-card>div>p {
  color: var(--slate-600);
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  margin: 0
}

.testimonial-author {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.testimonial-author strong {
  display: block;
  font: 700 14px var(--display)
}

.testimonial-author small {
  font-size: 10px;
  color: var(--slate-400)
}

.verified {
  padding: 3px 8px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #059669;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase
}

.location {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid var(--slate-100)
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.location-copy>p {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.7
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px
}

.contact-list article {
  display: flex;
  align-items: center;
  gap: 14px
}

.contact-list article>span {
  flex: none;
  width: 41px;
  height: 41px;
  border-radius: 12px;
  background: rgba(0, 37, 92, .06);
  color: var(--blue);
  display: grid;
  place-items: center
}

.contact-list svg {
  width: 20px
}

.contact-list strong {
  display: block;
  font-size: 13px
}

.contact-list p {
  margin: 3px 0 0;
  color: var(--slate-600);
  font-size: 12px
}

.showroom {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  border-radius: 24px;
  background: var(--slate-100);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  contain: paint
}

.showroom>img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.showroom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 68, .3)
}

.showroom-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px)
}

.showroom-card strong {
  font: 700 14px var(--display)
}

.showroom-card p {
  margin: 3px 0 0;
  color: var(--slate-500);
  font-size: 11px
}

.showroom-card a {
  flex: none;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700
}

.footer {
  padding-top: 64px;
  background: var(--blue-deep);
  color: var(--slate-300);
  border-top: 1px solid rgba(242, 140, 0, .2)
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand>p {
  max-width: 520px;
  color: var(--slate-400);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font: 700 13px var(--display);
  text-transform: uppercase;
  letter-spacing: .08em
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
  color: #fff
}

.socials a:hover {
  background: rgba(255, 255, 255, .1)
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-links a,
.footer-links button {
  padding: 0;
  background: none;
  color: var(--slate-400);
  font-size: 12px;
  text-align: left
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--orange)
}

.footer-bottom {
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--slate-400);
  font-size: 11px
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(3px);
  animation: fadeIn .2s
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 51;
  width: min(100%, 448px);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow-xl);
  transform: translateX(102%);
  transition: transform .3s cubic-bezier(.22, .8, .3, 1)
}

.cart-drawer.open {
  transform: none
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--blue-deep);
  color: #fff;
  border-bottom: 1px solid var(--slate-100)
}

.drawer-title,
.modal-title {
  display: flex;
  align-items: center;
  gap: 9px
}

.drawer-title>svg,
.modal-title>svg {
  width: 20px;
  color: var(--orange)
}

.drawer-title h2,
.modal-title h2 {
  font: 700 18px var(--display);
  margin: 0
}

.count-pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700
}

.icon-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: transparent;
  color: var(--slate-300)
}

.icon-close:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px
}

.empty-state {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px
}

.empty-state>span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  display: grid;
  place-items: center;
  color: var(--slate-300)
}

.empty-state>span svg {
  width: 32px;
  height: 32px
}

.empty-state h3 {
  font: 600 18px var(--display);
  margin: 16px 0 4px
}

.empty-state p {
  max-width: 330px;
  margin: 0;
  color: var(--slate-400);
  font-size: 13px;
  line-height: 1.55
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cart-item {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 12px
}

.cart-thumb {
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: #fff
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-details {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column
}

.cart-details h3 {
  padding-right: 25px;
  margin: 2px 0 0;
  font: 600 13px var(--display);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cart-details>small {
  margin-top: 3px;
  color: var(--slate-400);
  font: 9px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em
}

.remove-item {
  position: absolute;
  right: 9px;
  top: 9px;
  padding: 5px;
  background: transparent;
  color: var(--slate-400)
}

.remove-item:hover {
  color: #ef4444
}

.cart-item-bottom {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between
}

.quantity {
  display: flex;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  overflow: hidden;
  background: #fff
}

.quantity button {
  padding: 6px;
  background: #fff;
  color: var(--slate-500)
}

.quantity button:hover {
  background: var(--slate-100)
}

.quantity button:disabled {
  opacity: .35;
  cursor: not-allowed
}

.quantity span {
  min-width: 28px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600
}

.item-price {
  text-align: right
}

.item-price strong {
  display: block;
  font: 700 14px var(--display);
  color: var(--blue-deep)
}

.item-price small {
  font-size: 9px;
  color: var(--slate-400)
}

.drawer-footer {
  padding: 20px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100)
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--slate-600);
  font-size: 13px
}

.summary-row .free {
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--slate-200);
  font-weight: 700
}

.summary-total strong {
  font: 700 20px var(--display);
  color: var(--blue-deep)
}

.checkout-trigger {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px;
  margin-top: 16px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.drawer-footer>p {
  text-align: center;
  color: var(--slate-400);
  font-size: 10px;
  margin: 8px 0 0
}

.modal {
  position: fixed;
  z-index: 52;
  background: #fff;
  box-shadow: var(--shadow-xl);
  animation: modalIn .25s ease both
}

.modal[hidden] {
  display: none
}

.compare-modal {
  inset: 80px 48px 48px;
  max-width: 1024px;
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.compare-body {
  flex: 1;
  overflow: auto;
  padding: 24px
}

.compare-table {
  min-width: 700px
}

.compare-products,
.compare-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.compare-products {
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-100)
}

.compare-intro h3 {
  font: 700 16px var(--display);
  margin: 0
}

.compare-intro p {
  color: var(--slate-400);
  font-size: 11px
}

.compare-product {
  position: relative;
  min-height: 180px;
  padding: 16px;
  text-align: center;
  border-radius: 16px;
  background: rgba(248, 250, 252, .7);
  border: 1px solid rgba(226, 232, 240, .65)
}

.compare-product.empty {
  border: 2px dashed var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  font-size: 11px;
  font-weight: 500
}

.compare-product.empty svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: var(--slate-300)
}

.compare-image {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--slate-200)
}

.compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.compare-product>small {
  display: block;
  color: var(--blue);
  font: 600 9px var(--mono);
  text-transform: uppercase
}

.compare-product h4 {
  min-height: 32px;
  margin: 4px 0 8px;
  font: 700 11px/1.35 var(--display);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.compare-price strong {
  font: 700 14px var(--display);
  color: var(--blue-deep)
}

.compare-price del {
  margin-left: 6px;
  color: var(--slate-400);
  font: 9px var(--mono)
}

.compare-buy {
  width: 100%;
  margin-top: 12px;
  padding: 7px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600
}

.compare-buy.in-cart {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0
}

.compare-remove {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 27px;
  height: 27px;
  border: 1px solid var(--slate-100);
  border-radius: 8px;
  background: #fff;
  color: var(--slate-400)
}

.compare-remove:hover {
  color: #ef4444
}

.compare-row {
  align-items: center;
  padding: 14px 8px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 11px
}

.compare-row:hover {
  background: rgba(248, 250, 252, .7)
}

.compare-row>strong {
  text-transform: uppercase;
  color: var(--slate-500);
  font: 600 10px var(--display);
  letter-spacing: .05em
}

.compare-row>span {
  padding-left: 8px;
  color: var(--slate-500)
}

.compare-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  color: var(--slate-500);
  font-size: 10px
}

.secondary-button {
  padding: 9px 16px;
  border-radius: 9px;
  background: var(--slate-200);
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 600
}

.product-modal {
  inset: 50%;
  width: min(calc(100% - 32px), 896px);
  max-width: 100%;
  max-height: calc(100vh - 48px);
  transform: translate(-50%, -50%);
  border-radius: 24px;
  overflow: auto
}

.product-modal-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
}

.product-modal-inner>div {
  min-width: 0;
  max-width: 100%;
}

.product-gallery {
  padding: 32px;
  background: var(--slate-50);
  border-right: 1px solid var(--slate-100)
}

.product-main-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 232, 240, .7);
  border-radius: 16px;
  overflow: hidden;
  background: #fff
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto
}

.thumbnail {
  flex: none;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  overflow: hidden;
  background: #fff
}

.thumbnail.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242, 140, 0, .2)
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  width: 100%;
}

.trust-badges article {
  padding: 9px 4px;
  text-align: center;
  border: 1px solid var(--slate-100);
  border-radius: 11px;
  background: #fff
}

.trust-badges svg {
  display: block;
  margin: 0 auto 5px;
  width: 20px;
  height: 20px;
  color: var(--orange)
}

.trust-badges article:nth-child(1) svg {
  color: var(--blue)
}

.trust-badges article:nth-child(2) svg {
  color: var(--orange)
}

.trust-badges strong {
  display: block;
  font-size: 9px
}

.trust-badges small {
  display: block;
  color: var(--slate-400);
  font-size: 8px
}

.product-detail {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column
}

.modal-float-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-500)
}

.detail-meta {
  display: flex;
  gap: 8px;
  color: var(--slate-400);
  font: 11px var(--mono)
}

.detail-meta .category {
  color: var(--orange);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase
}

.product-detail h2 {
  padding-right: 32px;
  margin: 8px 0 0;
  font: 700 24px/1.18 var(--display);
  color: var(--slate-950)
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px
}

.detail-rating .stars svg {
  width: 16px;
  height: 16px
}

.detail-rating strong {
  font-size: 11px
}

.detail-rating>span {
  color: var(--slate-400);
  font-size: 10px
}

.detail-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  background: var(--slate-50)
}

.detail-pricing del {
  display: block;
  color: var(--slate-400);
  font: 11px var(--mono)
}

.detail-price-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.detail-price-row strong {
  font: 800 30px var(--display);
  color: var(--blue-deep)
}

.vat {
  padding: 4px 9px;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 9px;
  font-weight: 600
}

.saving {
  margin-left: auto;
  text-align: right;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700
}

.detail-tabs {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  border-bottom: 1px solid var(--slate-200)
}

.detail-tab {
  padding: 0 0 11px;
  background: none;
  border-bottom: 2px solid transparent;
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.detail-tab.active {
  color: var(--orange);
  border-color: var(--orange)
}

.detail-tab-content {
  height: 160px;
  overflow: auto;
  margin-top: 16px;
  padding-right: 6px;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.65
}

.detail-spec {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 10px
}

.detail-spec strong {
  color: var(--slate-700)
}

.detail-spec span {
  max-width: 210px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.guarantee-list {
  padding-left: 20px;
  font-size: 11px
}

.detail-actions {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  margin-top: auto;
  border-top: 1px solid var(--slate-100)
}

.detail-actions button {
  flex: 1;
  padding: 13px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700
}

.whatsapp-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  color: #20a653
}

.checkout-modal {
  inset: 50%;
  width: min(calc(100% - 32px), 672px);
  max-height: calc(100vh - 32px);
  padding: 32px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  overflow: auto
}

.checkout-modal h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 800 24px var(--display)
}

.checkout-modal h2 svg {
  color: var(--orange)
}

.checkout-intro {
  margin: 6px 0 24px;
  color: var(--slate-500);
  font-size: 13px
}

.checkout-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  background: var(--slate-50)
}

.checkout-summary small {
  display: block;
  color: var(--slate-400);
  font: 9px var(--mono);
  text-transform: uppercase
}

.checkout-summary strong {
  display: block;
  margin-top: 3px;
  font-size: 13px
}

.checkout-summary>div:last-child {
  text-align: right
}

.checkout-summary .checkout-total {
  font: 700 20px var(--display);
  color: var(--blue-deep)
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.field.full {
  grid-column: 1/-1
}

.field label,
.payment-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-600)
}

.field input,
.field textarea,
.card-fields input {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  color: var(--slate-800);
  outline: none;
  font-size: 12px
}

.field input:focus,
.field textarea:focus,
.card-fields input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242, 140, 0, .12)
}

.field textarea {
  resize: none
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 7px
}

.payment-option {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #fff;
  color: var(--slate-600)
}

.payment-option svg {
  width: 20px;
  margin-bottom: 6px
}

.payment-option strong {
  font-size: 10px
}

.payment-option small {
  margin-top: 3px;
  color: var(--slate-400);
  font-size: 8px
}

.payment-option.active[data-payment="whatsapp"] {
  border-color: var(--green);
  background: rgba(37, 211, 102, .05);
  color: #1e8341
}

.payment-option.active[data-payment="card"] {
  border-color: var(--blue);
  background: rgba(0, 37, 92, .05);
  color: var(--blue-deep)
}

.card-panel {
  padding: 14px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  background: var(--slate-50)
}

.card-panel h3 {
  margin: 0 0 10px;
  font-size: 10px
}

.card-fields {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px
}

.card-number {
  grid-column: 1/-1
}

.card-panel>small {
  display: block;
  margin-top: 8px;
  color: var(--slate-400);
  font-size: 8px
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100)
}

.cancel-button {
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 10px;
  font-weight: 700
}

.submit-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(37, 211, 102, .2)
}

.submit-order.card {
  background: var(--blue)
}

.submit-order:disabled {
  opacity: .65;
  cursor: wait
}

.spinner {
  animation: spin .8s linear infinite
}

.success-screen {
  padding: 48px 0;
  text-align: center
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d1fae5;
  color: #059669;
  border: 1px solid #a7f3d0
}

.success-icon svg {
  width: 40px;
  height: 40px
}

.success-screen h2 {
  justify-content: center
}

.success-screen>p {
  max-width: 450px;
  margin: 9px auto;
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.6
}

.tracking-code {
  max-width: 380px;
  margin: 24px auto 0;
  padding: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  background: var(--slate-50)
}

.tracking-code small {
  display: block;
  color: var(--slate-400);
  font: 9px var(--mono)
}

.tracking-code strong {
  display: block;
  margin-top: 5px;
  font: 700 13px var(--mono)
}

.tracking-code span {
  display: block;
  margin-top: 5px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 600
}

.success-screen .closing {
  margin-top: 26px;
  color: var(--slate-400);
  animation: pulse 1.5s infinite
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--slate-900);
  color: #fff;
  font-size: 12px;
  box-shadow: var(--shadow-xl);
  animation: toastIn .25s
}

@keyframes fadeIn {
  from {
    opacity: 0
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(.95)
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(15px)
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(.96)
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px)
  }
}

@keyframes pulse {
  50% {
    opacity: .45
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes bounce {
  50% {
    transform: translateY(-3px)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@media(max-width:1100px) {
  .whatsapp-header {
    display: none
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:800px) {
  .container {
    width: min(100% - 32px, 1280px)
  }

  .search-desktop {
    display: none
  }

  .mobile-search-wrap {
    display: block
  }

  .hero {
    padding: 64px 0
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-copy {
    align-items: center
  }

  .hero-product {
    margin-top: 10px
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px
  }

  .catalog-stats {
    flex-direction: column;
    text-align: center
  }

  .advice-grid {
    grid-template-columns: 1fr
  }

  .whatsapp-button {
    justify-self: start
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .location-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 5fr 3fr;
    gap: 34px
  }

  .footer-grid>div:last-child {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .compare-modal {
    inset: 70px 16px 16px
  }

  .product-modal-inner {
    grid-template-columns: minmax(0, 1fr)
  }

  .product-modal {
    overflow: auto
  }

  .product-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--slate-100)
  }

  .product-main-image {
    max-height: 360px
  }

  .detail-actions {
    margin-top: 20px
  }
}

@media(max-width:520px) {
  .announcement {
    font-size: 10px
  }

  .announcement svg {
    display: none
  }

  .header-main {
    min-height: 68px
  }

  .logo-mark {
    width: 40px;
    height: 40px
  }

  .logo-copy small {
    font-size: 9px
  }

  .logo-copy strong {
    font-size: 19px
  }

  .cart-copy {
    display: none
  }

  .hero {
    padding: 52px 0
  }

  .hero h1 {
    font-size: 40px
  }

  .hero-copy>p {
    font-size: 15px
  }

  .hero-actions {
    flex-direction: column;
    width: 100%
  }

  .hero-actions .button {
    width: 100%
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .category-tabs {
    justify-content: flex-start
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    border-radius: 12px;
    min-width: 0;
  }

  .product-badges {
    top: 8px;
    left: 8px;
    gap: 4px;
  }

  .product-badges .badge {
    padding: 3px 6px;
    font-size: 9px;
  }

  .product-info {
    padding: 10px;
    min-width: 0;
  }

  .product-meta {
    font-size: 9px;
    gap: 4px;
    flex-wrap: wrap;
  }

  .category-label {
    padding: 2px 6px;
    font-size: 8px;
  }

  .product-title {
    font-size: 13px;
    height: 36px;
    margin-top: 4px;
  }

  .spec-preview {
    margin-top: 8px;
    padding: 6px 8px;
    border-radius: 6px;
  }

  .spec-preview p {
    display: block !important;
    font-size: 9px;
    line-height: 1.4;
    margin: 0;
  }

  .spec-preview svg {
    display: inline-block !important;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 4px;
    width: 12px !important;
    height: 12px !important;
  }

  .spec-preview strong {
    display: inline-block;
    vertical-align: middle;
  }

  .spec-preview span {
    display: inline;
    white-space: normal !important;
  }

  .product-buy {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

  .price strong {
    font-size: 15px;
  }

  .price del {
    font-size: 10px;
  }

  .add-cart {
    padding: 8px 10px;
    font-size: 11px;
    width: 100%;
    border-radius: 8px;
  }

  .advice-banner,
  .testimonials,
  .location {
    padding: 52px 0
  }

  .showroom-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px
  }

  .showroom-card p {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-grid>div:last-child {
    grid-column: auto
  }

  .footer-bottom>span:last-child {
    display: none
  }

  .compare-modal {
    inset: 68px 8px 8px;
    border-radius: 17px
  }

  .modal-header {
    padding: 15px
  }

  .modal-title h2 {
    font-size: 14px
  }

  .compare-body {
    padding: 14px
  }

  .compare-footer>span {
    display: none
  }

  .compare-footer {
    justify-content: flex-end
  }

  .product-modal {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    overflow-x: hidden;
  }

  .product-gallery,
  .product-detail {
    padding: 16px
  }

  .product-detail h2 {
    font-size: 18px
  }

  .detail-price-row strong {
    font-size: 22px
  }

  .vat {
    padding: 3px 6px;
    font-size: 8px
  }

  .detail-pricing {
    align-items: flex-start;
    flex-wrap: wrap
  }

  .saving {
    margin-left: 0;
    text-align: left
  }

  .detail-tabs {
    gap: 14px;
    overflow: auto
  }

  .detail-tab {
    font-size: 9px;
    white-space: nowrap
  }

  .detail-actions {
    flex-direction: column
  }

  .checkout-modal {
    width: calc(100% - 16px);
    padding: 22px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .payment-options {
    grid-template-columns: 1fr
  }

  .form-actions {
    gap: 10px
  }

  .submit-order {
    padding: 11px 12px
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.modal {
  animation: fadeIn .2s ease both
}

.product-modal,
.checkout-modal {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  animation: modalIn .25s ease both
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

/* --- VIEW ALL PRODUCTS LINK (HOMEPAGE) --- */
.view-all-products-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(242, 140, 0, 0.2);
  background: rgba(242, 140, 0, 0.02);
}

.view-all-products-link:hover {
  color: var(--blue-deep);
  border-color: var(--blue-deep);
  background: rgba(0, 28, 68, 0.02);
  transform: translateY(-1px);
}

.view-all-products-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-products-link:hover svg {
  transform: translateX(4px);
}

/* --- CATALOG LAYOUT (TODOS.PHP) --- */
.catalogo-completo {
  padding-block: 56px 80px;
}

.page-heading {
  margin-bottom: 48px;
  text-align: center;
}

.page-heading h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--blue-deep);
  margin: 12px 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-heading p {
  color: var(--slate-500);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.catalogo-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Filters Panel */
.catalogo-filters-panel {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 96px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
}

.filters-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--blue-deep);
}

.close-filters-mobile {
  display: none;
  background: none;
  color: var(--slate-500);
  padding: 4px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group:last-of-type {
  margin-bottom: 0;
}

.filter-group>label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* Search Box inside Filters */
.catalogo-filters-panel .mini-search-wrap {
  position: relative;
}

.catalogo-filters-panel .mini-search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  width: 16px;
  height: 16px;
}

.catalogo-filters-panel .mini-search-wrap input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 13px;
  background: var(--slate-50);
  outline: none;
  transition: all 0.2s ease;
}

.catalogo-filters-panel .mini-search-wrap input:focus {
  border-color: var(--orange);
  background: #fff;
}

/* Category vertical radio items */
.filter-categories-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--slate-600);
  font-weight: 500;
  transition: color 0.15s ease;
}

.filter-radio-item:hover {
  color: var(--blue);
}

.filter-radio-item input[type="radio"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

/* Dropdown Subcategory Select */
.filter-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 13px;
  background: var(--slate-50);
  color: var(--slate-700);
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-select:focus {
  border-color: var(--orange);
  background: #fff;
}

/* Price range styling */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-input-field {
  position: relative;
  flex: 1;
}

.price-input-field span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 500;
}

.price-input-field input {
  width: 100%;
  padding: 8px 8px 8px 22px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 12px;
  background: var(--slate-50);
  color: var(--slate-700);
  outline: none;
  transition: all 0.2s ease;
  -moz-appearance: textfield;
}

.price-input-field input::-webkit-outer-spin-button,
.price-input-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-input-field input:focus {
  border-color: var(--orange);
  background: #fff;
}

.range-separator {
  color: var(--slate-300);
  font-size: 12px;
}

/* Reset All Filters button */
.reset-all-button {
  width: 100%;
  margin-top: 28px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px dashed var(--slate-300);
  background: transparent;
  color: var(--slate-600);
  justify-content: center;
}

.reset-all-button:hover {
  background: var(--slate-50);
  color: var(--slate-800);
  border-color: var(--slate-400);
}

/* Catalog Stats and Mobile Filters Toggle */
.catalogo-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalogo-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.catalogo-stats-row p {
  margin: 0;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}

.catalogo-stats-row strong {
  color: var(--slate-800);
}

.open-filters-mobile-btn {
  display: none;
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 10px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .catalogo-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .open-filters-mobile-btn {
    display: inline-flex;
  }

  /* Slide-in Filters Panel for mobile */
  .catalogo-filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 320px;
    max-width: calc(100vw - 48px);
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .catalogo-filters-panel.open {
    transform: translateX(0);
  }

  .close-filters-mobile {
    display: block;
  }
}

@media (max-width: 575px) {
  .catalogo-stats-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .catalogo-stats-row p {
    text-align: center;
  }
}

/* --- PAGINATION CONTAINER & BUTTONS --- */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-150);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 140, 0, 0.02);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--slate-50);
}

.page-btn.num-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.page-btn.num-btn.active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 28, 68, 0.2);
}

.page-ellipsis {
  color: var(--slate-400);
  font-size: 14px;
  font-weight: 600;
  padding-inline: 4px;
}

/* Burbujas de especificaciones interactivas para variantes */
.detail-spec.multi-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.spec-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
}

.spec-bubble-btn {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.spec-bubble-btn:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-300);
  color: var(--blue-deep);
}

.spec-bubble-btn.active {
  background-color: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: none;
}

/* Ocultar el comparador por completo de la interfaz */
.compare-status,
.compare-modal,
#open-compare,
#compare-status,
#compare-modal,
.compare-toggle,
.compare-intro {
  display: none !important;
}

/* Google Maps Iframe responsivo en showroom */
.showroom iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/* Carrusel de Entregas */
.hero-deliveries-carousel {
  user-select: none;
}

.hero-deliveries-carousel .carousel-arrow {
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease !important;
}

.hero-deliveries-carousel .carousel-arrow:hover {
  background: var(--orange) !important;
  color: #fff !important;
}

.hero-deliveries-carousel .carousel-arrow:active {
  transform: translateY(-50%) scale(0.95) !important;
}

/* Footer de Tarjeta de Entregas en Hero */
.hero-deliveries-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-deliveries-info {
  text-align: left;
}

.hero-deliveries-tag {
  font: 700 10px var(--mono);
  color: var(--slate-400);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
}

.hero-deliveries-title {
  font: 700 16px var(--display);
  margin: 2px 0 0;
  color: #fff;
}

.hero-deliveries-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.view-all-deliveries-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font: 600 12px var(--display);
  text-decoration: none;
  transition: all 0.25s ease;
}

.view-all-deliveries-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hero-deliveries-carousel .carousel-indicator {
  font: 600 12px var(--mono);
  color: var(--orange);
  background: rgba(15, 23, 42, 0.6);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Página de Galería de Entregas (/entregas) - Tema Claro */
.entregas-page-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--slate-50, #f8fafc);
  color: var(--slate-800, #1e293b);
  flex: 1;
  min-height: calc(100vh - 120px);
}

.entregas-page {
  padding-top: 36px;
  padding-bottom: 64px;
}

.entregas-breadcrumb {
  margin-bottom: 20px;
}

.entregas-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-600, #475569);
  font: 600 13px var(--display);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entregas-breadcrumb a:hover {
  color: var(--orange);
}

.entregas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200, #e2e8f0);
}

.entregas-header-content {
  max-width: 680px;
}

.entregas-header-content h1 {
  font: 800 32px/1.2 var(--display);
  color: var(--blue-deep, #001c44);
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}

.entregas-header-content p {
  color: var(--slate-600, #475569);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.entregas-counter-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--slate-200, #e2e8f0);
  border-radius: 16px;
  padding: 14px 24px;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.entregas-counter-badge .count-number {
  font: 800 28px var(--mono);
  color: var(--orange);
  line-height: 1;
}

.entregas-counter-badge .count-label {
  font: 700 11px var(--mono);
  color: var(--slate-500, #64748b);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Grid de Entregas */
.entregas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.entrega-card {
  background: #ffffff;
  border: 1px solid var(--slate-200, #e2e8f0);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.entrega-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 140, 0, 0.5);
  box-shadow: 0 14px 30px rgba(0, 28, 68, 0.12);
}

.entrega-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.entrega-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.entrega-card:hover .entrega-card-media img {
  transform: scale(1.06);
}

.entrega-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(242, 140, 0, 0.4);
  color: var(--orange);
  font: 700 10px var(--mono);
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.entrega-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.entrega-zoom-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font: 600 12px var(--display);
  padding: 8px 16px;
  border-radius: 24px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.entrega-card:hover .entrega-zoom-overlay {
  opacity: 1;
}

.entrega-card:hover .entrega-zoom-overlay span {
  transform: translateY(0);
}

.entrega-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.entrega-title {
  font: 700 15px/1.4 var(--display);
  color: var(--blue-deep, #001c44);
  margin: 0;
}

/* Lightbox Modal */
.entrega-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.entrega-lightbox[hidden] {
  display: none !important;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 70vh;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 20px 24px;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-tag {
  font: 700 11px var(--mono);
  color: var(--orange);
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lightbox-caption h3 {
  font: 700 18px/1.3 var(--display);
  color: #fff;
  margin: 6px 0 0;
}

/* Media Queries para Móviles y Tablets */
@media (max-width: 900px) {
  .entregas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .entregas-counter-badge {
    align-self: flex-start;
    padding: 10px 18px;
    min-width: auto;
    flex-direction: row;
    gap: 10px;
  }
  .entregas-counter-badge .count-number {
    font-size: 20px;
  }
  .entregas-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .hero-deliveries-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-deliveries-actions {
    width: 100%;
    justify-content: space-between;
  }
  .entregas-header-content h1 {
    font-size: 22px;
  }
  .entregas-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    max-height: 95vh;
  }
  .lightbox-img-wrap {
    max-height: 60vh;
  }
}

/* Adaptación Responsive para Acciones del Navbar Header (Visítanos, Carrito, WhatsApp) */
@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }
  .location-header,
  .cart-trigger,
  .whatsapp-header {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 10px;
  }
}

@media (max-width: 520px) {
  .location-header {
    padding: 8px 10px;
  }
  .location-text {
    font-size: 11px;
  }
}

@media (max-width: 440px) {
  .location-header {
    padding: 8px 10px;
  }
  .location-text {
    display: none;
  }
  .whatsapp-text {
    display: none;
  }
  .whatsapp-header {
    padding: 8px 10px;
  }
}