@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #921111 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #921111;
  border-radius: 0px;
  border: 3px solid #ffffff;
}

:root {
  --dm-font: "DM Sans", sans-serif;
  --bricol-font: "Bricolage Grotesque", sans-serif;
  --anim: 0.5s all;
  --primary-color: #7a0f0e;
  --pdp-bg: #f6efef;
  --pdp-border: #e7e2e2;
  --pdp-text: #151515;
  --pdp-muted: #7a7a7a;
  --header-offset: 150px;
}



body {
  font-family: var(--bricol-font);
}

section {
  overflow-x: hidden;
  padding: 5% 0;
}

.main-container {
  padding: 0 5%;
}

button {
  border: 0;
  box-shadow: none;
  background: transparent;
}

a {
  text-decoration: none;
}

.nav-logo img {
  width: 95px;
  transition: var(--anim);
}

.header-links {
  color: #ffffff;
  height: 20px;
}

/* cart-count sec */
.cartWrapper span {
  background: burlywood;
  width: 25px;
  height: 25px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flex !important;
  display: -o-flex !important;
  display: flex !important;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  position: absolute;
  top: 74px;
  right: -2px;
}
/* cart-count sec */

/* delivery address */
.adressmainnavAll {
  margin-bottom: 20px
}

.adressmainnavAll li {
  display: inline-block;
  padding-right: 4px;
}

.adressmainnavAll a {
  border-radius: 4px;
  border: 2px #06a91a solid;
  width: 82px;
  padding: 4px;
  display: block;
  color: #06a91a;
  font-size: 17px;

  font-weight: normal;
  text-align: center;
}

.adressmainnavAll a:hover {
  border: 2px #f46d00 solid !important;
  color: #f46d00 !important;
}
/* delivery address */

.top-bar {
  color: #fff;
  font-size: 0.85rem;
}

.top-bar-gap {
  padding: 5px 0;
}

.top-bar-inner {
  text-align: center;
  background-color: #6d6458;
}

.top-bar-left {
  white-space: nowrap;
}

.top-bar-right {
  overflow: hidden;
  height: 1.4rem;
}

.top-bar-rotator {
  position: relative;
}

.top-bar-message {
  line-height: 1.4rem;
  color: #000;
}

/* vertical sliding animation */
.top-bar-rotator {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.header-links.scrolled-white,
.header-links.scrolled-white i,
.nav-left-icons i {
  color: #ffffff;
}

.header-links.scrolled-black,
.header-links.scrolled-black i,
.nav-left-icons i {
  color: #000;
}


header {
  z-index: 90;
  transition: var(--anim);
  top: 0;
  left: 0;
  position: relative;
}

.header-content {
  z-index: 90;
  transition: var(--anim);
  padding: 0 1%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

header.head-scrolling .header-content {
  background: transparent;
}

header .nav-links button {
  color: #fff;
  transition: var(--anim);
}

header .nav-links button:hover {
  color: #7b100f;
}


/* Mega menu Buttons Hover */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 900;
  padding: 32px 0;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* panels */
.mega-panel {
  display: none;
}

.mega-panel.active {
  display: block;
}

/* left side content */
.mega-columns .row {
  row-gap: 24px;
}

.mega-title {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mega-link {
  display: block;
  font-size: 14px;
  padding: 2px 0;
  color: #111111;
  text-decoration: none;
  transition: color .15s ease;
}

.mega-link:hover {
  color: var(--primary-color);
}

/* right image */
.mega-media-inner {
  position: relative;
  height: 100%;
  background-color: #f5f5f5;
  display: grid;
}

.mega-media-inner img {
  grid-area: 1 / 1;
}

.mega-cta {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: stretch;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: var(--anim);
}

.mega-cta:hover {
  background-color: var(--primary-color);
}

.top-link[data-menu].is-open {
  color: var(--primary-color);
}

/* Mega menu Buttons Hover */


.search-nav button {
  width: 180px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.nav-right i,
.nav-left-icons i {
  font-size: 20px;
  color: #fff;
}

header.head-scrolling {
  top: -65px;
}

/* header.head-scrolling {
  color: black;
  background: #fff;
  border-bottom: 0.0625rem solid #e7e6dd;
}
header.head-scrolling .nav-links button,
header.head-scrolling .search-nav button,
header.head-scrolling .nav-right i {
  color: black;
} */
/* header:hover {
  background: #fff;
} */
/* header:hover .nav-links button,
header:hover .search-nav button,
header:hover .nav-right i {
  color: black;
} */
header.head-scrolling .nav-logo img {
  width: 70px;
}

.search-button-nav {
  background-color: #ffffff1f;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 13px;
  height: 30px;
}

.search-button-nav i {
  font-size: 16px;
}

/* Banner */
.banner {
  margin-top: -20px;
}

.banner-carousel .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.banner-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 5;
}

.banner-progress-inner {
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 0.25s linear;
}

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

.banner .owl-nav button.owl-prev,
.banner .owl-nav button.owl-next {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .owl-nav button.owl-prev,
.banner .owl-nav button.owl-next {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .owl-nav i {
  font-size: 28px;
  line-height: 1;
}

.banner .owl-nav button span {
  font-size: 28px;
  line-height: 1;
}

.banner .owl-dots {
  display: none;
}


.nav-links .top-link {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* search */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  transform: translateX(-100%);
  pointer-events: none;
  transition: var(--anim);
  width: 70%;
}

.search-overlay.open {
  transform: translateX(0);
  pointer-events: auto;
}

.search-overlay-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #e5e5e5;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 0.4rem 0.75rem;
}

.search-input-wrap i {
  font-size: 1.1rem;
}

.search-input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 0.95rem;
}

.search-overlay-close {
  border: none;
  background: none;
  margin-left: 0.75rem;
  font-size: 1.4rem;
}

.search-overlay-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
}

.search-section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

/* only this div scrolls */
.search-results-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;/
}

/* product grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.search-card {
  display: block;
  text-decoration: none;
  color: #111;
  border: 1px solid #eee;
  background: #fff;
}

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

.search-card-info {
  padding: 0.5rem 0.6rem 0.75rem;
  font-size: 0.8rem;
}

.search-card-brand {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.25rem;
}

.search-card-name {
  display: block;
  margin-bottom: 0.25rem;
}

.search-card-price {
  font-weight: 600;
}

.search-results-scroll {
  flex: 1;
  overflow-y: auto;
  margin-top: 0.75rem;
  padding-right: 10px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

/* Banner */
.banner-content {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  color: #fff;
}

.banner-content a {
  background-color: var(--primary-color);
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  transition: var(--anim);
}

.banner-content a:hover {
  background-color: #111;
}

/* collections */
.bossify-category-section {
  background-color: #ffffff;
}

.bossify-category-row {
  text-align: center;
}

.bossify-img-wrapper {
  width: 160px;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.bossify-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bossify-category-link:hover .bossify-img {
  transform: scale(1.1);
}

.bossify-title {
  font-weight: 500;
  font-size: 1rem;
  color: #222222;
}

.bossify-category-link:hover .bossify-title {
  color: #c0392b;
}

.collections-show {
  height: 100vh;
}

.collections-row {
  display: flex;
  height: 100%;
}

.collections-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.collections-col a {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: underline;
  transition: var(--anim);
}

.collections-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.395);
  pointer-events: none;
}

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

