:root {
  --het-ink: #1d211b;
  --het-blue: #415237;
  --het-blue-deep: #182414;
  --het-sky: #76865f;
  --het-gold: #b78232;
  --het-mist: #eef0e8;
  --het-line: #ded8c7;
  --het-steel: #686f62;
  --het-cream: #fbf7ef;
  --het-canvas: #e9dec8;
  --het-white: #fffdf8;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--het-ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f6f3eb;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-title {
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.15;
}

.top-strip {
  color: rgba(255, 246, 220, 0.88);
  background: #26341c;
  border-bottom: 1px solid rgba(184, 137, 55, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-strip .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip span {
  color: #e4c577;
}

.top-strip .container > div {
  overflow-wrap: anywhere;
}

.navbar {
  background: rgba(24, 36, 20, 0.96) !important;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  box-shadow: 0 10px 30px rgba(24, 36, 20, 0.14);
  padding: 0.7rem 0;
}

.home-page .navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 36, 20, 0.96) !important;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  box-shadow: 0 10px 30px rgba(24, 36, 20, 0.14);
}

.home-page .navbar .nav-link {
  color: rgba(255, 246, 220, 0.92);
}

.home-page .navbar .nav-link:hover,
.home-page .navbar .nav-link:focus,
.home-page .navbar .nav-link:active,
.home-page .navbar .nav-link.show,
.home-page .navbar .nav-link.active {
  color: #fff;
}

.home-page .navbar-toggler {
  border-color: rgba(255, 246, 220, 0.45);
  background: rgba(255, 246, 220, 0.86);
}

.navbar-toggler {
  border-color: rgba(255, 246, 220, 0.45);
  background: rgba(255, 246, 220, 0.9);
}

.brand-logo {
  width: 148px;
  height: auto;
}

