/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--main));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
  font-weight: 500;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.deposit-info__input .text {
  font-weight: 500;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.deposit-info.border-bottom {
  margin-bottom: 10px;
}

.deposit-info.total-amount {
  margin-top: 10px;
  margin-bottom: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: hsl(var(--base));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
  border-radius: 6px;
  color: white;
}

.payment-item__btn p {
  color: white;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

/* Header category dropdown: keep image visible when shop-block has only an image */
.main-header
  .outer-box
  .category-box
  .list-inner
  .shop-block.shop-block--image-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 20px;
}

.main-header
  .outer-box
  .category-box
  .list-inner
  .shop-block.shop-block--image-only
  .image {
  position: static;
  max-width: 100%;
}

/* Header menu active state: support .active class from menuActive() */
.main-menu .navigation > li.active > a {
  color: hsl(var(--base));
}

/* File input: make the "Choose File" button text readable on dark backgrounds */
.form--control[type="file"]::file-selector-button,
.form-control[type="file"]::file-selector-button,
.form--control[type="file"]::-webkit-file-upload-button,
.form-control[type="file"]::-webkit-file-upload-button {
  color: #fff;
}

/* Share modal: make links visible and readable */
.share-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 575px) {
  .share-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.share-list .sheer_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  color: #111;
  background: #fff;
}

.share-list .sheer_icon:hover {
  border-color: hsl(var(--base));
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
}

.share-list .sheer_icon i {
  font-size: 16px;
}

/* Wishlist button: show one icon only */

/* Mega menu: fit 5 columns without horizontal scroll */
.main-header .outer-box .category-box .category-list .list-inner {
  width: 1280px;
}

.main-header .outer-box .category-box .list-inner .inner-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow-x: hidden;
  width: auto;
}

.main-header .outer-box .category-box .list-inner .inner-box p {
  white-space: nowrap;
}

.main-header .outer-box .category-box .list-inner .inner-box .single-column {
  float: none;
  width: auto;
}

/* Mega menu: reduce vertical gaps in level-3 list */
.main-header .outer-box .category-box .list-inner .inner-box .single-column ul {
  margin-top: 6px;
}

.main-header
  .outer-box
  .category-box
  .list-inner
  .inner-box
  .single-column
  ul
  li
  a {
  line-height: 26px;
  white-space: nowrap;
}

/* Product details main image: enforce 475x455 display size */
.product-details-content .image-box .thumb-slider img {
  width: 475px;
  height: 455px;
  object-fit: contain;
  margin: 0 auto;
}

/* Maers Deals section components */
.page-hero {
  background: linear-gradient(135deg, rgba(21, 58, 121, 0.08), rgba(255, 106, 0, 0.06));
  border-bottom: 1px solid rgba(21, 58, 121, 0.08);
}

.brand-intro__quote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #153a79;
  font-style: italic;
}

.brand-intro__author {
  font-style: normal;
  font-weight: 600;
  color: #ff6a00;
}

.brand-group {
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(21, 58, 121, 0.1);
  border-radius: 12px;
  background: #fff;
}

.brand-group__title {
  margin-bottom: 0.75rem;
  color: #153a79;
}

.brand-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-group__item {
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(21, 58, 121, 0.12);
}

.brand-group__item:last-child {
  border-bottom: 0;
}

.page-wrapper {
  margin-top: 0;
}