.collections-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Latest Arrivals cards */
.latest-arrivals-section {
  background: #ededed;
}

.latest-arrivals-subtitle {
  font-size: 0.95rem;
  color: #555;
}

.latest-arrivals-wrapper {
  padding: 1rem 0 2rem;
}

.latest-arrival-card-inner {
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #ffffff;
}

.latest-arrival-img-wrapper {
  height: 360px;
  background: #f3eee9;
}

.latest-arrival-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.latest-arrival-name {
  font-size: 1rem;
  color: #222;
}

.latest-arrival-price {
  font-weight: 600;
  color: #000;
}

.latest-arrivals-carousel .owl-nav button.owl-prev,
.latest-arrivals-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--anim);
}

.latest-arrivals-carousel .owl-nav button.owl-prev {
  left: -18px;
}

.latest-arrivals-carousel .owl-nav button.owl-next {
  right: -18px;
}

.latest-arrivals-wrapper:hover .owl-nav button.owl-prev,
.latest-arrivals-wrapper:hover .owl-nav button.owl-next {
  opacity: 1;
}

.latest-arrivals-carousel .owl-nav button span {
  font-size: 1.4rem;
  line-height: 1;
}

.latest-arrivals-carousel .owl-nav button:focus {
  outline: none;
  box-shadow: none;
}

.latest-arrivals-viewall {
  font-size: 0.95rem;
  color: var(--primary-color);
  white-space: nowrap;
}

.latest-arrivals-viewall:hover {
  text-decoration: underline;
}

.latest-arrivals-carousel .owl-nav {
  display: block !important;
}

.latest-arrivals-carousel .owl-nav button.owl-prev:hover,
.latest-arrivals-carousel .owl-nav button.owl-next:hover {
  background-color: #000;
}

.features-strip {
  background-color: #7a0f0e17;
}

