:root {
  --ink: #111111;
  --charcoal: #202020;
  --graphite: #565656;
  --steel: #b8b8b2;
  --mist: #f4f2ee;
  --paper: #ffffff;
  --gold: #c7a15a;
  --gold-dark: #8a6b2e;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.15);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.lux-body {
  overflow-x: hidden;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-muted {
  background: var(--mist);
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.display-heading {
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 5.8vw, 5.9rem);
}

h2 {
  font-size: clamp(1.9rem, 2.7vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2.35rem);
}

.lead-lux {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  max-width: 720px;
}

.section .col-lg-5 h2,
.section .col-lg-6 h2,
.section .col-lg-7 h2 {
  font-size: clamp(1.65rem, 2.1vw, 2.65rem);
}

.text-soft {
  color: rgba(17, 17, 17, 0.67);
}

.text-soft-light {
  color: rgba(255, 255, 255, 0.7);
}

.navbar {
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}

.navbar.is-scrolled {
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  padding: 10px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 185px;
  max-width: 48vw;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--paper);
}

.btn-lux,
.btn-outline-lux,
.btn-dark-lux {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.95rem 1.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-lux {
  color: var(--ink);
  background: linear-gradient(135deg, #f1d898, var(--gold));
  border: 0;
  box-shadow: 0 16px 38px rgba(199, 161, 90, 0.28);
}

.btn-outline-lux {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark-lux {
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.btn-lux:hover,
.btn-outline-lux:hover,
.btn-dark-lux:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 170px 0 78px;
}

.hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 54px;
  background: var(--gold);
}

.hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 22px;
}

.page-hero {
  min-height: 52vh;
  position: relative;
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.breadcrumb-lux {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.lux-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(199, 161, 90, 0.4);
}

.lux-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.category-card img,
.product-card .lux-card img,
.product-render,
.product-showcase img {
  object-fit: contain;
  background: var(--mist);
  padding: 22px;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(199, 161, 90, 0.14);
  color: var(--gold-dark);
  font-size: 1.45rem;
}

.feature-tile {
  border-top: 1px solid var(--line);
  padding: 28px 12px 10px 0;
}

.inner-section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
}

.inner-section-heading h2 {
  white-space: normal;
}

.download-note {
  border-left: 3px solid var(--gold);
  color: var(--graphite);
  background: var(--mist);
  border-radius: 8px;
  padding: 16px 18px;
}

.contact-support {
  display: grid;
  gap: 14px;
}

.contact-support div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.contact-support i {
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-right: 8px;
}

.contact-support strong {
  display: inline-block;
  margin-bottom: 6px;
}

.contact-support span {
  display: block;
  color: var(--graphite);
}

.contact-page .lux-card {
  height: auto;
}

.contact-info-card,
.contact-form-card {
  overflow: visible;
}

.contact-info-card:hover,
.contact-form-card:hover,
.contact-support div:hover {
  transform: none;
  box-shadow: none;
}

.contact-form-card .wpcf7-form p {
  margin: 0;
}

.contact-form-card .wpcf7,
.contact-form-card .wpcf7-form {
  margin: 0;
}

.contact-form-card .wpcf7-form p br {
  display: none;
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card .wpcf7-submit {
  width: auto;
}

.contact-form-card .wpcf7-spinner {
  margin-top: 1rem;
}

.contact-form-card .wpcf7-response-output {
  margin: 1rem 0 0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.cta-mini {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  padding: 36px;
}

.cta-mini h2 {
  white-space: normal;
  margin: 10px 0 14px;
}

.install-video-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #34302a);
  padding: 28px;
  text-align: center;
}

.install-video-card i {
  color: var(--gold);
  font-size: 2.4rem;
}

.install-video-card strong,
.install-video-card span {
  display: block;
}

.install-video-card span {
  color: rgba(255, 255, 255, 0.72);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-section {
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -160px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(199, 161, 90, 0.18);
  transform: rotate(18deg);
}

.about-story-section .container {
  position: relative;
  z-index: 1;
}

.about-story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-story-points div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.about-story-points i {
  color: var(--gold-dark);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.about-story-points strong,
.about-story-points span {
  display: block;
}

.about-story-points span {
  color: var(--graphite);
  margin-top: 4px;
}

.profile-card,
.benefit-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 28px;
}

.profile-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.67);
}

.profile-card li + li {
  margin-top: 10px;
}

.benefit-card i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, #f1d898, var(--gold));
  margin-bottom: 18px;
}

.about-visual {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-visual-wide {
  aspect-ratio: 1.24 / 1;
}

.about-visual-wide img {
  min-height: 0;
}

.about-spec-card,
.about-finish-card {
  position: absolute;
  left: 22px;
  right: auto;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(14px);
  padding: 16px 18px;
}

.about-spec-card {
  top: 24px;
  max-width: 245px;
}

.about-finish-card {
  bottom: 24px;
  max-width: 340px;
}

.about-spec-card span,
.about-finish-card span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-spec-card strong,
.about-finish-card strong {
  display: block;
  margin-top: 4px;
}

.masonry {
  columns: 3 280px;
  column-gap: 22px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.masonry-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.58);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.home-applications {
  position: relative;
  overflow: hidden;
}

.home-applications::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(199, 161, 90, 0.14), transparent 32%);
  pointer-events: none;
}