.cat-detail-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(21, 58, 121, 0.1);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cat-detail-card:hover,
.cat-detail-card.is-active {
  border-color: #ff6a00;
  box-shadow: 0 10px 24px rgba(21, 58, 121, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.cat-detail-card__media {
  height: 180px;
  overflow: hidden;
  background: #f3f6fb;
}

.cat-detail-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-detail-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.cat-detail-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cat-detail-card__name {
  margin-bottom: 0.35rem;
  color: #153a79;
}

.cat-detail-card__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cat-detail-card__desc {
  margin-bottom: 1rem;
  color: #6c757d;
  font-size: 0.95rem;
}

.cat-detail-card__cta {
  color: #ff6a00;
  font-weight: 600;
  font-size: 0.9rem;
}

.cat-card.is-active {
  outline: 2px solid #ff6a00;
  outline-offset: 2px;
}

.category-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #6c757d;
  font-size: 0.95rem;
}

.category-breadcrumb a {
  color: #ff6a00;
  text-decoration: none;
}

.category-detail__media {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f6fb;
  border: 1px solid rgba(21, 58, 121, 0.08);
}

.category-detail__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.category-detail__content {
  background: #fff;
  border: 1px solid rgba(21, 58, 121, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.category-detail__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.12);
  color: #ff6a00;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-detail__desc {
  font-size: 1.05rem;
  color: #374151;
}

.category-detail__subtitle {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #153a79;
}

.brand-logo-card {
  cursor: default;
}

/* Byviva-style site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
  overflow: visible;
}

.site-header .container,
.site-header__inner,
.site-nav,
.site-nav__list {
  overflow: visible;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.5rem;
}

.site-header__logo img {
  max-height: 48px;
  width: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-nav__link i {
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-nav__item--dropdown.is-open > .site-nav__link {
  color: #ff6a00;
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__item--dropdown.is-open .site-nav__toggle i,
.site-nav__item--dropdown:hover .site-nav__toggle i {
  transform: rotate(180deg);
}

.site-mega {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  min-width: 560px;
  margin-top: 0;
  padding: 1.35rem 1.5rem;
  padding-top: calc(1.35rem + 12px);
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  z-index: 1060;
}

/* Invisible hover bridge so the menu does not close while moving the cursor */
.site-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.site-nav__item--dropdown:hover .site-mega,
.site-nav__item--dropdown:focus-within .site-mega,
.site-nav__item--dropdown.is-open .site-mega {
  display: grid;
}

.site-mega__title {
  margin: 0 0 0.75rem;
  color: #111111;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

.site-mega__list a {
  display: block;
  padding: 0.35rem 0;
  color: #222222;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-mega__list a:hover {
  color: #ff6a00;
}

.site-mega__brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.site-mega__brands a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #222222;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.site-mega__brands img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 6px;
  padding: 2px;
}

.site-mega__brands a:hover {
  color: #ff6a00;
}

.site-mega__more {
  display: inline-block;
  margin-top: 0.75rem;
  color: #ff6a00;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-mega__more:hover {
  color: #111111;
}

.site-header__toggle {
  border: 0;
  background: transparent;
  color: #111111;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem;
}

.site-header__toggle:hover {
  color: #ff6a00;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bg-img {
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* Brand logos */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 576px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .brand-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.brand-logo-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 130px;
  padding: 1rem 0.75rem;
  background: #fff;
  border: 1px solid rgba(21, 58, 121, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-logo-card:hover {
  border-color: #ff6a00;
  box-shadow: 0 10px 24px rgba(21, 58, 121, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.brand-logo-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-logo-card__name {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #153a79;
  line-height: 1.3;
}

.brand-group__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-group__link:hover {
  color: #ff6a00;
}

.brand-group__thumb {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 58, 121, 0.1);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.brand-group__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ========== Brand website polish ========== */
:root {
  --brand-navy: #153a79;
  --brand-orange: #ff6a00;
  --brand-sky: #ff6a00;
  --brand-ink: #0f172a;
  --brand-muted: #64748b;
  --brand-surface: #f5f7fb;
  --brand-card: #ffffff;
  --brand-font: "Manrope", "Segoe UI", sans-serif;
  --brand-display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.brand-site {
  font-family: var(--brand-font);
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top right, rgba(74, 163, 217, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--brand-surface) 48%, #ffffff 100%);
}

.brand-site h1,
.brand-site h2,
.brand-site h3,
.brand-site .section-heading__title,
.brand-site .banner-slider-item__title,
.brand-site .page-hero__title,
.brand-site .cta-content__title {
  font-family: var(--brand-display);
  letter-spacing: 0.01em;
  text-transform: none;
}

.brand-site .btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.brand-site .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 58, 121, 0.18);
}

.brand-site .btn-outline--base {
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy);
  background: transparent;
}

.brand-site .btn-outline--base:hover {
  background: var(--brand-navy);
  color: #fff;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-hero .banner-slider-item {
  min-height: clamp(520px, 78vh, 720px);
}

.brand-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(15, 23, 42, 0.88) 8%, rgba(21, 58, 121, 0.72) 48%, rgba(15, 23, 42, 0.45) 100%);
  z-index: 1;
}

.brand-hero .banner-slider-item__main {
  position: relative;
  z-index: 2;
}

.brand-hero__content {
  padding-block: 4rem;
}

.brand-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.16);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #ffd7b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-hero__quote {
  display: block;
  max-width: 34rem;
  margin-bottom: 1rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.98rem !important;
  line-height: 1.55;
}