.feature-item {
  max-width: 260px;
  margin-inline: auto;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-title {
  letter-spacing: 0.05em;
  font-size: 15px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.5;
}

.vibe-section {
  background: #ededed;
}

.vibe-header {
  margin-bottom: 2.5rem;
}

/* .vibe-eyebrow {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
} */

.vibe-card-inner {
  text-align: center;
  position: relative;
}

.vibe-card-inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #2a7b9b;
  background: linear-gradient(180deg,
      rgba(42, 123, 155, 0) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.vibe-img-arch {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  background-color: #f4e3d6;
  display: block;
  border: 5px solid #ffe5dc;
}

.vibe-card-title {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vibe-carousel-wrapper .owl-nav button.owl-prev {
  left: -24px;
}

.vibe-carousel-wrapper .owl-nav button.owl-next {
  right: -24px;
}

.vibe-carousel-wrapper:hover .owl-nav button.owl-prev,
.vibe-carousel-wrapper:hover .owl-nav button.owl-next {
  opacity: 1;
}

.vibe-card-title {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 2;
  font-size: 16px;
}

/* .spotlight-section {
  background-color: #fff7ed;
} */

.spotlight-header {
  margin-bottom: 2rem;
}

.spotlight-label {
  font-size: 1.6rem;
}

.spotlight-swiper-wrapper {
  position: relative;
}

.spotlight-swiper {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.spotlight-slide {
  position: relative;
}

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

.spotlight-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 6%;
}

.spotlight-text {
  max-width: 420px;
  text-align: right;
}

.spotlight-title {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.spotlight-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.spotlight-btn {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-pagination {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spotlight-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.spotlight-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.collection-section {
  background-color: #ffffff;
}

/* header */
.collection-header {
  margin-bottom: 1.5rem;
}

.collection-title {
  font-size: 1.6rem;
}

/* nav buttons (Remix Icon) */
.collection-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.collection-nav i {
  font-size: 1.2rem;
}

/* Owl wrapper */
.collection-carousel-wrapper {
  position: relative;
  width: 100%;
}

.collection-carousel .collection-slide {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

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

.collection-slide-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.collection-carousel .owl-dots,
.collection-carousel .owl-nav {
  display: none !important;
}

.collection-nav button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.collection-nav button:hover {
  background: var(--primary-color);
}

.collection-bottom-nav {
  position: relative;
  margin-top: 0.75rem;
  width: 100%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4px;
  box-sizing: border-box;
}

.collection-dot {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.collection-bottom-active {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  /* 1 / number of slides */
  background: var(--primary-color);
  border-radius: 999px;
  transition: transform 0.3s ease;
  display: none;
}

.collection-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-footer {
  background-color: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  font-size: 0.9rem;
}

.footer-top {
  padding: 2.5rem 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.6fr;
  gap: 2rem;
  align-items: flex-start;
}

/* headings + links */
.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: 0.4rem;
}

/* footer links use primary color */
.footer-links a,
.footer-bottom-links a {
  color: #4f4f4f;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* newsletter */
.footer-newsletter .footer-text {
  margin: 0 0 0.75rem;
}

.footer-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-input {
  flex: 1;
  min-width: 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

/* use your theme button class */
.btn-primary-theme {
  border-radius: 6px;
  padding: 0.55rem 1.5rem;
  background-color: #000;
  color: #fff;
  font-size: 12px;
}

.btn-primary-theme:hover {
  color: #fff;
  background-color: var(--primary-color);
}

/* social icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: #4a4a4a;
  font-size: 1.1rem;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 0.9rem 0;
  background-color: #fdfdfd;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  color: #777;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Back To Top */
.scrollToTopBtn {
  background: var(--primary-color);
  border: none;
  color: #fff;
  opacity: 0;
  cursor: pointer;
  font-size: 30px;
  line-height: 48px;
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 1%;
  z-index: 92;
  opacity: 2;
  transform: translateY(200px);
  transition: all 0.5s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 50%;
  transition: var(--anim);
}

.scrollToTopBtn img {
  width: 30px;
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
  opacity: 1;
}

.scrollToTopBtn:hover {
  background-color: #000000;
}

.scrollToTopBtn:hover i {
  color: #fff;
  top: 5px;
}

.scrollToTopBtn:focus,
.scrollToTopBtn:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}

/* -----------  */
/* Section + background */
.fp-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  color: #fff;
  z-index: 0;
}

.fp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transition: background-image 0.6s ease-out, transform 0.6s ease-out;
}

/* Centered card */
.fp-inner {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.fp-card {
  max-width: 420px;
  width: 100%;
  background: rgba(15, 15, 20, 0.82);
  border-radius: 24px;
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.fp-badge {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.fp-title {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.fp-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.4rem;
}

.fp-image-mask {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  margin-bottom: 1.2rem;
}

.fp-image-mask img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity, transform;
}

#fp-image-current {
  opacity: 1;
  z-index: 1;
}

#fp-image-next {
  opacity: 0;
  z-index: 2;
}

.fp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.fp-meta span:first-child {
  font-weight: 600;
}

.fp-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fp-swiper .swiper-wrapper,
.fp-swiper .swiper-slide {
  height: 100%;
}

.fp-nav,
.fp-swiper .swiper-button-prev,
.fp-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: auto;
  transition: var(--anim);
}

.fp-nav:hover,
.fp-swiper .swiper-button-prev:hover,
.fp-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.fp-prev {
  left: 5%;
}

.fp-next {
  right: 5%;
}

.fp-swiper .swiper-button-prev::after,
.fp-swiper .swiper-button-next::after {
  display: none;
}

.fp-inner {
  position: relative;
  z-index: 2;
}

.fp-swiper {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fp-swiper .swiper-button-prev,
.fp-swiper .swiper-button-next {
  pointer-events: auto;
}

#fp-link {
  display: block;
  width: 100%;
  height: calc(80vh - 200px);
}

#fp-link img {
  pointer-events: none;
}

/* Testimonial section */
.video-testimonials {
  background: #f4f6ff;
}

.video-testimonials h2 {
  font-weight: 600;
}

/* Card */
.vt-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
}

.vt-card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.vt-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 70%);
}

.vt-name {
  font-size: 1rem;
}

.vt-role {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Play button */
.vt-play-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vt-play-btn i {
  font-size: 1.3rem;
}

.vt-card:hover .vt-play-btn {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* Modal styling */
.vt-modal .modal-content {
  border-radius: 18px;
  overflow: hidden;
  background: #050816;
  border: none;
}

.vt-modal-content {
  position: relative;
}

.vt-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  filter: invert(1);
}


/* Product description */
.bossify-pdp {
  background: #fff;
  position: relative;
}

/* LEFT images */
.bossify-media-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--pdp-border);
  background: #fff;
}

.bossify-media-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.bossify-pdp-info-wrapper {
  height: 100%;
}

.bossify-pdp,
.main-container {
  overflow: visible;
}

.bossify-sticky-info {
  position: sticky;
  top: 5%;
  z-index: 2;
}

/* Text */
.bossify-link {
  color: var(--pdp-muted);
  text-decoration: none;
  font-size: 14px;
}

.bossify-link:hover {
  text-decoration: underline;
}

.bossify-pdp-title {
  font-size: 1.3rem;
  color: var(--pdp-text);
}

.bossify-pdp-price {
  color: var(--pdp-muted);
  font-size: 1.1rem;
}

.bossify-label {
  color: var(--pdp-text);
  font-size: .95rem;
}

.bossify-strong {
  font-weight: 600;
}

.bossify-sku {
  font-size: .85rem;
  color: var(--pdp-muted);
}

/* Color swatches */
.bossify-swatches {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bossify-swatch {
  position: relative;
  cursor: pointer;
}

.bossify-swatch input {
  position: absolute;
  opacity: 0;
}

.bossify-swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--swatch);
  display: inline-block;
  box-shadow: 0 0 0 1px var(--pdp-border);
  border: 2px solid transparent;
}

