@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --color-primary: #405ff2;
  --color-secondary: #00b67a;
  --color-accent: #8ec5ff;
  --color-white: #ffffff;
  --color-surface: #f9fbfc;
  --color-border: #e1e1e1;
  --color-text: #050b20;
  --color-muted: #616670;
  --gradient-hero: linear-gradient(122deg, rgba(5, 11, 32, 0.84) 0%, rgba(33, 47, 114, 0.62) 58%, rgba(64, 95, 242, 0.46) 100%);

  --font-heading: "DM Sans", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.2rem;
  --radius-xl: 1.8rem;

  --shadow-card: 0 16px 36px rgba(8, 25, 44, 0.08);
  --shadow-hover: 0 22px 56px rgba(8, 25, 44, 0.16);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: radial-gradient(circle at top right, rgba(67, 176, 230, 0.08), transparent 42%), var(--color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

h1,
.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 700;
}

h2,
.section-title {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  line-height: 1.2;
}

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

a:hover,
a:focus {
  color: #004a78;
}

.py-6 {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.section-pad {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.site-header .navbar-brand {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.site-header .navbar-brand .site-logo-image {
  display: block;
  width: auto;
  height: 48px;
  max-height: 48px;
}

.site-header .navbar {

  background: rgba(255, 255, 255, 0.9) !important;
}

.hero-section {
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-subtitle {
  max-width: 42ch;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.btn {
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.theme-btn,
.header-btn-two,
.bsm-hero2-button {
  border-radius: 50px !important;
  background: #3a78ff !important;
  border-color: #3a78ff !important;
  color: #fff !important;
}

.theme-btn:hover,
.theme-btn:focus,
.header-btn-two:hover,
.header-btn-two:focus,
.bsm-hero2-button:hover,
.bsm-hero2-button:focus {
  background: #2d68ea !important;
  border-color: #2d68ea !important;
  color: #fff !important;
}

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

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 12px 26px rgba(0, 95, 153, 0.26);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #004f80;
  border-color: #004f80;
}

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

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

.service-card,
.marine-card,
.testimonial-card,
.contact-panel,
.cta-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.service-card,
.marine-card,
.testimonial-card,
.contact-panel {
  padding: var(--space-6);
}

.service-card,
.marine-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.marine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.marine-card-media {
  border-radius: calc(var(--radius-xl) - 0.3rem);
  overflow: hidden;
}

.marine-card-media img {
  transition: transform 0.45s ease;
}

.marine-card:hover .marine-card-media img {
  transform: scale(1.05);
}

.marine-card-body {
  padding-top: var(--space-5);
}

.cta-panel {
  padding: var(--space-7);
  background: linear-gradient(125deg, rgba(0, 95, 153, 0.08), rgba(67, 176, 230, 0.14));
}

.bsm-cta-section {
  padding-top: 0;
  padding-bottom: 0;
}

.bsm-cta-panel {
  --bsm-cta-bg: #f2f2f2;
  --bsm-cta-bg-image: none;
  --bsm-cta-overlay: rgba(255, 255, 255, 0.34);
  min-height: clamp(360px, 42vw, 442px);
  padding: clamp(4rem, 8vw, 6rem) 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bsm-cta-bg);
  background-image: linear-gradient(var(--bsm-cta-overlay), var(--bsm-cta-overlay)), var(--bsm-cta-bg-image);
  background-size: cover;
  background-position: center;
}

.bsm-cta-content {
  max-width: 50rem;
}

.bsm-cta-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #0a0a0a;
}

.bsm-cta-text {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.56;
  color: #4a5565;
}

.bsm-cta-button {
  min-height: 60px;
  min-width: 180px;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  border: 2px solid #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;

}

.bsm-cta-button:hover,
.bsm-cta-button:focus {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
}

.bsm-cta-section--dark .bsm-cta-panel {
  --bsm-cta-bg: #111827;
  --bsm-cta-overlay: rgba(10, 10, 10, 0.52);
}

.bsm-cta-section--dark .bsm-cta-title,
.bsm-cta-section--dark .bsm-cta-text {
  color: #f8fafc;
}

.bsm-cta-section--dark .bsm-cta-button {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

.bsm-cta-section--dark .bsm-cta-button:hover,
.bsm-cta-section--dark .bsm-cta-button:focus {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #0a0a0a;
}

.boat-sidebar {
  position: sticky;
  top: 6.5rem;
}

.swiper {
  padding-bottom: 3.25rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 20px rgba(16, 38, 63, 0.12);
}

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

.swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(16, 38, 63, 0.28);
  opacity: 1;
}

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

.site-footer {
  background: var(--color-surface) !important;
}

.home-hero {
  position: relative;
  overflow: hidden;
}



.home-hero .container {
  position: relative;
  z-index: 1;
}

.bsm-hero2-section {
  padding-top: 0;
  padding-bottom: 0;
}

.bsm-hero2-panel {
  --bsm-hero2-bg: #ffffff;
  --bsm-hero2-bg-image: none;
  --bsm-hero2-overlay: rgba(255, 255, 255, 0);
  --bsm-hero2-bg-position: center center;
  --bsm-hero2-bg-size: cover;
  --bsm-hero2-bg-repeat: no-repeat;
  min-height: clamp(520px, 57vw, 780px);
  padding: clamp(5rem, 11vw, 8.5rem) 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bsm-hero2-bg);
  background-image: linear-gradient(var(--bsm-hero2-overlay), var(--bsm-hero2-overlay)), var(--bsm-hero2-bg-image);
  background-size: var(--bsm-hero2-bg-size);
  background-position: var(--bsm-hero2-bg-position);
  background-repeat: var(--bsm-hero2-bg-repeat);
}

.bsm-hero2-content {
  max-width: 52rem;
}

.bsm-hero2-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.7rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 700;
  color: #ffffff;
}

.bsm-hero2-subtitle {
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.56;
  color: #4a5565;
}

.bsm-hero2-button {
  min-height: 60px;
  min-width: 201px;
  border-radius: 10px;
  border: 2px solid #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: "Inter", var(--font-body);
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
}

.bsm-hero2-button:hover,
.bsm-hero2-button:focus {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
}

.bsm-hero2-section--dark .bsm-hero2-panel {
  --bsm-hero2-bg: #111827;
  --bsm-hero2-overlay: rgba(10, 10, 10, 0.52);
}

.bsm-hero2-section--dark .bsm-hero2-title,
.bsm-hero2-section--dark .bsm-hero2-subtitle {
  color: #f8fafc;
}

.bsm-hero2-section--dark .bsm-hero2-button {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

.bsm-hero2-section--dark .bsm-hero2-button:hover,
.bsm-hero2-section--dark .bsm-hero2-button:focus {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #0a0a0a;
}

.wireframe-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shop-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 50px !important;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  background: var(--color-white);
}

.shop-filter-chip:hover,
.shop-filter-chip:focus {
  border-color: #DADBDD;
  color: black;
  background-color: #DADBDD;
}

.shop-filter-chip.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 991px) {
  .section-pad {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .bsm-hero2-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .bsm-hero2-panel {
    background-position: var(--bsm-hero2-bg-position-mobile, var(--bsm-hero2-bg-position));
  }

  .bsm-hero2-title {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .bsm-hero2-subtitle {
    font-size: 1rem;
  }

  .bsm-cta-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .bsm-cta-title {
    font-size: clamp(2rem, 8vw, 3.25rem);
  }

  .bsm-cta-text {
    font-size: 1rem;
  }

  .boat-sidebar {
    position: static;
  }

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

  .bsm-shop .nav.nav-tabs .nav-link {
    margin-right: 22px;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

  .service-card,
  .marine-card,
  .testimonial-card,
  .contact-panel,
  .cta-panel {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
  }

  .bsm-shop .boxcar-title {
    display: block;
  }

  .bsm-shop .boxcar-title .btn-title {
    margin-top: 12px;
    display: inline-flex;
  }

  .bsm-shop .nav.nav-tabs {
    overflow-x: auto;
    white-space: nowrap;
    display: block;
    padding-bottom: 6px;
  }
}

.site-header .navbar {
  min-height: 4.6rem;
}

.site-header .navbar-brand {
  color: #10131a;
  font-size: 1.1rem;
}

.site-header .nav-link {
  font-weight: 600;
  color: #4d5a6c;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .current-menu-item > .nav-link {
  color: #10131a;
}

.account-link,
.account-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.35rem 0.72rem;
  border: 1px solid #d8dde6;
  border-radius: 999px;
  background: #fff;
  color: #10131a;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.account-link:hover,
.account-link:focus,
.account-menu-trigger:hover,
.account-menu-trigger:focus {
  border-color: #b7c0cf;
  background: #f8fafc;
  color: #10131a;
  box-shadow: 0 6px 16px rgba(16, 19, 26, 0.08);
}

.account-link-icon,
.account-caret {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
}

.account-link-icon svg,
.account-caret svg {
  width: 100%;
  height: 100%;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-avatar {
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f8;
}

.account-avatar img {
  width: 100%;
  height: 100%;
}

.account-label {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-link-text {
  white-space: nowrap;
}

.account-menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  min-width: 10.5rem;
  padding: 0.35rem;
  border: 1px solid #e2e7f0;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 19, 26, 0.12);
  z-index: 20;
}

.account-menu:not([open]) .account-menu-dropdown {
  display: none;
}

.account-menu-item {
  display: block;
  padding: 0.52rem 0.62rem;
  border-radius: 0.45rem;
  color: #243041;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.account-menu-item:hover,
.account-menu-item:focus {
  background: #f4f7fb;
  color: #10131a;
}

.account-menu-item.is-logout {
  color: #b42318;
}

.account-menu-item.is-logout:hover,
.account-menu-item.is-logout:focus {
  background: #fef3f2;
  color: #912018;
}

.account-menu[open] .account-caret {
  transform: rotate(180deg);
}

.account-caret {
  transition: transform 0.2s ease;
}

.cart-icon-link {
  position: relative;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  color: #10131a;
}

.cart-icon-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.cart-icon-count {
  position: absolute;
  top: -0.35rem;
  right: -0.3rem;
  display: inline-flex;
  min-width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #10131a;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  line-height: 1;
  padding: 0 0.2rem;
}

.cart-icon-count.is-empty {
  display: none;
}

@media (max-width: 575.98px) {
  .account-link-text {
    display: none;
  }

  .account-link {
    width: 2.4rem;
    justify-content: center;
    padding-inline: 0;
  }

  .account-label {
    display: none;
  }

  .account-menu-trigger {
    min-width: 2.4rem;
    justify-content: center;
    padding-inline: 0.35rem;
  }

  .account-caret {
    display: none;
  }
}

.home-feature-blocks .wireframe-card {
  padding: clamp(3rem, 7vw, 5.5rem) 1.4rem;
}

.wireframe-card--center {
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  background: #fff;
}

.wireframe-card--center h2,
.wireframe-card--center p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.wireframe-card--center .btn {
  min-width: 8.8rem;
}

.wireframe-card--alt {
  background: #f3f3f3;
}

.image-text-block-section img,
.brand-story-fallback img {
  min-height: 280px;
  object-fit: cover;
}

.image-text-block-section .section-title,
.brand-story-fallback .section-title {
  max-width: 28rem;
}

.image-text-block-section .row,
.bsm-media-content-section .row {
  overflow: hidden;
  border-radius: 16px;
}

.image-text-block-section .image-column .image img,
.bsm-media-content-section .image-column .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-text-block-section .content-column .inner-column,
.bsm-media-content-section .content-column .inner-column {
  min-height: 100%;
  background: var(--bg-2, #eef1fb);
}

.image-text-block-section .read-more,
.bsm-media-content-section .read-more,
.bsm-pricing-section .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.image-text-block-section .read-more svg,
.bsm-media-content-section .read-more svg,
.bsm-pricing-section .read-more svg {
  margin-left: 0;
}

.image-text-block-section .list-style-one li,
.bsm-media-content-section .list-style-one li,
.bsm-pricing-section .list-style-one li {
  line-height: 1.45;
  padding-left: 34px;
}

.image-text-block-section .play-now,
.bsm-media-content-section .play-now {
  border-radius: 50%;
}

.bsm-feature-highlights-section .choose-us-block .icon-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.bsm-feature-highlights-section .choose-us-block .inner-box {
  min-height: 100%;
}

.boats-archive .marine-card,
.charters-archive .marine-card,
.shop-archive .marine-card {
  border-radius: 0.55rem;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.boats-archive .marine-card:hover,
.charters-archive .marine-card:hover,
.shop-archive .marine-card:hover {
  transform: none;
  box-shadow: none;
}

.boats-archive .marine-card-body,
.charters-archive .marine-card-body,
.shop-archive .marine-card-body {
  padding: 0.9rem 0 0;
}

.boats-archive .marine-card-media,
.charters-archive .marine-card-media,
.shop-archive .marine-card-media {
  border-radius: 0.5rem;
}

.boats-archive .charters-archive {
  padding-top: 4rem;
  padding-bottom: 4rem;
}



.boats-archive-header {
  margin-bottom: 2.9rem;
}

.boats-archive-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.7rem, 5.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #000;
  margin: 0;
}

.boats-archive-intro {
  font-family: "Inter", var(--font-body);
  font-size: 1.125rem;
  line-height: 1.56;
  letter-spacing: -0.02em;
  color: #4a5565;
  max-width: 52rem;
}

.boats-archive-grid {
  --bs-gutter-y: 2rem;
}

.boats-archive .marine-card--listing, .charters-archive .marine-card--listing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.boats-archive .marine-card-media--listing,
.boats-archive .marine-card-media--listing img,
.boats-archive .marine-card-media-placeholder, .charters-archive .marine-card-media--listing,
.charters-archive .marine-card-media--listing img,
.charters-archive .marine-card-media-placeholder {
  width: 100%;
  height: 370px;
}

.boats-archive .marine-card-media--listing, .charters-archive .marine-card-media--listing {
  background: #f3f4f6;
  overflow: hidden;
  border-radius: 10px;
}

.boats-archive .marine-card-media--listing img,
.boats-archive .marine-card-media-placeholder, .charters-archive .marine-card-media--listing img,
.charters-archive .marine-card-media-placeholder {
  object-fit: cover;
  display: block;
}

.boats-archive .marine-card-media-placeholder, .charters-archive .marine-card-media-placeholder {
  background: linear-gradient(135deg, #d8dce2, #eef1f5);
}

.boats-archive .marine-card-body--listing, .charters-archive .marine-card-body--listing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0;
}

.marine-card-meta-row,
.marine-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marine-card-meta,
.marine-card-location {
  font-family: "Inter", var(--font-body);
  font-size: 0.875rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #6a7282;
}

.marine-card-year {
  font-family: "Inter", var(--font-body);
  font-size: 0.875rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #364153;
  font-weight: 600;
}

.marine-card-title {
  margin: 0;
  font-family: "Inter", var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0;
  font-weight: 700;
  color: #000;
}

.marine-card-title a {
  color: inherit;
}

.marine-card-summary {
  margin: 0;
  font-family: "Inter", var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #4a5565;
  min-height: 3rem;
}

.marine-card-price {
  font-family: "Inter", var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #000;
  font-weight: 700;
}

.boats-archive .pagination {
  gap: 0.35rem;
}

.boats-archive .page-link {
  border-radius: 10px;
  border-color: #d1d7e0;
  color: #1a1f28;
}

.boats-archive .page-item.active .page-link {
  background: #111827;
  border-color: #111827;
}

.boat-back-link {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: #5b6578;
  font-weight: 500;
}

.boat-detail-panel {
  position: static;
}

.boat-gallery-thumbs .boat-thumb-item {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e9e9ec;
}

.boat-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.boat-spec-item {
  border-left: 2px solid #cfd3d9;
  padding-left: 0.7rem;
}

.boat-single-page {
  padding-top: 3rem;
}

.boat-back-link--detail {
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.boat-back-link--detail span:first-child {
  font-size: 1rem;
}

.boat-single-layout {
  align-items: flex-start;
}

.boat-gallery-main {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #edf1f4;
  padding-bottom: 0;
}

.boat-gallery-main .swiper-slide {
  height: 438px;
}

.boat-gallery-link,
.boat-gallery-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.boat-gallery-link img {
  object-fit: cover;
}

.boat-gallery-main--placeholder {
  height: 438px;
}

.boat-gallery-thumbs {
  --bs-gutter-x: 16px;
}

.boat-gallery-thumbs .boat-thumb-item {
  position: relative;
  display: block;
  width: 100%;
  height: 184px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e9e9ec;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.boat-gallery-thumbs .boat-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boat-gallery-thumbs .boat-thumb-item.is-active {
  border-color: #111827;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.12);
}

.boat-thumb-item--placeholder {
  background: #edf1f4;
}

.boat-detail-panel--figma {
  padding-top: 0.25rem;
  max-width: 556px;
}

.boat-detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: #5b6578;
  font-size: 0.95rem;
  font-weight: 500;
}

.boat-detail-title {
  margin: 0 0 0.9rem;
  color: #050607;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.boat-detail-price {
  margin-bottom: 0.3rem;
  color: #050607;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
}

.boat-detail-location {
  margin-bottom: 1.35rem;
  color: #5b6578;
  font-size: 1rem;
}

.boat-detail-description {
  margin-bottom: 2rem;
  max-width: 51ch;
  color: #667085;
  font-size: 0.98rem;
  line-height: 1.65;
}

.boat-section-heading {
  margin-bottom: 1rem;
  color: #050607;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.boat-specifications-block {
  margin-bottom: 1.9rem;
}

.boat-spec-grid--figma {
  gap: 1rem 1.1rem;
}

.boat-spec-grid--figma .boat-spec-item {
  min-height: 77px;
  border-left: 0;
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  background: #f6f7f9;
}

.boat-spec-label {
  color: #6b7280;
  font-size: 0.86rem;
  font-weight: 500;
}

.boat-spec-value {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.boat-enquiry-block {
  margin-top: 0.2rem;
}

.boat-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 60px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
}

.boat-action-btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.boat-action-btn--whatsapp:hover,
.boat-action-btn--whatsapp:focus {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #fff;
}

.boat-action-btn--email {
  background: #000;
  border-color: #000;
  color: #fff;
}

.boat-action-btn--email:hover,
.boat-action-btn--email:focus {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.boat-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.85;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.shop-filter-chip {
  background: #f2f3f5;
  border-color: transparent;
  color: #202530;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
}

.shop-filter-chip.is-active {
  background: #10131a;
  border-color: #10131a;
  color: #fff;
}



.product-detail-page .product-detail-image-wrap {
  border-radius: 0.5rem;
  overflow: hidden;
}

.product-detail-page .product-detail-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.product-feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.product-feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #22a056;
  font-weight: 700;
}

.product-cta-main,
.product-cta-secondary {
  min-width: 10.5rem;
}

.btn-dark {
  background: #050607;
  border-color: #050607;
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus {
  background: #191d24;
  border-color: #191d24;
  color: #fff;
}

.btn-outline-dark {
  border-color: #2a2f39;
  color: #181d26;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: #181d26;
  color: #fff;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1rem;
  border: 1px solid #d7dbe2;
  border-radius: 0.55rem;
  padding: 0.9rem;
  align-items: center;
  background: #fff;
}

.cart-item-image img {
  border-radius: 0.45rem;
  width: 100%;
  height: auto;
}

.cart-item-content .quantity input.qty {
  width: 4rem;
}

.cart-item-meta .remove {
  color: #d92323;
  font-size: 1rem;
}

.order-summary-panel {
  border: 1px solid #d7dbe2;
  border-radius: 0.6rem;
  padding: 1rem;
  background: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.summary-row-total {
  border-top: 1px solid #d7dbe2;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-size: 1.18rem;
}

.checkout-page .form-row,
.checkout-page .woocommerce-input-wrapper,
.checkout-page .input-text {
  width: 100%;
}

.checkout-page .input-text {
  border: 1px solid #d7dbe2;
  border-radius: 0.45rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.75rem;
}

.checkout-page .checkout-summary-panel table,
.checkout-page .checkout-summary-panel ul,
.checkout-page .checkout-summary-panel li {
  width: 100%;
}

.checkout-page .checkout-summary-panel .place-order .button,
.checkout-page .checkout-summary-panel #place_order {
  width: 100%;
  background: #050607;
  border-color: #050607;
  color: #fff;
  border-radius: 10px;
  min-height: 2.8rem;
}

.site-footer,
.bsm-footer {
  background: #050b20 !important;
  color: #e6ebf5;
}

.bsm-footer {
  padding: 4.5rem 0 2.5rem;
}

.bsm-footer__newsletter {
  margin-bottom: 3.5rem;
}

.bsm-footer__newsletter.row.align-items-center.g-4.g-lg-5{
margin-top: 30px;
}

.bsm-footer__newsletter-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.bsm-footer__newsletter-subtitle {
  font-size: 1.05rem;
  color: #95a0b3;
}

.bsm-footer__newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  padding: 0.35rem;
  background: #2a3142;
  border-radius: 999px;
}

.bsm-footer__newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.85rem 1.25rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.bsm-footer__newsletter-input::placeholder {
  color: #8b95a8;
}

.bsm-footer__newsletter-input:focus {
  outline: none;
}

.bsm-footer__newsletter-btn {
  flex: 0 0 auto;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.bsm-footer__newsletter-btn:hover,
.bsm-footer__newsletter-btn:focus {
  background: #2563eb;
  color: #fff;
}

.bsm-footer__links {
  margin-bottom: 3rem;
}

.bsm-footer__heading {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.bsm-footer__menu {
  display: grid;
  gap: 0.65rem;
}

.bsm-footer__menu a,
.bsm-footer__legal-list a {
  color: #95a0b3 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bsm-footer__menu a:hover,
.bsm-footer__menu a:focus,
.bsm-footer__legal-list a:hover,
.bsm-footer__legal-list a:focus {
  color: #fff !important;
}

.bsm-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.bsm-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsm-footer__social-link:hover,
.bsm-footer__social-link:focus {
  color: #fff !important;
  opacity: 0.85;
  transform: translateY(-1px);
}

.bsm-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bsm-footer__copyright {
  color: #95a0b3;
  font-size: 0.95rem;
}

.bsm-footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
}

.bsm-footer__legal-list li {
  display: inline-flex;
  align-items: center;
}

.bsm-footer__legal-list li + li::before {
  content: "•";
  margin: 0 0.75rem;
  color: #95a0b3;
}

@media (max-width: 991.98px) {
  .bsm-footer__newsletter-form {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .bsm-footer {
    padding: 3rem 0 2rem;
  }

  .bsm-footer__newsletter {
    margin-bottom: 2.5rem;
  }

  .bsm-footer__links {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .boats-archive, .charters-archive {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }



  .boats-archive .marine-card-media--listing,
  .boats-archive .marine-card-media--listing img,
  .boats-archive .marine-card-media-placeholder, .charters-archive .marine-card-media--listing,
  .charters-archive .marine-card-media--listing img,
  .charters-archive .marine-card-media-placeholder {
    height: 260px;
  }

  .marine-card-title {
    font-size: 1.32rem;
  }

  .marine-card-price {
    font-size: 1.75rem;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .cart-item-meta {
    text-align: left !important;
  }

  .boat-spec-grid {
    grid-template-columns: 1fr;
  }

  .boat-gallery-main .swiper-slide,
  .boat-gallery-main--placeholder {
    height: 360px;
  }

  .boat-gallery-thumbs .boat-thumb-item {
    height: 150px;
  }

  .marine-card-price-row {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .boat-single-page {
    padding-top: 2rem;
  }

  .boat-back-link--detail {
    margin-bottom: 1.4rem;
  }

  .boat-gallery-main .swiper-slide,
  .boat-gallery-main--placeholder {
    height: 280px;
  }

  .boat-gallery-thumbs {
    --bs-gutter-x: 12px;
  }

  .boat-gallery-thumbs .boat-thumb-item {
    height: 100px;
    border-radius: 0.6rem;
  }

  .boat-detail-panel--figma {
    max-width: none;
  }

  .boat-detail-meta-row {
    font-size: 0.88rem;
  }

  .boat-detail-location,
  .boat-detail-description {
    margin-bottom: 1.2rem;
  }

  .boat-spec-grid--figma .boat-spec-item {
    min-height: auto;
  }
}

/* WooCommerce */


.shop-archive--figma .shop-archive-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  font-weight: 700;
}

.shop-archive--figma .shop-archive-intro {
  color: #4a5565;
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 48rem;
}

.shop-archive--figma ul.products {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-archive--figma ul.products::before,
.shop-archive--figma ul.products::after {
  display: none;
}

.shop-archive--figma ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.marine-card--shop {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.marine-card-media--shop {
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 1;
}

.marine-card-media--shop img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.marine-card-body--shop {
  padding: 0.9rem 0 0;
}

.marine-card-title--shop {
  font-family: "Inter", var(--font-heading);
  font-size: 1.56rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.marine-card-title--shop a {
  color: #0a0a0a;
}

.marine-card-price--shop {
  font-family: "Inter", var(--font-heading);
  font-size: 2.15rem;
  line-height: 1.2;
  color: #0a0a0a;
  font-weight: 700;
}

.shop-archive--figma .pagination {
  margin-top: 2.2rem;
  justify-content: center;
  gap: 0.45rem;
}

.shop-archive--figma .page-link {
  border-radius: 10px;
  border: 1px solid #d3dae3;
  color: #1a1f28;
}

.shop-archive--figma .page-item.active .page-link,
.shop-archive--figma .page-link:hover,
.shop-archive--figma .page-link:focus {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.product-detail-page--figma {
  padding-top: 3.9rem;
  padding-bottom: 5.2rem;
  position: relative;
}



.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4a5565;
  font-size: 1rem;
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 10;
}

.product-detail-page--figma .product-detail-image-wrap {
  background: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
}

.product-detail-page--figma .product-detail-image-wrap img {
  width: 100%;
  height: 584px;
  object-fit: cover;
  display: block;
}

.product-detail-category {
  color: #6a7282;
  font-size: 0.875rem;
  line-height: 1.4;
}

.product-detail-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.25rem, 3.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  font-weight: 700;
}

.product-detail-price {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0a0a0a;
}

.product-detail-description {
  color: #364153;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 34rem;
}

.product-detail-description p:last-child {
  margin-bottom: 0;
}

.product-detail-description--custom-ticks ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.product-detail-description--custom-ticks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
}

.product-detail-description--custom-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 15px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='11' viewBox='0 0 15 11' fill='none'%3E%3Cpath d='M14.1666 0.833252L4.99992 9.99992L0.833252 5.83325' stroke='%2300A63E' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.product-detail-features-heading {
  font-family: "Inter", var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.35;
  color: #0a0a0a;
  font-weight: 600;
}

.product-feature-list li {
  color: #364153;
  margin-bottom: 0.55rem;
}

.product-cta-main,
.product-cta-secondary {
  min-height: 60px;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
}

.product-cta-main {
  min-width: 260px;
}

.product-cta-secondary {
  min-width: 150px;
  border-width: 2px;
}

.cart-page {
  padding-top: 3.9rem;
  padding-bottom: 5rem;
}



.cart-page-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.2rem, 3.7vw, 3.25rem);
  line-height: 1.1;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.cart-item-card {
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 1.5rem;
  border-radius: 10px;
  border-color: #e5e7eb;
  padding: 1rem;
}

.cart-item-image img {
  height: 128px;
  object-fit: cover;
}

.cart-item-title {
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}

.cart-item-title a {
  color: #0a0a0a;
}

.cart-item-price,
.cart-item-subtotal {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0a0a0a;
}

.cart-item-qty-row .quantity {
  margin: 0;
}

.cart-item-qty-row .quantity .qty {
  border-radius: 10px;
  border: 1px solid #d1d5dc;
  min-height: 34px;
}

.cart-item-meta .remove {
  text-decoration: none;
}

.order-summary-panel--cart,
.checkout-summary-panel {
  border-color: #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
}

.order-summary-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: #0a0a0a;
}

.summary-row {
  color: #4a5565;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.summary-row strong {
  color: #0a0a0a;
  font-weight: 600;
}

.summary-row-total {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 2rem;
}

.summary-row-total strong {
  font-weight: 700;
}

.order-summary-primary {
  min-height: 56px;
  border-radius: 10px;
  font-size: 1.125rem;
}

.order-summary-secondary {
  text-decoration: none;
  color: #4a5565 !important;
}

.checkout-page {
  padding-top: 3.9rem;
  padding-bottom: 6rem;
}



.checkout-title {
  font-family: "Inter", var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0a0a0a;
}

.checkout-subtitle {
  font-family: "Inter", var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0a0a0a;
}

.checkout-payment-heading::before {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.62rem;
  border: 2px solid #0a0a0a;
  border-radius: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.checkout-page .form-row label {
  margin-bottom: 0.45rem;
  color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 600;
}

.checkout-page .input-text,
.checkout-page select,
.checkout-page textarea {
  border: 1px solid #d1d5dc;
  border-radius: 10px;
  min-height: 50px;
  padding: 0.65rem 0.95rem;
  box-shadow: none;
}

.checkout-secure-note {
  color: #4a5565;
  font-size: 0.875rem;
}

.checkout-summary-panel #order_review_heading {
  display: none;
}

.checkout-summary-panel .shop_table {
  border: 0;
  margin-bottom: 1rem;
}

.checkout-summary-panel .shop_table th,
.checkout-summary-panel .shop_table td {
  border: 0;
  padding: 0.35rem 0;
  color: #4a5565;
}

.checkout-summary-panel .shop_table tfoot th,
.checkout-summary-panel .shop_table tfoot td {
  color: #0a0a0a;
  font-weight: 700;
}

.checkout-summary-panel #payment {
  background: transparent;
  border: 0;
}

.checkout-summary-panel #place_order {
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  font-size: 1.125rem;
  background: #0a0a0a;
  border-color: #0a0a0a;
}

@media (max-width: 1199px) {
  .shop-archive--figma ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marine-card-media--shop {
    aspect-ratio: 1;
  }

  .marine-card-media--shop img {
    height: 100%;
  }

  .product-detail-page--figma .product-detail-image-wrap img {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .shop-archive--figma {
    padding-top: 2.6rem;
    padding-bottom: 3.2rem;
  }

  .shop-archive--figma ul.products {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .marine-card-media--shop {
    aspect-ratio: 1;
  }

  .marine-card-media--shop img {
    height: 100%;
  }

  .product-detail-page--figma .product-detail-image-wrap img {
    height: 320px;
  }

  .product-cta-main,
  .product-cta-secondary {
    width: 100%;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cart-item-image img {
    height: 210px;
  }

  .checkout-subtitle,
  .order-summary-title {
    font-size: 1.5rem;
  }
}

/* Shop Filter AJAX Styles */
.shop-filter-chip {
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background-color: #f3f4f6;
  color: #000;
  font-weight: 600;
  border: 2px solid transparent;
}


.shop-filter-chip.is-active {
  background-color: #000;
  color: #fff;
}

.shop-products-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.shop-products-wrapper.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Home Style 1 migration layer */
.bsm-container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* .site-main {
  padding-top: 114px;
} */

.home .site-main {
  padding-top: 0;
}

.site-header.bsm-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: 0;
  z-index: 999;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.bsm-header.bsm-header--solid,
.site-header.bsm-header.is-scrolled {
  position: fixed !important;
  background: var(--theme-color-dark, #050b20);
  box-shadow: 0 8px 20px rgba(5, 11, 32, 0.22);
  z-index: 9999;
}

header.site-header.bsm-header.header-style-v1.bsm-header--solid,
header.site-header.bsm-header.header-style-v1.is-scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

body.admin-bar .site-header.bsm-header {
  top: 32px;
}

.site-header.bsm-header .header-inner .inner-container {
  max-width: 1829px;
  margin: 0 auto;
  padding: 0 15px;
}

.site-header.bsm-header .bsm-navbar {
  background: transparent !important;
  border-bottom: 0 !important;
  min-height: 82px;
  padding: 25px 0;
}

.home .site-header.bsm-header.bsm-header--overlay .bsm-navbar {
  background: transparent !important;
}

.home .site-header.bsm-header.is-scrolled .bsm-navbar,
.home .site-header.bsm-header.bsm-header--overlay.is-scrolled .bsm-navbar {
  background: var(--theme-color-dark, #050b20) !important;
}

.site-header.bsm-header .navbar-brand .site-logo-image {
  height: 41px;
  max-height: 41px;
}

.site-header.bsm-header .navbar-nav.navigation {
  gap: 1.65rem;
}

.site-header.bsm-header .navbar-nav.navigation > li > a,
.site-header.bsm-header .navbar-nav.navigation > li > .nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.site-header.bsm-header .navbar-nav.navigation > li.current-menu-item > a,
.site-header.bsm-header .navbar-nav.navigation > li.current-menu-item > .nav-link,
.site-header.bsm-header .navbar-nav.navigation > li > a:hover,
.site-header.bsm-header .navbar-nav.navigation > li > .nav-link:hover {
  color: #cdd7ff;
}

.site-header.bsm-header .navbar-nav .sub-menu {
  list-style: none;
  margin: 12px 0 0;
  padding: 16px 18px;
  min-width: 220px;
  border-radius: 16px;
  border: 1px solid #e9edf5;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(64, 79, 104, 0.14);
}

.site-header.bsm-header .navbar-nav .sub-menu a {
  color: #050b20;
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
}

.site-header.bsm-header .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid white;
  border-radius: 0.65rem;
  box-shadow: none;
}

.site-header.bsm-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(64, 95, 242, 0.35);
}

.site-header.bsm-header .navbar-toggler-icon {
  width: 1.15rem;
  height: 1.15rem;
  filter: brightness(0) invert(1);
}

.site-header.bsm-header .right-box {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header.bsm-header .account-link,
.site-header.bsm-header .account-menu-trigger {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: none;
}

.site-header.bsm-header .account-link:hover,
.site-header.bsm-header .account-link:focus,
.site-header.bsm-header .account-menu-trigger:hover,
.site-header.bsm-header .account-menu-trigger:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: none;
}

.site-header.bsm-header .account-avatar {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.bsm-header .account-menu-dropdown {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0b1224;
  box-shadow: 0 16px 36px rgba(2, 6, 18, 0.45);
}

.site-header.bsm-header .account-menu-item {
  color: #dce4ff;
}

.site-header.bsm-header .account-menu-item:hover,
.site-header.bsm-header .account-menu-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header.bsm-header .account-menu-item.is-logout {
  color: #fda29b;
}

.site-header.bsm-header .account-menu-item.is-logout:hover,
.site-header.bsm-header .account-menu-item.is-logout:focus {
  background: rgba(180, 35, 24, 0.18);
  color: #fecaca;
}

.site-header.bsm-header .cart-icon-link {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.site-header.bsm-header .cart-icon-link:hover,
.site-header.bsm-header .cart-icon-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-header.bsm-header .cart-icon-count {
  background: #405ff2;
}

:root {
  --bsm-header-offset: 90px;
  --bsm-navbar-height: var(--bsm-header-offset);
  --bsm-section-top-offset: var(--bsm-header-offset);
  --bsm-section-top-offset-lg: var(--bsm-header-offset);
}

.bsm-section-header-offset {
  position: relative;
  z-index: 999;
  margin-top: var(--bsm-section-top-offset, var(--bsm-header-offset, 90px)) !important;
}

.bsm-section-header-offset--lg {
  margin-top: var(--bsm-section-top-offset-lg, var(--bsm-header-offset, 90px)) !important;
}

@media (max-width: 991.98px) {
  body:not(.home):not(.bsm-wc-page):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account):not(.bsm-auth-app):not(.bsm-account-app) .site-main {
    padding-top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .site-header.bsm-header.header-style-v1 .header-inner .right-box > a.cart-icon-link,
  .site-header.bsm-header.header-style-v1 .header-inner .right-box > a.account-link {
    display: inline-flex !important;
    align-items: center;
  }

  .site-header.bsm-header.header-style-v1 .header-inner .right-box > details.account-menu {
    display: block !important;
  }
}

.bsm-title {
  position: relative;
  margin-bottom: 2rem;
}

.bsm-title h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: #050b20;
}

.bsm-title .text {
  margin-top: 0.9rem;
  color: #616670;
}

.bsm-title .btn-title {
  position: absolute;
  right: 0;
  top: 12px;
  color: #050b20;
  font-size: 15px;
  font-weight: 600;
}

.bsm-title .btn-title svg {
  margin-left: 8px;
}

.section-radius-top {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: -80px;
  overflow: hidden;
}

.section-radius-bottom {
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}

.home .section-radius-top, .home-hero + .section-radius-top{
  margin-top: -70px !important;
}


.bg-1 {
  background: #f9fbfc;
}

.bsm-bsm-hero .bsm-hero2-panel {
  min-height: 100vh;
  padding-top: 0rem;
  padding-bottom: 6rem;
}

.bsm-bsm-hero .bsm-hero2-title {
  font-size: clamp(2.6rem, 5.3vw, 4.35rem);
  letter-spacing: -0.02em;
}

.bsm-bsm-hero .bsm-hero2-preamble {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.bsm-bsm-hero .bsm-hero2-button {
  min-height: 54px;
  padding-inline: 28px;
}

.bsm-bsm-hero .bsm-hero2-links-wrap {
  margin-top: 140px;
}

.bsm-bsm-hero .bsm-hero2-links-label {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.bsm-bsm-hero .bsm-hero2-model-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bsm-bsm-hero .bsm-hero2-model-links li {
  margin: 0;
}

.bsm-bsm-hero .bsm-hero2-model-links li a {
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 30px;
}

.bsm-bsm-hero .bsm-hero2-model-links li a:hover,
.bsm-bsm-hero .bsm-hero2-model-links li a:focus {
  background: rgba(255, 255, 255, 0.31);
  color: #fff;
}

.bsm-premium-brands-section {
  padding: 120px 0;
}

.bsm-premium-brands-section .bsm-brands-swiper {
  padding-bottom: 2.6rem;
}

.bsm-premium-brands-section .swiper-slide {
  height: auto;
}

.bsm-premium-brands-section .boats-block .inner-box {
  text-align: center;
  border-radius: 16px;
  border: 1px solid #e1e1e1;
  background: #fff;
  height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  padding: 16px 24px;
}

.bsm-premium-brands-section .boats-block .inner-box.bsm-brand-card-link {
  color: inherit;
  text-decoration: none;
}

.bsm-premium-brands-section .boats-block .inner-box:hover {
  border-color: #405ff2;
  transform: translateY(-3px);
}

.bsm-premium-brands-section .boats-block .image {
  margin-bottom: 14px;
}

.bsm-premium-brands-section .boats-block .image img {
  max-height: 100px;
  width: auto;
}

.bsm-premium-brands-section .swiper-pagination-bullet {
  background: rgba(5, 11, 32, 0.3);
}

.bsm-premium-brands-section .swiper-pagination-bullet-active {
  background: #405ff2;
}

.bsm-premium-brands-section .boats-block .title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #050b20;
}

.bsm-premium-brands-section .boats-block .title a,
.bsm-premium-brands-section .boats-block .image a {
  color: inherit;
  text-decoration: none;
}

.bsm-premium-brands-section .boats-block .title a:hover,
.bsm-premium-brands-section .boats-block .image a:hover {
  color: #405ff2;
}

.bsm-boats-section {
  padding-top: 100px;
  padding-bottom: 110px;
}

.bsm-featured-boats-section {
  padding-top: 110px;
  overflow-x: clip;
}

.bsm-featured-boats-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.bsm-featured-boats-heading .bsm-title {
  max-width: 700px;
  margin-bottom: 0;
}

.bsm-featured-boats-heading .btn-title {
  position: static;
  align-self: center;
  white-space: nowrap;
}

.bsm-featured-boats-heading .text {
  max-width: 560px;
}

.bsm-featured-boats-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 7px;
  border: 1px solid #dbe1ea;
  border-radius: 999px;
  background: #ffffff;
  margin-bottom: 2rem;
}

.bsm-featured-boats-tabs::-webkit-scrollbar {
  display: none;
}

.bsm-featured-boats-tab {
  border: 0;
  background: transparent;
  color: #616670;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.bsm-featured-boats-tab:hover {
  color: #050b20;
}

.bsm-featured-boats-tab.is-active {
  background: #050b20;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(5, 11, 32, 0.14);
}

.bsm-featured-boats-panels {
  margin-top: 0.5rem;
}

.bsm-featured-boats-swiper {
  overflow: hidden;
}

.bsm-featured-boats-swiper .swiper-slide {
  height: auto;
}

.bsm-featured-boats-panel[hidden] {
  display: none !important;
}

.bsm-featured-boat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #dce3eb;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bsm-featured-boat-card:hover {
  transform: translateY(-4px);
  border-color: #c7d1e3;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.bsm-featured-boat-card__media-wrap {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.bsm-featured-boat-card__media {
  display: block;
  position: relative;
  aspect-ratio: 336 / 225;
  background: #dfe6ee;
  overflow: hidden;
}

.bsm-featured-boat-card__media img,
.bsm-featured-boat-card__media .marine-card-media-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsm-featured-boat-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.02) 0%, rgba(5, 11, 32, 0.38) 100%);
  pointer-events: none;
}

.bsm-featured-boat-card__media-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.bsm-featured-boat-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.bsm-featured-boat-card__badge {
  padding: 0 16px;
  color: #050b20;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bsm-featured-boat-card__price-pill {
  margin-left: auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  color: #050b20;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bsm-featured-boat-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.bsm-featured-boat-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: #616670;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bsm-featured-boat-card__title {
  margin: 0 0 0.75rem;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.bsm-featured-boat-card__title a {
  color: #050b20;
  text-decoration: none;
}

.bsm-featured-boat-card__summary {
  margin: 0 0 1.35rem;
  color: #616670;
  font-size: 15px;
  line-height: 1.7;
}

.bsm-featured-boat-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid #edf1f5;
}

.bsm-featured-boat-card__spec {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  min-width: 0;
}

.bsm-featured-boat-card__spec-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(64, 95, 242, 0.09);
  color: #405ff2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bsm-featured-boat-card__spec-label,
.bsm-featured-boat-card__price-label {
  display: block;
  color: #616670;
  font-size: 12px;
  line-height: 1.35;
}

.bsm-featured-boat-card__spec-value {
  display: block;
  color: #050b20;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.bsm-featured-boat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  margin-top: 1.35rem;
  border-top: 1px solid #edf1f5;
}

.bsm-featured-boat-card__price {
  color: #050b20;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}

.bsm-featured-boat-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #405ff2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bsm-featured-boat-card__link:hover {
  color: #ffffff;
  background: #2649ee;
}

.bsm-featured-boats-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.bsm-featured-boats-controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.bsm-featured-boats-controls .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(5, 11, 32, 0.2);
  opacity: 1;
}

.bsm-featured-boats-controls .swiper-pagination-bullet-active {
  background: #405ff2;
}

.bsm-featured-boats-controls__arrows {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.bsm-featured-boats-controls .swiper-button-prev,
.bsm-featured-boats-controls .swiper-button-next {
  position: static;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid #dce3eb;
  border-radius: 50%;
  background: #ffffff;
  color: #050b20;
}

.bsm-featured-boats-controls .swiper-button-prev::after,
.bsm-featured-boats-controls .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.bsm-featured-boats-controls .swiper-button-prev:hover,
.bsm-featured-boats-controls .swiper-button-next:hover {
  border-color: #405ff2;
  color: #405ff2;
}

.bsm-featured-boats-controls .swiper-button-prev:focus-visible,
.bsm-featured-boats-controls .swiper-button-next:focus-visible,
.bsm-featured-boats-tab:focus-visible,
.bsm-featured-boat-card__link:focus-visible,
.bsm-featured-boat-card__media-wrap:focus-visible {
  outline: 2px solid #405ff2;
  outline-offset: 3px;
}

.bsm-boats-section .marine-card {
  border-radius: 16px;
  border-color: #e1e1e1;
  box-shadow: none;
  background: #fff;
}

.bsm-boats-section .marine-card-body {
  padding: 1.1rem 1rem 1.2rem;
}

.bsm-boats-section .marine-card-title,
.bsm-boats-section .h5,
.bsm-boats-section .h6 {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Featured Boats Tab Styling */
.bsm-featured-boats-tabs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  scroll-behavior: smooth;
}

.bsm-featured-boats-tabs::-webkit-scrollbar {
  height: 4px;
}

.bsm-featured-boats-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.bsm-featured-boats-tabs::-webkit-scrollbar-thumb {
  background: #c7d1e3;
  border-radius: 2px;
}

.bsm-featured-boats-tab {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #dce3eb;
  border-radius: 8px;
  background: #ffffff;
  color: #50596c;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bsm-featured-boats-tab:hover {
  border-color: #405ff2;
  color: #405ff2;
  background: rgba(64, 95, 242, 0.03);
}

.bsm-featured-boats-tab.is-active {
  border-color: #405ff2;
  background: #405ff2;
  color: #ffffff;
}

/* Boat Card Metadata */
.bsm-featured-boat-card .card-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.bsm-featured-boat-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsm-featured-boat-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex-grow: 1;
}

.bsm-featured-boat-card .card-body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.bsm-featured-boat-card .card-body h3 a {
  color: #050b20;
  text-decoration: none;
}

.bsm-featured-boat-card .card-body h3 a:hover {
  color: #405ff2;
}

.boat-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1f5;
}

.boat-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #50596c;
}

.boat-meta .meta-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bsm-featured-boat-card .text-primary {
  color: #405ff2 !important;
  font-size: 18px;
  font-weight: 700;
}

.bsm-featured-boat-card .btn {
  margin-top: auto;
}

.bsm-bsm-shop-list,
.bsm-bsm-cart,
.bsm-bsm-checkout,
.woocommerce-account .site-main {
  background: #f9fbfc;
}

.bsm-bsm-shop-list .shop-archive-title {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.12;
}

.bsm-bsm-shop-list ul.products li.product .marine-card-media--shop,
.bsm-bsm-shop-single .product-detail-image-wrap,
.bsm-bsm-cart .cart-item-card,
.bsm-bsm-checkout .order-summary-panel {
  border-radius: 16px;
}

.bsm-bsm-cart .cart-item-card,
.bsm-bsm-cart .order-summary-panel,
.bsm-bsm-checkout .order-summary-panel,
.bsm-bsm-checkout .checkout .input-text,
.bsm-bsm-checkout .checkout select,
.bsm-bsm-checkout .checkout textarea {
  border-color: #e1e1e1;
  background: #fff;
}

.bsm-bsm-cart .order-summary-title,
.bsm-bsm-checkout .checkout-title,
.bsm-bsm-checkout .checkout-subtitle {
  font-weight: 700;
}

.bsm-bsm-cart .order-summary-primary,
.bsm-bsm-checkout #place_order,
.woocommerce-account .woocommerce-form button.button,
.woocommerce-account .woocommerce-Button.button {
  min-height: 54px;
  border-radius: 12px;
  background: #405ff2;
  border-color: #405ff2;
  color: #fff;
}

body.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: none;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.woocommerce-account .woocommerce form .form-row input.input-text,
.woocommerce-account .woocommerce form .form-row textarea,
.woocommerce-account .woocommerce form .form-row select {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  min-height: 52px;
  padding: 0.65rem 0.9rem;
}

.woocommerce-account .woocommerce-LostPassword {
  margin-top: 0.8rem;
}

@media (max-width: 1199px) {
  .site-header.bsm-header .navbar-nav.navigation {
    gap: 1rem;
  }

  .bsm-premium-brands-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

@media (max-width: 991px) {
  .site-header.bsm-header .bsm-navbar {
    min-height: 72px;
    padding: 10px 0;
  }

  .site-header.bsm-header .navbar-collapse {
    margin-top: 0.35rem;
    padding: 0.65rem 0 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.bsm-header .navbar-collapse.show,
  .site-header.bsm-header .navbar-collapse.collapsing {
    background: rgba(5, 11, 32, 0.98);
    border-radius: 0 0 14px 14px;
  }

  .site-header.bsm-header .navbar-nav.navigation {
    gap: 0.1rem;
  }

  .site-header.bsm-header .navbar-nav.navigation > li > a,
  .site-header.bsm-header .navbar-nav.navigation > li > .nav-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 0.35rem;
    border-radius: 0.55rem;
  }

  .site-header.bsm-header .navbar-nav.navigation > li > a:hover,
  .site-header.bsm-header .navbar-nav.navigation > li > .nav-link:hover,
  .site-header.bsm-header .navbar-nav.navigation > li.current-menu-item > a,
  .site-header.bsm-header .navbar-nav.navigation > li.current-menu-item > .nav-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.bsm-header .navbar-nav .sub-menu {
    position: static;
    margin: 0.25rem 0 0.5rem;
    padding: 0.35rem 0.75rem;
    border: 0;
    border-left: 2px solid rgba(64, 95, 242, 0.65);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.bsm-header .navbar-nav .sub-menu a {
    color: #c8d4ff;
    padding: 0.45rem 0;
  }

  .site-header.bsm-header .navbar-nav .sub-menu a:hover,
  .site-header.bsm-header .navbar-nav .sub-menu a:focus {
    color: #ffffff;
  }

  .site-header.bsm-header .right-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.bsm-header .right-box > a.cart-icon-link,
  .site-header.bsm-header .right-box > a.account-link,
  .site-header.bsm-header .right-box > details.account-menu {
    display: inline-flex !important;
  }

  .section-radius-top {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
  }

  .section-radius-bottom {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .bsm-title .btn-title {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .bsm-bsm-hero .bsm-hero2-panel {
    min-height: 100vh;
  }
  .home-hero.section-pad{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .bsm-boats-section {
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .bsm-featured-boats-heading {
    flex-direction: column;
  }

  .bsm-featured-boat-card__title {
    font-size: 21px;
  }

  .bsm-featured-boat-card__specs {
    grid-template-columns: 1fr;
  }

  .bsm-premium-brands-section .boats-block .inner-box {
    height: 160px;
    margin-bottom: 1rem;
  }

  .bsm-bsm-hero .bsm-hero2-model-links {
    justify-content: center;
  }

  .bsm-shop {
    background: #134463;
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .bsm-shop .boxcar-title h2,
  .bsm-shop .btn-title,
  .bsm-shop .nav-tabs .nav-link,
  .bsm-shop .car-block-two .content-box .title a,
  .bsm-shop .car-block-two .content-box .text,
  .bsm-shop .car-block-two .content-box ul li,
  .bsm-shop .car-block-two .btn-box span,
  .bsm-shop .car-block-two .btn-box small {
    color: #fff;
  }

  .bsm-shop .btn-title svg path {
    fill: currentColor;
  }

  .bsm-shop .nav.nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .bsm-shop .nav.nav-tabs .nav-link {
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 8px;
    margin-right: 36px;
  }

  .bsm-shop .nav.nav-tabs .nav-link.active {
    border-bottom: 3px solid #405ff2;
  }

  .bsm-shop .tab-content {
    margin-top: 28px;
  }

  .bsm-shop .car-block-two .inner-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .bsm-shop .car-block-two .image-box {
    overflow: hidden;
  }

  .bsm-shop .car-block-two .image-box .image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .bsm-shop .car-block-two .image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;


  }

    .car-block-two .inner-box .image-box .image img{
      width: 276px !important;
        height: 367px !important;;
    }

  .bsm-shop .car-block-two .icon-box {
    background: #fff;
  }

  .bsm-shop .car-block-two .content-box ul li {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .bsm-shop .car-block-two .content-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .bsm-shop .car-block-two .content-box ul {
    flex-grow: 1;
  }

  .bsm-shop .car-block-two .content-box ul li {
    color: #405ff2;
  }

  .bsm-shop .car-block-two .content-box ul li i {
    color: #405ff2;
    margin-right: 4px;
  }

  .bsm-shop .car-block-two .btn-box .details {
    color: #fff;
  }

  .bsm-shop .car-block-two .btn-box .details svg path {
    fill: #fff;
  }

  .bsm-shop__cta {
    margin-top: 22px;
    text-align: center;
  }

  .bsm-shop__button {
    min-height: 46px;
    border-radius: 50px;
    padding-inline: 26px;
    background: #3a78ff;
    border-color: #3a78ff;
  }
}

@media (max-width: 767px) {
  body.admin-bar .site-header.bsm-header {
    top: 46px;
  }

  .bsm-bsm-shop-list,
  .bsm-bsm-cart,
  .bsm-bsm-checkout {
    padding-top: 2.75rem;
    padding-bottom: 3.4rem;
  }

  .bsm-featured-boats-tabs {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bsm-featured-boats-tab {
    flex: 1 1 50%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bsm-featured-boat-card__body {
    padding: 20px;
  }

  .bsm-featured-boat-card__footer,
  .bsm-featured-boats-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .bsm-featured-boats-controls__arrows {
    justify-content: space-between;
  }

  .bsm-featured-boats-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .bsm-featured-boats-heading .btn-title {
    margin-top: 0.25rem;
  }

  .woocommerce-account .woocommerce {
    margin: 2.5rem auto;
    padding: 1.25rem;
  }
}

.bsm-boats-sale-section .car-block-three .content-box .text {
  min-height: 22px;
}

.bsm-boats-sale-section .bsm-boat-card-footer {
  align-items: flex-end;
  gap: 0.8rem;
}

.bsm-boats-sale-section .bsm-vat-line {
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: #6a7282;
}

.bsm-boats-sale-section .bsm-vat-line span {
  font-weight: 600;
}

.bsm-boats-sale-section .bsm-vat-line .is-included {
  color: #3563e9;
}

.bsm-boats-sale-section .bsm-vat-line .is-not-included {
  color: #1d2433;
}

.bsm-boats-sale-section .bsm-boats-sale-cta {
  margin-top: 70px;
  text-align: center;
}

.bsm-boats-sale-section .bsm-boats-sale-cta .theme-btn {
  min-width: 200px;
}

.bsm-boats-sale-section .car-slider-three .slick-list {
  padding-bottom: 0;
  margin-bottom: 0;
}

.bsm-boats-sale-section .car-slider-three .slick-track {
  display: flex;
}

.bsm-boats-sale-section .car-slider-three .slick-slide {
  height: inherit;
}

.bsm-boats-sale-section .car-slider-three .slick-slide > div,
.bsm-boats-sale-section .car-slider-three .box-car,
.bsm-boats-sale-section .car-slider-three .inner-box {
  height: 100%;
}

.bsm-boats-sale-section .car-block-three .inner-box {
  display: flex;
  flex-direction: column;
}

.bsm-boats-sale-section .car-block-three .inner-box .image-box {
  min-height: 240px;
}

.bsm-boats-sale-section .car-block-three .inner-box .image-box .image,
.bsm-boats-sale-section .car-block-three .inner-box .image-box .image > a,
.bsm-boats-sale-section .car-block-three .inner-box .image-box .image img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
}

.bsm-boats-sale-section .car-block-three .inner-box .content-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.bsm-boats-sale-section .car-block-three .inner-box .content-box ul {
  gap: 35px;
  text-align: center;
  justify-content: center;
}

.bsm-boats-sale-section .car-block-three .inner-box .content-box ul li {
  margin-right: 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.bsm-boats-sale-section .car-block-three .inner-box .content-box ul li i {
  font-size: 13px;
  color: #4a5565;
}

.bsm-boats-sale-section .breadcrumb,
.boats-archive-v2__header .breadcrumb,
.boats-archive-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.bsm-boats-sale-section .breadcrumb li,
.boats-archive-v2__header .breadcrumb li,
.boats-archive-header .breadcrumb li {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #050b20;
}

.bsm-boats-sale-section .breadcrumb li:not(:last-child)::after,
.boats-archive-v2__header .breadcrumb li:not(:last-child)::after,
.boats-archive-header .breadcrumb li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -10px;
  top: 0;
  color: #6b7280;
}

.bsm-boats-sale-section .breadcrumb li a,
.boats-archive-v2__header .breadcrumb li a,
.boats-archive-header .breadcrumb li a {
  color: #405FF2;
  text-decoration: none;
}

.bsm-boats-sale-section .breadcrumb li:last-child,
.boats-archive-v2__header .breadcrumb li:last-child,
.boats-archive-header .breadcrumb li:last-child {
  color: #6b7280;
}

.bsm-boats-hire-section .content-column .inner-column .boxcar-title .text {
  max-width: 45ch;
}

.boats-archive-v2 {
  padding: 26px 0 90px;
  background: #f3f4f6;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.boats-archive-v2__header {
  margin-bottom: 16px;
}

.boats-archive-v2__crumb {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 10px;
}

.boats-archive-v2__crumb a {
  color: inherit;
  text-decoration: none;
}

.boats-archive-v2__crumb a:hover,
.boats-archive-v2__crumb a:focus {
  color: #405ff2;
}

.boats-archive-v2__crumb .boats-archive-v2__crumb-separator {
  margin: 0 6px;
}

.boats-archive-v2__crumb a.is-active {
  color: #405ff2;
  font-weight: 600;
}

.boats-archive-v2__head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.boats-archive-v2__title {
  margin: 0;
  font-size: 33px;
  line-height: 1.15;
}

.boats-archive-v2__result-count {
  color: #6b7280;
  font-size: 12px;
}

.boats-archive-v2__toolbar {
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.boats-archive-v2__toolbar-results {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.boats-archive-v2__sort-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.boats-archive-v2__sort-form label {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
}

.boats-archive-v2__sort-form select {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 9px 34px 9px 12px;
  font-size: 14px;
  color: #0f172a;
}

.bsm-property-sort__options {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.bsm-property-sort__option a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bsm-property-sort__option a:hover,
.bsm-property-sort__option a:focus {
  border-color: #405ff2;
  color: #405ff2;
}

.bsm-property-sort__option.is-selected a {
  border-color: #405ff2;
  background: #405ff2;
  color: #fff;
}

.boats-archive-v2__filters {
  margin: 20px 0 26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.boats-archive-v2__filters--properties {
  display: block;
  overflow: visible;
  padding: 22px 24px 20px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.property-search-form {
  overflow: visible;
}

.property-search-form__header {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8edf5;
}

.property-search-form__title {
  margin: 0 0 6px;
  color: #050b20;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.property-search-form__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.property-search-form__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
  overflow: visible;
}

.boats-filter-field--dropdown {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.boats-filter-field--dropdown:has(.bsm-filter-dropdown.is-open) {
  z-index: 40;
}

.property-search-form__actions {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e8edf5;
  justify-content: flex-start;
  gap: 12px;
}

.property-search-form__submit {
  min-width: 170px;
}

.property-search-form__reset {
  background: #fff;
}

.boats-filter-field--dropdown .boats-filter-field__label,
.boats-filter-field--select label,
.property-search-form .boats-filter-field > label {
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.boats-filter-select-wrap {
  position: relative;
}

.boats-filter-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.boats-filter-field--select select {
  appearance: none;
  padding-right: 36px;
}

.bsm-filter-dropdown {
  position: relative;
}

.bsm-filter-dropdown__toggle {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 10px 14px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bsm-filter-dropdown__toggle:hover {
  border-color: #94a3b8;
  background: #fcfdff;
}

.bsm-filter-dropdown__toggle:focus {
  outline: none;
  border-color: #405ff2;
  box-shadow: 0 0 0 3px rgba(64, 95, 242, 0.15);
}

.bsm-filter-dropdown__toggle.is-active {
  border-color: #405ff2;
  color: #050b20;
  background: #f8faff;
}

.bsm-filter-dropdown.is-open .bsm-filter-dropdown__toggle {
  border-color: #405ff2;
  background: #f8faff;
  box-shadow: 0 0 0 3px rgba(64, 95, 242, 0.12);
}

.bsm-filter-dropdown__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsm-filter-dropdown__chevron {
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.2s ease, color 0.2s ease;
}

.bsm-filter-dropdown.is-open .bsm-filter-dropdown__chevron {
  transform: rotate(180deg);
  color: #405ff2;
}

.bsm-filter-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 50;
  border-radius: 16px;
  border: 1px solid #dbe3f0;
  background: #fff;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 44px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transform-origin: top left;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.bsm-filter-dropdown.is-open .bsm-filter-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bsm-filter-dropdown--wide .bsm-filter-dropdown__panel {
  width: max(100%, 320px);
}

.bsm-filter-dropdown__panel-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 108px 12px 14px;
  border-bottom: 1px solid #e8edf5;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.bsm-filter-dropdown__panel-title {
  color: #050b20;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.bsm-filter-dropdown__panel-count {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #405ff2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.bsm-filter-dropdown__panel-count.is-visible {
  visibility: visible;
  opacity: 1;
}

.bsm-filter-dropdown__panel-inner {
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 12px 12px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #c7d2e3 transparent;
}

.bsm-filter-dropdown__panel-inner::-webkit-scrollbar {
  width: 8px;
}

.bsm-filter-dropdown__panel-inner::-webkit-scrollbar-track {
  background: transparent;
}

.bsm-filter-dropdown__panel-inner::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c7d2e3;
}

.bsm-filter-dropdown__panel-inner::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.bsm-filter-dropdown__group + .bsm-filter-dropdown__group {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf1f7;
}

.bsm-filter-dropdown__group-label {
  margin: 0 0 8px;
  padding: 0 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bsm-filter-dropdown__group-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bsm-filter-dropdown__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.bsm-filter-dropdown__option:hover {
  background: #f8fafc;
  border-color: #e8edf5;
}

.bsm-filter-dropdown__option.is-checked {
  background: #eef2ff;
  border-color: rgba(64, 95, 242, 0.22);
}

.bsm-filter-dropdown__option.is-checked:hover {
  background: #e7ecff;
}

.bsm-filter-dropdown__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.bsm-filter-dropdown__check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex: 0 0 18px;
  box-sizing: border-box;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.bsm-filter-dropdown__option:hover .bsm-filter-dropdown__check {
  border-color: #94a3b8;
}

.bsm-filter-dropdown__option.is-checked .bsm-filter-dropdown__check,
.bsm-filter-dropdown__checkbox:checked + .bsm-filter-dropdown__check {
  border-color: #405ff2;
  background: #405ff2;
  color: #fff;
}

.bsm-filter-dropdown__check svg {
  display: block;
  width: 12px;
  height: 12px;
}

.bsm-filter-dropdown__option-text {
  flex: 1 1 auto;
  min-width: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.bsm-filter-dropdown__option.is-checked .bsm-filter-dropdown__option-text {
  color: #1e3a8a;
}

.bsm-filter-dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #e8edf5;
  background: #f8fafc;
}

.bsm-filter-dropdown__clear {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 4px;
  cursor: pointer;
}

.bsm-filter-dropdown__clear:hover {
  color: #405ff2;
}

.bsm-filter-dropdown__done {
  border: 0;
  border-radius: 999px;
  background: #405ff2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(64, 95, 242, 0.24);
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.bsm-filter-dropdown__done:hover {
  background: #2f4de0;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(64, 95, 242, 0.28);
}

.property-search-form .boats-filter-field input,
.property-search-form .boats-filter-field select,
.property-search-form .bsm-filter-dropdown__toggle {
  min-height: 44px;
  border-radius: 12px;
}

.property-search-form .boats-filter-field input:focus,
.property-search-form .boats-filter-field select:focus {
  outline: none;
  border-color: #405ff2;
  box-shadow: 0 0 0 3px rgba(64, 95, 242, 0.15);
}

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

.boats-filter-field label {
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.boats-filter-field input,
.boats-filter-field select {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  color: #0f172a;
}

.boats-filter-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.boats-filter-actions .theme-btn {
  min-height: 42px;
  min-width: 110px;
  border-radius: 999px;
}

.boats-filter-reset {
  min-height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.boats-archive-v2__cards {
  margin-left: -10px;
  margin-right: -10px;
}

.boats-archive-v2__cards .box-car {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 35px;
}

.boats-archive-v2__cards .col-lg-3 {
  width: 25%;
}

.boats-archive-v2__pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.boats-archive-v2__pagination li a,
.boats-archive-v2__pagination li span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 13px;
}

.boats-archive-v2__pagination li .current {
  background: #00102f;
  color: #fff;
  border-color: #00102f;
}

.boats-archive-v2__results-range {
  margin: 12px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

@media (min-width: 992px) {
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two {
    overflow: hidden;
    border-radius: 20px;
  }

  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .slick-list,
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .slick-track,
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .slick-slide,
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box,
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box figure.image,
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box figure.image a {
    height: 551px;
  }

  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box figure.image a {
    display: block;
    width: 100%;
  }

  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

.inventory-section .gallery-sec {
  margin-bottom: 24px;
}

.inventory-section .gallery-sec .inventry-slider-two.bsm-gallery-single .image-box figure.image,
.inventory-section .gallery-sec .inventry-slider-two.bsm-gallery-single .image-box figure.image a {
  display: block;
}

.inventory-section .gallery-sec .inventry-slider-two:not(.slick-initialized):not(.bsm-gallery-single) > .image-box ~ .image-box {
  display: none;
}

.inventory-section .gallery-sec .wrap-gallery-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f7;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-list {
  overflow: hidden;
  border-radius: 16px;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-slide {
  height: auto;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-slide > div,
.inventory-section .gallery-sec .inventry-slider-two .image-box,
.inventory-section .gallery-sec .inventry-slider-two .image-box figure.image,
.inventory-section .gallery-sec .inventry-slider-two .image-box figure.image a {
  display: block;
  height: 100%;
}

.inventory-section .gallery-sec .inventry-slider-two .image-box figure.image {
  border-radius: 16px;
  overflow: hidden;
}

.inventory-section .gallery-sec .inventry-slider-two .image-box figure.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-dots {
  bottom: 12px;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-dots li button:before {
  color: #fff;
  opacity: 0.55;
}

.inventory-section .gallery-sec .inventry-slider-two .slick-dots li.slick-active button:before {
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .inventory-section .gallery-sec .inventry-slider-two .slick-list,
  .inventory-section .gallery-sec .inventry-slider-two .slick-track,
  .inventory-section .gallery-sec .inventry-slider-two .slick-slide,
  .inventory-section .gallery-sec .inventry-slider-two .image-box,
  .inventory-section .gallery-sec .inventry-slider-two .image-box figure.image,
  .inventory-section .gallery-sec .inventry-slider-two .image-box figure.image a {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .inventory-section .gallery-sec .inventry-slider-two .slick-list,
  .inventory-section .gallery-sec .inventry-slider-two .slick-track,
  .inventory-section .gallery-sec .inventry-slider-two .slick-slide,
  .inventory-section .gallery-sec .inventry-slider-two .image-box,
  .inventory-section .gallery-sec .inventry-slider-two .image-box figure.image,
  .inventory-section .gallery-sec .inventry-slider-two .image-box figure.image a,
  .inventory-section .gallery-sec .inventry-slider-two.bsm-gallery-single .image-box,
  .inventory-section .gallery-sec .inventry-slider-two.bsm-gallery-single .image-box figure.image,
  .inventory-section .gallery-sec .inventry-slider-two.bsm-gallery-single .image-box figure.image a {
    height: clamp(240px, 56vw, 340px);
  }

  .inventory-section .gallery-sec .slick-prev,
  .inventory-section .gallery-sec .slick-next {
    width: 36px;
    height: 36px;
    z-index: 2;
  }

  .inventory-section .gallery-sec .slick-prev {
    left: 8px;
  }

  .inventory-section .gallery-sec .slick-next {
    right: 8px;
  }
}

.cars-section-fifteen .image-column > .inner-column {
  position: relative;
}

.cars-section-fifteen .shop-single-product-slider {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.cars-section-fifteen .shop-single-product-slider .slick-list,
.cars-section-fifteen .shop-single-product-slider .slick-track {
  width: 100%;
}

.cars-section-fifteen .shop-single-product-slider .shop-single-product-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 16px;
}

.cars-section-fifteen .shop-single-product-slider .shop-single-product-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center center;
}

.cars-section-fifteen .shop-single-thumbs-slider {
  position: static;
  width: 100%;
  margin: 0 0 12px;
}

.cars-section-fifteen .shop-single-thumbs-slider .slick-list {
  margin: 0 -5px;
}

.cars-section-fifteen .shop-single-thumbs-slider .slick-slide {
  padding: 0 5px;
}

.cars-section-fifteen .shop-single-thumbs-slider .shop-single-thumb {
  width: auto !important;
  height: auto;
  margin: 0;
  line-height: normal;
}

.cars-section-fifteen .shop-single-thumbs-slider .shop-single-thumb .thumb-img {
  width: 72px;
  height: 72px;
  padding: 4px;
}

.cars-section-fifteen .shop-single-thumbs-slider .shop-single-thumb .thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .cars-section-fifteen .image-column > .inner-column {
    display: flex;
    flex-direction: column;
  }

  .cars-section-fifteen .shop-single-product-slider {
    order: 1;
  }

  .cars-section-fifteen .shop-single-thumbs-slider {
    order: 2;
    margin: 12px 0 0;
  }

  .cars-section-fifteen .shop-single-product-slider .shop-single-product-slide {
    min-height: 240px;
    padding: 12px;
  }

  .cars-section-fifteen .shop-single-product-slider .shop-single-product-slide img {
    max-height: 320px;
  }
}

@media (min-width: 768px) {
  .cars-section-fifteen .image-column > .inner-column {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .cars-section-fifteen .shop-single-thumbs-slider {
    grid-column: 1;
    grid-row: 1;
    width: 92px;
    margin: 0;
  }

  .cars-section-fifteen .shop-single-product-slider {
    grid-column: 2;
    grid-row: 1;
  }

  .cars-section-fifteen .shop-single-thumbs-slider .shop-single-thumb .thumb-img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 991.98px) {
  .inventory-section .gallery-sec .image-column.wrap-gallery-box .inner-column.inventry-slider-two .image-box figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

.inventory-section .description-sec .text + .text {
  margin-top: 18px;
}

.inventory-section .inspection-column .inner-column .faqs-section {
  margin-bottom: 52px;
}

.inventory-section .faqs-section .bsm-specs-blocks {
  border-top: 1px solid #e9edf5;
}

.inventory-section .faqs-section .bsm-specs-block {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9edf5;
  color: #050b20;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.inventory-section .faqs-section .bsm-specs-block i {
  color: #050b20;
  font-size: 16px;
}

.boats-archive-v2__empty {
  margin: 30px 0;
  color: #6b7280;
}

@media (max-width: 1199px) {
  .boats-archive-v2__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .boats-archive-v2__cards .col-lg-3 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .boats-archive-v2 {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding-top: 18px;
  }

  .boats-archive-v2__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bsm-property-sort__options {
    justify-content: flex-start;
    width: 100%;
  }

  .boats-archive-v2__title {
    font-size: 28px;
  }

  .boats-archive-v2__filters {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .boats-archive-v2__filters--properties {
    padding: 16px;
  }

  .property-search-form__grid {
    grid-template-columns: 1fr;
  }

  .property-search-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .property-search-form__submit,
  .property-search-form__reset {
    width: 100%;
    justify-content: center;
  }

  .bsm-filter-dropdown--wide .bsm-filter-dropdown__panel,
  .bsm-filter-dropdown__panel {
    min-width: 100%;
  }

  .bsm-filter-dropdown__panel-inner {
    max-height: 260px;
  }

  .boats-archive-v2__cards .col-lg-3 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bsm-boats-sale-section .car-block-three .inner-box .image-box,
  .bsm-boats-sale-section .car-block-three .inner-box .image-box .image,
  .bsm-boats-sale-section .car-block-three .inner-box .image-box .image > a,
  .bsm-boats-sale-section .car-block-three .inner-box .image-box .image img {
    min-height: 220px;
    height: 220px;
  }
}

/* Boat Category Tabs (Bootstrap nav-tabs) */
.bsm-boats-tabs-nav {
  margin-bottom: var(--space-6);
}

.bsm-boats-tabs {
  border-bottom: 2px solid var(--color-border);
  gap: 8px;
}

.bsm-boats-tabs.nav-tabs .nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: var(--space-3) var(--space-5);
  margin-bottom: -2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  background: transparent;
}

.bsm-boats-tabs.nav-tabs .nav-link:hover,
.bsm-boats-tabs.nav-tabs .nav-link:focus {
  color: var(--color-primary);
  border-color: transparent;
}

.bsm-boats-tabs.nav-tabs .nav-link.active,
.bsm-boats-tabs.nav-tabs .nav-item.show .nav-link {
  color: white;
  background: transparent;
  border-color: transparent transparent var(--color-primary) transparent;
}

.bsm-boats-panels .tab-pane {
  animation: fadeIn 0.25s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .bsm-boats-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .bsm-boats-tabs.nav-tabs .nav-link {
    white-space: nowrap;
    padding: var(--space-2) var(--space-4);
    font-size: 12px;
  }
}

.bsm-buttons-only-section {
  padding: 28px 0;
}

.bsm-buttons-only {
  --bsm-buttons-gap: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--bsm-buttons-gap);
}

.bsm-buttons-only--align-left {
  justify-content: flex-start;
}

.bsm-buttons-only--align-center {
  justify-content: center;
}

.bsm-buttons-only--align-right {
  justify-content: flex-end;
}

.bsm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bsm-button:hover,
.bsm-button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.bsm-button--primary {
  background: #3a78ff;
  border-color: #3a78ff;
  color: #ffffff;
}

.bsm-button--primary:hover,
.bsm-button--primary:focus {
  background: #2d68ea;
  border-color: #2d68ea;
  color: #ffffff;
}

.bsm-button--secondary {
  background: #050b20;
  border-color: #050b20;
  color: #ffffff;
}

.bsm-button--secondary:hover,
.bsm-button--secondary:focus {
  background: #0f1733;
  border-color: #0f1733;
  color: #ffffff;
}

.bsm-button--outline {
  background: transparent;
  border-color: #3a78ff;
  color: #3a78ff;
}

.bsm-button--outline:hover,
.bsm-button--outline:focus {
  background: #3a78ff;
  color: #ffffff;
}

.bsm-button--sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 13px;
}

.bsm-button--md {
  min-height: 46px;
  padding: 10px 22px;
  font-size: 14px;
}

.bsm-button--lg {
  min-height: 52px;
  padding: 12px 28px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .bsm-buttons-only--stack-mobile {
    flex-direction: column;
    align-items: stretch;
  }

  .bsm-buttons-only--stack-mobile .bsm-button {
    width: 100%;
  }
}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
  max-width: 100%;
  height: auto !important;
}

.price{
  color: #050B20;
    font-size: 20px !important;
    font-weight: 600;
    margin-top: 10px;
}

.shop-slider-img a .attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{
  height: 100% !important;
      border-radius: unset;
}

/* Listing save/share */
button.bsm-save-listing,
button.bsm-share-listing,
.share-btn .share.bsm-save-listing,
.share-btn .share.bsm-share-listing {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  color: #4d5a6c;
}

button.bsm-save-listing svg,
.share-btn .share.bsm-save-listing svg {
  display: block;
  width: 100%;
  height: 13px;
}

button.bsm-save-listing.is-saved,
.share-btn .share.bsm-save-listing.is-saved {
  color: #405ff2;
}

button.bsm-save-listing svg path,
.share-btn .share.bsm-save-listing svg path {
  fill: darkgrey;
}

button.bsm-save-listing.is-saved svg path,
.share-btn .share.bsm-save-listing.is-saved svg path {
  fill: #405ff2;
}

.bsm-listing-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #050b20;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(5, 11, 32, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsm-listing-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WooCommerce page spacing is handled in woocommerce-modern.css */

.bsm-error-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.bsm-shop-template-archive.boats-archive-v2 .bsm-shop-template-archive__layout {
  margin-top: 8px;
}

.bsm-shop-template-archive.boats-archive-v2 .side-bar {
  border-radius: 16px;
  border: 1px solid #e1e1e1;
  background: #fff;
  padding: 15px 0 0;
}

.bsm-shop-template-archive.boats-archive-v2 .content-column .inner-column {
  background: transparent;
}

@media (max-width: 767px) {
  .inventory-section .boxcar-title-three .btn-box.v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .inventory-section .share-btn {
    min-width: calc(50% - 0.375rem);
  }

  .boats-archive-v2__filters {
    grid-template-columns: 1fr;
  }

  .boats-archive-v2__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.btn-box .woocommerce-Price-amount.amount{
color: #FFF;
  font-family: "DM Sans";
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; 
}

.widget-accordion .acc-content.current {
  display: block;
}

.bsm-charter-dates {
  margin: 0 0 20px;
}

.bsm-charter-date-label {
  display: block;
}

.bsm-charter-date-label-text {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #6b7280;
}

.bsm-charter-range-input,
.bsm-charter-range-input--alt {
  width: 100%;
  border: 1px solid #d5dae5;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #050b20;
  background: #fff;
  cursor: pointer;
}

.bsm-charter-range-input.is-blocked,
.bsm-charter-range-input--alt.is-blocked {
  border-color: #b42318 !important;
}

.bsm-charter-date-error {
  margin: 8px 0 0;
  font-size: 12px;
  color: #b42318;
}

.bsm-charter-date-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: #6b7280;
}

.bsm-charter-date-legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bsm-charter-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #d5dae5;
}

.bsm-charter-legend-swatch--available {
  background: #fff;
}

.bsm-charter-legend-swatch--blocked {
  background: #f1f5f9;
  position: relative;
}

.bsm-charter-legend-swatch--blocked::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 5px;
  height: 1px;
  background: #94a3b8;
  transform: rotate(-35deg);
}

.bsm-charter-flatpickr.flatpickr-calendar {
  z-index: 10050;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(5, 11, 32, 0.14);
  font-family: "DM Sans", sans-serif;
}

.bsm-charter-flatpickr .flatpickr-day.selected,
.bsm-charter-flatpickr .flatpickr-day.startRange,
.bsm-charter-flatpickr .flatpickr-day.endRange,
.bsm-charter-flatpickr .flatpickr-day.selected.inRange,
.bsm-charter-flatpickr .flatpickr-day.startRange.inRange,
.bsm-charter-flatpickr .flatpickr-day.endRange.inRange,
.bsm-charter-flatpickr .flatpickr-day.inRange {
  background: #050b20;
  border-color: #050b20;
}

.bsm-charter-flatpickr .flatpickr-day.inRange {
  background: rgba(5, 11, 32, 0.12);
  border-color: transparent;
  box-shadow: none;
}

.bsm-charter-flatpickr .flatpickr-day.flatpickr-disabled,
.bsm-charter-flatpickr .flatpickr-day.bsm-charter-day-blocked,
.bsm-charter-flatpickr .flatpickr-day.flatpickr-disabled:hover,
.bsm-charter-flatpickr .flatpickr-day.bsm-charter-day-blocked:hover {
  color: #94a3b8;
  background: #f8fafc;
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: transparent;
}

.bsm-inquiry-card .side-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.bsm-rich-text-section--center .bsm-rich-text-inner {
  text-align: center;
}

.bsm-rich-text-section--narrow .bsm-rich-text-inner {
  max-width: 720px;
}

.bsm-rich-text-section--wide .bsm-rich-text-inner {
  max-width: 960px;
}