.nav-link {
  color: rgba(255, 253, 248, 0.86);
  position: relative;
  padding: 0.65rem 0.35rem !important;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.nav-link.show,
.nav-link.active {
  color: #fff;
  background: transparent;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar .nav-link:not(.dropdown-toggle)::after,
.navbar .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--het-gold), var(--het-blue));
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle):focus::after,
.navbar .nav-link:not(.dropdown-toggle).active::after,
.navbar .dropdown-toggle:hover::before,
.navbar .dropdown-toggle:focus::before,
.navbar .dropdown-toggle.show::before,
.navbar .dropdown-toggle.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown-toggle::after {
  margin-left: 0.38rem;
  vertical-align: 0.12em;
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: rgba(65, 82, 55, 0.1);
  --bs-dropdown-link-active-color: var(--het-blue-deep);
  min-width: 245px;
  padding: 0.55rem;
  border: 1px solid rgba(65, 82, 55, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 55px rgba(24, 36, 20, 0.14);
}

.dropdown-item {
  border-radius: 6px;
  color: var(--het-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.dropdown-item small {
  display: block;
  color: var(--het-steel);
  font-size: 0.74rem;
  font-weight: 600;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(183, 130, 50, 0.12);
  color: var(--het-blue-deep);
}

.dropdown-item:active,
.dropdown-item.active {
  background: rgba(183, 130, 50, 0.16);
  color: var(--het-blue-deep);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown:hover > .dropdown-toggle::before,
  .navbar .dropdown:focus-within > .dropdown-toggle::before {
    opacity: 1;
    transform: scaleX(1);
  }
}

.navbar-nav {
  gap: 0.35rem;
}

.navbar .btn-het {
  padding: 0.72rem 1.18rem;
}

.navbar-collapse > .btn-het {
  flex: 0 0 auto;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-het {
  --bs-btn-bg: var(--het-blue);
  --bs-btn-border-color: var(--het-blue);
  --bs-btn-hover-bg: var(--het-blue-deep);
  --bs-btn-hover-border-color: var(--het-blue-deep);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #26341c, #566337);
  box-shadow: 0 12px 24px rgba(40, 49, 29, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-het:hover,
.btn-het:focus {
  background: linear-gradient(135deg, #1b2513, #46512f);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(40, 49, 29, 0.3);
}

.btn-outline-het {
  --bs-btn-color: var(--het-blue);
  --bs-btn-border-color: var(--het-blue);
  --bs-btn-hover-bg: var(--het-blue);
  --bs-btn-hover-border-color: var(--het-blue);
  --bs-btn-hover-color: #fff;
}

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #fff8df;
  background:
    linear-gradient(90deg, rgba(20, 23, 15, 0.96), rgba(36, 48, 25, 0.84), rgba(61, 60, 43, 0.6)),
    radial-gradient(circle at 72% 24%, rgba(184, 137, 55, 0.24), transparent 28%),
    repeating-linear-gradient(120deg, rgba(255, 246, 220, 0.06) 0 1px, transparent 1px 13px),
    linear-gradient(145deg, #25291d, #605f45 56%, #2a301f);
  position: relative;
  overflow: hidden;
}

.hero-carousel-wrap {
  height: 620px;
  min-height: 0;
  display: block;
  background: #202b17;
}

.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner,
.hero-carousel-wrap .carousel-item,
.hero-carousel-wrap .hero-slick-slide,
.hero-carousel-wrap .slick-list,
.hero-carousel-wrap .slick-track,
.hero-carousel-wrap .slick-slide,
.hero-carousel-wrap .slick-slide > div {
  height: 100%;
}

.hero-carousel-wrap::after {
  display: none;
}

.hero-carousel-wrap .carousel-item,
.hero-carousel-wrap .hero-slick-slide {
  position: relative;
  height: 100%;
}

.hero-carousel-wrap .carousel-item::after,
.hero-carousel-wrap .hero-slick-slide::after,
.hero-carousel-wrap .slick-slide > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 10, 0.72), rgba(20, 23, 15, 0.2) 46%, rgba(20, 23, 15, 0.22)),
    linear-gradient(0deg, rgba(13, 17, 10, 0.52), transparent 45%);
  pointer-events: none;
}

.hero-slide-img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slick-slider {
  height: 100%;
}

.hero-slick-slider .slick-slide > div {
  position: relative;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.hero-content .container {
  padding-top: clamp(2.25rem, 4vw, 4rem);
  padding-bottom: 2.75rem;
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
  pointer-events: auto;
}

.hero-copy {
  max-width: 820px;
  color: #fffdf8;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.hero-copy .display-title {
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 650;
  line-height: 1.12;
}

.hero-copy .lead {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.86) !important;
  font-size: 1rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-carousel-wrap .carousel-control-prev,
.hero-carousel-wrap .carousel-control-next {
  width: 8%;
  opacity: 0.9;
}

.hero-carousel-wrap .carousel-control-prev-icon,
.hero-carousel-wrap .carousel-control-next-icon {
  width: 2.6rem;
  height: 2.6rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 246, 220, 0.45);
  border-radius: 999px;
  background-color: rgba(36, 48, 25, 0.55);
  background-size: 56%;
}

.hero-carousel-wrap .carousel-indicators {
  bottom: 24px;
}

.hero-carousel-wrap .carousel-indicators [data-bs-target],
.hero-carousel-wrap .slick-dots button {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 246, 220, 0.74);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.hero-carousel-wrap .carousel-indicators .active,
.hero-carousel-wrap .slick-dots .slick-active button {
  background-color: var(--het-gold);
}

.hero-carousel-wrap .slick-dots,
.product-carousel .slick-dots {
  position: absolute;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.hero-carousel-wrap .slick-dots {
  bottom: 24px;
}

.hero-carousel-wrap .slick-arrow,
.product-carousel .slick-arrow {
  z-index: 6;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: rgba(184, 137, 55, 0.13);
  pointer-events: none;
}

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

.hero-showcase {
  border: 1px solid rgba(255, 246, 220, 0.22);
  border-radius: 8px;
  background: rgba(255, 246, 220, 0.9);
  box-shadow: 0 22px 58px rgba(20, 23, 15, 0.38);
  backdrop-filter: blur(10px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  color: #fff6dc;
  border: 1px solid rgba(228, 197, 119, 0.34);
  border-radius: 999px;
  background: rgba(255, 246, 220, 0.12);
  font-weight: 700;
  font-size: 0.82rem;
}

.hero .display-title {
  max-width: 820px;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 650;
  line-height: 1.12;
}

.hero .lead {
  font-size: 1.08rem;
  color: rgba(255, 246, 220, 0.78) !important;
}

.hero .btn-lg {
  padding: 0.72rem 1.25rem;
  font-size: 1rem;
}

.hero-mark {
  max-width: 100%;
  background: #fff6dc;
  border-bottom: 1px solid var(--het-line);
  border-radius: 8px 8px 0 0;
  padding: 1rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-proof div {
  padding: 0.82rem;
  border-right: 1px solid var(--het-line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--het-blue);
  font-size: 1.35rem;
}

.hero-proof span {
  color: var(--het-steel);
  font-size: 0.85rem;
  font-weight: 600;
}

.section-pad {
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading .h1 {
  color: #211f16;
}

.trust-strip {
  background: #fff3cf;
  border-top: 1px solid rgba(184, 137, 55, 0.22);
  border-bottom: 1px solid rgba(184, 137, 55, 0.24);
}

.trust-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 0.6rem;
  color: #2b351f;
  border-right: 1px solid rgba(184, 137, 55, 0.24);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff6dc;
  background: #4a5630;
  border-radius: 999px;
}

.trust-strip .col-6:last-child .trust-item,
.trust-strip .col-lg-3:last-child .trust-item {
  border-right: 0;
}

.section-soft {
  background: var(--het-mist);
}

.section-cta {
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(24, 36, 20, 0.96), rgba(65, 82, 55, 0.94)),
    url("../img/hero-banner-new.png") center/cover;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 49, 29, 0.98), rgba(79, 91, 53, 0.94)),
    var(--het-blue-deep);
}

.section-dark .eyebrow {
  color: #e1c879;
}

.section-dark .text-white-50 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.eyebrow {
  color: var(--het-gold);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card .fw-bold,
.product-card .fw-bold,
.service-panel .fw-bold,
.contact-card .fw-bold,
.testimonial-person .fw-bold,
.detail-copy-panel h3 {
  font-weight: 650 !important;
}

.display-title {
  font-weight: 750;
  line-height: 1.02;
}

.lead-tight {
  max-width: 700px;
}

.feature-card,
.product-card,
.service-panel,
.enquiry-panel,
.testimonial-card {
  border: 1px solid rgba(79, 91, 53, 0.14);
  border-radius: 8px;
  background: var(--het-white);
  box-shadow: 0 16px 42px rgba(40, 49, 29, 0.08);
}

.feature-card,
.service-panel {
  height: 100%;
  padding: 1.5rem;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--het-blue-deep), var(--het-blue));
  border-radius: 8px;
  font-size: 1.35rem;
}

.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(40, 49, 29, 0.14);
}

.product-visual {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(18, 18, 18, 0.78);
  background:
    linear-gradient(135deg, rgba(20, 23, 15, 0.72), rgba(79, 91, 53, 0.5)),
    repeating-linear-gradient(45deg, rgba(255, 246, 220, 0.08) 0 1px, transparent 1px 12px),
    #605f45;
}

.product-visual i {
  color: #f1d98c;
}

.product-visual i {
  font-size: 3.1rem;
}

.product-listing {
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 137, 55, 0.12), transparent 24%),
    linear-gradient(rgba(111, 113, 95, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 113, 95, 0.07) 1px, transparent 1px),
    #f7f2e4;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.15rem;
  border: 1px solid rgba(79, 91, 53, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 246, 220, 0.9));
  box-shadow: 0 16px 38px rgba(40, 49, 29, 0.09);
}