.brand-hero .banner-slider-item__title {
  color: #fff !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.brand-hero .banner-slider-item__desc {
  color: rgba(226, 232, 240, 0.92) !important;
  font-size: 1.08rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.brand-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-strip {
  margin-top: 0;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 58, 121, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

@media (min-width: 992px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1.15rem 1.35rem;
  }

  .trust-strip {
    margin-top: -2rem;
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.trust-strip__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.12);
  color: var(--brand-orange);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.trust-strip__label {
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 0.95rem;
  line-height: 1.3;
}

.brand-panel,
.brand .brand-card,
.contact .brand-card {
  border-radius: 22px;
  border: 1px solid rgba(21, 58, 121, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.96));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 1.75rem;
}

.brand-intro__quote {
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--brand-navy), #0f2d5c);
  color: #fff;
  min-height: 100%;
}

.brand-intro__quote p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  line-height: 1.65;
}

.brand-intro__mark {
  position: absolute;
  top: 0.2rem;
  left: 0.9rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 106, 0, 0.45);
  font-family: var(--brand-display);
}

.brand-intro__author {
  color: #ffc399 !important;
}

.brand-intro__statement {
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.brand-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(21, 58, 121, 0.95), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.25), transparent 45%);
  color: #fff;
  border-bottom: 0;
}

.page-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 163, 217, 0.28), transparent 65%);
  pointer-events: none;
}

.page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffd7b8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.85rem;
}

.page-hero__intro {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-hero .category-breadcrumb,
.page-hero .category-breadcrumb a {
  color: rgba(226, 232, 240, 0.88);
}

.page-hero .category-breadcrumb a:hover {
  color: #fff;
}

.site-header {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.fixed-header {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.brand-logo-card,
.cat-detail-card,
.brand-group,
.category-detail__content,
.category-detail__media {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-logo-card:hover,
.cat-detail-card:hover,
.brand-group:hover {
  transform: translateY(-4px);
}

.cta .cta-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.cta .cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.88), rgba(21, 58, 121, 0.72));
  z-index: 0;
}

.cta .cta-content {
  position: relative;
  z-index: 1;
}

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #153a79 100%);
}

.footer .footer-desc,
.footer .footer-item__title,
.footer .footer-menu__link,
.footer .footer-contact-menu__link,
.footer .footer-subscribe__title,
.footer .footer-subscribe__desc,
.footer .footer-copyright,
.footer .footer-copyright a {
  color: rgba(255, 255, 255, 0.88) !important;
}

.footer .footer-menu__link:hover,
.footer .footer-contact-menu__link:hover {
  color: #ffc399 !important;
}

.footer-subscribe {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.25rem;
}

/* ========== Brand site footer ========== */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 4rem 0 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #0a0a0a 0%, #121212 55%, #1a120c 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.14);
  filter: blur(20px);
  pointer-events: none;
}

.site-footer__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 2rem 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  max-height: 48px;
  width: auto;
}

.site-footer__tagline {
  margin: 0 0 0.75rem;
  color: #ffb15a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__desc {
  margin: 0 0 1.35rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer__cta {
  border-radius: 999px;
}

.site-footer__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.65rem;
}

.site-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #ff6a00;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li + li {
  margin-top: 0.7rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__links a:hover {
  color: #ff6a00;
  padding-left: 4px;
}

.site-footer__contact {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: #ff6a00;
}

.site-footer__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  background: rgba(255, 106, 0, 0.14);
  color: #ff6a00;
  font-size: 1.05rem;
}