.home-applications .container {
  position: relative;
  z-index: 1;
}

.home-app-title {
  white-space: normal;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.application-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.application-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.application-shot {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--charcoal);
  text-align: left;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.application-shot-large {
  grid-row: span 2;
}

.application-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.application-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.7));
}

.application-shot span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--paper);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.64);
  padding: 8px 14px;
  font-weight: 800;
}

.application-shot:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.application-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.application-info-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  min-height: 250px;
}

.application-info-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.application-info-card span {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.application-info-card h3 {
  margin-bottom: 10px;
}

.product-card {
  position: relative;
}

.product-card .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  margin: 0;
}

.sku,
.posted_in,
.tagged_as {
  color: var(--graphite);
  font-size: 0.86rem;
}

.attribute-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  margin: 4px 4px 0 0;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 700;
}

.filters {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.products.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.product-archive-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-archive-loader[hidden] {
  display: none;
}

.product-loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: luvinox-loader-spin 0.75s linear infinite;
}

.product-scroll-sentinel {
  width: 100%;
  height: 1px;
}

@keyframes luvinox-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-control,
.form-select {
  border-radius: 999px;
  border-color: var(--line);
  padding: 0.85rem 1rem;
}

textarea.form-control {
  border-radius: 18px;
}

.detail-gallery-main {
  position: relative;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
}

.woocommerce div.product.product-detail-layout div.images,
.woocommerce div.product.product-detail-layout div.summary,
.woocommerce-page div.product.product-detail-layout div.images,
.woocommerce-page div.product.product-detail-layout div.summary {
  float: none;
  width: 100%;
  margin-bottom: 0;
}

.product-detail-layout .summary.entry-summary {
  width: 100%;
}

.product-detail-layout .woocommerce-product-details__short-description {
  min-height: 53px;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.detail-gallery-main.product-showcase img {
  object-fit: contain;
}

.detail-gallery-main img.zoomed {
  transform: scale(1.45);
  cursor: zoom-out;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-gallery-nav:hover,
.product-gallery-nav:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-nav-prev {
  left: 18px;
}

.product-gallery-nav-next {
  right: 18px;
}

.thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.thumb-row button {
  flex: 0 0 calc((100% - 36px) / 4);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.thumb-row button:hover,
.thumb-row button:focus-visible,
.thumb-row button.active {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(195, 160, 92, 0.2);
  transform: translateY(-1px);
}

.thumb-row img {
  height: 110px;
  width: 100%;
  object-fit: cover;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--graphite);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.timeline-item {
  border-left: 1px solid var(--line);
  padding: 0 0 38px 28px;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: -6px;
  top: 8px;
}

.installation-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.install-step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.install-step-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: var(--mist);
}

.install-step-card div {
  padding: 20px;
}

.install-step-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, #f1d898, var(--gold));
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-band {
  background: linear-gradient(135deg, var(--ink), #3a352d);
  color: var(--paper);
  border-radius: 8px;
  padding: 58px;
  overflow: hidden;
  position: relative;
}

.cta-band-centered {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.cta-band-centered h2 {
  white-space: normal;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-centered p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -8% -45% auto;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(199, 161, 90, 0.3);
  transform: rotate(20deg);
}

.footer {
  background: #101010;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 30px;
}

.footer h4,
.footer h5 {
  color: var(--paper);
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: var(--gold);
}

.footer .wpcf7 form,
.footer .wpcf7 .d-flex {
  width: 100%;
}

.footer .wpcf7-form .d-flex > p,
.footer .wpcf7-form p {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.footer .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.footer .wpcf7-form-control-wrap input {
  width: 100% !important;
  min-width: 0;
}

.footer .wpcf7-submit {
  border: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #f1d898, var(--gold));
  box-shadow: 0 16px 38px rgba(199, 161, 90, 0.28);
  flex: 0 0 54px !important;
  width: 54px !important;
  min-width: 54px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.footer .wpcf7-spinner {
  display: none;
}

.social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-inquiry {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #128c7e;
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.34);
  font-weight: 800;
}

.whatsapp-inquiry:hover {
  color: #fff;
  background: #075e54;
  transform: translateY(-2px);
}

.whatsapp-inquiry i {
  font-size: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.16);
}

.accordion-button:not(.collapsed) {
  color: var(--ink);
  background: rgba(199, 161, 90, 0.12);
  box-shadow: none;
}

.application-card {
  min-height: 360px;
}

.application-card img {
  height: 360px;
}

.application-card .masonry-label {
  font-size: 1rem;
}

.sticky-inquiry {
  position: sticky;
  top: 96px;
}
h1.single-productpage {
    font-size: 50px;
}
a:focus,
a:active {
    background-color: transparent;
    outline: none;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
}