.shop-toolbar > div:first-child {
  min-width: 0;
}

.shop-toolbar strong {
  display: block;
  color: var(--het-blue-deep);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.24rem;
  line-height: 1.25;
}

.shop-toolbar span {
  display: block;
  max-width: 680px;
  margin-top: 0.24rem;
  color: var(--het-steel);
  font-size: 0.91rem;
  line-height: 1.45;
}

.shop-toolbar .woocommerce-ordering {
  flex: 0 0 auto;
  margin: 0;
}

.shop-sort {
  flex: 0 0 310px;
  display: grid;
  gap: 0.4rem;
}

.shop-sort-label {
  display: inline-flex !important;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0 !important;
  color: var(--het-gold) !important;
  font-size: 0.74rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.shop-toolbar .orderby {
  width: min(100%, 310px);
  min-height: 48px;
  padding: 0.68rem 2.65rem 0.68rem 0.95rem;
  border: 1px solid rgba(65, 82, 55, 0.22);
  border-radius: 6px;
  color: var(--het-blue-deep);
  background-color: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-toolbar .form-select {
  max-width: 310px;
  background-color: #fff6dc;
}

.shop-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(65, 82, 55, 0.18);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-card:hover {
  border-color: rgba(183, 130, 50, 0.52);
  background: #fffaf0;
  box-shadow: none;
  transform: translateY(-3px);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-bottom: 1px solid rgba(65, 82, 55, 0.14);
}

.shop-card img.placeholder-image {
  object-fit: cover;
  background: #eee;
}

.shop-card-body {
  display: flex;
  min-height: 212px;
  flex-direction: column;
  align-items: center;
  padding: 1.45rem 1.25rem 1.25rem;
  text-align: center;
}

.shop-card-body h2 {
  min-height: 4.05rem;
  margin-bottom: 0.9rem;
  color: var(--het-ink);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.shop-price {
  margin-top: auto;
  margin-bottom: 0.8rem;
  color: var(--het-blue-deep);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.price del,
.shop-price del,
.detail-price del {
  color: #b42318 !important;
  font-weight: 700;
  opacity: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price del .amount,
.price del .woocommerce-Price-amount,
.shop-price del .amount,
.shop-price del .woocommerce-Price-amount,
.detail-price del .amount,
.detail-price del .woocommerce-Price-amount {
  color: #b42318 !important;
}

.price ins,
.shop-price ins,
.detail-price ins {
  color: var(--het-blue-deep);
  font-weight: 800;
  text-decoration: none;
}

.shop-price del,
.shop-price ins {
  display: inline-block;
}

.shop-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.detail-link {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border-radius: 6px;
  border: 1px solid rgba(65, 82, 55, 0.28);
  color: var(--het-blue-deep);
  background: #fffdf8;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.2;
}

.detail-link:hover,
.detail-link:focus {
  color: #fff;
  background: var(--het-blue);
}

.enquiry-cta {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 1px solid rgba(65, 82, 55, 0.36);
  border-radius: 6px;
  color: #26341c;
  background: rgba(65, 82, 55, 0.08);
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.enquiry-cta:hover,
.enquiry-cta:focus {
  border-color: #415237;
  color: #fffdf8;
  background: #415237;
}

.shop-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  color: #fff6dc;
  background: #70733f;
  border: 2px solid #fffaf0;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 650;
}

.ebay-btn,
.amazon-btn,
.woocommerce a.button.ebay-btn,
.woocommerce a.button.amazon-btn,
.woocommerce .shop-actions a.button.ebay-btn,
.woocommerce .shop-actions a.button.amazon-btn,
.woocommerce .detail-actions a.button.ebay-btn,
.woocommerce .detail-actions a.button.amazon-btn {
  width: 100%;
  border: 0 !important;
  border-radius: 6px;
  color: #191500 !important;
  background: #f7c600 !important;
  background-image: linear-gradient(180deg, #ffe066, #f7c600) !important;
  box-shadow: 0 10px 20px rgba(195, 138, 0, 0.22);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-actions .ebay-btn,
.shop-actions .amazon-btn {
  grid-column: 1 / -1;
}

.shop-actions .btn i {
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

.shop-actions .btn span {
  min-width: 0;
}

.ebay-btn:hover,
.ebay-btn:focus,
.amazon-btn:hover,
.amazon-btn:focus,
.woocommerce a.button.ebay-btn:hover,
.woocommerce a.button.ebay-btn:focus,
.woocommerce a.button.amazon-btn:hover,
.woocommerce a.button.amazon-btn:focus,
.woocommerce .shop-actions a.button.ebay-btn:hover,
.woocommerce .shop-actions a.button.ebay-btn:focus,
.woocommerce .shop-actions a.button.amazon-btn:hover,
.woocommerce .shop-actions a.button.amazon-btn:focus,
.woocommerce .detail-actions a.button.ebay-btn:hover,
.woocommerce .detail-actions a.button.ebay-btn:focus,
.woocommerce .detail-actions a.button.amazon-btn:hover,
.woocommerce .detail-actions a.button.amazon-btn:focus {
  color: #191500 !important;
  background: #ffcf1a !important;
  background-image: linear-gradient(180deg, #ffe98a, #ffcf1a) !important;
  box-shadow: 0 14px 26px rgba(195, 138, 0, 0.28);
  transform: translateY(-1px);
}

.best-sellers {
  background:
    radial-gradient(circle at 78% 10%, rgba(184, 137, 55, 0.12), transparent 24%),
    linear-gradient(rgba(111, 113, 95, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 113, 95, 0.08) 1px, transparent 1px),
    #fff7de;
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.product-carousel-section .container,
.related-products .container {
  width: min(100% - 32px, 1640px);
  max-width: none;
}

.product-carousel {
  position: relative;
  padding: 0 2.75rem 3.1rem;
}

.product-carousel .carousel-inner {
  overflow: hidden;
}

.product-carousel .slick-list {
  overflow: hidden;
}

.product-carousel .slick-track {
  display: flex;
}

.product-carousel .slick-slide {
  height: auto;
}

.product-carousel .slick-slide > div,
.product-slick-slide,
.product-slick-slide > div,
.product-slick-slide .shop-card {
  height: 100%;
}

.product-slick-slide {
  padding: 0 0.7rem;
}

.product-slick-slide > [class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 42px;
  opacity: 1;
}

.product-carousel .carousel-control-prev {
  left: 0;
}

.product-carousel .carousel-control-next {
  right: 0;
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(65, 82, 55, 0.2);
  border-radius: 999px;
  background-color: #415237;
  background-size: 54%;
  box-shadow: none;
}

.product-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.product-carousel .carousel-indicators [data-bs-target],
.product-carousel .slick-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(65, 82, 55, 0.36);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.product-carousel .carousel-indicators .active,
.product-carousel .slick-dots .slick-active button {
  background-color: var(--het-gold);
}

.product-carousel .slick-dots {
  bottom: 0;
}

.product-carousel .ebay-btn,
.product-carousel .amazon-btn,
.product-carousel .ebay-btn:hover,
.product-carousel .ebay-btn:focus,
.product-carousel .amazon-btn:hover,
.product-carousel .amazon-btn:focus {
  box-shadow: none;
}

.seller-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(79, 91, 53, 0.14);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 14px 34px rgba(40, 49, 29, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(40, 49, 29, 0.16);
}

.seller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 0.34rem 0.62rem;
  color: #fff6dc;
  background: #4a5630;
  border: 1px solid rgba(255, 246, 220, 0.28);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seller-visual {
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(241, 217, 140, 0.24), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 246, 220, 0.08) 0 1px, transparent 1px 12px),
    linear-gradient(135deg, #2a301f, #656044);
}

.seller-visual i {
  color: #f1d98c;
  font-size: 3.35rem;
  filter: drop-shadow(0 8px 14px rgba(20, 23, 15, 0.28));
}

.seller-body {
  padding: 1.15rem;
}

.seller-era {
  margin-bottom: 0.45rem;
  color: var(--het-gold);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-body h3 {
  min-height: 2.8rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.seller-body p:not(.seller-era) {
  min-height: 4.15rem;
  color: var(--het-steel);
  font-size: 0.9rem;
}

.seller-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(79, 91, 53, 0.14);
  color: var(--het-steel);
  font-size: 0.82rem;
  font-weight: 700;
}

.seller-meta strong {
  color: var(--het-blue-deep);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
}

.stat {
  padding: 1.25rem;
  border-left: 3px solid var(--het-gold);
  background: rgba(255, 255, 255, 0.08);
}

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

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.82rem;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--het-blue);
}

.page-hero {
  padding: 58px 0 50px;
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(24, 36, 20, 0.94), rgba(65, 82, 55, 0.84)),
    url("../img/hero-banner-new.png") center/cover;
  border-bottom: 1px solid rgba(183, 130, 50, 0.32);
}

.page-hero .display-title {
  max-width: 820px;
  color: #fffdf8;
  font-weight: 750;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.78);
}

.breadcrumb {
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-divider-color: rgba(255, 253, 248, 0.5);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

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

.breadcrumb .active {
  color: rgba(255, 253, 248, 0.68);
}

.enquiry-panel {
  padding: 1.5rem;
}

.het-product-enquiry-modal .modal-content {
  border: 1px solid rgba(65, 82, 55, 0.18);
  border-radius: 8px;
  background: #fffdf8;
}

.het-product-enquiry-modal .modal-header,
.het-product-enquiry-modal .modal-footer {
  border-color: rgba(65, 82, 55, 0.14);
}

.het-product-enquiry-modal .modal-body {
  padding: 1.35rem;
}

.form-control,
.form-select {
  border-radius: 6px;
  border-color: rgba(18, 18, 18, 0.18);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--het-sky);
  box-shadow: 0 0 0 0.22rem rgba(123, 139, 85, 0.2);
}

.het-form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.het-form-notice {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  font-weight: 700;
}

.het-form-notice-success {
  border: 1px solid rgba(65, 82, 55, 0.28);
  color: #243119;
  background: #e7f2df;
}

.het-form-notice-error {
  border: 1px solid rgba(138, 46, 33, 0.26);
  color: #642415;
  background: #fbe6df;
}

.het-captcha-field {
  display: grid;
  grid-template-columns: 142px minmax(130px, 180px) 46px;
  gap: 0.65rem;
  align-items: center;
}

.het-captcha-image-wrap {
  display: inline-flex;
  width: 142px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.22rem;
  border: 1px solid rgba(65, 82, 55, 0.18);
  border-radius: 8px;
  background: #fffdf8;
}

.het-captcha-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.het-captcha-field .form-control,
.het-captcha-refresh {
  min-height: 48px;
}

.het-captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(65, 82, 55, 0.24);
  border-radius: 8px;
  color: var(--het-blue-deep);
  background: #fffdf8;
  font-size: 1.1rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.het-captcha-refresh:hover,
.het-captcha-refresh:focus {
  border-color: var(--het-blue);
  color: #fff;
  background: var(--het-blue);
}

.het-captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.62;
}

.testimonial-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 247, 239, 0.98));
  box-shadow: 0 18px 48px rgba(40, 49, 29, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--het-gold), var(--het-blue));
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(40, 49, 29, 0.15);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quote-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffdf8;
  background: #415237;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.testimonial-rating {
  display: inline-flex;
  gap: 0.14rem;
  color: #c58a2a;
  font-size: 0.82rem;
}

.testimonial-text {
  min-height: 7rem;
  margin-bottom: 1.25rem;
  color: var(--het-steel);
  font-size: 1rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(79, 91, 53, 0.14);
}

.testimonial-person > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff6dc;
  background: #2f3c24;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.testimonial-person small {
  color: var(--het-steel);
  font-weight: 700;
}

