/* IP SUMINISTROS - Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --cyan: #00aeef;
  --navy: #051124;
  --navy-mid: #001a33;
  --navy-nav: #0a1628;
  --green: #28a745;
  --whatsapp: #25d366;
  --red: #dc3545;
  --orange: #ff6b35;
  --bg: #f8f9fa;
  --bg-light: #f0f4f8;
  --border: #e0e0e0;
  --text: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1320px;
  --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-body-color: #212529;
  --bs-body-bg: #f8f9fa;
  --bs-primary: #007bff;
  --bs-primary-rgb: 0, 123, 255;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Bootstrap container used — custom max-width set in :root section */

/* ===== TOP BAR ===== */
.top-bar {
  font-size: 12px;
}

.top-bar--dark {
  background: var(--navy);
  color: var(--white);
}

.top-bar--light {
  background: #e8f4fd;
  color: var(--navy-mid);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar__item--hide-sm {
  display: none;
}

@media (min-width: 576px) {
  .top-bar__item--hide-sm {
    display: flex;
  }
}

/* ===== ICONS (Lucide) ===== */
svg.lucide {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.top-bar__item svg.lucide {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.header-action > svg.lucide {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.search-bar__btn svg.lucide {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.btn-categories svg.lucide,
.nav-menu__link svg.lucide {
  width: 14px;
  height: 14px;
}

.section__link svg.lucide {
  width: 14px;
  height: 14px;
}

.btn svg.lucide {
  width: 16px;
  height: 16px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__social {
  display: flex;
  gap: 12px;
}

.top-bar__social a {
  color: var(--white);
  font-size: 13px;
  opacity: 0.85;
}

.top-bar__social a:hover {
  opacity: 1;
  color: var(--cyan);
}

/* ===== STICKY SITE HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.site-header--pinned {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1);
}

.site-header--pinned .main-header {
  border-bottom-color: transparent;
}

.site-header--pinned .nav-bar:not(.nav-bar--navy) {
  border-bottom-color: transparent;
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.main-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
  padding: 16px 0;
}

.main-header__search {
  min-width: 0;
}

.main-header__search .search-bar {
  max-width: none;
  margin: 0;
}

.main-header__actions {
  justify-self: end;
}

@media (max-width: 991px) {
  .main-header__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      'logo'
      'search'
      'actions';
  }

  .main-header__logo {
    grid-area: logo;
  }

  .main-header__search {
    grid-area: search;
  }

  .main-header__actions {
    grid-area: actions;
    justify-self: start;
  }
}

@media (max-width: 575px) {
  .main-header__inner {
    gap: 12px;
  }
}

.header-action__text {
  display: none;
}

@media (min-width: 768px) {
  .header-action__text {
    display: block;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo__img--cta {
  height: 52px;
  margin-bottom: 8px;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo__sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

.logo__sub--blue {
  color: var(--primary);
}

/* Search */
.search-bar {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.search-bar__category {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--bg);
  border: none;
  border-right: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.search-bar__input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  min-width: 0;
}

.search-bar__btn {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.search-bar__btn:hover {
  background: var(--primary-dark);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 576px) {
  .header-actions {
    gap: 20px;
  }
}

.header-action {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
}

.header-action i,
.header-action svg.lucide {
  font-size: 22px;
  color: var(--navy);
}

.header-action__label {
  color: var(--text-muted);
  font-size: 11px;
}

.header-action__value {
  font-weight: 600;
  color: var(--navy);
}

.cart-badge__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-badge__count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== NAV BAR ===== */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.nav-bar .nav-bar__inner > .d-flex {
  min-width: 0;
}

.nav-bar--navy {
  background: var(--navy-nav);
}

.nav-bar__inner {
  padding: 0;
}

.nav-mobile-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
}

.nav-mobile-toggle svg.lucide {
  width: 20px;
  height: 20px;
}

.offcanvas-title {
  font-weight: 700;
  color: var(--navy);
}

.nav-bar--navy .nav-bar__inner {
  padding: 0;
}

.btn-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-bar--navy .btn-categories {
  padding: 14px 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  padding: 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu__link {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-menu__label {
  flex-shrink: 0;
}

.nav-menu__link svg.lucide {
  flex-shrink: 0;
}

.nav-menu__link:hover {
  color: var(--primary);
}

.nav-bar--navy .nav-menu__link {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 14px 10px;
}

.nav-bar--navy .nav-menu__link:hover {
  color: var(--cyan);
}

.nav-menu__link--sale {
  color: var(--red) !important;
  font-weight: 700;
  flex-shrink: 0;
  max-width: none;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: auto;
}

.nav-bar--navy .nav-contact {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
}

.nav-contact i,
.nav-contact svg.lucide {
  color: var(--primary);
  flex-shrink: 0;
}

.nav-contact svg.lucide {
  width: 16px;
  height: 16px;
}

.nav-bar--navy .nav-contact i,
.nav-bar--navy .nav-contact svg.lucide {
  color: var(--cyan);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

a.btn--primary,
button.btn--primary,
.btn.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn--cyan {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--green:hover {
  background: #218838;
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--white:hover {
  background: #f0f7ff;
  color: var(--primary-dark);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.section--tight {
  padding-top: 0;
}

.hero__brand {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  position: relative;
}

.hero .carousel-item {
  min-height: 360px;
}

.hero .carousel-item:has(.hero__graphic) {
  min-height: 0;
}

@media (min-width: 992px) {
  .hero .carousel-item {
    min-height: 420px;
  }

  .hero .carousel-item:has(.hero__graphic) {
    min-height: 0;
  }
}

.hero__graphic {
  width: 100%;
  line-height: 0;
  background: #111;
}

.hero__graphic-link {
  display: block;
}

.hero__graphic-img {
  width: 100%;
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%),
    var(--hero-bg-image, url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1600&q=80'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
}

@media (min-width: 992px) {
  .hero__inner {
    min-height: 420px;
  }
}

.hero__badge {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero__title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__title span {
  color: var(--cyan);
}

.hero__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 400px;
}

.hero__specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
}

.hero__spec i {
  color: var(--cyan);
  font-size: 16px;
}

.hero__product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__product img {
  max-height: 220px;
  width: auto;
}

@media (min-width: 768px) {
  .hero__product img {
    max-height: 280px;
  }
}

@media (min-width: 992px) {
  .hero__product img {
    max-height: 320px;
  }
}

.hero__price-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero__price-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero__price {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero__price-iva {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-bottom: 16px;
}

.hero__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.hero__arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  pointer-events: all;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow svg.lucide {
  width: 18px;
  height: 18px;
}

.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
  z-index: 2;
}

.hero__dots .hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  opacity: 1;
  text-indent: 0;
  margin: 0;
  padding: 0;
}

.hero__dots .hero__dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 5px;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.feature-item--border {
  border-right: none;
}

@media (min-width: 992px) {
  .feature-item--border {
    border-right: 1px solid var(--border);
    padding-right: 16px;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.feature-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item__icon svg.lucide {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.feature-item__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ===== SECTION ===== */
.section {
  padding: 40px 0;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.section__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.section__link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== CATEGORY GRID / CAROUSEL ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.section-carousel {
  position: relative;
  padding: 0 44px;
}

.section-carousel__viewport {
  overflow: hidden;
}

.section-carousel__track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.section-carousel__slide {
  flex: 0 0 calc((100% - 12px) / 2);
  min-width: 0;
}

.section-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.section-carousel__nav:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.section-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.section-carousel__nav--prev {
  left: 0;
}

.section-carousel__nav--next {
  right: 0;
}

.section-carousel__nav svg.lucide {
  width: 20px;
  height: 20px;
}

@media (min-width: 576px) {
  .section-carousel__slide {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

@media (min-width: 992px) {
  .section-carousel__slide {
    flex: 0 0 calc((100% - 36px) / 4);
  }
}

@media (min-width: 1200px) {
  .section-carousel__slide {
    flex: 0 0 calc((100% - 60px) / 6);
  }
}

.section-carousel__slide .category-card,
.section-carousel__slide .product-card {
  height: 100%;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px 36px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.category-card__img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.category-card__img img {
  max-height: 70px;
  object-fit: contain;
}

.category-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.category-card__desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.category-card__arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__arrow svg.lucide {
  width: 14px;
  height: 14px;
}

/* ===== PROMO BANNERS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-banner {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  overflow: hidden;
  position: relative;
}

.promo-banner--dark {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 100%);
  color: var(--white);
}

.promo-banner--blue {
  background: linear-gradient(135deg, #0099e6 0%, #00c6ff 100%);
  color: var(--white);
}

.promo-banner__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-banner__desc {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.promo-banner__graphic {
  font-size: 80px;
  opacity: 0.3;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 16px 48px;
  position: relative;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}

.product-card__badge--offer {
  background: var(--primary);
  color: var(--white);
}

.product-card__badge--new {
  background: #e8f4fd;
  color: var(--primary);
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
}

.product-card__img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-card__img img {
  max-height: 120px;
  object-fit: contain;
}

.product-card__brand {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 11px;
}

.product-card__stars {
  color: #ffc107;
}

.product-card__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.product-card__price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.product-card__discount {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.product-card__stock {
  display: flex;
  gap: 12px;
  font-size: 11px;
  margin: 8px 0;
}

.product-card__stock span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
}

.product-card__cart-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #e8f4fd;
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__cart-btn svg.lucide {
  width: 18px;
  height: 18px;
}

/* ===== BRANDS ===== */
.brands-row {
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.brand-logo__img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}

@media (min-width: 768px) {
  .brand-logo__img {
    height: 36px;
    max-width: 140px;
  }
}

.brand-logo__img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-logo__img--jbl {
  height: 28px;
}

.brand-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.brand-logo__text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  height: 100%;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--navy);
  background: var(--bg-light, #f8fafc);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 8px);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  word-break: break-word;
}

@media (min-width: 768px) {
  .brand-logo__text {
    min-height: 64px;
    font-size: 13px;
    padding: 12px 10px;
  }
}

.brand-card__link:hover .brand-logo__text {
  border-color: var(--primary);
  background: var(--white);
  color: var(--primary);
}

.brand-card__link:hover .brand-logo__img {
  filter: grayscale(0%);
  opacity: 1;
}

.brands-page {
  padding-bottom: 48px;
}

.brands-page__intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 640px;
}

.brands-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 16px;
}

.brands-page__search {
  flex: 1 1 240px;
  max-width: 420px;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 8px);
  background: var(--white);
}

.brands-page__search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.brands-page__count {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.brands-page__grid {
  margin-top: 0;
}

.brands-page__empty {
  color: var(--text-muted);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid #d0d5dd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a94a6;
  flex-shrink: 0;
  background: var(--white);
}

.trust-item__icon svg.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.trust-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.trust-item__desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: #050a0f;
  color: var(--white);
  padding: 60px 0;
}

.footer-cta__intro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-cta__copy {
  min-width: 0;
}

.footer-cta__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.footer-cta__logo--icon {
  height: 72px;
  width: 72px;
  object-fit: contain;
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.footer-cta__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.footer-cta__title span {
  color: var(--cyan);
}

.footer-cta__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cta-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.cta-card:hover {
  transform: translateY(-3px);
}

.cta-card--blue {
  background: var(--cyan);
}

.cta-card--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.cta-card--whatsapp {
  border: 1px solid var(--whatsapp);
  background: transparent;
}

.cta-card__icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.cta-card--whatsapp .cta-card__icon {
  color: var(--whatsapp);
}

.cta-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-card__desc {
  font-size: 12px;
  opacity: 0.8;
}

/* ===== MAIN FOOTER ===== */
.cta-card__icon svg.lucide {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.cta-card__icon--wa {
  color: var(--whatsapp);
}

.main-footer {
  background: #050a0f;
  color: var(--white);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.footer-brand__img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand__sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor;
}

.footer-social a svg.lucide {
  width: 16px;
  height: 16px;
}

.footer-contact__item svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
}

.footer-brand__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 16px 0;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.footer-col__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col__links li {
  margin-bottom: 8px;
}

.footer-col__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col__links a:hover {
  color: var(--cyan);
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact__item i {
  color: var(--cyan);
  margin-top: 2px;
  width: 16px;
}

.footer-bottom__credit {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom__credit a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom__credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  color: var(--white);
}

.whatsapp-float i {
  font-size: 22px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.page-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ===== SEARCH PAGE ===== */
.search-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px 0 48px;
}

.sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 20px;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-group__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

.filter-check input {
  accent-color: var(--primary);
}

.filter-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  margin-bottom: 12px;
  font-family: inherit;
}

.price-range {
  margin-top: 12px;
}

.price-range__track {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  position: relative;
  margin: 16px 0;
}

.price-range__fill {
  position: absolute;
  left: 0;
  right: 20%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.search-header {
  margin-bottom: 20px;
}

.search-header__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.search-header__stats {
  font-size: 13px;
  color: var(--text-muted);
}

.search-header__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.search-badges {
  display: flex;
  gap: 20px;
}

.search-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.search-badge i {
  color: var(--primary);
}

.search-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.search-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.search-sort select {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-toggle button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-muted);
}

.view-toggle button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination {
  display: flex;
  gap: 4px;
}

.pagination__btn {
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__btn--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.search-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.filter-brand-list {
  max-height: 280px;
  overflow-y: auto;
}

.catalog-pagination .pagination {
  gap: 4px;
  margin: 0;
}

.catalog-pagination .page-link {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.catalog-pagination .page-item.active .page-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.catalog-pagination .page-item.disabled .page-link {
  color: var(--text-muted);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 32px 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.product-gallery {
  display: flex;
  gap: 16px;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
}

.product-gallery__thumb--active {
  border-color: var(--primary);
}

.product-gallery__main {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-gallery__main img {
  max-height: 360px;
}

.product-gallery__zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-info__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge--new {
  background: var(--primary);
  color: var(--white);
}

.badge--stock {
  background: #d4edda;
  color: var(--green);
}

.product-info__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-info__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-info__stars {
  color: #ffc107;
}

.product-info__rating-count {
  color: var(--primary);
  font-size: 13px;
}

.product-info__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.product-info__tax {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-trust-item {
  text-align: center;
  font-size: 11px;
}

.product-trust-item i {
  display: block;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 6px;
}

.product-trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.qty-selector {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-selector button {
  width: 40px;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
}

.qty-selector input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

.product-actions .btn {
  flex: 1;
}

.product-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.product-features-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}

.product-feature {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.product-feature i {
  display: block;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-feature strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 2px;
}

.product-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.product-tab {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.product-tab--active {
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom-color: var(--primary);
}

.product-tab-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  padding-bottom: 48px;
}

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  padding: 24px 0 48px;
}

.cart-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 120px 1fr 80px;
  padding: 16px 24px;
  background: var(--bg);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 120px 1fr 80px;
  padding: 24px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.cart-item__product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  flex-shrink: 0;
}

.cart-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.cart-item__sku {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-item__stock {
  font-size: 12px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.cart-item__price {
  font-weight: 700;
  color: var(--navy);
}

.cart-item__subtotal {
  font-weight: 700;
  color: var(--primary);
}

.cart-item__remove {
  color: var(--primary);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
}

.cart-item__remove i {
  color: var(--red);
}

.cart-quote-box {
  background: #e8f4fd;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.cart-quote-box__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--navy);
}

.cart-quote-box__text i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

.cart-footer-action {
  margin-top: 16px;
  padding: 0;
}

.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 20px;
}

.order-summary__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.order-summary__divider {
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.order-summary__total-label {
  font-weight: 700;
  color: var(--navy);
}

.order-summary__total-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.order-summary__tax-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.order-summary__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  margin-top: 12px;
}

/* ===== CHECKOUT ADDRESS ===== */
.checkout-address {
  padding-bottom: 48px;
}

.checkout-address__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
}

.checkout-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.checkout-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.checkout-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #e8f4fd;
  border: 1px solid #b8daf7;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--navy);
}

.checkout-alert svg.lucide {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field--full {
  grid-column: 1 / -1;
}

.checkout-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: var(--primary);
}

.checkout-field textarea {
  resize: vertical;
  min-height: 96px;
}

.checkout-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.address-list {
  display: grid;
  gap: 12px;
}

.address-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.address-option:hover {
  border-color: #b8daf7;
}

.address-option:has(input:checked) {
  border-color: var(--primary);
  background: #f0f7ff;
}

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

.address-option__head input {
  flex-shrink: 0;
}

.address-option__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.address-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.address-option__details {
  margin-top: 10px;
  padding-left: 26px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.address-empty {
  text-align: center;
  padding: 24px 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.checkout-address__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.checkout-address__actions .btn {
  min-width: 200px;
}

@media (max-width: 991px) {
  .checkout-address__grid {
    grid-template-columns: 1fr;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-address__actions {
    flex-direction: column-reverse;
  }

  .checkout-address__actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.payment-methods {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.payment-methods__title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.payment-methods__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 10px;
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.payment-badge {
  display: block;
  height: 32px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

/* ===== LOGIN PAGE ===== */
.auth-page {
  background: var(--bg-light);
  min-height: calc(100vh - 200px);
  padding: 40px 0 60px;
  position: relative;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.auth-header__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.auth-header__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.auth-header__line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.auth-card__divider {
  border-left: 1px solid var(--border);
}

.auth-form {
  padding: 40px;
}

.auth-form__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input {
  position: relative;
}

.form-input input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input input:focus {
  border-color: var(--primary);
}

.form-input i,
.form-input svg.lucide {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.form-input svg.lucide {
  width: 16px;
  height: 16px;
}

.form-input .toggle-password {
  position: absolute;
  right: 10px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.form-input .toggle-password svg.lucide {
  position: static;
  transform: none;
  width: 16px;
  height: 16px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.social-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--with-icon svg.lucide {
  width: 16px;
  height: 16px;
}

.auth-register {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.auth-register__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.auth-register__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.auth-register__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.auth-benefits {
  text-align: left;
  width: 100%;
  margin-top: 24px;
}

.auth-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--navy);
}

.benefit-item__icon svg.lucide {
  width: 18px;
  height: 18px;
}

.auth-benefit svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== REGISTER PAGE ===== */
.register-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.register-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.register-tab {
  padding: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid var(--primary);
  font-family: inherit;
  background: var(--white);
  color: var(--primary);
}

.register-tab + .register-tab {
  border-left: none;
}

.register-tab--active {
  background: var(--primary);
  color: var(--white);
}

.register-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
}

.register-form {
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-grid--natural {
  grid-template-columns: 1fr;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.register-checkboxes {
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.register-checkboxes .form-checkbox {
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.register-checkboxes .form-checkbox a {
  color: var(--primary);
  text-decoration: none;
}

.register-checkboxes .form-checkbox a:hover {
  text-decoration: underline;
}

.form-grid .form-group input,
.form-grid .form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.form-grid .form-group input:focus,
.form-grid .form-group select:focus {
  border-color: var(--primary);
}

.password-strength {
  margin: 12px 0 20px;
}

.password-strength__label {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.password-strength__bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.password-strength__fill {
  height: 100%;
  width: 85%;
  background: var(--green);
  border-radius: 2px;
}

.register-sidebar {
  background: var(--bg);
  padding: 32px 24px;
  border-left: 1px solid var(--border);
}

.register-sidebar__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  background: #e8f4fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.benefit-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.benefit-item__desc {
  font-size: 12px;
  color: var(--text-muted);
}

.security-box {
  background: #e8f4fd;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.security-box i,
.security-box svg.lucide {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.security-box p {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.5;
}

.register-footer-link {
  text-align: center;
  padding: 16px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.register-footer-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.register-footer-link a:hover {
  text-decoration: underline;
}

.form-options a {
  color: var(--primary);
  text-decoration: none;
}

.form-options a:hover {
  text-decoration: underline;
}

/* ===== EMAIL TEMPLATE ===== */
.email-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
}

.email-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 11px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.email-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--cyan);
}

.email-services {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--text-muted);
}

.email-service {
  display: flex;
  align-items: center;
  gap: 6px;
}

.email-service i {
  color: var(--cyan);
}

.email-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.email-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 L50 20 L80 80 Z' fill='none' stroke='%2300aeef' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.email-hero__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.email-hero__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 12px;
}

.email-hero__order {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
}

.email-hero__graphic {
  width: 120px;
  height: 120px;
  background: var(--cyan);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.email-order-summary {
  padding: 24px;
  border: 1px solid var(--border);
  margin: 24px;
  border-radius: var(--radius-lg);
}

.email-order-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.email-order-summary__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-order-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.email-order-item__img {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
}

.email-order-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.email-order-item__code {
  font-size: 12px;
  color: var(--text-muted);
}

.email-order-item__qty {
  font-size: 12px;
  color: var(--cyan);
}

.email-order-item__price {
  font-size: 13px;
  text-align: right;
}

.email-order-item__total {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-align: right;
}

.email-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: #f0f7ff;
}

.email-info-card {
  text-align: center;
  padding: 16px;
}

.email-info-card i {
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.email-info-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.email-info-card__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.email-cta-banner {
  background: var(--cyan);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 24px 24px;
  border-radius: var(--radius-lg);
}

.email-cta-banner__text {
  color: var(--white);
}

.email-cta-banner__title {
  font-size: 16px;
  font-weight: 700;
}

.email-cta-banner__desc {
  font-size: 12px;
  opacity: 0.9;
}

.email-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.email-footer__social {
  display: flex;
  gap: 8px;
}

.email-footer__social a {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.email-footer__info {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.email-footer__secure {
  text-align: center;
}

.email-footer__secure i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}

/* ===== QUOTATION PDF ===== */
.quotation {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow);
}

.quotation-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--cyan);
  margin-bottom: 24px;
}

.quotation-logo__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-mid);
}

.quotation-logo__nit {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.quotation-contact {
  font-size: 12px;
}

.quotation-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--text);
}

.quotation-contact__item i {
  color: var(--cyan);
  margin-top: 2px;
}

.quotation-title {
  text-align: right;
}

.quotation-title h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.quotation-number {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.quotation-meta {
  font-size: 12px;
  text-align: right;
}

.quotation-meta__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 4px;
}

.quotation-meta__item i {
  color: var(--cyan);
}

.quotation-client {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.quotation-client__box {
  background: var(--bg);
  padding: 16px;
  border-radius: var(--radius);
}

.quotation-client__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quotation-client__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.quotation-tax-list {
  font-size: 12px;
}

.quotation-tax-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.quotation-tax-list i {
  color: var(--cyan);
  font-size: 10px;
}

.quotation-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 12px;
}

.quotation-table thead {
  background: var(--cyan);
  color: var(--white);
}

.quotation-table th {
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
}

.quotation-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.quotation-table__product {
  font-weight: 600;
  color: var(--navy);
}

.quotation-table__desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.quotation-table__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.quotation-table__total {
  font-weight: 700;
  color: var(--cyan);
}

.quotation-totals {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.quotation-totals__box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 280px;
}

.quotation-totals__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.quotation-totals__final {
  border-top: 2px solid var(--cyan);
  padding-top: 12px;
  margin-top: 8px;
}

.quotation-totals__final-label {
  font-weight: 700;
  color: var(--navy);
}

.quotation-totals__final-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
}

.quotation-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.quotation-terms__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quotation-terms__text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.quotation-value-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.quotation-value-item {
  text-align: center;
  font-size: 11px;
}

.quotation-value-item i {
  display: block;
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 6px;
}

.quotation-value-item strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
}

.quotation-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.quotation-cta__text {
  font-size: 14px;
  color: var(--navy);
}

.quotation-cta__box {
  border: 2px solid #e8f4fd;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.quotation-cta__box-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.quotation-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quotation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid var(--cyan);
  font-size: 12px;
}

.quotation-footer__social {
  display: flex;
  gap: 8px;
}

.quotation-footer__social a {
  width: 28px;
  height: 28px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.quotation-footer__tagline span {
  color: var(--cyan);
}

/* ===== PAGE NAV (removed from production) ===== */

/* ===== RESPONSIVE (páginas internas) ===== */
@media (max-width: 991px) {
  .search-layout,
  .cart-layout,
  .product-detail,
  .auth-card,
  .register-body {
    display: block !important;
  }

  .auth-card {
    grid-template-columns: 1fr !important;
  }

  .register-body {
    grid-template-columns: 1fr !important;
  }

  .cart-table__header {
    display: none;
  }

  .cart-item {
    display: block;
    padding: 16px;
  }

  .product-detail {
    gap: 24px;
  }

  .product-gallery {
    flex-direction: column;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    order: 2;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .search-products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .search-layout {
    grid-template-columns: 1fr !important;
  }

  .sidebar {
    position: static;
  }

  .logo__img {
    height: 44px;
  }

  .promo-banner {
    flex-direction: column;
    text-align: left;
    min-height: auto;
  }

  .promo-banner__title {
    font-size: 20px;
  }

  .footer-cta__title {
    font-size: 24px;
  }

  .email-info-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
