:root {
  --bmd-font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bmd-page-bg: #f7f8fb;
  --bmd-surface: #ffffff;
  --bmd-surface-soft: #f9fafb;
  --bmd-text: #101828;
  --bmd-muted: #667085;
  --bmd-border: #e5e7eb;
  --bmd-dark: #070b14;
  --bmd-dark-2: #111827;
  --bmd-accent: #ff1717;
  --bmd-accent-dark: #c60000;
  --bmd-accent-soft: #fff1f1;
  --bmd-success: #22c55e;
  --bmd-radius: 8px;
  --bmd-radius-sm: 6px;
  --bmd-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --bmd-shadow-strong: 0 22px 48px rgba(15, 23, 42, 0.14);
  --ink: #151515;
  --muted: #62666f;
  --paper: #f8f8f8;
  --panel: #ffffff;
  --line: rgba(21, 21, 21, 0.12);
  --accent: #ff1717;
  --accent-dark: #c60000;
  --gold: #ff1717;
  --teal: #0f766e;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  --font-page-title: clamp(2.2rem, 4.8vw, 3.8rem);
  --font-section-title: clamp(1.8rem, 3.2vw, 2.65rem);
  --font-subsection-title: clamp(1.35rem, 2.2vw, 1.75rem);
  --font-card-title: 1.05rem;
  --font-body: 1rem;
  --font-lead: 1.05rem;
  --font-small: 0.9rem;
}

* {
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--bmd-font-sans);
}

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

img {
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.navbar {
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-logo-mark {
  background: #000;
  border-radius: 0.65rem;
  height: 52px;
  overflow: hidden;
  width: 112px;
}

.site-logo-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-name {
  font-weight: 800;
  line-height: 1;
}

.brand-tag {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 2px;
}

.nav-link {
  color: rgba(21, 21, 21, 0.72);
  font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.btn {
  border-radius: 8px;
  font-weight: 750;
}

.btn-accent {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
  --bs-btn-hover-color: #fff;
}

.btn-ink {
  --bs-btn-bg: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-hover-color: #fff;
}

.btn-outline-ink {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: rgba(21, 21, 21, 0.24);
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-hover-color: #fff;
}

.bmd-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 1rem !important;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 54px;
  padding: 0.85rem 1.45rem;
  text-align: center;
  white-space: nowrap;
}

.bmd-btn.btn-lg {
  font-size: 1rem !important;
  min-height: 54px;
  padding: 0.85rem 1.45rem;
}

.bmd-btn.btn-sm {
  font-size: 0.92rem !important;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
}

.bmd-btn i {
  font-size: 1em;
  line-height: 1;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: var(--font-section-title);
  font-weight: 850;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.75;
}

.section-heading h2 {
  color: var(--ink);
  font-size: var(--font-section-title);
  font-weight: 900;
  line-height: 1.08;
  margin: 0.35rem 0 0;
}

.site-shell .h3,
.rental-shell .h3,
.site-shell h2.h3,
.rental-shell h2.h3 {
  font-size: var(--font-subsection-title) !important;
  line-height: 1.2;
}

.site-shell .h4,
.site-shell .h5,
.rental-shell .h4,
.rental-shell .h5 {
  font-size: var(--font-card-title) !important;
  line-height: 1.3;
}

.page-hero .fs-5,
.page-hero p:not(.eyebrow) {
  font-size: var(--font-lead) !important;
  line-height: 1.7;
}

.hero {
  background:
    linear-gradient(
      90deg,
      rgba(247, 244, 238, 0.96) 0%,
      rgba(247, 244, 238, 0.8) 42%,
      rgba(247, 244, 238, 0.25) 100%
    ),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=80")
      center right / cover;
  min-height: 94vh;
  padding: 124px 0 52px;
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
  max-width: 820px;
}

.hero-lede {
  color: #383b42;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.65;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 8px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.stat-value {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
}

.floating-product {
  animation: floatY 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-left: auto;
  max-width: 360px;
  overflow: hidden;
}

.floating-product img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.price-pill {
  align-items: center;
  background: #fff2d2;
  border: 1px solid rgba(245, 185, 65, 0.45);
  border-radius: 999px;
  color: #6e4300;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 6px;
  padding: 8px 12px;
}

.status-pill {
  align-items: center;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 6px;
  padding: 7px 10px;
}

.feature-strip {
  background: var(--ink);
  color: #fff;
}

.feature-strip .feature-item {
  align-items: center;
  display: flex;
  gap: 14px;
  padding: 24px 0;
}

.feature-strip i {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-tile,
.info-card,
.product-card,
.step-card,
.blog-card,
.service-card,
.testimonial-card,
.cart-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-tile {
  align-items: center;
  display: flex;
  font-size: 1.15rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 86px;
}

.brand-tile i {
  color: var(--accent);
}

.product-card {
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  border-color: rgba(227, 61, 47, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #e9e2d7;
  object-fit: cover;
  width: 100%;
}

.product-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.25;
}

.product-price {
  color: var(--accent);
  font-size: 1.18rem;
  font-weight: 900;
}

.product-badge {
  background: rgba(21, 21, 21, 0.9);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
  top: 12px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  padding: 9px 16px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: #fff;
}

.step-card,
.info-card,
.service-card,
.testimonial-card,
.cart-card {
  padding: 26px;
}

.cta-panel {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 32px;
}

.step-number {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon-box {
  align-items: center;
  background: rgba(227, 61, 47, 0.1);
  border-radius: 8px;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.45rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.split-band {
  background: #fff;
  border-block: 1px solid var(--line);
}

.image-panel {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  animation: marquee 32s linear infinite;
  display: flex;
  gap: 18px;
  min-width: max-content;
}

.testimonial-card {
  flex: 0 0 340px;
}

.avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.9), rgba(21, 21, 21, 0.58)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  color: #fff;
}

.long-copy {
  color: #373a40;
  line-height: 1.8;
}

.accordion-button {
  border-radius: 8px;
  font-weight: 850;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.42)),
    var(
        --page-hero-image,
        url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1800&q=80")
      )
      center / cover;
  color: #fff;
  padding: 140px 0 74px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero.products-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 7, 18, 0.66), rgba(3, 7, 18, 0.26)),
    var(
      --page-hero-image,
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80")
    );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rental-products-hero {
  position: relative;
}

.rental-products-hero::after {
  display: none;
}

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

.rental-hero-panel {
  background: rgba(7, 11, 20, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bmd-radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  backdrop-filter: blur(14px);
}

.rental-hero-panel span {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--bmd-radius);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem;
}

.rental-hero-panel strong {
  color: #fff;
  font-weight: 900;
}

.page-hero.contact-hero {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.38)),
    var(
        --page-hero-image,
        url("https://images.unsplash.com/photo-1452587925148-ce544e77e70d?auto=format&fit=crop&w=1800&q=80")
      )
      center / cover;
}

.page-hero h1 {
  font-size: var(--font-page-title);
  font-weight: 900;
  line-height: 1.06;
}