.text-muted-blue {
  color: var(--het-steel);
}

.feature-card .text-success {
  color: var(--het-blue) !important;
}

.footer {
  color: rgba(255, 255, 255, 0.74);
  background: #202b17;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

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

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 246, 220, 0.3);
  border-radius: 999px;
  color: #fff6dc;
  background: linear-gradient(135deg, #26341c, #566337);
  box-shadow: 0 16px 36px rgba(24, 36, 20, 0.28);
  font-size: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
  color: #fff;
  background: linear-gradient(135deg, #1b2513, #46512f);
}

.product-detail {
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 137, 55, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(65, 82, 55, 0.1), transparent 30%),
    linear-gradient(180deg, #fbf8f0 0%, #f2eee4 100%);
}

.product-detail-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

.product-detail-gallery,
.product-detail-content {
  min-width: 0;
}

.woocommerce div.product .product-detail-content div.summary,
.woocommerce-page div.product .product-detail-content div.summary,
.woocommerce #content div.product .product-detail-content div.summary,
.woocommerce-page #content div.product .product-detail-content div.summary {
  float: none;
  width: auto;
  clear: none;
}

.woocommerce div.product .product-detail-gallery div.images,
.woocommerce-page div.product .product-detail-gallery div.images,
.woocommerce #content div.product .product-detail-gallery div.images,
.woocommerce-page #content div.product .product-detail-gallery div.images {
  float: none;
  width: auto;
}