.bossify-swatch input:checked+.bossify-swatch-dot {
  box-shadow: 0 0 0 2px var(--pdp-text);
}

/* Sizes */
.bossify-sizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bossify-size {
  position: relative;
  cursor: pointer;
}

.bossify-size input {
  position: absolute;
  opacity: 0;
}

.bossify-size span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: var(--pdp-text);
}

.bossify-size input:checked+span {
  border-color: var(--pdp-text);
}

/* Buttons */
.bossify-btn-cart {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 16px;
  letter-spacing: .08em;
  border-radius: 8px;
}

.bossify-btn-cart:hover {
  color: #fff;
  background-color: #000;
}

.bossify-btn-wishlist {
  width: 56px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  background: #fff;
}

.bossify-btn-wishlist:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.bossify-heart {
  font-size: 1.4rem;
  line-height: 1;
}

/* Description */
.bossify-desc-title {
  font-size: .95rem;
  letter-spacing: .12em;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pdp-text);
}

.bossify-desc-text {
  color: var(--pdp-muted);
  margin-top: 16px;
}

.bossify-carousel-img {
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.bossify-pdp-row {
  position: relative !important;
}

.subpage-header {
  background-color: #fff;
}

.subpage-header .header-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.subpage-header .nav-logo img {
  width: 70px;
}

.subpage-header.head-scrolling {
  top: 0;
}

.subpage-header {
  position: static !important;
}

.subpage-header .search-button-nav {
  background-color: #f5f5f5;
}

.subpage-header .top-bar-second {
  background-color: #e2e2e2 !important;
}

.subpage-header .search-nav button {
  color: #0000007a;
}

.bossify-desc-material {
  font-weight: 600;
  color: #7a7a7a;
}

.bossify-sizechart th,
.bossify-sizechart td {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  color: #666;
}

.bossify-sizechart tbody th {
  text-align: left;
  font-weight: 400;
  color: #777;
  width: 32%;
}

.bossify-desc-note {
  color: #7a7a7a;
  line-height: 1.6;
}

.bossify-desc-subtitle {
  font-size: 1rem;
  letter-spacing: .08em;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}

.bossify-desc-sku {
  font-weight: 700;
  color: #777;
}

.bossify-related-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
}

.bossify-related-card {
  color: inherit;
}

.bossify-related-img {
  position: relative;
  background: #eef2f4;
  overflow: hidden;
}

.bossify-related-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.bossify-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .85);
  display: grid;
  place-items: center;
  color: #333;
}

.bossify-related-body {
  padding: 12px 4px 0;
}

.bossify-related-name {
  font-size: .95rem;
  color: #111;
}

.bossify-related-price {
  margin-top: 2px;
  color: #666;
}

.bossify-related-swatches {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.bossify-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 0 1px #cfcfcf;
}

.bossify-dot.is-active {
  box-shadow: 0 0 0 2px #111;
}

.bossify-related-wrap .owl-nav button.owl-prev,
.bossify-related-wrap .owl-nav button.owl-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--primary-color) !important;
  color: #fff !important;
  display: grid;
  place-items: center;
  opacity: 1;
}

.bossify-related-wrap .owl-nav button.owl-prev {
  left: 12px;
}

.bossify-related-wrap .owl-nav button.owl-next {
  right: 12px;
}

.bossify-related-wrap .owl-nav button i {
  font-size: 20px;
  line-height: 1;
}

.bossify-related-wrap .owl-nav button:focus {
  outline: none;
  box-shadow: none;
}

.subpage-header .nav-links .top-link,
.subpage-header .nav-right i,
.nav-left-icons i {
  color: #000 !important;
}

/* All product  */
.bossify-plp {
  background: #fff;
}

.bossify-filter-card {
  border: 1px solid #eee;
  background: #fff;
  padding: 16px;
  height: 100%;
}

.bossify-filter-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* sort dropdown-products */
.lowwrap select {
  display: block;
  height: 34px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: none !important;
}

.bossify-hr {
  margin: 14px 0;
  opacity: .15;
}

.bossify-scrollbox {
  max-height: 200px;
  overflow-y: auto;
}

.bossify-check {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  cursor: pointer;
  user-select: none;
}

.bossify-check-input {
  width: 14px;
  height: 14px;
  accent-color: var(--primary-color);
  flex: 0 0 auto;
}

.bossify-check-label {
  color: #222;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.bossify-check-label small {
  color: #777;
}

.bossify-price-slider {
  margin-top: 8px;
  padding: 0 15px;
}

.bossify-price-values {
  display: flex;
  justify-content: space-between;
  color: #333;
  font-weight: 500;
}

.noUi-horizontal .noUi-handle {
  width: 29px;
  height: 22px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.noUi-horizontal {
  height: 7px;
}

.noUi-connect {
  background: var(--primary-color);
}

/* Right top bar */
.bossify-plp-heading {
  letter-spacing: .04em;
  font-weight: 700;
  font-size: 1rem;
}

.bossify-filter-btn {
  border: 0;
  background: transparent;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  color: #111;
}

.bossify-filter-btn i {
  font-size: 20px;
}

/* Product cards */
.bossify-product-card {
  color: inherit;
}

.bossify-product-img {
  background: #f1f1f1;
  overflow: hidden;
}

.bossify-product-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.bossify-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 0;
  align-items: flex-start;
}

.bossify-product-name {
  font-size: 14px;
  letter-spacing: .04em;
  color: #111;
  flex: 1;
}

.bossify-product-price {
  font-weight: 400;
  color: #111;
  white-space: nowrap;
  font-size: 14px;
}