.service-archive-slider {
  display: block;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-archive-slider {
  display: block;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-archive-slider::after {
  display: none;
}

.service-archive-slide {
  background-color: #070b13;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  min-height: 440px;
  padding: 140px 0 74px;
  position: absolute;
  transform: translateX(100%);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.72s;
  visibility: hidden;
  width: 100%;
}

.product-archive-slide {
  background-color: #070b13;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  min-height: 440px;
  padding: 140px 0 74px;
  position: absolute;
  transform: translateX(100%);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.72s;
  visibility: hidden;
  width: 100%;
}

.service-archive-slide.is-active {
  animation: none;
  transform: translateX(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: visible;
  z-index: 2;
}

.product-archive-slide.is-active {
  animation: none;
  transform: translateX(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: visible;
  z-index: 2;
}

.service-archive-slide.is-entering-right,
.product-archive-slide.is-entering-right {
  transform: translateX(100%);
  transition: none;
  visibility: visible;
  z-index: 3;
}

.service-archive-slide.is-entering-left,
.product-archive-slide.is-entering-left {
  transform: translateX(-100%);
  transition: none;
  visibility: visible;
  z-index: 3;
}

.service-archive-slide.is-exiting-left,
.product-archive-slide.is-exiting-left {
  transform: translateX(-100%);
  visibility: visible;
  z-index: 1;
}

.service-archive-slide.is-exiting-right,
.product-archive-slide.is-exiting-right {
  transform: translateX(100%);
  visibility: visible;
  z-index: 1;
}

.service-archive-slide-title {
  color: #fff;
  font-size: var(--font-page-title);
  font-weight: 900;
  line-height: 1.06;
  margin: 0;
}

.product-archive-slide-title {
  color: #fff;
  font-size: var(--font-page-title);
  font-weight: 900;
  line-height: 1.06;
  margin: 0;
}

.service-archive-slider-controls {
  align-items: center;
  bottom: 1.5rem;
  display: flex;
  gap: 0.65rem;
  position: absolute;
  right: max(1rem, calc((100vw - 1320px) / 2 + 1rem));
  z-index: 3;
}

.product-archive-slider-controls {
  align-items: center;
  bottom: 1.5rem;
  display: flex;
  gap: 0.65rem;
  position: absolute;
  right: max(1rem, calc((100vw - 1320px) / 2 + 1rem));
  z-index: 3;
}

.service-archive-slider-controls button {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
  width: 38px;
}

.product-archive-slider-controls button {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
  width: 38px;
}

.service-archive-slider-controls button:hover,
.service-archive-slider-controls button.is-active {
  background: #ff1717;
  border-color: #ff1717;
}

.product-archive-slider-controls button:hover,
.product-archive-slider-controls button.is-active {
  background: #ff1717;
  border-color: #ff1717;
}

.service-archive-slider-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.product-archive-slider-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.service-archive-slider-dots button {
  height: 9px;
  padding: 0;
  width: 9px;
}

.product-archive-slider-dots button {
  height: 9px;
  padding: 0;
  width: 9px;
}

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

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.breadcrumb-item.active {
  color: #fff;
}

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

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 8px;
  min-height: 46px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(227, 61, 47, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(227, 61, 47, 0.14);
}

.sidebar-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  position: sticky;
  top: 94px;
}

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

.list-check li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.list-check i {
  color: var(--teal);
  margin-top: 2px;
}

.blog-card {
  height: 100%;
  overflow: hidden;
}

.blog-link-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.blog-link-card:hover {
  border-color: rgba(255, 23, 23, 0.32);
  box-shadow: var(--bmd-shadow-strong);
  transform: translateY(-4px);
}

.blog-card-media {
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.14), rgba(17, 24, 39, 0.92)),
    #111827;
  display: block;
  overflow: hidden;
}

.blog-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.blog-link-card:hover img {
  transform: scale(1.04);
}

.blog-card-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  color: #fff;
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card-meta {
  align-items: center;
  color: var(--bmd-accent);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-card-meta span::before {
  color: #cbd5e1;
  content: "/";
  margin-right: 0.45rem;
}

.blog-card-body h2,
.blog-card-body h3 {
  margin-bottom: 0.75rem;
}

.blog-card-body p {
  color: var(--bmd-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card-cta {
  margin-top: auto;
  width: fit-content;
}

.blog-pagination {
  margin-top: 2.5rem;
}

.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination a,
.blog-pagination span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--bmd-border);
  border-radius: 8px;
  color: var(--bmd-text);
  display: inline-flex;
  font-weight: 850;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
}

.blog-pagination .current,
.blog-pagination a:hover {
  background: var(--bmd-accent);
  border-color: var(--bmd-accent);
  color: #fff;
}

.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
}

.blog-single {
  background: linear-gradient(180deg, #f5f7fb 0, #fff 46%, #f8fafc 100%);
}

.blog-single-hero {
  background-position: center;
  background-size: cover;
}

.blog-meta-separator {
  color: rgba(255, 255, 255, 0.35);
  margin-inline: 0.45rem;
}

.blog-featured-image {
  border-radius: 8px;
  margin: 0 0 2rem;
  overflow: hidden;
}

.blog-featured-image img {
  display: block;
  height: auto;
  width: 100%;
}

.blog-article {
  box-shadow: var(--bmd-shadow-soft);
}

.blog-article > *:last-child {
  margin-bottom: 0;
}

.blog-article a {
  color: var(--bmd-accent);
  font-weight: 750;
}

.blog-article blockquote {
  border-left: 4px solid var(--bmd-accent);
  color: #111827;
  font-size: 1.1rem;
  font-weight: 750;
  margin: 2rem 0;
  padding-left: 1.25rem;
}

.blog-page-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.blog-page-links a,
.blog-page-links span {
  align-items: center;
  border: 1px solid var(--bmd-border);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
}

.blog-post-nav {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.blog-post-nav a {
  background: #fff;
  border: 1px solid var(--bmd-border);
  border-radius: 8px;
  box-shadow: var(--bmd-shadow-soft);
  display: block;
  padding: 1rem;
}

.blog-post-nav span {
  color: var(--bmd-accent);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.blog-post-nav strong {
  color: var(--bmd-text);
  display: block;
  line-height: 1.35;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 96px;
}

.blog-sidebar-card {
  background: #fff;
  border: 1px solid var(--bmd-border);
  border-radius: 8px;
  box-shadow: var(--bmd-shadow-soft);
  padding: 1.25rem;
}

.blog-sidebar-card.dark {
  background: #111827;
  color: #fff;
}

.blog-sidebar-card h2 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.blog-sidebar-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.blog-sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar-card li {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.blog-sidebar-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.blog-sidebar-card li:last-child {
  padding-bottom: 0;
}

.blog-sidebar-card li span {
  color: var(--bmd-muted);
}

.blog-sidebar-card li strong {
  color: var(--bmd-text);
  text-align: right;
}

.blog-related {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.article-body p,
.article-body li {
  color: #333840;
  font-size: var(--font-body);
  line-height: 1.85;
}

.article-body h2 {
  font-size: var(--font-subsection-title) !important;
  line-height: 1.18;
}

.article-body h3 {
  font-size: var(--font-card-title) !important;
  line-height: 1.3;
}

.contact-map {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.88), rgba(227, 61, 47, 0.62)),
    url("https://images.unsplash.com/photo-1524230572899-a752b3835840?auto=format&fit=crop&w=1400&q=80")
      center / cover;
  border-radius: 8px;
  min-height: 420px;
}

.quantity-control {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  overflow: hidden;
}

.quantity-control button {
  background: #fff;
  border: 0;
  font-size: 1.1rem;
  height: 38px;
  width: 38px;
}

.quantity-control span {
  border-inline: 1px solid var(--line);
  display: inline-flex;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
}

.footer {
  background: #101010;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
}

.footer-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 850;
  margin-bottom: 18px;
}

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

.footer-list li {
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(247, 244, 238, 0.98) 0%,
        rgba(247, 244, 238, 0.84) 62%,
        rgba(247, 244, 238, 0.56) 100%
      ),
      url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1200&q=80")
        center / cover;
    min-height: auto;
  }

  .floating-product {
    margin: 28px 0 0;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 104px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-tile {
    padding: 14px;
  }

  .feature-strip .feature-item {
    padding: 14px 0;
  }

  .testimonial-card {
    flex-basis: 290px;
  }

  .inventory-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .inventory-toolbar > * {
    width: 100%;
  }
}

/* BookMyDSLR homepage clone styles */
.bmd-page {
  --bmd-yellow: #ffbf00;
  --bmd-yellow-dark: #d49a00;
  --bmd-cream: #fffaf0;
  --bmd-ink: #050813;
  --bmd-muted: #697080;
  --bmd-line: rgba(12, 18, 32, 0.1);
  --bmd-card: #ffffff;
  background: #fff;
  color: var(--bmd-ink);
}

.bmd-page .container {
  max-width: 1060px;
}

.bmd-navbar {
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid rgba(7, 11, 22, 0.06);
  min-height: 48px;
  backdrop-filter: blur(14px);
}

.bmd-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.bmd-logo {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.bmd-logo img {
  height: 20px;
  width: auto;
}

.bmd-nav-link {
  color: #111827;
  font-size: 0.68rem;
  font-weight: 800;
  padding-inline: 0.45rem !important;
}

.bmd-nav-link:hover,
.bmd-nav-link.active {
  color: var(--bmd-yellow-dark);
}

.bmd-cart-dot {
  align-items: center;
  background: var(--bmd-yellow);
  border-radius: 999px;
  color: #000;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.bmd-hero {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 191, 0, 0.28),
      transparent 28%
    ),
    linear-gradient(180deg, #fffaf0 0%, #fffaf8 72%, #ffffff 100%);
  min-height: 316px;
  padding: 68px 0 22px;
}

.bmd-kicker {
  align-items: center;
  background: rgba(255, 191, 0, 0.16);
  border: 1px solid rgba(255, 191, 0, 0.34);
  border-radius: 999px;
  color: #9a6a00;
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 900;
  gap: 8px;
  padding: 6px 10px;
}

.bmd-hero h1 {
  font-size: clamp(2.05rem, 5vw, 4.25rem);
  font-weight: 950;
  line-height: 0.87;
  margin: 12px 0 12px;
}

.bmd-yellow-text {
  color: var(--bmd-yellow);
  display: block;
}

.bmd-hero p {
  color: #475066;
  font-size: 0.83rem;
  line-height: 1.55;
  max-width: 430px;
}

.bmd-hero .btn-lg {
  font-size: 0.8rem;
  padding: 0.56rem 0.84rem;
}

.bmd-hero .bmd-btn.btn-lg {
  font-size: 1rem !important;
  min-height: 54px;
  padding: 0.85rem 1.45rem;
}

.bmd-btn-primary {
  --bs-btn-bg: var(--bmd-yellow);
  --bs-btn-border-color: var(--bmd-yellow);
  --bs-btn-color: #0b0b0b;
  --bs-btn-hover-bg: #e8ab00;
  --bs-btn-hover-border-color: #e8ab00;
  --bs-btn-hover-color: #0b0b0b;
  box-shadow: 0 12px 28px rgba(255, 191, 0, 0.32);
}

.bmd-btn-dark {
  --bs-btn-bg: #0b1020;
  --bs-btn-border-color: #0b1020;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-hover-color: #fff;
}

.bmd-hero-stat {
  border-right: 1px solid rgba(5, 8, 19, 0.12);
  min-width: 86px;
  padding-right: 14px;
}

.bmd-hero-stat:last-child {
  border-right: 0;
}

.bmd-hero-stat strong {
  color: var(--bmd-yellow-dark);
  display: block;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1;
}

.bmd-hero-stat span {
  color: #596274;
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  margin-top: 5px;
}

.bmd-camera-stage {
  min-height: 250px;
  position: relative;
}

.bmd-camera-main {
  animation: bmdFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.28));
  margin-left: auto;
  margin-top: 66px;
  max-width: 330px;
  position: relative;
  z-index: 2;
}

.bmd-feature-float,
.bmd-product-float {
  animation: bmdFloat 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 191, 0, 0.32);
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  padding: 10px;
  position: absolute;
  z-index: 3;
}

.bmd-product-float {
  max-width: 178px;
  right: 18px;
  top: 16px;
}

.bmd-feature-float {
  left: 48px;
  top: 102px;
}

.bmd-product-float h2 {
  font-size: 0.68rem;
  font-weight: 900;
  margin: 0 0 4px;
}