.site-footer__newsletter {
  padding: 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__newsletter-title {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__newsletter-desc {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #fff;
}

.site-footer__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
}

.site-footer__form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-footer__form button:hover {
  background: #111;
  transform: translateY(-1px);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1.25rem 0 1.5rem;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.site-footer__bottom a {
  color: #fff;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #ff6a00;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 3rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 767.98px) {
  .brand-hero__content {
    padding-block: 3rem;
  }

  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }
}

/* ========== Animated cover hero ========== */
.cover-hero {
  padding: 1.25rem 0 0;
}

.cover-hero__card {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 72vh, 680px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 106, 0, 0.32), transparent 30%),
    linear-gradient(115deg, #0a0a0a 0%, #151515 42%, #1a120c 72%, #23160e 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.cover-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.85), transparent 78%);
  animation: coverGridDrift 22s linear infinite;
  pointer-events: none;
}

.cover-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.cover-hero__glow--one {
  width: 300px;
  height: 300px;
  right: 12%;
  top: 18%;
  background: rgba(255, 106, 0, 0.38);
  animation: coverPulse 4.5s ease-in-out infinite;
}

.cover-hero__glow--two {
  width: 190px;
  height: 190px;
  right: 28%;
  bottom: 12%;
  background: rgba(255, 176, 90, 0.24);
  animation: coverPulse 5.5s ease-in-out infinite reverse;
}

.cover-hero__floor {
  position: absolute;
  left: 42%;
  right: -4%;
  bottom: -8%;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(20, 10, 4, 0.28) 35%, rgba(8, 4, 2, 0.7) 100%);
  pointer-events: none;
}

.cover-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  min-height: inherit;
  padding: 3rem 3.25rem;
}

.cover-hero__content {
  max-width: 36rem;
  animation: coverTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cover-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.16);
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: #ffd2ad;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-hero__quote {
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cover-hero__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--brand-display);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.02;
  font-weight: 700;
}

.cover-hero__desc {
  margin: 0 0 1.75rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cover-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cover-hero__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: coverVisualIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.cover-hero__splash {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.cover-hero__splash--back {
  width: min(460px, 92%);
  height: min(460px, 92%);
  right: 2%;
  top: 4%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 176, 90, 0.75) 0%, rgba(255, 106, 0, 0.45) 42%, transparent 70%);
  animation: coverSplashPulse 5.5s ease-in-out infinite;
}

.cover-hero__splash--mid {
  width: min(340px, 72%);
  height: min(340px, 72%);
  right: 18%;
  top: 18%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 138, 43, 0.85) 0%, rgba(196, 71, 0, 0.35) 55%, transparent 72%);
  animation: coverSplashSpin 18s linear infinite;
  filter: blur(0.5px);
}

.cover-hero__splash--front {
  width: min(220px, 48%);
  height: min(220px, 48%);
  right: 8%;
  bottom: 18%;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 209, 154, 0.8) 0%, rgba(255, 106, 0, 0.4) 50%, transparent 72%);
  animation: coverSplashPulse 4.2s ease-in-out infinite reverse;
}

.cover-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.cover-hero__orb--a {
  width: 28px;
  height: 28px;
  right: 16%;
  top: 22%;
  background: rgba(255, 177, 90, 0.85);
  animation: coverOrbFloat 4.8s ease-in-out infinite;
}

.cover-hero__orb--b {
  width: 16px;
  height: 16px;
  right: 10%;
  bottom: 34%;
  background: rgba(255, 209, 154, 0.9);
  animation: coverOrbFloat 5.6s ease-in-out infinite reverse;
}

.cover-hero__orb--c {
  width: 12px;
  height: 12px;
  right: 42%;
  bottom: 28%;
  background: rgba(255, 106, 0, 0.8);
  animation: coverOrbFloat 3.8s ease-in-out infinite;
}

.cover-hero__cluster {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  margin-right: 0;
  margin-bottom: 0;
}

.cover-hero__cluster-img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
  animation: coverFloatA 5.2s ease-in-out infinite;
}

.cover-hero__products {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  height: 420px;
}