.bossify-product-swatches {
  width: 100%;
  margin-top: 8px;
  display: flex;
  gap: 6px;
}

.bossify-swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #cfcfcf;
}

/* .cat-position-sticky{
  position: sticky;
  top: 10px;
  overflow-y: scroll;
  height: calc(100vh - 90px);
} */
.cat-position-sticky {
  position: sticky;
  top: 10px;
}

.bossify-filter {
  align-self: flex-start;
}

.plp-row {
  display: flex;
  flex-wrap: wrap;
}

.bossify-filter-btn-text {
  font-weight: 400;
}

/* filter */
.bossify-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1050;
}

.bossify-filter-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.bossify-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(30vw, 420px);
  background: #ffffff;
  z-index: 1055;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 40px rgba(0, 0, 0, .14);
}

.bossify-filter-drawer.is-open {
  transform: translateX(0);
}


.bossify-filter-head {
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bossify-filter-head-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bossify-filter-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.bossify-filter-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px 22px;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 80px);
}

.bossify-filter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.bossify-filter-group {
  padding: 8px 0 0;
}

.bossify-filter-sep {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 22px 0;
}

.bossify-filter-link {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 0;
  color: #111;
  text-decoration: none;
}

.bossify-filter-link:hover {
  color: var(--primary-color);
}

.bossify-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 10px;
}

.bossify-filter-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.bossify-filter-pill {
  display: inline-block;
  font-size: 13px;
  color: #111;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.bossify-filter-pill:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.bossify-filter-actions {
  margin-top: 34px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 12px 22px 22px;
}

.bossify-action-btn {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  text-decoration: none;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  transition: var(--anim);
}

.bossify-action-btn:hover {
  background-color: #000;
  color: #fff;
}

.bossify-action-btn--ghost {
  background: transparent;
}

.bossify-filter-link.is-active,
.bossify-filter-pill.is-active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.bossify-mob-filter-head {
  display: none;
}

.bossify-cat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1050;
}

/* Login Page */
.bossify-auth-box {
  padding: 32px;
  min-height: 100%;
}

.auth-border-right {
  border-right: 1px solid rgba(0, 0, 0, .10);
}

.bossify-auth-box--right {
  border-right: 0;
  padding-left: 48px;
}

.bossify-auth-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--bossify-text);
  margin-bottom: 10px;
}

.bossify-auth-subtitle {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--bossify-text);
}

.bossify-auth-text {
  margin: 0 0 22px;
  color: var(--bossify-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* form */
.bossify-field {
  margin-bottom: 18px;
}

.bossify-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--bossify-text);
}

.bossify-input {
  width: 100%;
  height: 48px;
  border: 1px solid #00000092;
  padding: 0 14px;
  outline: none;
  font-size: 14px;
  background: #fff !important;

}

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

.bossify-password {
  position: relative;
}

.bossify-input--password {
  padding-right: 46px;
}

.bossify-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .65);
}

.bossify-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 22px;
}

.bossify-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bossify-text);
}

.bossify-link {
  font-size: 14px;
  color: var(--bossify-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bossify-link:hover {
  color: var(--primary-color);
}

.bossify-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
}

.bossify-btn-primary {
  background: var(--primary-color);
  color: #fff;
  transition: var(--anim);
}

.bossify-btn-primary:hover {
  filter: brightness(0.95);
  background-color: #000;
}

.bossify-btn-outline {
  background: #fff;
  border: 1px solid #00000092;
  color: #000;
}

.bossify-btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.bf-signup__card {
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 34px;
  background: #fff;
}

.bf-signup__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}

.bf-signup__intro {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, .62);
  line-height: 1.6;
}

.bf-signup__field {
  margin-bottom: 16px;
}

.bf-signup__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.bf-signup__input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, .28);
  padding: 0 14px;
  outline: none;
  font-size: 14px;
  background: #fff;
}

.bf-signup__input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(184, 148, 74, .18);
}

.bf-signup__phone {
  position: relative;
}

.bf-signup__phoneCode {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(0, 0, 0, .70);
}

.bf-signup__input--phone {
  padding-left: 52px;
}

.bf-signup__password {
  position: relative;
}

.bf-signup__input--password {
  padding-right: 46px;
}

.bf-signup__eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .65);
}

.bf-signup__help {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, .55);
}

.bf-signup__radios {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.bf-signup__radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #111;
  cursor: pointer;
}

.bf-signup__btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.bf-signup__btn--primary {
  background: var(--primary-color);
  color: #fff;
  transition: var(--anim);
}

.bf-signup__btn--primary:hover {
  background-color: #000;
}

.bf-signup__btn--outline {
  background: #fff;
  color: #111;
  border-color: rgba(0, 0, 0, .28);
}

.bf-signup__btn--outline:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.bf-signup__btn--otp {
  height: 48px;
  letter-spacing: .12em;
}

.bf-signup__foot {
  font-size: 14px;
  color: rgba(0, 0, 0, .62);
}

.bf-signup__link {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bf-signup__link:hover {
  color: var(--primary-color);
}

/* cart */
.bf-cart-page {
  background: #f7f7f7;
  min-height: 70vh;
}

/* LEFT: Cart List */
.bf-cart-list {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.bf-cart-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.bf-cart-list__title {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  color: #0f1111;
}

.bf-cart-list__price-col {
  font-size: 14px;
  color: #565959;
}

.bf-cart-list__hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 16px 0;
}

.bf-cart-list__subtotal {
  font-size: 18px;
  text-align: right;
  padding-top: 12px;
  color: #0f1111;
}

.bf-cart-list__subtotal strong {
  font-weight: 700;
}

/* Cart Item */
.bf-cart-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: start;
}