.bmd-product-float small,
.bmd-feature-float small {
  color: var(--bmd-muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.bmd-rating {
  align-items: center;
  color: var(--bmd-yellow-dark);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 900;
  gap: 4px;
}

.bmd-precision {
  background: #000;
  color: #fff;
  min-height: 1040px;
  overflow: hidden;
  position: relative;
}

.bmd-precision::before {
  background:
    radial-gradient(
      circle at 53% 18%,
      rgba(255, 191, 0, 0.16),
      transparent 20%
    ),
    radial-gradient(
      ellipse at center top,
      rgba(255, 255, 255, 0.13),
      transparent 34%
    );
  content: "";
  height: 340px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 1000px;
}

.bmd-lens-strip {
  align-items: center;
  display: flex;
  height: 285px;
  justify-content: center;
  margin-inline: auto;
  max-width: 980px;
  padding-top: 26px;
  position: relative;
  top: 0;
  z-index: 2;
}

.bmd-lens-photo {
  animation: bmdFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.72));
  max-height: 245px;
  object-fit: contain;
  width: min(82vw, 820px);
}

.bmd-precision-caption {
  font-size: clamp(0.98rem, 2vw, 1.25rem);
  font-weight: 700;
  left: 50%;
  line-height: 1.05;
  position: absolute;
  text-align: center;
  top: 210px;
  transform: translateX(-50%);
  width: min(92vw, 620px);
  z-index: 4;
}

.bmd-precision-caption span {
  color: var(--bmd-yellow);
  display: block;
  font-weight: 950;
}

.bmd-section {
  padding: 58px 0;
}

.bmd-section-soft {
  background: #fbfbfc;
  border-block: 1px solid rgba(15, 23, 42, 0.06);
}