.detail-media {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.8rem);
  border: 1px solid rgba(65, 82, 55, 0.1);
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 18px 45px rgba(24, 36, 20, 0.08);
}

.detail-media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.detail-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.detail-thumb {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border: 1px solid rgba(65, 82, 55, 0.16);
  border-radius: 6px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.detail-thumb:hover,
.detail-thumb:focus,
.detail-thumb.active {
  border-color: var(--het-gold);
  box-shadow: 0 10px 22px rgba(184, 137, 55, 0.16);
}

.detail-thumb:hover,
.detail-thumb:focus {
  transform: translateY(-1px);
}

.detail-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.detail-summary {
  position: sticky;
  top: 110px;
  padding: 0.35rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-category-link {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--het-gold);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-category-link:hover,
.detail-category-link:focus {
  color: var(--het-blue-deep);
}

.detail-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.18rem 0.65rem;
  margin-bottom: 1rem;
  color: #c58a2a;
  font-size: 0.9rem;
}

.detail-rating span {
  color: var(--het-steel);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.detail-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(79, 91, 53, 0.14);
}

.detail-meta-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem;
  border: 1px solid rgba(79, 91, 53, 0.12);
  border-radius: 6px;
  color: var(--het-blue-deep);
  background: rgba(255, 253, 248, 0.64);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.detail-meta-strip i {
  color: var(--het-gold);
  font-size: 1.15rem;
}

.detail-panel {
  position: sticky;
  top: 110px;
  padding: 1.4rem;
  border: 1px solid rgba(65, 82, 55, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(24, 36, 20, 0.1);
}

.detail-price {
  color: var(--het-blue-deep);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 750;
}

.detail-marketplace-btn {
  width: auto;
  min-width: 180px;
  padding: 0.84rem 1.35rem;
}

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

.spec-item {
  padding: 0.9rem;
  border: 1px solid rgba(65, 82, 55, 0.12);
  border-radius: 8px;
  background: #fbf7ef;
}

.spec-item span {
  display: block;
  color: var(--het-steel);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-item strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--het-blue-deep);
}

.detail-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(79, 91, 53, 0.14);
}