.bf-cart-item__img img {
  width: 100%;
  border: 1px solid #ddd;
  display: block;
}

.bf-cart-item__body {
  padding-top: 4px;
}

.bf-cart-item__title {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.35;
}

.bf-cart-item__title a {
  color: #007185;
  text-decoration: none;
}

.bf-cart-item__title a:hover {
  color: #c7511f;
  text-decoration: underline;
}

.bf-cart-item__stock {
  font-size: 13px;
  margin: 4px 0;
  font-weight: 600;
}

.bf-cart-item__stock--in {
  color: #007600;
}

.bf-cart-item__stock--out {
  color: #b12704;
}

.bf-cart-item__variant {
  font-size: 13px;
  color: #565959;
  margin: 6px 0;
}

.bf-cart-item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.bf-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0f2f2;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 6px 10px;
}

.bf-cart-item__qty label {
  font-size: 13px;
  color: #0f1111;
  margin: 0;
}

.bf-cart-item__qty-select {
  border: 0;
  background: transparent;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.bf-cart-item__sep {
  color: #ddd;
  font-size: 13px;
}

.bf-cart-item__delete,
.bf-cart-item__save {
  border: 0;
  background: transparent;
  color: #007185;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.bf-cart-item__delete:hover,
.bf-cart-item__save:hover {
  color: #c7511f;
  text-decoration: underline;
}

.bf-cart-item__price {
  font-size: 20px;
  font-weight: 700;
  color: #b12704;
  padding-top: 4px;
}

/* RIGHT: Summary */
.bf-cart-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}

.bf-cart-summary__free {
  font-size: 13px;
  color: #007600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}

.bf-cart-summary__free i {
  font-size: 18px;
}

.bf-cart-summary__subtotal {
  font-size: 18px;
  color: #0f1111;
  margin: 0 0 14px;
}

.bf-cart-summary__subtotal strong {
  font-weight: 700;
}

.bf-cart-summary__gift {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #0f1111;
  margin-bottom: 18px;
  cursor: pointer;
}

.bf-cart-summary__gift input[type="checkbox"] {
  margin: 0;
}

.bf-cart-summary__btn {
  width: 100%;
  height: 48px;
  background: var(--primary-color);
  border: 1px solid #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bf-cart-summary__btn:hover {
  filter: brightness(0.92);
}

/* Promo card */
.bf-cart-promo {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.bf-cart-promo__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f1111;
}

.bf-cart-promo__text {
  font-size: 13px;
  color: #565959;
  margin: 0;
  line-height: 1.5;
}

.bf-cart-promo__text a {
  color: #007185;
  text-decoration: none;
}

.bf-cart-promo__text a:hover {
  color: #c7511f;
  text-decoration: underline;
}

.bf-promo-sticky {
  position: sticky;
  top: 0px;
}

/* Adress page */
.bf-address-page {
  background: #f7f7f7;
  min-height: 70vh;
}

.bf-address-section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}

.bf-address-section__title {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 18px;
  color: #0f1111;
}

.bf-address-section__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #0f1111;
}

/* Address Card */
.bf-address-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bf-address-card:hover {
  border-color: #b8944a;
  box-shadow: 0 0 0 2px rgba(184, 148, 74, 0.18);
}

.bf-address-card__radio {
  padding-top: 2px;
}

.bf-address-card__radio input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.bf-address-card__body {
  cursor: pointer;
}

.bf-address-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f1111;
}

.bf-address-card__text {
  font-size: 14px;
  color: #0f1111;
  margin-bottom: 4px;
  line-height: 1.4;
}

.bf-address-card__phone {
  font-size: 14px;
  color: #565959;
  margin-bottom: 10px;
}

.bf-address-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bf-address-card__link {
  border: 0;
  background: transparent;
  color: #007185;
  font-size: 13px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.bf-address-card__link:hover {
  color: #c7511f;
  text-decoration: underline;
}

.bf-address-card__sep {
  color: #ddd;
}

/* Add new address button */
.bf-address-add-btn {
  width: 100%;
  height: 48px;
  border: 1px solid #d5d9d9;
  background: #fff;
  color: #0f1111;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  transition: background 0.2s ease;
}

.bf-address-add-btn i {
  font-size: 20px;
}

.bf-address-add-btn:hover {
  background: #f7f7f7;
}

/* Use this address button */
.bf-address-use-btn {
  width: 100%;
  height: 52px;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 16px;
}

.bf-address-use-btn:hover {
  filter: brightness(0.92);
}

/* ========== RIGHT SUMMARY (reused style) ========== */

.bf-cart-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}

.bf-cart-summary__btn {
  width: 100%;
  height: 52px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 16px;
}

.bf-cart-summary__btn--deliver {
  background: var(--primary-color);
  border: #000 1px solid;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bf-cart-summary__btn:hover {
  filter: brightness(0.95);
}

.bf-cart-summary__hr {
  border: 0;
  border-top: 1px solid #e7e7e7;
  margin: 14px 0;
}

.bf-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #0f1111;
  margin-bottom: 8px;
}

.bf-cart-summary__row--free {
  color: #007600;
}

.bf-cart-summary__free-label {
  font-weight: 600;
}

.bf-cart-summary__free-val {
  font-weight: 600;
}

.bf-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #b12704;
  margin-top: 8px;
}

/* ========== ADD ADDRESS MODAL ========== */

.bf-address-modal .modal-content {
  border-radius: 8px;
}

.bf-address-modal__header {
  border-bottom: 1px solid #e7e7e7;
  padding: 18px 20px;
}

.bf-address-modal__header .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1111;
}