.bmd-label {
  color: var(--bmd-yellow-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bmd-title {
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 950;
  line-height: 0.96;
}

.bmd-copy {
  color: var(--bmd-muted);
  line-height: 1.75;
}

.bmd-brand-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--bmd-line);
  border-radius: 8px;
  display: flex;
  height: 94px;
  justify-content: center;
  padding: 20px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.bmd-brand-card:hover {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

.bmd-brand-card img {
  max-height: 44px;
  object-fit: contain;
}

.bmd-brand-card strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.bmd-product-card {
  background: #fff;
  border: 1px solid var(--bmd-line);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.bmd-product-card:hover {
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.13);
  transform: translateY(-6px);
}

.bmd-product-card img {
  aspect-ratio: 1 / 0.75;
  background: #f2f2f3;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.bmd-product-body {
  padding: 16px;
}

.bmd-product-body h3 {
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  min-height: 46px;
}

.bmd-product-category {
  color: #727988;
  font-size: 0.62rem;
  font-weight: 850;
}

.bmd-product-price {
  color: #121827;
  font-size: 0.86rem;
  font-weight: 950;
}

.bmd-process {
  background: #050915;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.24);
  color: #fff;
  margin-inline: 8px;
  overflow: hidden;
  padding: 40px 34px;
  position: relative;
}

.bmd-process::before {
  background:
    radial-gradient(circle at 0 0, rgba(255, 191, 0, 0.24), transparent 30%),
    radial-gradient(
      circle at 100% 100%,
      rgba(18, 52, 112, 0.48),
      transparent 28%
    );
  content: "";
  inset: 0;
  position: absolute;
}

.bmd-process > * {
  position: relative;
  z-index: 1;
}

.bmd-step {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}

.bmd-step span {
  color: var(--bmd-yellow);
  font-size: 0.78rem;
  font-weight: 950;
}

.bmd-step h3 {
  font-size: 1.02rem;
  font-weight: 900;
  margin: 8px 0;
}

.bmd-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  margin: 0;
}

.bmd-why-card,
.bmd-seo-card,
.bmd-side-card,
.bmd-review-card {
  background: #fff;
  border: 1px solid var(--bmd-line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.bmd-why-card {
  padding: 24px;
}

.bmd-why-card i {
  color: var(--bmd-yellow-dark);
  font-size: 1.3rem;
}

.bmd-review-card {
  min-height: 142px;
  padding: 18px;
}

.bmd-avatar {
  align-items: center;
  background: #f3f4f6;
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.bmd-cta {
  background:
    radial-gradient(circle at center, rgba(255, 191, 0, 0.22), transparent 36%),
    linear-gradient(135deg, #140d00 0%, #02040a 100%);
  border-radius: 22px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
  color: #fff;
  margin-inline: 8px;
  padding: 62px 20px;
  text-align: center;
}

.bmd-seo-wrap {
  background: #fafafa;
}

.bmd-seo-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) 260px;
  margin-left: 0;
  margin-right: 0;
}

.bmd-seo-main,
.bmd-seo-aside {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.bmd-seo-card {
  padding: 26px;
}

.bmd-seo-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.bmd-seo-card p,
.bmd-seo-card li {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.85;
}

.bmd-side-card {
  padding: 22px;
}

.bmd-side-card.dark {
  background: #040816;
  color: #fff;
}

.bmd-side-card.dark p,
.bmd-side-card.dark li {
  color: rgba(255, 255, 255, 0.68);
}

.bmd-side-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: block;
  padding: 13px;
}

.bmd-faq .accordion-item {
  border-radius: 6px;
  margin-bottom: 8px;
}

.bmd-faq .accordion-button {
  font-size: 0.94rem;
  padding-block: 13px;
}

.bmd-footer {
  background: #070b15;
  color: rgba(255, 255, 255, 0.74);
  padding: 54px 0 26px;
}

.bmd-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.bmd-footer a:hover {
  color: var(--bmd-yellow);
}

.bmd-footer h3 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.bmd-social {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.products-page {
  background: #fff;
  color: #111827;
}

.product-brand-section {
  background: #fff;
  padding: 56px 0 28px;
}

.product-brand-section .section-heading h2,
.inventory-head h2 {
  color: #111827;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 6px 0 0;
}

.product-brand-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-brand-card {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  color: #111827;
  display: flex;
  font-size: 1.1rem;
  font-weight: 950;
  justify-content: center;
  letter-spacing: 0.04em;
  overflow: hidden;
  padding: 18px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.product-brand-card:hover {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  color: #ff1717;
  transform: translateY(-4px);
}

.product-brand-card img {
  max-height: 64px;
  object-fit: contain;
  width: 100%;
}

.product-inventory-section {
  background: #fff;
  padding-top: 40px;
}

.inventory-surface {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  padding: 30px;
}

.inventory-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.inventory-head p {
  color: #6b7280;
  font-weight: 600;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 620px;
}

.inventory-search {
  flex: 0 1 320px;
}

.catalog-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  color: inherit;
  display: block;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.catalog-card:hover {
  border-color: rgba(245, 185, 65, 0.6);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.catalog-media {
  aspect-ratio: 1 / 1;
  background: #f9fafb;
  display: block;
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.catalog-media img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
  width: 100%;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.04);
}

.catalog-chip {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
  color: #374151;
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  left: 8px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  padding: 3px 8px;
  position: absolute;
  text-overflow: ellipsis;
  top: 8px;
  white-space: nowrap;
}

.catalog-chip.brand {
  bottom: 8px;
  left: auto;
  right: 8px;
  top: auto;
}

.catalog-body {
  display: block;
  padding: 14px;
}

.catalog-title {
  color: #111827;
  display: -webkit-box;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  min-height: 2.35rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-foot {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 14px;
}

.rate-label {
  color: #9ca3af;
  display: block;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate-price {
  color: #111827;
  display: block;
  font-size: 1rem;
  font-weight: 950;
}

.buy-now-pill {
  align-items: center;
  background: #f9fafb;
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  padding: 0 0.85rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.catalog-card:hover .buy-now-pill {
  background: #ff1717;
  color: #fff;
}

.rental-promise-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.rental-promise-card {
  background: #fafafa;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  padding: 18px;
}

.rental-promise-card i {
  color: #ff1717;
  font-size: 1.35rem;
}

.rental-promise-card h3 {
  color: #111827;
  font-size: 0.96rem;
  font-weight: 900;
  margin: 10px 0 6px;
}

.rental-promise-card p {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

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

@keyframes lensDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@media (max-width: 991.98px) {
  .product-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inventory-head {
    align-items: start;
    flex-direction: column;
  }

  .inventory-search {
    flex-basis: 100%;
    width: 100%;
  }

  .rental-promise-grid {
    grid-template-columns: 1fr;
  }

  .bmd-seo-grid {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .bmd-hero {
    padding-top: 72px;
  }

  .bmd-camera-stage {
    min-height: 245px;
  }

  .bmd-camera-main {
    margin-top: 64px;
    max-width: 320px;
  }

  .bmd-product-float {
    right: 0;
  }

  .bmd-feature-float {
    left: 0;
  }

  .bmd-lens-strip {
    transform: none;
    transform-origin: center top;
  }

  .bmd-precision {
    min-height: 1040px;
  }

  .bmd-process {
    padding: 38px 24px;
  }

  .bmd-step {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .product-brand-section {
    padding-top: 38px;
  }

  .product-brand-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-brand-card {
    min-height: 112px;
    padding: 14px;
  }

  .product-brand-card img {
    max-height: 50px;
  }

  .inventory-surface {
    padding: 18px 12px;
  }

  .inventory-head {
    margin-bottom: 18px;
  }

  .catalog-media {
    padding: 10px;
  }

  .catalog-body {
    padding: 10px;
  }

  .catalog-title {
    font-size: 0.8rem;
    min-height: 2rem;
  }

  .catalog-chip {
    font-size: 0.56rem;
    padding: 2px 6px;
  }

  .rate-label {
    font-size: 0.55rem;
  }

  .rate-price {
    font-size: 0.9rem;
  }

  .buy-now-pill {
    height: 30px;
    padding: 0 0.7rem;
  }

  .bmd-seo-grid {
    grid-template-columns: 1fr;
  }

  .bmd-hero-stat {
    border-right: 0;
    min-width: 92px;
  }

  .bmd-camera-main {
    max-width: 285px;
  }

  .bmd-product-float,
  .bmd-feature-float {
    position: relative;
    right: auto;
    top: auto;
  }

  .bmd-camera-stage {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .bmd-precision {
    min-height: 980px;
  }

  .bmd-lens-strip {
    margin-left: 0;
    transform: none;
    width: auto;
  }

  .bmd-precision-caption {
    top: 190px;
  }
}

/* Rental equipment listing page */
body.rental-products {
  --rental-amber: #ff1717;
  --rental-yellow: #ff3b3b;
  --rental-ink: #111827;
  --rental-muted: #6b7280;
  --rental-line: #e5e7eb;
  --rental-soft: #f9fafb;
  --rental-card: #ffffff;
  --rental-green: #22c55e;
  background: var(--rental-soft);
  color: var(--rental-ink);
  font-family: var(--bmd-font-sans);
  margin: 0;
  padding-top: 64px;
}

body.rental-products a {
  color: inherit;
  text-decoration: none;
}

body.rental-products img {
  display: block;
  max-width: 100%;
}

.rental-products .d-none {
  display: none !important;
}

.rental-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.rental-container {
  margin-inline: auto;
  max-width: 1320px;
  padding-inline: 1rem;
  width: 100%;
}

.rental-header {
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 60;
}

.rental-nav {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
}

.rental-logo {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  min-width: 0;
}

.rental-logo-mark {
  background: #fff;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  overflow: hidden;
  width: 40px;
}

.rental-logo-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.rental-logo span:last-child {
  background: linear-gradient(90deg, #ff1717, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.24rem;
  font-weight: 850;
  white-space: nowrap;
}

.rental-menu {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.rental-menu a {
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.rental-menu a:hover,
.rental-menu a.active {
  color: var(--rental-amber);
}

.rental-cart-link {
  align-items: center;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}

.rental-cart-link i {
  font-size: 1.24rem;
}

.rental-cart-link span {
  align-items: center;
  background: linear-gradient(90deg, var(--rental-amber), #ff6b6b);
  border-radius: 999px;
  color: #000;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 20px;
}

.rental-menu-button {
  align-items: center;
  background: #fff;
  border: 0;
  color: #111827;
  display: none;
  font-size: 1.65rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.rental-mobile-nav {
  display: none;
}

.rental-main {
  min-height: 100vh;
}

.rental-search-band {
  background: #fff;
  border-bottom: 1px solid var(--rental-line);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 64px;
  z-index: 45;
}

.rental-search-band .rental-container {
  padding-block: 0.75rem;
}

.rental-search {
  position: relative;
}

.rental-search i {
  color: #9ca3af;
  font-size: 1.2rem;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rental-search input {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0.85rem;
  color: #111827;
  font-size: 1rem;
  height: 48px;
  outline: 0;
  padding: 0 1rem 0 3rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  width: 100%;
}

.rental-search input:focus {
  background: #fff;
  border-color: #ff3b3b;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
}

.rental-category-band {
  background: #fff;
  border-bottom: 1px solid var(--rental-line);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 137px;
  z-index: 40;
}

.rental-category-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-block: 0.5rem;
}

.rental-category {
  align-items: center;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.65rem;
  color: #4b5563;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.62rem;
  font-weight: 750;
  gap: 0.18rem;
  justify-content: center;
  line-height: 1.15;
  min-height: 56px;
  min-width: 78px;
  padding: 0.42rem 0.6rem;
  text-align: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.rental-category i {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1;
}

.rental-category small {
  color: #9ca3af;
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
}

.rental-category:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.rental-category.active {
  background: #fff1f1;
  border-color: #ff1717;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.rental-category.active i {
  color: #ff1717;
}

.rental-category.active small {
  color: rgba(255, 255, 255, 0.78);
}

.rental-empty-state {
  align-items: center;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: var(--bmd-radius);
  color: #667085;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
  min-height: 180px;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.rental-empty-state i {
  color: #ff1717;
  font-size: 2rem;
}

.rental-empty-state strong {
  color: #101828;
  font-size: 1rem;
  font-weight: 900;
}

.rental-empty-state span {
  font-size: 0.9rem;
}

.rental-listing {
  padding: 1rem 0 2rem;
}

.rental-listing-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.rental-listing-head h1 {
  color: #111827;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 850;
  line-height: 1.1;
  margin: 0;
}

.rental-listing-head p {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
}

.rental-filter-button {
  align-items: center;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  color: #374151;
  display: inline-flex;
  font-weight: 800;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1.35rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.rental-filter-button:hover {
  background: #fff1f1;
  border-color: #ff1717;
  color: #b45309;
}

.rental-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 5rem;
}

.rental-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.rental-card:hover {
  border-color: #ff1717;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
  transform: translateY(-4px);
}

.rental-card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  display: block;
  overflow: hidden;
  padding: 0.85rem;
  position: relative;
}

.rental-card-media img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
  width: 100%;
}

.rental-card:hover .rental-card-media img {
  transform: scale(1.08);
}

.rental-available {
  align-items: center;
  background: var(--rental-green);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.26);
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 850;
  gap: 0.38rem;
  padding: 0.35rem 0.65rem;
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
}

.rental-available span {
  animation: rentalPulse 1.5s ease-in-out infinite;
  background: #fff;
  border-radius: 999px;
  height: 0.42rem;
  width: 0.42rem;
}

.rental-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.85rem 0.95rem 1rem;
}

.rental-card-body p {
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.rental-card-body h2 {
  color: #111827;
  display: -webkit-box;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
  margin: 0;
  min-height: 2.38rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rental-price {
  align-items: baseline;
  display: flex;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.rental-price strong {
  color: #111827;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
}

.rental-price span {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 650;
}

.rental-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.rental-actions a {
  align-items: center;
  border-radius: 0.72rem;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 850;
  justify-content: center;
  min-height: 42px;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.rental-actions .bmd-btn {
  border-radius: 999px;
  font-size: 0.92rem !important;
  min-height: 42px;
  width: 100%;
}

.rental-actions a:active {
  transform: scale(0.98);
}

.rent-now {
  background: #ff3b3b;
  color: #fff;
}

.rent-now:hover {
  background: #ff1717;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.22);
  color: #fff;
}

.view-details {
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #374151;
}

.view-details:hover {
  background: #fff1f1;
  border-color: #ff1717;
  color: #b45309;
}

.rental-seo {
  background: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.rental-seo-intro {
  max-width: 850px;
}

.rental-seo-intro p {
  color: #ff1717;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.rental-seo-intro h2 {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.rental-seo-intro span {
  color: #475569;
  display: block;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.1rem;
}

.rental-seo-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 3rem;
}

.rental-seo-articles {
  display: grid;
  gap: 2rem;
}

.rental-seo article {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.rental-seo article h3,
.rental-seo-side h3 {
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 850;
  margin: 0 0 1rem;
}

.rental-seo article p {
  color: #475569;
  line-height: 1.85;
}

.rental-seo article ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.rental-seo article li {
  background: #fff;
  border-radius: 0.85rem;
  color: #334155;
  font-weight: 650;
  padding: 0.8rem 1rem;
}

.rental-seo-side {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.rental-seo-side .dark,
.rental-seo-side .warm {
  border-radius: 2rem;
  padding: 1.5rem;
}

.rental-seo-side .dark {
  background: #020617;
  color: #fff;
}

.rental-seo-side .dark h3 {
  color: #fff;
}

.rental-seo-side .dark a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: block;
  margin-top: 0.75rem;
  padding: 1rem;
}

.rental-seo-side .dark span {
  color: #cbd5e1;
  display: block;
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.rental-seo-side .warm {
  background: #fff1f1;
  border: 1px solid #ffc7c7;
}

.rental-seo-side .warm p {
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

.rental-footer {
  background: #111827;
  color: #d1d5db;
  padding: 4.5rem 0 2rem;
}

.rental-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 4fr 2fr 2fr 4fr;
}

.rental-footer-brand {
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.rental-footer-brand span {
  color: #ff1717;
}

.rental-footer-logo {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  height: 64px;
  overflow: hidden;
  width: 140px;
}

.rental-footer-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.rental-footer h3 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.rental-footer p,
.rental-footer a {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.7;
}

.rental-footer a {
  display: block;
  margin-bottom: 0.7rem;
}

.rental-footer a:hover {
  color: #ff3b3b;
}

.rental-footer-bottom {
  align-items: center;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  display: flex;
  font-size: 0.78rem;
  font-weight: 650;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.rental-footer-bottom a {
  display: inline;
  margin: 0 0 0 1.5rem;
}

@keyframes rentalPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.74);
  }
}

@media (max-width: 1199.98px) {
  .rental-grid {
    gap: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  body.rental-products {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .rental-menu,
  .rental-cart-link {
    display: none;
  }

  .rental-menu-button {
    display: inline-flex;
  }

  .rental-mobile-nav {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    bottom: 0;
    box-shadow: 0 -6px 16px rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-around;
    left: 0;
    padding: 0.45rem 0.5rem;
    position: fixed;
    right: 0;
    z-index: 70;
  }

  .rental-mobile-nav a {
    align-items: center;
    border-radius: 0.85rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    font-size: 0.74rem;
    font-weight: 700;
    gap: 0.18rem;
    min-width: 72px;
    padding: 0.45rem 0.65rem;
  }

  .rental-mobile-nav a.active {
    color: #ff1717;
  }

  .rental-mobile-nav i {
    font-size: 1.12rem;
  }

  .rental-category-scroll {
    flex-wrap: nowrap;
    margin-inline: -1rem;
    overflow-x: auto;
    padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rental-category-scroll::-webkit-scrollbar {
    display: none;
  }

  .rental-category {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

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

  .rental-seo-layout,
  .rental-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .rental-search-band {
    top: 64px;
  }

  .rental-category-band {
    top: 137px;
  }

  .rental-listing {
    padding-top: 0.85rem;
  }

  .rental-listing-head {
    align-items: flex-start;
    margin-bottom: 0.9rem;
  }

  .rental-filter-button {
    min-height: 44px;
    padding-inline: 0.9rem;
  }

  .rental-filter-button span {
    display: none;
  }

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

  .rental-card {
    border-radius: 0.9rem;
  }

  .rental-card-media {
    padding: 0.5rem;
  }

  .rental-available {
    font-size: 0.62rem;
    gap: 0.25rem;
    padding: 0.25rem 0.45rem;
    right: 0.4rem;
    top: 0.4rem;
  }

  .rental-card-body {
    padding: 0.62rem;
  }

  .rental-card-body p {
    font-size: 0.62rem;
    margin-bottom: 0.25rem;
  }

  .rental-card-body h2 {
    font-size: 0.78rem;
    min-height: 2rem;
  }

  .rental-price {
    gap: 0.25rem;
    padding-top: 0.78rem;
  }

  .rental-price strong {
    font-size: 1.15rem;
  }

  .rental-price span {
    font-size: 0.75rem;
  }

  .rental-actions {
    margin-top: 0.75rem;
  }

  .rental-actions a {
    border-radius: 0.55rem;
    font-size: 0.76rem;
    min-height: 36px;
  }

  .view-details {
    display: none !important;
  }

  .rental-seo {
    padding-block: 3.5rem;
  }

  .rental-seo article,
  .rental-seo-side .dark,
  .rental-seo-side .warm {
    border-radius: 1.25rem;
  }

  .rental-footer {
    padding-bottom: 6rem;
  }

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

  .rental-footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 420px) {
  .rental-container {
    padding-inline: 0.75rem;
  }

  .rental-logo span:last-child {
    font-size: 1rem;
  }

  .rental-category-scroll {
    margin-inline: -0.75rem;
    padding-inline: 0.75rem;
  }

  .rental-grid {
    gap: 0.58rem;
  }
}

/* Product detail page */
.rental-detail-page {
  background: #fff;
}

.detail-main {
  background: #fff;
  min-height: 100vh;
}

.detail-back-band {
  background: rgba(249, 250, 251, 0.82);
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 64px;
  z-index: 38;
  backdrop-filter: blur(12px);
}

.detail-back-band .rental-container {
  padding-block: 1rem;
}

.detail-back-link {
  align-items: center;
  color: #6b7280;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 750;
  gap: 0.2rem;
  transition: color 0.2s ease;
}

.detail-back-link i {
  transition: transform 0.2s ease;
}

.detail-back-link:hover {
  color: #ff1717;
}

.detail-back-link:hover i {
  transform: translateX(-3px);
}

.detail-product {
  padding: clamp(2.5rem, 5vw, 4rem) 0 4rem;
}

.detail-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.detail-gallery {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 132px;
}

.detail-image-card {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.detail-image-card img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.detail-gallery-main-image {
  transition: opacity 0.18s ease;
}

.detail-gallery-thumbs {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.detail-gallery-thumb {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0.35rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.detail-gallery-thumb img {
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  width: 100%;
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.is-active {
  border-color: #ff1717;
  box-shadow: 0 10px 24px rgba(255, 23, 23, 0.12);
  transform: translateY(-1px);
}

.detail-gallery-thumb:focus-visible {
  border-color: #ff1717;
  box-shadow: 0 0 0 4px rgba(255, 23, 23, 0.14);
  outline: none;
}

.detail-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-trust-item {
  align-items: center;
  background: #f9fafb;
  border-radius: 1rem;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
  font-weight: 850;
  gap: 0.45rem;
  justify-content: center;
  min-height: 88px;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.detail-trust-item i {
  color: #ff1717;
  font-size: 1.55rem;
}

.detail-info {
  min-width: 0;
}

.detail-kicker {
  color: #ff1717;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.detail-info h1 {
  color: #111827;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.detail-copy {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.detail-booking-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.5rem);
}

.detail-rate-row {
  align-items: flex-end;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.detail-rate-row span:first-child {
  color: #9ca3af;
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.detail-rate-row strong {
  color: #111827;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.detail-rate-row small {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 650;
  margin-left: 0.25rem;
}

.detail-stock {
  align-items: center;
  background: #dcfce7;
  border-radius: 999px;
  color: #15803d !important;
  display: inline-flex !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  gap: 0.35rem;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0.45rem 0.75rem;
  text-transform: none !important;
}

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

.detail-date-grid label {
  display: grid;
  gap: 0.32rem;
}

.detail-date-grid label span {
  color: #9ca3af;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-date-grid input {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  color: #111827;
  font-size: 0.9rem;
  min-height: 48px;
  padding: 0 0.85rem;
}

.detail-date-grid input:focus {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
  outline: 0;
}

.detail-address-field {
  display: grid;
  gap: 0.32rem;
}

.detail-address-field span {
  color: #9ca3af;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-address-field textarea {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  color: #111827;
  font-size: 0.9rem;
  min-height: 88px;
  padding: 0.85rem;
  resize: vertical;
}

.detail-address-field textarea:focus {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
  outline: 0;
}

.detail-duration-row {
  align-items: center;
  background: #f9fafb;
  border-radius: 0.85rem;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.detail-duration-row span {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 650;
}

.detail-duration-row strong {
  color: #111827;
  font-weight: 900;
}

.detail-actions {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.detail-actions a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 900;
  gap: 0.45rem;
  justify-content: center;
  min-height: 56px;
  padding: 0.75rem 1.45rem;
  text-align: center;
}

.detail-rent-button {
  background: #111827;
  color: #fff !important;
}

.detail-rent-button:hover {
  background: #000;
}

.detail-whatsapp-button {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111827 !important;
}

.detail-whatsapp-button:hover {
  background: #fff1f1;
  border-color: #ff1717;
}

.detail-related {
  border-top: 1px solid #e5e7eb;
  margin-top: clamp(4rem, 7vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.detail-related h2 {
  color: #111827;
  font-size: 1.55rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
}

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

.detail-related-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.9rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  color: inherit;
  display: block;
  height: 100%;
  overflow: hidden;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.detail-related-card:hover {
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.detail-related-media {
  aspect-ratio: 1 / 1;
  background: #f9fafb;
  display: block;
  overflow: hidden;
  padding: 0.75rem;
  position: relative;
}

.detail-related-media img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  width: 100%;
}

.detail-related-card:hover img {
  transform: scale(1.06);
}

.detail-related-media span,
.detail-related-media small {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
  color: #374151;
  font-size: 0.62rem;
  font-weight: 750;
  max-width: calc(100% - 1rem);
  overflow: hidden;
  padding: 0.2rem 0.5rem;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-related-media span {
  left: 0.5rem;
  top: 0.5rem;
}

.detail-related-media small {
  bottom: 0.5rem;
  right: 0.5rem;
}

.detail-related-body {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.85rem;
}

.detail-related-body strong {
  color: #111827;
  display: -webkit-box;
  font-size: 0.9rem;
  font-weight: 900;
  grid-column: 1 / -1;
  line-height: 1.28;
  min-height: 2.3rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail-related-body span {
  display: block;
}

.detail-related-body em {
  color: #9ca3af;
  display: block;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-related-body b {
  color: #111827;
  display: block;
  font-size: 1rem;
  font-weight: 900;
}

.detail-related-buy-now {
  align-items: center;
  align-self: end;
  background: #f9fafb;
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  padding: 0 0.85rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.detail-related-card:hover .detail-related-buy-now {
  background: #ff1717;
  color: #fff;
}

.detail-seo {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.detail-seo-intro {
  max-width: 860px;
}

.detail-seo-intro p {
  color: #ff1717;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.detail-seo-intro h2 {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 900;
  line-height: 1.04;
  margin: 0;
}

.detail-seo-intro span {
  color: #475569;
  display: block;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.1rem;
}

.detail-seo-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 3rem;
}

.detail-seo-articles {
  display: grid;
  gap: 2rem;
}

.detail-seo article {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.detail-seo article h3,
.detail-seo-side h3 {
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 1rem;
}

.detail-seo article p {
  color: #475569;
  line-height: 1.9;
}

.detail-seo article ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.detail-seo article li {
  background: #fff;
  border-radius: 0.85rem;
  color: #334155;
  font-weight: 650;
  padding: 0.8rem 1rem;
}

.detail-seo-side {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.detail-seo-side .dark,
.detail-seo-side .warm {
  border-radius: 2rem;
  padding: 1.5rem;
}

.detail-seo-side .dark {
  background: #020617;
  color: #fff;
}

.detail-seo-side .dark h3 {
  color: #fff;
}

.detail-seo-side .dark a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  display: block;
  margin-top: 0.75rem;
  padding: 1rem;
}

.detail-seo-side .dark span {
  color: #cbd5e1;
  display: block;
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.detail-seo-side .warm {
  background: #fff1f1;
  border: 1px solid #ffc7c7;
}

.detail-seo-side .warm p {
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

.detail-faq {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  margin-top: 3rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.detail-faq h2 {
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
}

.detail-faq details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
}

.detail-faq details:last-child {
  margin-bottom: 0;
}

.detail-faq summary {
  color: #0f172a;
  cursor: pointer;
  font-weight: 850;
}

.detail-faq p {
  color: #475569;
  line-height: 1.8;
  margin: 0.75rem 0 0;
}

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

  .detail-gallery {
    position: static;
  }

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

  .detail-seo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .detail-product {
    padding-top: 1.5rem;
  }

  .detail-back-band {
    top: 64px;
  }

  .detail-trust-grid {
    gap: 0.65rem;
  }

  .detail-gallery-thumbs {
    gap: 0.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-gallery-thumb {
    border-radius: 0.65rem;
    padding: 0.25rem;
  }

  .detail-trust-item {
    border-radius: 0.85rem;
    min-height: 74px;
    padding: 0.75rem 0.45rem;
  }

  .detail-trust-item i {
    font-size: 1.35rem;
  }

  .detail-date-grid,
  .detail-actions {
    grid-template-columns: 1fr;
  }

  .detail-whatsapp-button {
    min-height: 50px !important;
  }

  .detail-related-grid {
    gap: 0.75rem;
  }

  .detail-related-body {
    padding: 0.7rem;
  }

  .detail-related-body strong {
    font-size: 0.8rem;
    min-height: 2.05rem;
  }

  .detail-seo article,
  .detail-seo-side .dark,
  .detail-seo-side .warm,
  .detail-faq {
    border-radius: 1.25rem;
  }
}

/* Shared homepage navbar */
.home-container {
  margin-inline: auto;
  max-width: 1400px;
  padding-inline: 2rem;
  width: 100%;
}

.home-header {
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 80;
}

.home-header.is-mobile-menu-open {
  z-index: 120;
}

.home-nav {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
  position: relative;
}

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

.home-logo:hover {
  color: inherit;
}

.home-logo-mark {
  /* background: #020202; */
  border: 1px solid rgba(255, 23, 23, 0.24);
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgba(2, 2, 2, 0.12);
  height: 52px;
  overflow: hidden;
  width: 112px;
}

.home-logo-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.mobile-menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.mobile-menu-toggle:hover,
.home-header.is-mobile-menu-open .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mobile-menu-toggle svg {
  height: 22px;
  width: 22px;
}

.home-menu {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.home-menu-list {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-menu-item {
  position: relative;
}

.home-menu-top-item {
  align-items: center;
  display: flex;
  min-height: 64px;
}

.home-menu a {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-menu-link {
  align-items: center;
  display: inline-flex;
  min-height: 64px;
}

.home-menu a:hover,
.home-menu a.active {
  color: #ff1717;
}

.home-sub-menu {
  background: rgba(7, 11, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 210px;
  opacity: 0;
  padding: 0.5rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 0.25rem);
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  visibility: hidden;
  z-index: 100;
}

.home-sub-menu .home-sub-menu {
  left: calc(100% + 0.5rem);
  top: -0.5rem;
}

.home-menu-item:hover > .home-sub-menu,
.home-menu-item:focus-within > .home-sub-menu,
.home-menu-item.is-dropdown-open > .home-sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.home-submenu-link {
  align-items: center;
  border-radius: 0.375rem;
  display: flex;
  min-height: 38px;
  padding: 0.55rem 0.7rem;
  white-space: nowrap;
}

.home-submenu-link:hover,
.home-submenu-link.active {
  background: rgba(255, 23, 23, 0.14);
}

.submenu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  margin-left: 0.2rem;
  padding: 0;
  width: 24px;
}

.home-menu-item:hover > .submenu-toggle,
.home-menu-item:focus-within > .submenu-toggle,
.home-menu-item.is-dropdown-open > .submenu-toggle {
  color: #ff1717;
}

.home-menu-caret {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
  height: 7px;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  width: 7px;
}

.home-menu-item:hover > .submenu-toggle .home-menu-caret,
.home-menu-item:focus-within > .submenu-toggle .home-menu-caret,
.home-menu-item.is-dropdown-open > .submenu-toggle .home-menu-caret {
  transform: rotate(225deg);
}

.cart-link {
  align-items: center;
  color: #111827;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  width: 40px;
}

.cart-link:hover {
  color: #ff1717;
}

.cart-link svg {
  height: 20px;
  width: 20px;
}

.cart-badge {
  align-items: center;
  background: linear-gradient(90deg, #ff1717, #ff6b6b);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: -4px;
  top: -4px;
  width: 20px;
}

.mobile-bottom-nav {
  display: none;
}

.service-link-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-link-card:hover {
  border-color: rgba(227, 61, 47, 0.35);
  box-shadow: var(--shadow);
  color: inherit;
  transform: translateY(-5px);
}

.service-link-card p {
  font-size: var(--font-small);
  line-height: 1.75;
}

.service-card-media,
.service-hero-media {
  background: #f1f5f9;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  width: 100%;
}

.service-card-media {
  aspect-ratio: 16 / 10;
}

.service-hero-media {
  aspect-ratio: 16 / 9;
}

.service-card-image,
.service-hero-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-card h2,
.service-card h3,
.info-card h2,
.info-card h3,
.step-card h3,
.blog-card h2,
.blog-card h3 {
  font-size: var(--font-card-title) !important;
  line-height: 1.3;
}

.service-card-cta {
  margin-top: auto;
  width: fit-content;
}

.service-link-card:hover .service-card-cta {
  background: #ff1717;
  border-color: #ff1717;
  color: #fff;
}

.service-detail-hero {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.service-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.service-hero-card strong {
  display: block;
  font-size: var(--font-subsection-title);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.service-hero-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-body);
  line-height: 1.75;
  margin: 0;
}

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

.service-inclusion-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.85rem;
  min-height: 76px;
  padding: 1rem;
}

.service-inclusion-card i {
  color: #ff1717;
  flex: 0 0 auto;
}

.service-inclusion-card span {
  color: #111827;
  font-size: var(--font-small);
  font-weight: 800;
  line-height: 1.4;
}

.service-related-section {
  background: #fff;
}

@media (max-width: 767.98px) {
  .site-shell {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .desktop-cart {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .home-menu {
    background: rgba(7, 11, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    display: none;
    left: 1rem;
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding: 0.65rem;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.65rem);
    z-index: 95;
  }

  .home-header.is-mobile-menu-open .home-menu {
    display: block;
  }

  .home-menu-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
  }

  .home-menu-top-item,
  .home-submenu-item {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    width: 100%;
  }

  .home-menu-link,
  .home-submenu-link {
    border-radius: 0.5rem;
    flex: 1 1 auto;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    white-space: normal;
  }

  .home-menu .submenu-toggle {
    color: rgba(255, 255, 255, 0.82);
    height: 42px;
    margin-left: auto;
    width: 42px;
  }

  .home-sub-menu {
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    box-shadow: none;
    display: none;
    flex: 0 0 100%;
    margin: 0.15rem 0 0.35rem 0.75rem;
    min-width: 0;
    opacity: 1;
    padding: 0.25rem;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: calc(100% - 0.75rem);
  }

  .home-sub-menu .home-sub-menu {
    left: auto;
    margin-left: 0.5rem;
    top: auto;
    width: calc(100% - 0.5rem);
  }

  .home-menu-item:hover > .home-sub-menu,
  .home-menu-item:focus-within > .home-sub-menu {
    display: none;
  }

  .home-menu-item.is-dropdown-open > .home-sub-menu {
    display: block;
  }

  .mobile-bottom-nav {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    bottom: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 0.25rem;
    justify-content: space-around;
    left: 0;
    padding: 0.45rem max(0.5rem, env(safe-area-inset-left, 0px))
      calc(0.45rem + env(safe-area-inset-bottom, 0px))
      max(0.5rem, env(safe-area-inset-right, 0px));
    position: fixed;
    right: 0;
    z-index: 90;
  }

  .mobile-bottom-nav a {
    align-items: center;
    border-radius: 0.75rem;
    color: #6b7280;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    font-size: 0.68rem;
    font-weight: 650;
    gap: 0.25rem;
    min-width: 0;
    padding: 0.42rem 0.3rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-bottom-nav a.active {
    background: #fff1f1;
    color: #ff1717;
  }

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

@media (max-width: 767.98px) {
  .home-container {
    padding-inline: 1rem;
  }

  .home-logo-mark {
    height: 44px;
    width: 94px;
  }

  .bmd-btn:not(.btn-sm) {
    font-size: 0.95rem !important;
    min-height: 48px;
    padding: 0.75rem 1.15rem;
  }

  .service-inclusion-grid {
    grid-template-columns: 1fr;
  }
}

/* Unified camera-rental visual system across non-home pages */
body,
body.rental-products,
.bmd-page,
.site-shell,
.rental-shell {
  background: var(--bmd-page-bg);
  color: var(--bmd-text);
  font-family: var(--bmd-font-sans);
  font-size: 16px;
}

button,
input,
select,
textarea {
  font-family: var(--bmd-font-sans);
}

.home-header,
.rental-header,
.navbar {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 23, 23, 0.16), transparent 28%),
    rgba(7, 11, 20, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.navbar.is-scrolled {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 23, 23, 0.16), transparent 28%),
    rgba(7, 11, 20, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.home-menu a,
.home-menu .submenu-toggle,
.rental-menu a,
.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 750;
}

.home-menu a:hover,
.home-menu a.active,
.home-menu-item:hover > .submenu-toggle,
.home-menu-item:focus-within > .submenu-toggle,
.home-menu-item.is-dropdown-open > .submenu-toggle,
.rental-menu a:hover,
.rental-menu a.active,
.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.home-menu a:hover,
.home-menu a.active,
.rental-menu a:hover,
.rental-menu a.active,
.nav-link:hover,
.nav-link.active {
  text-shadow: 0 0 18px rgba(255, 23, 23, 0.24);
}

.cart-link,
.rental-cart-link {
  color: rgba(255, 255, 255, 0.88);
}

.cart-link:hover,
.rental-cart-link:hover {
  color: #fff;
}

.cart-badge,
.rental-cart-link span {
  background: var(--bmd-accent);
  color: #fff;
}

body.rental-products .home-header .home-menu a,
body.rental-detail-page .home-header .home-menu a {
  color: rgba(255, 255, 255, 0.88) !important;
  opacity: 1;
}

body.rental-products .home-header .home-menu a:hover,
body.rental-products .home-header .home-menu a.active,
body.rental-detail-page .home-header .home-menu a:hover,
body.rental-detail-page .home-header .home-menu a.active {
  color: #fff !important;
}

body.rental-products .home-header .cart-link,
body.rental-detail-page .home-header .cart-link {
  color: #fff !important;
}

.section,
.rental-listing,
.detail-product {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-title,
.section-heading h2,
.rental-listing-head h1,
.rental-seo-intro h2,
.detail-info h1,
.detail-seo-intro h2,
.page-hero h1 {
  color: var(--bmd-text);
  font-family: var(--bmd-font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}

.section-copy,
.rental-listing-head p,
.rental-seo-intro span,
.detail-copy,
.detail-seo-intro span,
.page-hero p {
  color: var(--bmd-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p:not(.eyebrow),
.page-hero .fs-5 {
  color: rgba(255, 255, 255, 0.72) !important;
}

.eyebrow,
.detail-kicker,
.rental-seo-intro p,
.detail-seo-intro p {
  color: var(--bmd-accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-container,
.container,
.home-container {
  max-width: 1280px;
}

.bmd-page {
  --bmd-yellow: var(--bmd-accent);
  --bmd-yellow-dark: var(--bmd-accent-dark);
  --bmd-cream: var(--bmd-page-bg);
  --bmd-ink: var(--bmd-text);
  --bmd-muted: #667085;
  --bmd-line: rgba(229, 231, 235, 0.95);
  --bmd-card: var(--bmd-surface);
}

.rental-search input,
.detail-date-grid input,
.detail-address-field textarea,
.form-control,
.form-select {
  border: 1px solid var(--bmd-border);
  border-radius: var(--bmd-radius);
  color: var(--bmd-text);
  font-size: 0.95rem;
}

.rental-search input:focus,
.detail-date-grid input:focus,
.detail-address-field textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 23, 23, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 23, 23, 0.1);
}

.rental-category,
.rental-filter-button,
.show-all-pill,
.btn,
.bmd-btn,
.detail-actions a,
.detail-related-buy-now {
  border-radius: var(--bmd-radius);
}

.rental-category.active,
.rental-filter-button:hover,
.service-link-card:hover .service-card-cta {
  background: var(--bmd-accent);
  border-color: var(--bmd-accent);
  color: #fff;
}

.rental-card,
.detail-image-card,
.detail-booking-card,
.detail-trust-item,
.detail-related-card,
.detail-seo article,
.detail-seo-side .dark,
.detail-seo-side .warm,
.detail-faq,
.rental-seo article,
.rental-seo-side .dark,
.rental-seo-side .warm,
.service-hero-card,
.service-inclusion-card,
.service-link-card,
.info-card,
.step-card,
.blog-card,
.testimonial-card,
.faq-block details,
.seo-faq-item {
  border-color: var(--bmd-border);
  border-radius: var(--bmd-radius);
  box-shadow: var(--bmd-shadow-soft);
}

.rental-card,
.detail-booking-card,
.detail-related-card,
.detail-seo article,
.rental-seo article {
  background: var(--bmd-surface);
}

.rental-card:hover,
.detail-related-card:hover,
.service-link-card:hover {
  border-color: rgba(255, 23, 23, 0.32);
  box-shadow: var(--bmd-shadow-strong);
  transform: translateY(-4px);
}

.rental-card-media,
.detail-image-card,
.detail-related-media {
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 23, 23, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #fff, #f8fafc);
  overflow: hidden;
  position: relative;
}

.rental-card-media::before,
.detail-image-card::before,
.detail-related-media::before {
  border: 1px solid rgba(255, 23, 23, 0.24);
  border-radius: 50%;
  content: "";
  height: 58%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  width: 58%;
  z-index: 1;
}

.rental-card-media::after,
.detail-image-card::after,
.detail-related-media::after {
  background: linear-gradient(
    115deg,
    transparent 34%,
    rgba(255, 255, 255, 0.72) 50%,
    transparent 66%
  );
  content: "";
  inset: -60% -45%;
  opacity: 0;
  position: absolute;
  transform: translateX(-70%) rotate(8deg);
  transition: opacity 0.25s ease;
  z-index: 4;
}

.rental-card:hover .rental-card-media::before,
.detail-image-card:hover::before,
.detail-related-card:hover .detail-related-media::before {
  animation: bmdFocusPulse 1.6s ease-in-out infinite;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rental-card:hover .rental-card-media::after,
.detail-image-card:hover::after,
.detail-related-card:hover .detail-related-media::after {
  animation: bmdLensSweep 0.9s ease forwards;
  opacity: 1;
}

.rental-card-media img,
.detail-image-card img,
.detail-related-media img {
  position: relative;
  z-index: 3;
}

.rental-available,
.detail-related-media span,
.detail-related-media small {
  z-index: 5;
}

.rental-price strong,
.detail-rate-row strong,
.detail-related-body b {
  color: var(--bmd-text);
}

.rent-now,
.detail-rent-button,
.btn-accent {
  background: var(--bmd-accent) !important;
  border-color: var(--bmd-accent) !important;
  color: #fff !important;
}

.rent-now:hover,
.detail-rent-button:hover,
.btn-accent:hover {
  background: var(--bmd-accent-dark) !important;
  border-color: var(--bmd-accent-dark) !important;
}

.view-details,
.detail-whatsapp-button,
.btn-outline-ink {
  background: #fff !important;
  border-color: var(--bmd-border) !important;
  color: var(--bmd-text) !important;
}

.view-details:hover,
.detail-whatsapp-button:hover,
.btn-outline-ink:hover {
  background: var(--bmd-dark) !important;
  border-color: var(--bmd-dark) !important;
  color: #fff !important;
}

.rental-footer,
.home-footer,
.footer {
  background: var(--bmd-dark);
  color: #d1d5db;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
}

.rental-footer h3,
.home-footer h3,
.footer-title {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.rental-footer a:hover,
.home-footer a:hover,
.footer a:hover {
  color: #ff6b6b;
}

.site-footer-unified {
  background:
    radial-gradient(circle at 15% 0, rgba(255, 23, 23, 0.18), transparent 30%),
    var(--bmd-dark);
  border-top: 1px solid #1f2937;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 3rem;
  position: relative;
}

.site-footer-container {
  margin-inline: auto;
  max-width: 1280px;
  padding-inline: clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.site-footer-unified .footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  margin-bottom: 5rem;
}

.site-footer-unified .footer-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  text-decoration: none;
}

.site-footer-unified .footer-brand img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  height: 64px;
  object-fit: contain;
  width: 140px;
}

.site-footer-unified .footer-about {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 20rem;
}

.site-footer-unified .footer-socials {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.site-footer-unified .footer-socials a {
  align-items: center;
  background: #1f2937;
  border-radius: 999px;
  color: #9ca3af;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  width: 40px;
}

.site-footer-unified .footer-socials a:hover {
  background: var(--bmd-accent);
  color: #fff;
  transform: scale(1.1);
}

.site-footer-unified h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.site-footer-unified .footer-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-unified .footer-list a {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer-unified .footer-list a:hover {
  color: #ff3b3b;
}

.site-footer-unified .contact-panel {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem;
}

.site-footer-unified .contact-panel li {
  align-items: flex-start;
  color: #d1d5db;
  display: flex;
  gap: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.site-footer-unified .contact-panel li:last-child {
  margin-bottom: 0;
}

.site-footer-unified .contact-panel svg {
  color: var(--bmd-accent);
  flex: 0 0 auto;
  height: 20px;
  margin-top: 0.2rem;
  width: 20px;
}

.site-footer-unified .footer-bottom {
  align-items: center;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  display: flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 2rem;
}

.site-footer-unified .footer-bottom p {
  margin: 0;
}

.site-footer-unified .footer-bottom a {
  color: #6b7280;
  margin-left: 2rem;
  text-decoration: none;
}

.site-footer-unified .footer-bottom a:hover {
  color: #fff;
}

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

@media (max-width: 767.98px) {
  .site-footer-unified {
    padding: 4rem 0 2rem;
  }

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

  .site-footer-unified .footer-bottom a {
    display: inline-block;
    margin-left: 0;
    margin-right: 1.25rem;
  }
}

@keyframes bmdFocusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 23, 0.15);
    opacity: 0.75;
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 23, 23, 0);
    opacity: 1;
  }
}

@keyframes bmdLensSweep {
  from {
    transform: translateX(-70%) rotate(8deg);
  }
  to {
    transform: translateX(70%) rotate(8deg);
  }
}

/* Product archive premium polish */
body.rental-products {
  background: linear-gradient(180deg, #f5f7fb 0, #fff 42%, #f7f8fb 100%);
}

body.rental-products .product-archive-slider {
  background: #070b13;
  min-height: clamp(560px, 62vh, 680px);
}

body.rental-products .product-archive-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  isolation: isolate;
  min-height: clamp(560px, 62vh, 680px);
  padding: 96px 0 3rem;
  position: absolute;
}

body.rental-products .product-archive-slide::before {
  display: none;
}

body.rental-products .product-archive-slide::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  content: "";
  inset: 18% max(2rem, calc((100vw - 1280px) / 2)) 12% 58%;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

body.rental-products .product-archive-slide > .container {
  transform: translateY(-3rem);
}

body.rental-products .product-archive-slide .col-lg-8 {
  max-width: 690px;
}

body.rental-products .product-archive-slide .breadcrumb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  padding: 0.45rem 0.8rem;
}

body.rental-products .product-archive-slide .eyebrow,
body.rental-products .rental-products-hero .eyebrow {
  background: rgba(255, 23, 23, 0.16);
  border: 1px solid rgba(255, 23, 23, 0.42);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.8rem;
}

body.rental-products .product-archive-slide h1,
body.rental-products .product-archive-slide-title {
  color: #fff;
  font-family: var(--bmd-font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
  /* max-width: 11ch; */
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

body.rental-products .product-archive-slide .fs-5 {
  max-width: 640px;
}

body.rental-products .product-archive-slide .bmd-btn {
  margin-top: 1.25rem;
}

body.rental-products .product-archive-slider-controls {
  background: rgba(7, 11, 19, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  padding: 0.35rem;
}

@supports (backdrop-filter: blur(14px)) {
  body.rental-products .product-archive-slider-controls {
    backdrop-filter: blur(14px);
  }
}

body.rental-products .product-archive-slider-dots button {
  background: rgba(255, 255, 255, 0.34);
  border: 0;
}

body.rental-products .product-archive-slider-dots button.is-active {
  background: #ff1717;
}

body.rental-products .rental-search-band,
body.rental-products .rental-category-band {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

@supports (backdrop-filter: blur(16px)) {
  body.rental-products .rental-search-band,
  body.rental-products .rental-category-band {
    backdrop-filter: blur(16px);
  }
}

body.rental-products .rental-search input {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.rental-products .rental-search input:focus {
  border-color: rgba(255, 23, 23, 0.62);
  box-shadow:
    0 0 0 4px rgba(255, 23, 23, 0.1),
    0 14px 34px rgba(15, 23, 42, 0.08);
}

body.rental-products .rental-category-scroll {
  gap: 0.55rem;
}

body.rental-products .rental-category {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  min-height: 60px;
  min-width: 88px;
}

body.rental-products .rental-category:hover {
  border-color: rgba(255, 23, 23, 0.34);
  color: #111827;
}

body.rental-products .rental-category.active {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
  color: #fff;
}

body.rental-products .rental-category.active i,
body.rental-products .rental-category.active small {
  color: #ff6b6b;
}

body.rental-products .rental-listing {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

body.rental-products .rental-listing-head {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.94)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--bmd-radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  padding: clamp(1rem, 2vw, 1.35rem);
}

body.rental-products .rental-listing-head h1 {
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

body.rental-products .rental-listing-head p {
  color: #667085;
  font-weight: 750;
}

body.rental-products .rental-filter-button {
  border-width: 1px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

body.rental-products .rental-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

body.rental-products .rental-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.07);
}

body.rental-products .rental-card:hover {
  border-color: rgba(255, 23, 23, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 54px rgba(15, 23, 42, 0.14);
}

body.rental-products .rental-card-media {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 23, 23, 0.12),
      transparent 36%
    ),
    linear-gradient(180deg, #fff 0%, #f3f5f9 100%);
  padding: 1rem;
}

body.rental-products .rental-available {
  background: #111827;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.2);
}

body.rental-products .rental-available span {
  background: #22c55e;
}

body.rental-products .rental-card-body {
  padding: 1rem;
}

body.rental-products .rental-card-body p {
  color: #ff1717;
  letter-spacing: 0.06em;
}

body.rental-products .rental-card-body h2 {
  color: #101828;
}

body.rental-products .rental-price strong {
  color: #ff1717;
}

body.rental-products .rental-actions {
  gap: 0.65rem;
}

body.rental-products .rental-actions .bmd-btn {
  min-height: 44px;
}

body.rental-products .rental-seo {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

@media (max-width: 991.98px) {
  body.rental-products .product-archive-slide {
    min-height: 360px;
    padding: 106px 0 64px;
  }

  body.rental-products .product-archive-slide > .container {
    transform: translateY(-1.25rem);
  }

  body.rental-products .product-archive-slide h1,
  body.rental-products .product-archive-slide-title {
    max-width: 13ch;
  }

  body.rental-products .rental-listing-head {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  body.rental-products .product-archive-slide {
    min-height: 340px;
    padding: 92px 0 72px;
  }

  body.rental-products .product-archive-slide > .container {
    transform: none;
  }

  body.rental-products .product-archive-slide::before {
    display: none;
  }

  body.rental-products .product-archive-slide .breadcrumb {
    border-radius: var(--bmd-radius);
    padding: 0.4rem 0.65rem;
  }

  body.rental-products .product-archive-slide h1,
  body.rental-products .product-archive-slide-title {
    max-width: 100%;
  }

  body.rental-products .product-archive-slide .fs-5 {
    font-size: 0.96rem !important;
    line-height: 1.65;
  }

  body.rental-products .product-archive-slider-controls {
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }

  body.rental-products .rental-listing-head {
    gap: 0.75rem;
    padding: 0.95rem;
  }

  body.rental-products .rental-card {
    border-radius: 10px;
  }

  body.rental-products .rental-card-media {
    padding: 0.65rem;
  }

  body.rental-products .rental-actions .bmd-btn {
    min-height: 40px;
  }
}

/* Inner page polish, homepage excluded */
body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider) {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 32px 90px rgba(2, 6, 23, 0.24);
  display: flex;
  isolation: isolate;
  min-height: clamp(560px, 62vh, 680px);
  overflow: hidden;
  padding: 96px 0 3rem;
  position: relative;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)::before {
  /* background:
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.98) 0%,
      rgba(3, 7, 18, 0.9) 34%,
      rgba(3, 7, 18, 0.48) 62%,
      rgba(3, 7, 18, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 23, 23, 0.14) 0%,
      rgba(3, 7, 18, 0) 42%,
      rgba(3, 7, 18, 0.34) 100%
    ); */
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

body:not(.homepage)
  .page-hero.products-hero:not(.service-archive-slider):not(
    .product-archive-slider
  )::before {
  display: none;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  content: "";
  inset: 18% max(2rem, calc((100vw - 1280px) / 2)) 12% 58%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  > .container {
  display: grid;
  /* gap: 3rem; */
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: clamp(280px, 56vh, 570px);
  position: relative;
  z-index: 1;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  > .container
  > * {
  grid-column: 1;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  .row {
  grid-column: 1 / -1;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  .col-lg-8,
body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  .col-lg-7 {
  max-width: 760px;
}

body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  .rental-hero-panel {
  display: none;
}

body.rental-products
  .rental-products-hero:not(.product-archive-slider)
  .col-lg-4 {
  display: none;
}

body:not(.homepage) .service-archive-slider,
body:not(.homepage) .service-detail-hero.service-archive-slider {
  background: #070b13;
  min-height: clamp(560px, 62vh, 680px);
  padding: 0;
}

body:not(.homepage) .service-archive-slider::after {
  display: none;
}

body:not(.homepage) .service-archive-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  isolation: isolate;
  min-height: clamp(560px, 62vh, 680px);
  padding: 96px 0 3rem;
  position: absolute;
}

body:not(.homepage) .service-archive-slide::before {
  display: none;
}

body:not(.homepage) .service-archive-slide::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  content: "";
  inset: 18% max(2rem, calc((100vw - 1280px) / 2)) 12% 58%;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

body:not(.homepage) .service-archive-slide .container {
  position: relative;
  z-index: 1;
}

body:not(.homepage) .service-archive-slide .col-lg-8 {
  max-width: 690px;
}

body:not(.homepage) .page-hero .breadcrumb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-flex;
  padding: 0.45rem 0.8rem;
}

body:not(.homepage) .page-hero .eyebrow,
body:not(.homepage) .service-archive-slide .eyebrow {
  background: rgba(255, 23, 23, 0.16);
  border: 1px solid rgba(255, 23, 23, 0.42);
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.8rem;
}

body:not(.homepage) .service-archive-slide h1,
body:not(.homepage) .service-archive-slide-title,
body:not(.homepage)
  .page-hero:not(.service-archive-slider):not(.product-archive-slider)
  h1 {
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

body:not(.homepage) .service-archive-slide .fs-5 {
  max-width: 640px;
}

body:not(.homepage) .service-archive-slider-controls {
  background: rgba(7, 11, 19, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  padding: 0.35rem;
}

@supports (backdrop-filter: blur(14px)) {
  body:not(.homepage) .service-archive-slider-controls {
    backdrop-filter: blur(14px);
  }
}

body:not(.homepage) .service-archive-slider-dots button {
  background: rgba(255, 255, 255, 0.34);
  border: 0;
}

body:not(.homepage) .service-archive-slider-dots button.is-active {
  background: #ff1717;
}

body.service-pages {
  background: linear-gradient(180deg, #f5f7fb 0, #fff 44%, #f8fafc 100%);
}

body.service-pages .section {
  padding-block: clamp(3rem, 5.5vw, 5rem);
}

body.service-pages .service-link-card,
body.service-pages .service-inclusion-card,
body.service-pages .step-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.07);
}

body.service-pages .service-link-card {
  background: #fff;
  padding: 1rem;
}

body.service-pages .service-link-card:hover {
  border-color: rgba(255, 23, 23, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 54px rgba(15, 23, 42, 0.14);
}

body.service-pages .service-card-media,
body.service-pages .service-hero-media {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 23, 23, 0.12),
      transparent 36%
    ),
    linear-gradient(180deg, #fff 0%, #f3f5f9 100%);
  border-radius: 10px;
}

body.service-pages .service-card-image,
body.service-pages .service-hero-image {
  transition: transform 0.45s ease;
}

body.service-pages .service-link-card:hover .service-card-image {
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider),
  body:not(.homepage) .service-archive-slide {
    min-height: 360px;
    padding: 106px 0 64px;
  }

  body:not(.homepage) .service-archive-slide h1,
  body:not(.homepage) .service-archive-slide-title {
    max-width: 13ch;
  }
}

@media (max-width: 767.98px) {
  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider),
  body:not(.homepage) .service-archive-slide {
    min-height: 340px;
    padding: 92px 0 72px;
  }

  body:not(.homepage) .service-archive-slide::before {
    display: none;
  }

  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(
      .product-archive-slider
    )::before {
    background: linear-gradient(
      180deg,
      rgba(7, 11, 19, 0.92) 0%,
      rgba(7, 11, 19, 0.76) 100%
    );
  }

  body:not(.homepage) .page-hero .breadcrumb {
    border-radius: var(--bmd-radius);
    padding: 0.4rem 0.65rem;
  }

  body:not(.homepage) .service-archive-slide h1,
  body:not(.homepage) .service-archive-slide-title {
    max-width: 100%;
  }

  body:not(.homepage) .service-archive-slide .fs-5 {
    font-size: 0.96rem !important;
    line-height: 1.65;
  }

  body:not(.homepage) .service-archive-slider-controls {
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }
}

@media (max-width: 991.98px) {
  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider),
  body:not(.homepage) .service-archive-slide,
  body.rental-products .product-archive-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    min-height: clamp(380px, 52vh, 460px);
    padding: 92px 0 2.25rem;
  }

  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider)
    > .container {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider)::after,
  body:not(.homepage) .service-archive-slide::after,
  body.rental-products .product-archive-slide::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(.product-archive-slider),
  body:not(.homepage) .service-archive-slide,
  body.rental-products .product-archive-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: auto;
    padding: 86px 0 2rem;
  }

  body:not(.homepage) .service-archive-slide::before,
  body.rental-products .product-archive-slide::before {
    display: none;
  }

  body:not(.homepage)
    .page-hero:not(.service-archive-slider):not(
      .product-archive-slider
    )::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.94) 0%,
        rgba(3, 7, 18, 0.78) 100%
      ),
      linear-gradient(180deg, rgba(255, 23, 23, 0.12) 0%, rgba(3, 7, 18, 0) 44%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