.detail-copy-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-copy-panel h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 750;
}

.detail-copy-panel p:not(.eyebrow) {
  color: var(--het-steel);
}

.product-banner-section {
  padding: 0 0 88px;
  background: #f6f3eb;
}

.product-banner-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(24, 36, 20, 0.14);
}

.related-products {
  background: #f6f3eb;
}

.related-product-carousel .shop-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.contact-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(65, 82, 55, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 42px rgba(24, 36, 20, 0.08);
}

.contact-card a {
  color: var(--het-blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.form-label {
  color: var(--het-blue-deep);
  font-size: 0.84rem;
  font-weight: 650;
}

@media (max-width: 991.98px) {
  .top-strip {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .top-strip .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 0.62rem 0 !important;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 50px;
  }

  .home-page .navbar {
    position: static;
    background: rgba(24, 36, 20, 0.96) !important;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  }

  .home-page .navbar .nav-link {
    color: rgba(255, 253, 248, 0.86);
  }

  .hero-carousel-wrap {
    height: 560px;
    min-height: 0;
    padding: 0;
  }

  .hero-slide-img {
    height: 100%;
  }

  .hero-content .container {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    padding-left: var(--bs-gutter-x, 0.75rem);
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-copy .display-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .home-page .dropdown-menu {
    background: #fffdf8;
  }

  .navbar-collapse > .btn-het {
    display: inline-flex;
    width: max-content;
    margin-top: 0.75rem;
  }

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

  .shop-sort {
    flex-basis: auto;
  }

  .shop-toolbar .form-select {
    max-width: none;
  }

  .shop-toolbar .orderby {
    width: 100%;
  }

  .detail-summary {
    position: static;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .detail-media {
    min-height: 420px;
  }

  .detail-info-grid {
    margin-top: 2.25rem;
  }

  .hero-mark {
    max-width: 320px;
  }
}

@media (max-width: 767.98px) {
  .hero::after {
    display: none;
  }

  .hero-carousel-wrap {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #182414;
  }

  .hero-carousel-wrap .carousel-inner {
    height: 265px;
    overflow: hidden;
  }

  .hero-carousel-wrap .slick-list,
  .hero-carousel-wrap .slick-track,
  .hero-carousel-wrap .slick-slide,
  .hero-carousel-wrap .slick-slide > div,
  .hero-carousel-wrap .hero-slick-slide {
    height: 265px;
  }

  .hero-carousel-wrap .carousel-item::after {
    background:
      linear-gradient(90deg, rgba(13, 17, 10, 0.55), rgba(20, 23, 15, 0.1) 58%, rgba(20, 23, 15, 0.18)),
      linear-gradient(0deg, rgba(13, 17, 10, 0.34), transparent 55%);
  }

  .hero-slide-img {
    height: 265px;
    object-position: center top;
  }

  .hero-content {
    position: relative;
    inset: auto;
    display: block;
    background: #182414;
    pointer-events: auto;
  }

  .hero-content .container {
    padding: 1.35rem 1.25rem 2rem;
  }

  .hero-copy {
    max-width: none;
    text-shadow: none;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 0.42rem 0.65rem;
    border-radius: 8px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-copy .display-title,
  .hero .display-title {
    max-width: none;
    font-size: 2rem;
    font-weight: 650;
    line-height: 1.16;
  }

  .hero-copy .lead,
  .hero .lead {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero .btn-lg {
    padding: 0.7rem 1rem;
    font-size: 0.94rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  .hero-carousel-wrap .carousel-control-prev,
  .hero-carousel-wrap .carousel-control-next {
    top: 0;
    bottom: auto;
    width: 52px;
    height: 265px;
  }

  .hero-carousel-wrap .carousel-control-prev-icon,
  .hero-carousel-wrap .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.9rem;
  }

  .hero-carousel-wrap .carousel-indicators {
    bottom: 10px;
  }

  .section-heading,
  .section-heading .h1,
  .text-center.mx-auto {
    max-width: none !important;
    text-align: left !important;
  }

  .product-carousel {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
  }

  .product-carousel-section .container,
  .related-products .container {
    width: min(100% - 20px, 1640px);
  }

  .product-slick-slide {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .het-captcha-field {
    grid-template-columns: 130px minmax(110px, 1fr) 44px;
  }

  .het-captcha-image-wrap {
    width: 130px;
    height: 46px;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 56px 0;
  }

  .display-title {
    font-size: 2rem;
  }

  .top-strip {
    font-size: 0.68rem;
  }

  .brand-logo {
    width: 112px;
  }

  .navbar-toggler {
    padding: 0.45rem 0.6rem;
  }

  .hero-slide-img {
    height: 245px;
  }

  .hero-carousel-wrap {
    min-height: 0;
  }

  .hero-content .container {
    padding-top: 1.2rem;
    padding-bottom: 1.8rem;
  }

  .hero-copy .display-title {
    font-size: 1.78rem;
  }

  .hero-copy .lead {
    font-size: 0.94rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-carousel-wrap .carousel-inner,
  .hero-carousel-wrap .slick-list,
  .hero-carousel-wrap .slick-track,
  .hero-carousel-wrap .slick-slide,
  .hero-carousel-wrap .slick-slide > div,
  .hero-carousel-wrap .hero-slick-slide,
  .hero-carousel-wrap .carousel-control-prev,
  .hero-carousel-wrap .carousel-control-next {
    height: 245px;
  }

  .trust-item {
    min-height: 64px;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .page-hero {
    padding: 42px 0 38px;
  }

  .page-hero .display-title {
    font-size: 2rem;
  }

  .feature-card,
  .service-panel,
  .enquiry-panel,
  .testimonial-card,
  .contact-card {
    padding: 1.15rem;
  }

  .product-carousel {
    padding-bottom: 2.8rem;
  }

  .detail-media {
    min-height: 320px;
    padding: 1rem;
  }

  .detail-media img {
    max-height: 300px;
  }

  .detail-thumb {
    width: 64px;
    height: 64px;
  }

  .detail-meta-strip {
    grid-template-columns: 1fr;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .product-banner-section {
    padding-bottom: 62px;
  }

  .product-carousel {
    padding-right: 1.85rem;
    padding-left: 1.85rem;
  }

  .product-carousel .carousel-control-prev,
  .product-carousel .carousel-control-next {
    width: 36px;
  }

  .het-captcha-field {
    grid-template-columns: 1fr 46px;
  }

  .het-captcha-image-wrap {
    width: 142px;
    grid-column: 1 / -1;
  }

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