.bf-address-modal__body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Autofill banner */
.bf-address-autofill {
  background: #e0f3ff;
  border: 1px solid #a8d8f0;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  color: #0f1111;
}

.bf-address-autofill__btn {
  background: #fff;
  border: 1px solid #888;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: #0f1111;
  cursor: pointer;
}

.bf-address-autofill__btn:hover {
  background: #f7f7f7;
}

/* Form fields */
.bf-address-field {
  margin-bottom: 16px;
}

.bf-address-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f1111;
}

.bf-address-input {
  width: 100%;
  height: 42px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  color: #0f1111;
  outline: none;
  background: #fff;
}

.bf-address-input:focus {
  border-color: #e77600;
  box-shadow: 0 0 0 3px rgba(231, 118, 0, 0.18);
}

.bf-address-help {
  display: block;
  font-size: 12px;
  color: #565959;
  margin-top: 6px;
}

/* Checkbox */
.bf-address-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.bf-address-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.bf-address-checkbox label {
  font-size: 14px;
  color: #0f1111;
  cursor: pointer;
  margin: 0;
}

/* Delivery instructions collapsible */
.bf-address-instructions {
  margin-top: 16px;
}

.bf-address-instructions__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #007185;
  font-size: 14px;
  text-align: left;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.bf-address-instructions__toggle:hover {
  color: #c7511f;
  text-decoration: underline;
}

.bf-address-instructions__content {
  padding-top: 10px;
}

.bf-address-instructions__text {
  font-size: 13px;
  color: #565959;
  margin: 0;
}

/* Modal footer */
.bf-address-modal__footer {
  border-top: 1px solid #e7e7e7;
  padding: 16px 20px;
  display: flex;
  justify-content: flex-end;
}

.bf-address-modal__btn {
  height: 48px;
  padding: 0 24px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.bf-address-modal__btn:hover {
  filter: brightness(0.95);
}

/* responsive */
@media (max-width: 992px) {
  .bossify-filter-drawer {
    width: min(92vw, 420px);
  }

  .bossify-product-img img {
    height: 360px;
  }

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

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .collection-carousel .collection-slide {
    height: 360px;
  }

  .collection-slide-title {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 991.5px) {
  .bf-signup__card {
    padding: 22px 16px;
  }

  .bf-signup__title {
    font-size: 22px;
  }

  .bossify-auth-box {
    border-right: 0;
    padding: 22px 10px;
  }

  .bossify-auth-box--right {
    padding-left: 10px;
    padding-top: 0;
  }

  .header-links {
    height: auto;
  }

  .bossify-auth-title {
    font-size: 22px;
  }

  header.head-scrolling .header-content {
    background-color: #fff;
  }

  header.head-scrolling .header-content i {
    color: #000 !important;
  }

  header.head-scrolling .nav-logo img {
    width: 50px;
  }

  .subpage-header .nav-logo img {
    width: 50px;
  }

  .banner {
    margin-top: -20px;
  }

  .nav-right i,
  .nav-left-icons i {
    font-size: 25px;
  }

  .header-content {
    padding: 0 2%;
  }

  .nav-logo img {
    width: 85px;
  }

  .banner .owl-nav button.owl-prev,
  .banner .owl-nav button.owl-next {
    display: none;
  }

  /* Mobile menu */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #f2f2f2;
    z-index: 999;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    transform: translateX(-100%);
    transition: var(--anim);
    pointer-events: none;
  }

  .mobile-menu-overlay.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e5e5;
    background: #f5f5f5;
  }

  .mobile-menu-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
  }

  .mobile-tab {
    border: 1px solid transparent;
    background: transparent;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
  }

  .mobile-tab.active {
    border-color: #000;
    background: #fff;
  }

  .mobile-menu-close {
    border: none;
    background: none;
    font-size: 1.4rem;
  }

  .mobile-menu-body {
    overflow-y: auto;
    padding: 1.25rem 1rem;
  }

  .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-panel.active {
    display: block;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list li+li {
    margin-top: 0.75rem;
  }

  .mobile-menu-list a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    transition: var(--anim);
  }

  .mobile-menu-list a:hover {
    color: var(--primary-color);
  }

  .mobile-menu-footer {
    padding: 1rem;
    border-top: 1px solid #cdcdcd;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 16px;
  }

  .mobile-menu-footer a {
    text-decoration: none;
    color: #111;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    transition: var(--anim);
  }

  .mobile-menu-footer a i {
    font-size: 25px;
    color: var(--primary-color);
  }

  .mobile-menu-footer a:hover {
    color: var(--primary-color);
  }

  .bossify-category-section {
    margin-top: 5%;
  }

  .feature-title,
  .feature-text {
    font-size: 12px;
  }

  .banner-content {
    background-color: #0000004d;
    padding: 15px 10px;
    border-radius: 12px;
  }

  .fp-nav,
  .fp-swiper .swiper-button-prev,
  .fp-swiper .swiper-button-next {
    top: 60%;
  }

  .bossify-breadcrumb {
    margin-top: 20px;
  }

  .bossify-pdp-title {
    font-size: 1.3rem;
  }

  .bossify-btn-cart {
    font-size: .9rem;
  }

  /* catagorie */
  .bossify-mob-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin: -18px -18px 18px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .bossify-mob-filter-title {
    font-size: 14px;
    letter-spacing: .18em;
    font-weight: 700;
  }

  .bossify-mob-filter-close {
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
  }

  .bossify-filter {
    position: fixed;
    top: -23px;
    left: 0;
    height: 100vh;
    width: min(92vw, 420px);
    max-width: 520px;
    background: #fff;
    z-index: 1055;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 18px 0 40px rgba(0, 0, 0, .14);
  }

  /* open state */
  .bossify-filter.is-open {
    transform: translateX(0);
  }

  .bossify-filter-card {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 18px;
  }

  .bossify-cat-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .bossify-auth-box {
    border-right: 0;
    padding: 22px 10px;
  }

  .bossify-auth-box--right {
    padding-left: 10px;
  }

  .auth-border-right {
    border-right: 0;
  }

  .bf-cart-list__price-col {
    display: none;
  }

  .bf-cart-item {
    grid-template-columns: 120px 1fr;
    gap: 14px;
  }

  .bf-cart-item__price {
    grid-column: 1 / 3;
    text-align: right;
    font-size: 18px;
    padding-top: 0;
    margin-top: 8px;
  }

  .bf-cart-list__title {
    font-size: 24px;
  }

  .bf-address-section__title {
    font-size: 24px;
  }

  .bf-address-section__subtitle {
    font-size: 16px;
  }

  .bf-cart-summary__total {
    font-size: 18px;
  }

}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .bf-cart-list {
    padding: 14px;
  }

  .bf-cart-item {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }

  .bf-cart-item__title {
    font-size: 16px;
  }

  .bf-cart-item__price {
    font-size: 16px;
  }

  .bf-cart-list__subtotal {
    font-size: 16px;
  }

  .bf-cart-summary {
    padding: 16px;
  }

  .bf-cart-summary__subtotal {
    font-size: 16px;
  }
}