.cover-hero__product {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cover-hero__product img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.cover-hero__product--1 {
  width: 48%;
  left: 2%;
  bottom: 6%;
  z-index: 3;
  animation: coverFloatA 4.8s ease-in-out infinite;
}

.cover-hero__product--2 {
  width: 44%;
  right: 4%;
  bottom: 10%;
  z-index: 2;
  animation: coverFloatB 5.4s ease-in-out infinite;
}

.cover-hero__product--3 {
  width: 28%;
  left: 38%;
  bottom: 2%;
  z-index: 4;
  animation: coverFloatC 4.2s ease-in-out infinite;
}

@media (min-width: 992px) {
  .cover-hero__cluster {
    width: min(560px, 108%);
    margin-right: -1.5rem;
    margin-bottom: -1.25rem;
  }

  .trust-strip {
    margin-top: -1.75rem;
  }
}

@keyframes coverTextIn {
  from { opacity: 0; transform: translateX(-36px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes coverVisualIn {
  from { opacity: 0; transform: translateX(40px) scale(0.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes coverFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes coverFloatB {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes coverFloatC {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}

@keyframes coverSplashSpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.04); }
}

@keyframes coverSplashPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes coverOrbFloat {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50% { transform: translateY(-14px); opacity: 1; }
}

@keyframes coverPulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.12); }
}

@keyframes coverGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px; }
}

