:root {
  --color-primary: #000066;
  --color-primary-2: #00009a;
  --color-gray-100: #f6f7fb;
  --color-gray-300: #e0e0e0;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-whatsapp: #25d366;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-header: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius-card: 12px;
  --radius-input: 12px;
  --radius-pill: 40px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
}

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

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #fbfcff 0%, #f2f4fb 100%);
  padding-top: 94px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--color-primary);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

p {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.small-text {
  font-size: 0.875rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-2));
  color: var(--color-white);
  font-size: 0.875rem;
  padding: var(--space-sm) 0;
}

.top-link {
  color: rgba(255, 255, 255, 0.94);
}

.top-link:hover {
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  z-index: 1030;
}

.navbar-brand.brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand.brand img {
  height: 40px;
  width: auto;
}

.navbar .nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding-inline: var(--space-md);
}

.navbar .nav-link.active,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-primary-2);
}

.header-search .form-control {
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-pill);
  min-height: 44px;
  font-size: 0.95rem;
}

.header-search .btn {
  border-radius: var(--radius-pill);
  min-height: 44px;
}

.hero {
  padding: calc(var(--space-xxl) + var(--space-md)) 0 var(--space-xxl);
}

.hero-box {
  border-radius: 28px;
  padding: var(--space-xxl);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0, transparent 35%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: var(--color-white);
  box-shadow: 0 16px 42px rgba(0, 0, 102, 0.3);
}

.hero-box h1,
.hero-box p {
  color: var(--color-white);
}

.btn-rd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border: 0;
  border-radius: var(--radius-pill);
  min-height: 44px;
  padding: 12px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-rd:hover {
  transform: translateY(-2px);
}

.btn-rd-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 102, 0.25);
}

.btn-rd-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-gray-300);
}

.btn-rd-whatsapp {
  background: var(--color-whatsapp);
  color: #023a14;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.feature-grid {
  margin-top: calc(var(--space-xxl) - var(--space-md));
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  height: 100%;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: rgba(0, 0, 154, 0.09);
  color: var(--color-primary-2);
  font-size: 1.2rem;
}

.section-title {
  margin-bottom: var(--space-xl);
}

.product-grid {
  margin-top: var(--space-md);
}

.product-card {
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: #ffcc00;
  color: #202020;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  z-index: 2;
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-card);
  border: 1px solid #ededed;
  background: #fff;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.product-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.product-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
}

.product-meta {
  color: #737373;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.price-current {
  font-size: 1.3rem;
  color: var(--color-primary-2);
  font-weight: 700;
  margin-bottom: 2px;
}

.price-old {
  font-size: 0.9rem;
  color: #949494;
  text-decoration: line-through;
  margin-bottom: var(--space-xs);
}

.installment {
  font-size: 0.875rem;
  color: #616161;
  margin-bottom: var(--space-md);
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: var(--space-sm);
}

.card-actions .btn {
  min-height: 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 9px 14px;
}

.parallax-cta {
  margin: var(--space-xxl) 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 102, 0.82), rgba(0, 0, 154, 0.72)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 2px,
      transparent 2px,
      transparent 14px
    );
  background-attachment: fixed;
  border-radius: 24px;
  padding: var(--space-xxl);
  color: var(--color-white);
}

.parallax-cta h2,
.parallax-cta p {
  color: var(--color-white);
}

.catalog-filter {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
}

.catalog-filter .form-control,
.catalog-filter .form-select {
  min-height: 44px;
  border-radius: 8px;
}

.catalog-checks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.catalog-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #dbe0f1;
  border-radius: 999px;
  background: #f8faff;
  font-size: 0.92rem;
  cursor: pointer;
}

.catalog-check .form-check-input {
  margin: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.catalog-summary {
  font-size: 0.95rem;
  color: #4d5675;
}

.catalog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 600;
}

.catalog-page-indicator {
  background: #ffffff;
  border: 1px solid #dbe0f1;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: #4d5675;
  white-space: nowrap;
}

.catalog-pagination .page-link {
  border: 0;
  color: var(--color-primary);
  border-radius: 12px;
  margin: 0 3px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.catalog-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff;
}

.catalog-pagination .page-item.disabled .page-link {
  box-shadow: none;
}

.product-gallery-main {
  border: 1px solid #ededed;
  border-radius: var(--radius-card);
  background: var(--color-white);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.thumb-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
}

.product-thumb {
  border: 1px solid #dadada;
  border-radius: 8px;
  background: #fff;
  height: 84px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

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

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-box {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f6ee;
  color: #0f7a38;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.stock-pill.low {
  background: #fff4d9;
  color: #845800;
}

.product-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.product-info-panel {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  border: 1px solid #e7ebf6;
}

.product-info-heading {
  margin-bottom: var(--space-lg);
}

.product-info-kicker,
.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-info-tabs {
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid #e9edf7;
  padding-bottom: var(--space-md);
}

.product-info-tabs .nav-link {
  border: 1px solid #dbe0f1;
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 700;
  padding: 12px 18px;
  background: #f8faff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-info-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  color: #fff;
  border-color: transparent;
}

.product-info-content {
  color: #454545;
  line-height: 1.75;
}

.product-info-content p:last-child {
  margin-bottom: 0;
}

.product-pane-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid #edf0f7;
}

.product-pane-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  color: #087a34;
  font-size: 0.84rem;
  font-weight: 700;
}

.product-richtext p {
  margin-bottom: var(--space-md);
  color: #46506e;
}