@media (max-width: 768.5px) {
  .fp-section {
    border-radius: 12px;
  }

  .vt-card-img img {
    height: 260px;
  }

  .fp-card {
    max-width: 520px;
    padding: 2.3rem 2.1rem 1.8rem;
  }

  .fp-title {
    font-size: 1.9rem;
  }

  .fp-desc {
    font-size: 1rem;
  }

  .banner {
    margin-top: 40px;
  }

  .banner-content {
    width: 85%;
    bottom: 5%;
  }

  .banner-content h2 {
    font-size: 23px;
  }

  .banner-content a {
    margin-top: 10px;
    font-size: 13px;
  }

  .banner-carousel .item img {
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .search-overlay {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .top-bar-right {
    width: 100%;
  }

  .collection-carousel .collection-slide {
    height: 340px;
  }

  .collection-slide-title {
    font-size: 1.5rem;
  }

  .spotlight-swiper {
    height: 320px;
  }

  .spotlight-text {
    max-width: 260px;
  }

  .spotlight-title {
    font-size: 1.6rem;
  }

  .collection-swiper {
    height: 340px;
  }

  .collection-slide-title {
    font-size: 1.5rem;
  }

  .collections-show {
    height: auto;
  }

  .collections-row {
    flex-direction: column;
    height: auto;
  }

  .collections-col {
    flex: 0 0 auto;
    height: 50vh;
  }

  .spotlight-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .spotlight-overlay {
    justify-content: center;
  }

  .spotlight-text {
    text-align: center;
    max-width: auto;
    color: #fff;
  }

  .collection-nav button {
    width: 30px;
    height: 30px;
  }

  .latest-arrivals-viewall {
    margin-left: 0 !important;
    font-size: 12px;
  }

  .bossify-img-wrapper {
    width: 100px;
    height: 100px;
  }

  .bossify-title {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.1;
  }

  .bossify-size span {
    min-width: 35px;
    height: 30px;
    font-size: 14px;
  }

  .bf-address-section {
    padding: 16px;
  }

  .bf-address-section__title {
    font-size: 22px;
  }

  .bf-address-card {
    padding: 14px;
    gap: 12px;
  }

  .bf-address-card__name {
    font-size: 15px;
  }

  .bf-address-card__text {
    font-size: 13px;
  }

  .bf-cart-summary {
    padding: 16px;
  }

  .bf-cart-summary__row {
    font-size: 13px;
  }

  .bf-cart-summary__total {
    font-size: 16px;
  }

  .bf-address-modal__body {
    padding: 16px;
  }

  .bf-address-autofill {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .bf-address-autofill__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-form {
    flex-direction: column;
  }

  .collection-carousel .collection-slide {
    height: 320px;
  }

  .collection-slide-title {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }

  .nav-right i,
  .nav-left-icons i {
    font-size: 25px;
  }

  header.head-scrolling .header-content .nav-right i,
  header.head-scrolling .header-content .nav-left-icons i {
    font-size: 22px;
  }

  .nav-logo img {
    width: 78px;
  }

  .bossify-category-section {
    margin-top: 10%;
  }

  .footer-bottom-inner {
    gap: 2px;
  }

  .latest-arrival-name {
    font-size: 14px;
  }

  .latest-arrival-price {
    font-weight: 400;
    font-size: 13px;
  }

  .footer-top {
    padding-bottom: 20px;
  }

  .banner-content h2 {
    font-size: 20px;
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bf-cart-list__title {
    font-size: 20px;
  }

  .bf-cart-item {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }

  .bf-cart-item__title {
    font-size: 15px;
  }

  .bf-cart-item__actions {
    gap: 8px;
  }

  .bf-cart-summary__btn {
    height: 44px;
    font-size: 13px;
  }

  .bf-address-section__title {
    font-size: 20px;
  }

  .bf-address-card {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .bf-address-card__name {
    font-size: 14px;
  }

  .bf-address-use-btn {
    height: 48px;
    font-size: 13px;
  }

  .bf-address-modal__header .modal-title {
    font-size: 18px;
  }

  .bf-address-modal__body {
    max-height: 65vh;
  }
}

@media (max-width: 390.5px) {
  .banner-content h2 {
    font-size: 16px;
  }
}

@media (max-width: 365.5px) {
  .top-bar {
    font-size: 12px;
  }
}