@media (max-width: 991.98px) {
  .cover-hero {
    padding: 0.75rem 0 0;
  }

  .cover-hero__card {
    min-height: 0;
    border-radius: 18px;
  }

  .cover-hero__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.35rem 1.15rem 1.75rem;
    min-height: 0;
    align-items: stretch;
  }

  .cover-hero__visual {
    min-height: 230px;
    max-height: 280px;
    order: -1;
    overflow: hidden;
    width: 100%;
    align-items: center;
  }

  .cover-hero__cluster {
    width: min(300px, 88%);
    margin: 0 auto;
  }

  .cover-hero__products {
    height: 240px;
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .cover-hero__splash--back,
  .cover-hero__splash--mid,
  .cover-hero__splash--front {
    width: min(260px, 70%);
    height: min(260px, 70%);
  }

  .cover-hero__glow--one,
  .cover-hero__glow--two {
    width: 160px;
    height: 160px;
  }

  .cover-hero__content {
    max-width: 100%;
  }

  .cover-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .cover-hero__desc {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .cover-hero__actions {
    gap: 0.65rem;
  }

  .cover-hero__actions .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .trust-strip {
    margin-top: 1rem;
    z-index: 1;
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-hero__content,
  .cover-hero__visual,
  .cover-hero__product,
  .cover-hero__cluster-img,
  .cover-hero__splash,
  .cover-hero__orb,
  .cover-hero__glow,
  .cover-hero__grid {
    animation: none !important;
  }
}

/* ========== Homepage sections (Byviva-parity) ========== */
.home-block__intro {
  max-width: 46rem;
  color: var(--brand-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-block--soft {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.9), rgba(255, 255, 255, 0.4));
  border-block: 1px solid rgba(21, 58, 121, 0.06);
}

.home-card {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(21, 58, 121, 0.08);
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.home-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(255, 106, 0, 0.12);
  color: var(--brand-orange);
  font-size: 1.45rem;
}

.home-card--promise .home-card__icon {
  background: rgba(21, 58, 121, 0.1);
  color: var(--brand-navy);
}

.home-card__title {
  margin: 0 0 0.65rem;
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.home-card__text {
  color: var(--brand-muted);
  line-height: 1.65;
}

.nationwide__panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(21, 58, 121, 0.92)),
    radial-gradient(circle at right top, rgba(255, 106, 0, 0.3), transparent 45%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.nationwide__title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--brand-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.nationwide__desc {
  margin: 0 0 1.25rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 44rem;
}

.nationwide__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.nationwide__points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #ffd2ad;
}

.nationwide__points i {
  color: var(--brand-orange);
  font-size: 1.15rem;
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-stats__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(21, 58, 121, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.home-stats__value {
  font-family: var(--brand-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.home-stats__label {
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.process-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(21, 58, 121, 0.08);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.process-card__number {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--brand-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255, 106, 0, 0.35);
  line-height: 1;
}

.process-card__title {
  margin: 0 0 0.65rem;
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.process-card__text {
  color: var(--brand-muted);
  line-height: 1.65;
}

.testimonial-card {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(21, 58, 121, 0.08);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.testimonial-card__stars {
  color: var(--brand-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.testimonial-card__quote {
  color: var(--brand-ink);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-navy), #0f2d5c);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card__person strong {
  display: block;
  color: var(--brand-navy);
}

.testimonial-card__person span {
  display: block;
  color: var(--brand-muted);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(21, 58, 121, 0.1);
  background: #fff;
  padding: 0 1.15rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.faq-item__question {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.75rem 1.1rem 0;
  font-weight: 700;
  color: var(--brand-navy);
  position: relative;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-orange);
  font-size: 1.35rem;
  font-weight: 700;
}

.faq-item[open] .faq-item__question::after {
  content: "–";
}

.faq-item__answer {
  padding: 0 0 1.15rem;
  color: var(--brand-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(21, 58, 121, 0.08);
  padding-top: 0.9rem;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .home-stats__grid {
    grid-template-columns: 1fr;
  }
}
.delivery__steps {
  display: grid;
  gap: 1rem;
}

.delivery__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 58, 121, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.delivery__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.12);
  color: var(--brand-orange);
  font-size: 1.4rem;
}

.delivery__step-title {
  margin: 0 0 0.35rem;
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.delivery__step-text {
  color: var(--brand-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.delivery__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(21, 58, 121, 0.08);
}

.delivery__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.delivery__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

.delivery__badge i {
  color: var(--brand-orange);
  font-size: 1.15rem;
}

@media (max-width: 991.98px) {
  .delivery__media {
    margin-top: 0.5rem;
  }
}

/* ========== Mobile overlap / responsive fixes ========== */
@media (max-width: 991.98px) {
  .brand-site {
    overflow-x: hidden;
  }

  .home-block--soft {
    padding: 2.5rem 0;
  }

  .home-block__intro {
    font-size: 0.98rem;
    margin-bottom: 1.25rem !important;
  }

  .home-card,
  .process-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .nationwide__panel {
    border-radius: 18px;
    padding: 1.35rem;
  }

  .nationwide__title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .nationwide__desc {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }

  .nationwide__points {
    gap: 0.55rem 0.85rem;
  }

  .nationwide .text-lg-end {
    text-align: left !important;
  }

  .nationwide .btn {
    width: 100%;
    text-align: center;
  }

  .home-stats__item {
    padding: 1.15rem 0.75rem;
  }

  .faq-item__question {
    padding-right: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-cta {
    flex-direction: column;
  }

  .faq-cta .btn {
    width: 100%;
    text-align: center;
  }

  .delivery__step {
    grid-template-columns: 44px 1fr;
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .delivery__icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .delivery__badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    max-width: none;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
  }

  .brand-panel,
  .brand .brand-card,
  .contact .brand-card,
  .partner-quote .brand-card {
    padding: 1.15rem !important;
    border-radius: 16px;
  }

  .brand-intro__actions {
    flex-direction: column;
  }

  .brand-intro__actions .btn {
    width: 100%;
    text-align: center;
  }

  .section-heading__title {
    word-break: break-word;
  }

  .cta-content__btns {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .cta-content__btns .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .cover-hero__visual {
    min-height: 190px;
    max-height: 230px;
  }

  .cover-hero__cluster {
    width: min(240px, 84%);
  }

  .cover-hero__eyebrow {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .cover-hero__quote {
    font-size: 0.86rem;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .trust-strip__item {
    padding: 0.55rem 0.65rem;
  }

  .trust-strip__label {
    font-size: 0.88rem;
  }

  .home-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-stats__value {
    font-size: 1.7rem;
  }

  .home-stats__label {
    font-size: 0.82rem;
  }

  .process-card__number {
    font-size: 1.9rem;
  }

  .delivery__media {
    border-radius: 16px;
  }

  .my-120 {
    margin-block: 48px;
  }
}

.site-topbar {
  background: #153a79;
  color: #fff;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 36px;
  padding: 0.35rem 0;
}

.site-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52%;
}

.site-topbar__link i {
  font-size: 0.95rem;
  color: #ff6a00;
  flex: 0 0 auto;
}

.site-topbar__link:hover {
  color: #ffd2ad;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