.product-subpanel {
  border: 1px solid #ebedf5;
  border-radius: 16px;
  background: #f9fbff;
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-list-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.product-list-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #ebedf5;
  border-radius: 14px;
  background: #f9fbff;
  padding: var(--space-md);
}

.product-list-grid li i {
  color: var(--color-primary-2);
  margin-top: 3px;
}

.contact-map-wrap {
  width: 100%;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8ebf4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  background: #f3f6ff;
}

.product-empty-state {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  border: 1px dashed #cdd6eb;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcff 0%, #f4f7ff 100%);
  padding: var(--space-lg);
}

.product-empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.about-hero {
  border-radius: 28px;
  padding: var(--space-xxl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22) 0, transparent 34%),
    linear-gradient(135deg, #000066 0%, #00009a 100%);
  color: var(--color-white);
  box-shadow: 0 20px 48px rgba(0, 0, 102, 0.22);
}

.about-hero h1,
.about-hero p {
  color: var(--color-white);
}

.about-highlight-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  border-radius: 22px;
  padding: var(--space-xl);
  box-shadow: 0 12px 28px rgba(6, 6, 65, 0.18);
}

.about-highlight-card p {
  color: var(--color-text);
}

.about-highlight-card h2 {
  color: var(--color-primary);
}

.about-card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  height: 100%;
  border: 1px solid #edf0f7;
}

.about-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.about-story {
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: var(--space-xxl);
  border: 1px solid #edf0f7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f9fbff;
  border: 1px solid #ebedf5;
  border-radius: 16px;
  padding: var(--space-md);
}

.about-list li i {
  color: var(--color-primary-2);
  margin-top: 3px;
}

.site-footer {
  margin-top: var(--space-xxl);
  background: linear-gradient(180deg, #060641 0%, #000027 100%);
  color: var(--color-white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.site-footer .footer-link {
  color: rgba(255, 255, 255, 0.92);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.site-footer .footer-link:hover {
  color: #c5d6ff;
}

.footer-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.footer-chip i {
  font-size: 1rem;
}

.faq-wrapper {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: var(--space-md);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid #eceff8;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: var(--space-md);
  font-weight: 700;
  color: var(--color-primary);
}

.faq-accordion .accordion-button::after {
  margin-left: auto;
}

.faq-question-line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.faq-question-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 0, 154, 0.08);
  color: var(--color-primary-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.faq-accordion .accordion-body {
  padding-top: 0;
  padding-left: calc(var(--space-md) + 42px);
  color: #515151;
}

.promo-modal {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.promo-modal .modal-header {
  background: linear-gradient(135deg, #000066 0%, #00009a 100%);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.promo-modal .modal-title {
  color: #ffffff;
}

.promo-modal .btn-close {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--space-md);
  font-size: 0.875rem;
}

.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #014f1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
  z-index: 1040;
  font-size: 1.4rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  body {
    padding-top: 86px;
  }

  .hero-box {
    padding: var(--space-xl);
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 80px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .hero-box,
  .parallax-cta,
  .product-detail-box {
    padding: var(--space-lg);
  }

  .thumb-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    min-height: 44px;
    font-size: 0.98rem;
  }

  .faq-accordion .accordion-body {
    padding-left: var(--space-md);
  }

  .catalog-toolbar {
    flex-direction: column;
  }

  .catalog-page-indicator {
    white-space: normal;
  }

  .product-info-panel {
    padding: var(--space-md);
  }

  .product-info-tabs {
    flex-direction: column;
  }

  .product-info-tabs .nav-link {
    justify-content: flex-start;
  }

  .product-list-grid {
    grid-template-columns: 1fr;
  }

  .product-empty-state,
  .product-pane-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero,
  .about-story {
    padding: var(--space-lg);
  }

  .about-highlight-card {
    padding: var(--space-lg);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-top: 0;
}

.hero-slider .swiper {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slider .slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,51,0.88) 0%, rgba(0,0,102,0.65) 60%, rgba(0,0,154,0.35) 100%);
}

.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  color: var(--color-white);
}

.hero-slider .slide-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: #ffffff;
  max-width: 700px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-slider .slide-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  font-weight: 400;
}

.hero-slider .btn-slider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 44px;
}

.hero-slider .btn-slider:hover {
  background: var(--color-primary-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 102, 0.3);
  color: var(--color-white);
}

.hero-slider .btn-slider i {
  font-size: 0.85rem;
}

.hero-slider .btn-slider-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  box-shadow: none;
}

.hero-slider .btn-slider-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 28px;
  border-radius: 5px;
  opacity: 1;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  color: #fff;
  transition: all 0.25s ease;
  background: transparent;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: rgba(0,0,51,0.5);
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .hero-slider {
    height: 340px;
  }

  .hero-slider .slide-title {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }

  .hero-slider .slide-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
  }

  .hero-slider .btn-slider {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

.brands-section {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(135deg, rgba(0,0,102,0.04) 0%, rgba(0,0,154,0.08) 100%);
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,102,0.08);
  text-decoration: none;
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,102,0.12);
  background: linear-gradient(135deg, rgba(0,0,102,0.08) 0%, rgba(0,0,154,0.14) 100%);
}

.brand-item i {
  font-size: 2rem;
  color: var(--color-primary-2);
  margin-bottom: var(--space-sm);
}

.brand-item .brand-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.brand-category {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .brands-section {
    padding: var(--space-lg);
  }

  .brand-item {
    padding: var(--space-md) var(--space-sm);
  }

  .brand-item i {
    font-size: 1.5rem;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .brand-category {
    font-size: 0.65rem;
  }

  .brand-item .brand-img {
    width: 36px;
    height: 36px;
  }
}
