@charset "UTF-8";
/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #FCFCFC !important;
}

.c-white {
  color: #FCFCFC;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

.lc > :last-child {
  margin-bottom: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 15;
}

.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}

.phone-link {
  color: #FCFCFC;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}
.phone-link svg {
  margin-right: 8px;
}
.phone-link:hover {
  color: var(--primary-color);
}

.button {
  background-color: var(--primary-color);
  display: inline-block;
  font-weight: 500;
  height: 36px;
  line-height: 36px;
  border-radius: 7px;
  padding: 0 24px;
  color: #1B1B1B;
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
}
.button svg {
  margin-right: 6px;
}
.button.black {
  background-color: #1B1B1B;
  color: #FCFCFC;
}
.button:hover {
  opacity: 0.6;
}

.anchor {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  color: #FCFCFC;
}
.anchor.black {
  color: #1B1B1B;
}
.anchor.black:hover {
  color: #7F8C90;
}
.anchor:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-section .button,
.account-section .button {
  background-color: #1B1B1B;
  color: #FCFCFC;
}
.contact-section .button:hover,
.account-section .button:hover {
  background-color: #7F8C90;
}

.link {
  font-weight: 600;
  font-size: 13px;
  color: #25292A;
}
.link:hover {
  color: #25292A;
  opacity: 0.7;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-footer {
  flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height);
  /**
  * @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
  */
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #25292A;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-weight: 300;
  background-color: #FCFCFC;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-top: 0;
}
p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4 {
  margin-top: 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft,
  .wp-block-image.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright,
  .wp-block-image.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter,
.wp-block-image.aligncenter {
  margin: 1em auto;
}

.wysiwyg-content figure,
.text-image figure {
  margin: 1em 0;
}
.wysiwyg-content figure img,
.text-image figure img {
  border-radius: 8px;
}
.wysiwyg-content figure figcaption,
.text-image figure figcaption {
  font-size: 13px;
  color: #7F8C90;
  margin-top: 8px;
}
.wysiwyg-content::after,
.text-image::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1048px;
  }
}
.mb-s {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .mb-s {
    margin-bottom: 24px;
  }
}

.mb-m {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb-m {
    margin-bottom: 40px;
  }
}

.m0 {
  margin: 0 !important;
}

.mb-4px {
  margin-bottom: 4px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-12px {
  margin-bottom: 12px;
}

.mb-16px {
  margin-bottom: 16px;
}

.mt-24px {
  margin-top: 24px;
}

.ml-8px {
  margin-left: 8px;
}

h1,
.h1 {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-size: 20px;
  line-height: 1.5;
}

h3,
.h3 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.color-white {
  color: #FCFCFC;
}

.color-light {
  color: #D5D5D5;
}

.align-items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.position-relative {
  position: relative;
}

.zi-1 {
  z-index: 1;
}

.py-40 {
  padding: 40px 0;
}

.background-light-black {
  background-color: #25292A;
  color: #FCFCFC;
}

.borrad-8px {
  border-radius: 8px;
}

.overflow-hidden {
  overflow: hidden;
}

.color-black {
  color: #1B1B1B;
}

.fw-600 {
  font-weight: 600;
}

.fsize-16px {
  font-size: 16px;
}

.overlap-section {
  margin-top: -30px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  background-color: #FCFCFC;
  padding: 16px;
}
@media (min-width: 992px) {
  .overlap-section {
    padding: 26px 42px;
  }
}

#wpadminbar {
  position: fixed;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: #25292A;
}
.admin-bar .header {
  top: 46px;
}
@media (min-width: 992px) {
  .admin-bar .header {
    top: 32px;
  }
}

.header-top {
  padding: 14px 24px;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .header-top {
    padding: 14px 56px 14px 26px;
  }
}

.menu a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FCFCFC;
  display: block;
}
.menu a:hover {
  color: var(--primary-color);
}
.header-top-nav {
  display: flex;
  align-items: center;
}

.top-menu li {
  margin-left: 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1B1B1B;
  margin: 20px -12px 0;
  padding: 18px 22px;
  position: relative;
}
@media (min-width: 768px) {
  .navbar {
    margin: 0;
    border-radius: 12px;
    padding: 18px 26px;
  }
}
@media (min-width: 1200px) {
  .navbar {
    padding: 0 46px 0 26px;
  }
}

.menu-header {
  display: none;
}
.menu-header > li > a {
  padding: 34px 12px;
}
@media (min-width: 1200px) {
  .menu-header {
    display: flex;
    align-items: center;
  }
}
.menu-header > .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: initial;
}
.menu-header > .menu-item-has-children > .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: #FCFCFC;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  padding: 30px;
}
.menu-header > .menu-item-has-children > .sub-menu a:hover {
  opacity: 0.6;
}
.menu-header > .menu-item-has-children > .sub-menu:before {
  content: "";
  width: 39px;
  height: 33px;
  background-image: url("../images/submenu.svg");
  background-size: cover;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0;
  position: absolute;
}
.menu-header > .menu-item-has-children > .sub-menu > li > a {
  margin-bottom: 8px;
}
.menu-header > .menu-item-has-children > .sub-menu a {
  color: #25292A;
}
.menu-header > .menu-item-has-children > .sub-menu ul a {
  font-weight: 400;
}
.menu-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-header ul li {
  padding: 0;
  margin: 0;
}

.menu-toggle {
  padding: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
}
@media (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:before, .menu-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  background: #FCFCFC;
  border-radius: 2px;
  transition: top 0.3s ease 0.3s, width 0.1s ease-in 0.1s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform-origin: 50% 50%;
}
.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  background: #FCFCFC;
  border-radius: 2px;
  top: 13px;
  transition: opacity 0.2s ease-in;
}
.menu-toggle:before {
  top: 4px;
}
.menu-toggle:after {
  top: 22px;
}
.menu-toggle.menu-close:before, .menu-toggle.menu-close:after {
  top: 13px;
  transition: top 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transform-origin: 50% 50%;
}
.menu-toggle.menu-close:before {
  transform: rotate(45deg);
}
.menu-toggle.menu-close:after {
  transform: rotate(-45deg);
}
.menu-toggle.menu-close span {
  opacity: 0;
}

.logo {
  display: inline-block;
  max-width: 140px;
}
.logo img {
  width: 100%;
  height: auto;
}

.off-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-height: 100vh;
  z-index: 5;
  overflow-y: auto;
  transition: transform 0.3s ease-in;
  padding: 130px 0 24px;
  transform: translateY(-100%);
  background-color: #25292A;
}
@media (min-width: 768px) {
  .off-canvas {
    padding: 160px 20px 24px;
  }
}
.admin-bar .off-canvas {
  padding-top: 206px;
}
@media (min-width: 992px) {
  .admin-bar .off-canvas {
    padding-top: 192px;
  }
}
.off-canvas .search-form {
  margin: 40px 24px 0;
}
.off-canvas .search-form .button {
  margin-left: 12px;
}
.off-canvas .menu {
  display: block;
}
.off-canvas .menu a {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  color: #FCFCFC;
  padding: 0 24px;
  line-height: 1.5;
  display: block;
}
.off-canvas .menu li {
  margin-bottom: 20px;
  margin-left: 0;
}
.off-canvas .menu .mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.off-canvas .menu .mobile-menu-item a {
  flex: 1;
}
.off-canvas .menu .mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #FCFCFC;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.off-canvas .menu .mobile-submenu-toggle.open {
  transform: rotate(180deg);
}
.off-canvas .menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.off-canvas .menu .sub-menu.open {
  max-height: 500px;
}
.off-canvas .menu .sub-menu li {
  margin-bottom: 12px;
}
.off-canvas .menu .sub-menu li:first-child {
  margin-top: 12px;
}
.off-canvas .menu .sub-menu a {
  font-size: 13px;
  font-weight: 400;
  padding-left: 40px;
  opacity: 0.8;
}
.off-canvas .menu .sub-menu .sub-menu a {
  padding-left: 56px;
  font-size: 12px;
}
.off-canvas .mobile-top-menu {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(252, 252, 252, 0.15);
}
.off-canvas.active {
  transform: translateY(0);
}

.off-canvas-inner {
  max-width: 936px;
  margin: 0 auto;
}

.search-toggle {
  background-color: transparent;
  padding: 10px;
  color: #FCFCFC;
}
.search-toggle:hover {
  color: var(--primary-color);
}

.search-wrap {
  position: relative;
}

.search-button,
.search-close {
  padding: 0;
  position: absolute;
  padding: 10px;
  top: 0;
  left: 2px;
  background-color: transparent;
}
.search-button:hover svg,
.search-close:hover svg {
  color: var(--primary-color);
}

.search-close {
  left: auto;
  right: 2px;
}

.search-form {
  display: flex;
  position: relative;
}
.search-form svg {
  color: #1B1B1B;
}
.search-form input[type=text] {
  padding-left: 35px;
}

.search-header {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-in;
}
.search-header input[type=text] {
  background-color: #1B1B1B;
  border-color: #FCFCFC;
}
.search-header.active {
  width: 600px;
}
.search-header svg {
  color: #FCFCFC;
}

/*
    Search Dropdown — live product search results
    Vertical list layout with thumbnail + info per row
*/
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FCFCFC;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 100;
  max-height: 480px;
  overflow-y: auto;
  margin-top: 4px;
}

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

.search-dropdown-item {
  border-bottom: 1px solid #D5D5D5;
}
.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #1B1B1B;
  transition: background 0.15s;
}
.search-dropdown-item a:hover {
  background: #f6f9f9;
}

.search-dropdown-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}
.search-dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-dropdown-info {
  flex: 1;
  min-width: 0;
}

.search-dropdown-sku {
  font-size: 11px;
  color: #7F8C90;
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.search-dropdown-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dropdown-spec {
  font-size: 12px;
  color: #7F8C90;
  margin: 2px 0 0;
}

.search-dropdown-all {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--primary-color);
  border-top: 1px solid #D5D5D5;
  text-decoration: none;
}
.search-dropdown-all:hover {
  background: #f6f9f9;
}

.search-dropdown-empty {
  padding: 24px 16px;
  text-align: center;
  color: #7F8C90;
  font-size: 14px;
}

.search-wrap {
  position: relative;
}

.search-section .search-form {
  position: relative;
}

.off-canvas .search-form {
  position: relative;
}

.footer-body {
  background-color: #25292A;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 36px 28px;
  margin-top: 24px;
  color: #FCFCFC;
}
@media (min-width: 992px) {
  .footer-body {
    margin-top: 50px;
  }
}

.menu-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-footer li {
  margin-bottom: 10px;
}
.menu-footer li:last-child {
  margin-bottom: 0;
}
.menu-footer a {
  color: #FCFCFC;
  font-size: 14px;
  display: inline-block;
}
.menu-footer a:hover {
  color: var(--primary-color);
}

.fs-14 {
  font-size: 14px;
}

.footer-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #FCFCFC;
  position: relative;
  margin-top: 28px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .footer-label {
    margin-top: 78px;
  }
}
.footer-label:after {
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background-color: #FCFCFC;
  left: 0;
  bottom: 0;
}

.bronte-link {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (min-width: 992px) {
  .footer-grid {
    padding-left: 36px;
  }
}

.footer-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hidden_label label {
  display: none;
}

.gform_validation_container,
.gfield_visibility_hidden {
  display: none !important;
  position: absolute !important;
  left: -9000px !important;
}

.gform_submission_error {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #c23b22;
  background-color: #fef2f0;
  border: 1px solid #f5c6bf;
  border-radius: 8px;
  padding: 14px 18px;
}

.gfield_error input,
.gfield_error textarea,
.gfield_error select {
  border-color: #c23b22;
}

.gfield_validation_message {
  display: block;
  font-size: 12px;
  color: #c23b22;
  margin-top: 4px;
  font-weight: 400;
}

.validation_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.validation_list li {
  font-size: 13px;
}

.gform_footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: 300;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number] {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 0 0 0 15px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #7F8C90;
  background-color: #FCFCFC;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #1B1B1B;
}
select::placeholder,
textarea::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder {
  color: #7F8C90;
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus {
  outline: none;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  padding-right: 15px;
  border: 0;
}

/* Phase 5: Quote request form */
.quote-request-page .gform_wrapper {
  max-width: 100%;
}
.quote-request-page .gform_footer {
  padding-top: 24px;
  text-align: right;
}

/* Hide Product Code field when preview is shown */
.gf_hidden_field {
  display: none !important;
}

/* Product preview card above quote form */
.quote-product-preview {
  margin-bottom: 24px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  overflow: hidden;
}

.quote-product-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  text-decoration: none;
  color: #25292A;
  transition: background-color 0.2s ease;
}
.quote-product-link:hover {
  background-color: rgba(37, 41, 42, 0.03);
}

.quote-product-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #FCFCFC;
}
.quote-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote-product-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quote-product-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #25292A;
}

.quote-product-code {
  font-size: 13px;
  font-weight: 300;
  color: #7F8C90;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Quote form page hero (reuses dark hero + white card pattern) */
.quote-hero {
  background-color: #25292A;
  color: #FCFCFC;
  padding: 143px 0 72px;
  text-align: center;
}
.quote-hero h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}
.quote-hero p {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}

.quote-form-card {
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
  margin-top: -36px;
  padding: 48px 24px;
}
@media (min-width: 992px) {
  .quote-form-card {
    padding: 48px;
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
     * Remove all paddings around the image on small screen
     */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
  transition: opacity 0.25s ease-in;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/
.home-intro {
  background-color: #25292A;
  position: relative;
  padding: 140px 0 60px;
}
@media (min-width: 992px) {
  .home-intro {
    padding: 160px 0 90px;
  }
}

.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(252, 252, 252, 0.4);
  background: rgba(27, 27, 27, 0.3);
  color: #FCFCFC;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0;
  line-height: 0;
}
.slick-arrow:hover {
  background: rgba(27, 27, 27, 0.6);
  border-color: #FCFCFC;
  color: #FCFCFC;
}
.slick-arrow svg {
  width: 20px;
  height: 20px;
}

.slick-prev {
  left: 12px;
}

.slick-next {
  right: 12px;
}

.slider-intro {
  position: relative;
}
.slider-intro .intro-slide {
  text-align: center;
}
@media (min-width: 992px) {
  .slider-intro .intro-slide {
    padding: 0 40px;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .slider-intro .slick-arrow {
    display: none !important;
  }
}
.slider-intro .slick-prev {
  left: -10px;
}
.slider-intro .slick-next {
  right: -10px;
}
.slider-intro .slick-dots {
  justify-content: center;
}
@media (min-width: 992px) {
  .slider-intro .slick-dots {
    justify-content: start;
    position: absolute;
    bottom: 60px;
    left: 40px;
  }
}

@media (min-width: 992px) {
  .outline-title {
    margin-left: -22px;
  }
}
@media (min-width: 992px) {
  .outline-title span {
    display: inline-block;
    white-space: nowrap;
    background-color: #25292A;
    padding: 6px 22px;
    border-top-right-radius: 16px;
  }
}
.outline-title span + span {
  margin-top: -10px;
}
@media (min-width: 992px) {
  .outline-title span + span {
    border-bottom-right-radius: 16px;
  }
}

.slide-bg {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 24px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .slide-bg {
    margin-left: -160px;
    height: 376px;
    margin-bottom: 0;
  }
}

.slick-dots {
  display: flex;
  margin: 0;
  list-style: none;
  z-index: 2;
  padding: 0;
}
.slick-dots > li {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FCFCFC;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.slick-dots > li button {
  display: none;
}
.slick-dots > li:first-child {
  margin-left: 0;
}
.slick-dots > li:last-child {
  margin-right: 0;
}
.slick-dots > li.slick-active {
  background-color: var(--primary-color);
}

.search-section {
  padding: 24px;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-top: -40px;
  position: relative;
  border-bottom: 2px solid #25292A;
}
@media (min-width: 992px) {
  .search-section {
    padding: 27px 34px;
    margin-top: -67px;
  }
}

.search-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .search-cta {
    display: block;
    text-align: right;
    margin-top: 0;
  }
}
.search-cta h2 {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .search-cta h2 {
    margin-bottom: 12px;
  }
}

.browse-categories {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) {
  .browse-categories {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.cat-link {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #25292A;
}
.cat-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  transition: background 0.25s ease;
  z-index: 1;
}
.cat-link .inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 12px;
  z-index: 2;
}
.cat-link .name {
  color: #FCFCFC;
  font-weight: 600;
  display: block;
  font-size: 14px;
  transition: transform 0.25s ease, font-size 0.25s ease;
}
.cat-link .button {
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}
@media (min-width: 992px) {
  .cat-link:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  .cat-link:hover .inner {
    justify-content: center;
  }
  .cat-link:hover .name {
    font-size: 18px;
    transform: translateY(-4px);
  }
  .cat-link:hover .button {
    max-height: 40px;
    opacity: 1;
  }
  .cat-link:hover .button:hover {
    background-color: var(--primary-color);
  }
}

.brand-section {
  padding: 32px;
}
.brand-section img {
  margin: 0 auto 40px;
}
.brand-section .button {
  background-color: #83AE74;
  border-color: #83AE74;
}
.brand-section .button:hover {
  background-color: rgb(104.2909090909, 151.0045454545, 87.9954545455);
  border-color: rgb(104.2909090909, 151.0045454545, 87.9954545455);
}
@media (min-width: 992px) {
  .brand-section {
    padding: 56px 89px 50px 56px;
  }
  .brand-section img {
    margin: 0;
  }
}

.post-thumb {
  padding-bottom: 100%;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  overflow: hidden;
}
.post-thumb span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background-color: #25292A;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease-in;
}
@media (min-width: 992px) {
  .post-thumb span {
    transform: translateY(100%);
  }
}

.latest-products,
.categories-slider {
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  position: relative;
}
.latest-products .slick-list,
.categories-slider .slick-list {
  overflow: visible;
}
.latest-products li,
.categories-slider li {
  margin: 0 10px;
  opacity: 0.2;
  transition: opacity 0.3s ease-in;
}
.latest-products li.slick-active,
.categories-slider li.slick-active {
  opacity: 1;
}
.latest-products .slick-arrow,
.categories-slider .slick-arrow {
  border-color: rgba(27, 27, 27, 0.2);
  background: rgba(252, 252, 252, 0.9);
  color: #1B1B1B;
}
.latest-products .slick-arrow:hover,
.categories-slider .slick-arrow:hover {
  background: #FCFCFC;
  border-color: #1B1B1B;
  color: #1B1B1B;
}
.latest-products .slick-prev,
.categories-slider .slick-prev {
  left: -22px;
}
.latest-products .slick-next,
.categories-slider .slick-next {
  right: -22px;
}
@media (max-width: 991px) {
  .latest-products .slick-prev,
  .categories-slider .slick-prev {
    left: -6px;
  }
  .latest-products .slick-next,
  .categories-slider .slick-next {
    right: -6px;
  }
}

.latest-products a {
  color: #1B1B1B;
}
.latest-products a:hover span {
  transform: translateY(0);
}

.newsletter {
  padding: 24px;
}
@media (min-width: 992px) {
  .newsletter {
    padding: 29px 34px;
  }
}
.newsletter p {
  font-weight: 600;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 768px) {
  .newsletter form {
    flex-direction: row;
  }
}
.newsletter .gform_body {
  flex-grow: 1;
}
.newsletter .gfield {
  margin: 0 !important;
}
.newsletter .gform_fields {
  display: block !important;
  width: auto !important;
}
.newsletter .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
.newsletter .button {
  margin: 16px 0 0 !important;
  width: 100%;
}
@media (min-width: 768px) {
  .newsletter .button {
    margin: 0 0 0 12px !important;
    width: auto;
  }
}

.page-intro {
  background-color: #25292A;
  position: relative;
  padding: 140px 0 60px;
}
@media (min-width: 992px) {
  .page-intro {
    padding: 187px 0 120px;
  }
}

#breadcrumbs {
  margin: 0;
  font-weight: 600;
  color: #FCFCFC;
}
#breadcrumbs a {
  font-size: 14px !important;
  color: #FCFCFC;
  display: inline-block;
}
#breadcrumbs a:hover {
  color: var(--primary-color);
}

.gallery-section {
  padding: 16px;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-top: -40px;
  position: relative;
}
@media (min-width: 992px) {
  .gallery-section {
    padding: 18px 26px;
    margin-top: -67px;
  }
}

.gallery-grid {
  columns: 2;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .gallery-grid {
    columns: 3;
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    columns: 4;
    column-gap: 18px;
  }
}
@media (min-width: 1200px) {
  .gallery-grid {
    columns: 5;
    column-gap: 20px;
  }
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .gallery-item {
    margin-bottom: 18px;
  }
}
@media (min-width: 1200px) {
  .gallery-item {
    margin-bottom: 20px;
  }
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-thumb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-bottom: 16px;
  height: 200px;
}
@media (min-width: 768px) {
  .gallery-thumb {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .gallery-thumb {
    height: 100%;
    min-height: 50vh;
    margin-bottom: 0;
  }
}

.mfp-close {
  font-size: 0;
  width: 20px;
  height: 20px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-image: url("../images/close.svg") !important;
  right: 6px;
  top: 6px;
  opacity: 1 !important;
  color: #25292A;
}
@media (min-width: 768px) {
  .mfp-close {
    height: 28px;
    width: 28px;
    right: 20px;
    top: 20px;
  }
}

/* Styles for dialog window */
.zoom-anim-dialog,
.mfp-content {
  background: white;
  padding: 32px 20px;
  text-align: left;
  max-width: 90vw;
  margin: 0 auto;
  position: relative;
  max-height: 80vh;
  border-radius: 8px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .zoom-anim-dialog,
  .mfp-content {
    padding: 60px 40px;
    max-height: 600px;
    border-radius: 32px;
  }
}
@media (min-width: 1600px) {
  .zoom-anim-dialog,
  .mfp-content {
    max-width: 1270px;
    max-height: 741px;
  }
}

.square-bg {
  padding-bottom: 100%;
  border: 1px solid #1B1B1B;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
}

.reseller {
  border: 1px solid #25292A;
  border-radius: 14px;
  height: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease;
}
.reseller img {
  max-width: 80%;
  max-height: 80%;
}

a:has(.reseller) {
  color: inherit;
  text-decoration: none;
  display: block;
}
a:has(.reseller):hover .reseller {
  border-color: var(--primary-color);
}

.resources-section {
  padding: 24px;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-top: -40px;
  position: relative;
}
@media (min-width: 992px) {
  .resources-section {
    padding: 51px 67px;
    margin-top: -67px;
  }
}

.resource {
  color: #25292A;
}
.resource:hover .resource-img {
  opacity: 0.6;
}
.resource .h3 {
  font-weight: 600;
}

.resource-type {
  font-weight: 600;
  font-size: 12px;
}

.resource-img {
  padding-bottom: 66%;
  border-radius: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: opacity 0.3s ease-in;
}

.text-image {
  padding: 36px 36px 45px;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}

.page-intro + .container .text-image {
  margin-top: -36px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  border: 1px solid #D5D5D5;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.team-card:hover {
  border-color: #1B1B1B;
}

.team-card-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #f6f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7F8C90;
}

.team-card-info {
  padding: 16px;
}
.team-card-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 12px;
  color: #7F8C90;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-card-bio {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

.cta-banner {
  padding: 40px 24px;
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .cta-banner {
    padding: 56px 80px;
  }
}
.cta-banner h2 {
  margin-bottom: 12px;
}
.cta-banner p {
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner--dark {
  background-color: #25292A;
  color: #FCFCFC;
}
.cta-banner--light {
  background-color: #f6f9f9;
  color: #1B1B1B;
}
.cta-banner--light .button {
  background-color: #1B1B1B;
  border-color: #1B1B1B;
  color: #FCFCFC;
}
.cta-banner--accent {
  background-color: var(--primary-color);
  color: #1B1B1B;
}
.cta-banner--accent .button {
  background-color: #1B1B1B;
  border-color: #1B1B1B;
  color: #FCFCFC;
}

.acf-map {
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .acf-map {
    height: 450px;
  }
}

.regions {
  padding: 24px;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
  margin-top: -36px;
  border-bottom: 3px solid #1B1B1B;
}
@media (min-width: 992px) {
  .regions {
    padding: 54px 48px 40px;
  }
}

.regions-title {
  margin-bottom: 28px;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.region-card {
  padding: 20px 18px;
  border: 1px solid #D5D5D5;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}
.region-card:hover {
  border-color: #1B1B1B;
}
.region-card h3 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.region-card a {
  color: #1B1B1B;
}
.region-card a:hover {
  opacity: 0.7;
}
.region-card a[href^="mailto:"] {
  text-decoration: underline;
}
.region-card p:last-child {
  margin-bottom: 0;
}

.region-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f6f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B1B1B;
}

.region-info {
  font-size: 13px;
  line-height: 1.5;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  padding: 20px;
  border: 1px solid #D5D5D5;
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}
.contact-card:hover {
  border-color: #1B1B1B;
}
.contact-card h3 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-card a {
  color: #1B1B1B;
}
.contact-card a:hover {
  opacity: 0.7;
}
.contact-card a[href^="mailto:"] {
  text-decoration: underline;
}
.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f6f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B1B1B;
}

.contact-card-info {
  font-size: 14px;
  line-height: 1.6;
}

.error404 {
  background-color: #25292A;
}

.s-404 {
  padding: 150px 0 0;
}
@media (min-width: 768px) {
  .s-404 {
    padding: 200px 0 0;
  }
}

.account-section {
  padding: 24px 24px 0;
  background-color: #FCFCFC;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
  margin-top: -36px;
  text-align: center;
}
@media (min-width: 992px) {
  .account-section {
    padding-top: 60px;
  }
}
.account-section .gform_footer {
  justify-content: center !important;
}

/* Off-canvas mobile account links */
.off-canvas-account {
  margin-top: 20px;
}
.off-canvas-account a {
  display: block;
  padding: 0 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #FCFCFC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.off-canvas-account a:hover {
  color: var(--primary-color);
}

/* My Account page dashboard */
.myaccount-welcome p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #25292A;
}

/* WooCommerce Login Form */
.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
@media (min-width: 992px) {
  .woocommerce-account:not(.logged-in) .woocommerce {
    padding: 64px 0 80px;
  }
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login {
  background: #FCFCFC;
  border: 1px solid #D5D5D5;
  border-radius: 15px;
  padding: 36px 28px;
}
@media (min-width: 992px) {
  .woocommerce-account:not(.logged-in) .woocommerce-form-login {
    padding: 48px 36px;
  }
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login h2 {
  font-size: 24px;
  font-weight: 600;
  color: #25292A;
  margin-bottom: 24px;
  text-align: center;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .form-row {
  margin-bottom: 16px;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
  line-height: 18px;
  color: #25292A;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #7F8C90;
  cursor: pointer;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-form__label-for-checkbox input {
  width: auto;
  height: auto;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-form-login__submit {
  width: 100%;
  margin-top: 8px;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .lost_password {
  text-align: center;
  margin-top: 16px;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .lost_password a {
  font-size: 14px;
  font-weight: 300;
  color: #7F8C90;
  text-decoration: none;
}
.woocommerce-account:not(.logged-in) .woocommerce-form-login .lost_password a:hover {
  color: #25292A;
}

/* WooCommerce Lost Password / Reset Password */
.woocommerce-account:not(.logged-in) .lost_reset_password {
  background: #FCFCFC;
  border: 1px solid #D5D5D5;
  border-radius: 15px;
  padding: 36px 28px;
}
@media (min-width: 992px) {
  .woocommerce-account:not(.logged-in) .lost_reset_password {
    padding: 48px 36px;
  }
}
.woocommerce-account:not(.logged-in) .lost_reset_password p {
  font-size: 14px;
  font-weight: 300;
  color: #7F8C90;
  line-height: 1.6;
  margin-bottom: 20px;
}
.woocommerce-account:not(.logged-in) .lost_reset_password .form-row {
  margin-bottom: 16px;
}
.woocommerce-account:not(.logged-in) .lost_reset_password .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 2px;
  line-height: 18px;
  color: #25292A;
}
.woocommerce-account:not(.logged-in) .lost_reset_password .woocommerce-Button {
  width: 100%;
  margin-top: 8px;
}

/* WooCommerce My Account navigation styling */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 4px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 8px 16px;
  color: #25292A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: rgba(37, 41, 42, 0.05);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: rgba(37, 41, 42, 0.08);
}

.products-grid {
  display: grid;
  gap: 16px;
  padding: 40px 0;
  list-style: none;
  padding-left: 0;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 60px;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.products-grid a {
  color: #1B1B1B;
}
.products-grid a:hover span {
  transform: translateY(0);
}
.products-grid h3 {
  font-size: 14px;
}

.category-nav {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .category-nav {
    margin-top: 60px;
  }
}
.category-nav .button {
  min-width: 192px;
  justify-content: center;
}

.filters {
  display: none;
}

.filters-inner {
  background-color: #fff;
  border-bottom: 1px solid #1B1B1B;
  padding: 12px;
}
@media (min-width: 768px) {
  .filters-inner {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .filters-inner {
    padding: 12px 0;
  }
}
.filters-inner .facetwp-facet {
  margin-bottom: 0;
  margin-top: 4px;
  cursor: pointer;
}
.filters-inner .fs-label-wrap {
  border-radius: 6px;
  border: 1px solid #1B1B1B;
}
.filters-inner .fs-wrap {
  width: 100%;
}
.filters-inner .fs-wrap.single .fs-option.selected {
  background-color: rgba(var(--primary-color), 0.4);
}

.filter-label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 4px;
}

.filters-item.empty-facet {
  display: none;
}

.filters-item {
  flex: 1;
  min-width: 140px;
}
.filters-item .facetwp-facet {
  margin-bottom: 0;
}

/* =========================================
   Archive Hero
   ========================================= */
.archive-hero {
  padding: 143px 0 32px;
  background-color: #25292A;
  color: #FCFCFC;
}
@media (min-width: 768px) {
  .archive-hero {
    padding: 167px 0 48px;
  }
}
.archive-hero h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 13px 0 0;
}
@media (min-width: 992px) {
  .archive-hero h1 {
    font-size: 48px;
  }
}
.archive-hero .archive-breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: #FCFCFC;
}
.archive-hero .archive-breadcrumb a,
.archive-hero .archive-breadcrumb a:link,
.archive-hero .archive-breadcrumb a:visited,
.archive-hero .archive-breadcrumb a:active {
  color: #FCFCFC;
  text-decoration: none;
}
.archive-hero .archive-breadcrumb a:hover {
  color: #FCFCFC;
  opacity: 0.7;
}

/* =========================================
   SearchHelp Bar
   ========================================= */
.archive-page {
  background-color: #F8F8F8;
}

.button-secondary {
  background-color: #25292A;
  color: #FCFCFC;
  padding: 6px 24px;
  border-radius: 7px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
}
.button-secondary:hover {
  opacity: 0.85;
  color: #FCFCFC;
  text-decoration: none;
}

.search-help-bar {
  padding: 0;
  position: relative;
  margin-top: -20px;
  z-index: 1;
}
.search-help-bar > .container {
  background-color: #F8F8F8;
  border-bottom: 2px solid #25292A;
  border-radius: 15px 15px 0 0;
  padding: 24px;
}

.search-help-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .search-help-labels .search-help-title:last-child {
    display: none;
  }
}

.search-help-title {
  font-size: 20px;
  font-weight: 600;
}

.search-help-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
}
.search-help-controls .button-secondary {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .search-help-controls {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
  }
}

.search-help-input {
  width: 46%;
  height: 42px;
}
@media (max-width: 767px) {
  .search-help-input {
    width: 100%;
  }
}
.search-help-input .facetwp-facet,
.search-help-input .facetwp-type-search,
.search-help-input .facetwp-input-wrap {
  display: flex;
  width: 100%;
  height: 100%;
}
.search-help-input .facetwp-search {
  width: 100% !important;
  height: 42px;
  border: 1px solid #1B1B1B;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 15px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}
.search-help-input .facetwp-icon {
  display: none;
}

.search-help-cta {
  margin-left: auto;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .subcategory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .subcategory-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.subcategory-card {
  display: block;
  background-color: #FCFCFC;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #1B1B1B;
  transition: box-shadow 0.3s ease;
}
.subcategory-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #1B1B1B;
  text-decoration: none;
}

.subcategory-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #F4F4F4;
}

.subcategory-name {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.product-pagination {
  padding: 24px 0 48px;
  text-align: center;
}
.product-pagination .facetwp-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.product-pagination .facetwp-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #1B1B1B;
  background-color: #FCFCFC;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.product-pagination .facetwp-page:hover {
  background-color: #25292A;
  color: #FCFCFC;
  border-color: #25292A;
}
.product-pagination .facetwp-page.active {
  background-color: #25292A;
  color: #FCFCFC;
  border-color: #25292A;
}
.product-pagination .facetwp-page.dots {
  border: none;
  background: none;
  cursor: default;
}
.product-pagination .facetwp-page.dots:hover {
  background: none;
  color: #1B1B1B;
}
.product-pagination .facetwp-page.first, .product-pagination .facetwp-page.last {
  font-weight: 500;
}
.product-pagination .facetwp-page.prev, .product-pagination .facetwp-page.next {
  font-weight: 500;
}

.woocommerce-pagination {
  display: none;
}

.archive-category-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 16px;
}
.archive-category-heading h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.archive-category-heading .filters-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* =========================================
   Filter Bar
   ========================================= */
.filter-bar-wrapper {
  display: none;
  margin-bottom: 24px;
}
.filter-bar-wrapper.active {
  display: block;
}
.filter-bar-wrapper .filters-inner {
  background-color: #FCFCFC;
  border-bottom: 1px solid #1B1B1B;
  padding: 24px;
}
.filter-bar-wrapper .facetwp-dropdown {
  width: 100%;
  border: 1px solid #1B1B1B;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 15px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  background-color: #FCFCFC;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%231B1B1B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filters-row {
  display: none;
  padding: 16px 0;
}
.filters-row.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .filters-row.active {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}

/* =========================================
   Product Card
   ========================================= */
.product-card {
  list-style: none;
}

.product-card-link {
  display: block;
  color: #1B1B1B;
  text-decoration: none;
}
.product-card-link:hover {
  color: #1B1B1B;
  text-decoration: none;
}
.product-card-link:hover .product-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.product-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #25292A;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in;
}

.product-card-cta {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.product-card-info {
  padding: 8px 0;
}

.product-card-sku,
.product-card-title,
.product-card-spec {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.product-card-spec {
  font-weight: 300;
}

.product-intro {
  padding: 143px 0 0;
  background-color: #25292A;
  color: #FCFCFC;
  overflow: hidden;
  position: relative;
}
.product-intro h1 {
  margin: 13px 0 24px;
}
.product-intro nav.product-breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: #FCFCFC;
}
.product-intro nav.product-breadcrumb a,
.product-intro nav.product-breadcrumb a:link,
.product-intro nav.product-breadcrumb a:visited,
.product-intro nav.product-breadcrumb a:active {
  color: #FCFCFC;
  text-decoration: none;
}
.product-intro nav.product-breadcrumb a:hover {
  color: #FCFCFC;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .product-intro {
    padding: 167px 0 0;
  }
  .product-intro:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 118px;
    background-color: #FCFCFC;
  }
}

.product-info-divider {
  border-top: 3px solid #1B1B1B;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .product-info-divider {
    margin-bottom: 32px;
  }
}

.zi-1 {
  z-index: 1;
  position: relative;
}

.product-hero-grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product-hero-grid {
    display: grid;
    grid-template-columns: 5fr 1fr 6fr;
    grid-template-rows: auto 1fr;
    position: relative;
  }
  .product-hero-grid::before {
    content: "";
    position: absolute;
    top: var(--card-top, 55%);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FCFCFC;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}

@media (min-width: 992px) {
  .product-title-block {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .product-gallery-block {
    grid-column: 3;
    grid-row: 1/-1;
    min-width: 0;
  }
}
.product-gallery-block img {
  max-width: 100%;
  height: auto;
}

.product-desc-block {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .product-desc-block {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }
}

.product-gallery-block {
  position: relative;
}
@media (max-width: 991px) {
  .product-gallery-block::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -12px;
    right: -12px;
    height: 40%;
    background-color: #FCFCFC;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .product-gallery-block .product-gallery-container {
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .product-gallery-block {
    padding-left: 30px;
  }
}

.product-description {
  color: #1B1B1B;
  padding: 24px;
  margin: 0 -12px;
  position: relative;
  z-index: 1;
  background-color: #FCFCFC;
}
@media (min-width: 768px) {
  .product-description {
    margin: 0 -24px;
    border-radius: 14px;
  }
}
@media (min-width: 992px) {
  .product-description {
    margin: 0;
    padding: 32px 32px 32px 30px;
    background-color: transparent;
    border-radius: 0;
  }
}
.product-description p {
  font-size: 15px;
}
.product-description a {
  color: #1B1B1B;
  text-decoration: underline;
}
.product-description a:hover {
  opacity: 0.7;
}

.channel-color {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in;
  overflow: hidden;
  cursor: pointer;
}
.channel-color .secondary-color {
  height: 88px;
  width: 88px;
  margin-left: -62px;
  transform: rotate(45deg);
}
.channel-color.active {
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 0 2px #1B1B1B;
}

.product_info_table {
  display: none;
}
.product_info_table.active {
  display: block;
}

.square-bg {
  padding-bottom: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.product-gallery {
  display: none;
}
.product-gallery.active {
  display: block;
}
.product-gallery .slide {
  border-radius: 20px;
  border: 1px solid #1B1B1B;
}

.product-gallery-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 8px;
}
@media (min-width: 992px) {
  .product-gallery-nav {
    margin-bottom: 24px;
  }
}
.product-gallery-nav .slide {
  cursor: pointer;
  transition: opacity 0.3s ease-in;
  background-color: #FCFCFC;
  border-radius: 8px;
}
.product-gallery-nav .slide:hover {
  opacity: 0.7;
}

.full-width {
  width: 100%;
}

.option-select {
  font-size: 14px;
  font-weight: 600;
  height: 38px;
  color: #727272;
  border: 1px solid #1B1B1B;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.option-select.active {
  background-color: #25292A;
  color: #FCFCFC;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #D5D5D5;
  padding: 0 2px;
}
.info-row:last-child {
  border: none;
}

.info-title {
  width: 40%;
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}

.info-val {
  width: 60%;
  font-weight: 300;
  font-size: 14px;
}

.product-info {
  background-color: #FCFCFC;
  padding: 32px 0;
}
@media (min-width: 992px) {
  .product-info {
    padding: 48px 0;
  }
}

.tabs {
  background-color: #F4F4F4;
  border-radius: 16px;
  padding: 24px 32px;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .tabs {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .tabs {
    margin-top: 0;
  }
}

.specification {
  color: #1B1B1B;
  margin-bottom: 12px;
}
.specification:hover img,
.specification:hover svg {
  opacity: 0.7;
}
.specification img,
.specification .specification-svg {
  width: 42px;
  height: 42px;
  margin-right: 14px;
  transition: opacity 0.3s ease-in;
  flex-shrink: 0;
}

.specification-type {
  font-size: 12px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.specification-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

.guides-title {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .tab-2 {
    display: none;
  }
}

@media (min-width: 768px) {
  .tab-content {
    padding: 30px 36px;
  }
}

.tabs-nav {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.tabs-nav li {
  width: 50%;
}
.tabs-nav a {
  color: var(--primary-color);
  background-color: #25292A;
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 24px;
  text-align: center;
}
.tabs-nav .active a {
  background-color: transparent;
  color: #25292A;
}

.product-thumb {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .product-thumb {
    margin-bottom: 24px;
  }
}

/* ===================================================
   Phase 3 additions — single product page
   =================================================== */
/* Price display */
.product-price {
  margin-bottom: 8px;
}

.product-price-value {
  font-size: 20px;
  font-weight: 600;
}

/* Stock display */
.product-stock {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-separator {
  color: #ccc;
}

/* SKU display row */
.product-sku-display {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.product-sku-display .spec-label {
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
}
.product-sku-display .product-sku {
  font-weight: 300;
  font-size: 14px;
}

/* Product description text */
.product-desc-text {
  margin-bottom: 24px;
}

/* Variation groups */
.variation-group {
  margin-bottom: 16px;
}

.variation-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.variation-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.variation-finish .channel-color:first-child {
  margin-left: 0;
}

/* CTA button — sits below gallery in right column */
a.button-enquire.button {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: #1B1B1B;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 12px 24px;
  height: auto;
  line-height: 1.5;
  border-radius: 7px;
  text-decoration: none;
  text-transform: capitalize;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease-in;
}
a.button-enquire.button:hover {
  opacity: 0.85;
  color: #1B1B1B;
  text-decoration: none;
  background-color: var(--primary-color);
}

.product-info-heading {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 24px;
}

/* Drawings section */
.product-drawings {
  margin-top: 24px;
}

.product-drawing {
  margin-bottom: 24px;
}
.product-drawing .drawing-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-drawing .drawing-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Specs table container */
.specs-table {
  margin-bottom: 24px;
}

/* Gallery container — sits above the white ::before overlap */
.product-gallery-container {
  position: relative;
  z-index: 1;
}
.product-gallery-container .product-gallery-main .slide {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1B1B1B;
  background-color: #FCFCFC;
}
.product-gallery-container .product-gallery-main .slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Drawings section — below product info */
.product-drawings-section {
  background-color: #FCFCFC;
  padding: 0 0 48px;
}

/* Similar products section */
.similar-products-section {
  padding: 48px 0;
  background-color: #FCFCFC;
}
.similar-products-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.similar-products,
.compatible-products {
  /* Slick slider overrides */
}
.similar-products .product-card,
.compatible-products .product-card {
  list-style: none;
  padding: 0 8px;
}
.similar-products .slick-list,
.compatible-products .slick-list {
  margin: 0 -8px;
}

.compatible-products:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -8px;
}
.compatible-products:not(.slick-initialized) .product-card {
  width: 25%;
}
@media (max-width: 1024px) {
  .compatible-products:not(.slick-initialized) .product-card {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .compatible-products:not(.slick-initialized) .product-card {
    width: 100%;
  }
}

/* Phase 5: Price display */
.product-price {
  margin-bottom: 16px;
}

.product-price-value {
  font-size: 16px;
  font-weight: 600;
  color: #25292A;
}

.product-price-contact {
  font-size: 16px;
  font-weight: 300;
  color: #7F8C90;
}

/* Phase 5: Discontinued badge */
.badge-discontinued {
  display: inline-block;
  background-color: #D5D5D5;
  color: #7F8C90;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Badge in product card */
.product-card-info .badge-discontinued {
  margin-top: 4px;
}

/*
    Spec sheet styles — standalone print-ready product data sheet
    Used by templates/spec-sheet.php and template-parts/spec-sheets/*.php
*/
.spec-sheet-page {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 10pt;
  background: #FCFCFC;
}

.spec-sheet-wrap {
  max-width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  padding: 10mm;
  display: flex;
  flex-direction: column;
}

.spec-sheet-print-btn {
  display: block;
  margin-left: auto;
  background: #25292A;
  color: #FCFCFC;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.spec-sheet-print-btn:hover {
  opacity: 0.85;
}

.spec-sheet-header {
  background: #4a4a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.spec-sheet-header-left img {
  max-height: 55px;
  width: auto;
}
.spec-sheet-header-left .spec-sheet-logo-text {
  color: #FCFCFC;
  font-weight: 600;
  font-size: 18px;
}

.spec-sheet-warranty-badge {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}
.spec-sheet-warranty-badge img {
  height: 40px;
  width: auto;
}
.spec-sheet-warranty-badge--text {
  background: var(--primary-color);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  color: #111111;
  padding: 6px 14px;
  letter-spacing: 0.5px;
}

.spec-sheet-body {
  display: flex;
  gap: 24px;
  padding: 0 16px;
  margin-top: 12px;
}
.spec-sheet-body--full {
  flex: 1;
}

.spec-sheet-col-left {
  flex: 0 0 38%;
  max-width: 38%;
}

.spec-sheet-col-right {
  flex: 1;
}

.spec-sheet-product-image {
  display: block;
  max-width: 100%;
  max-height: 95mm;
  object-fit: contain;
  object-position: left top;
}

.spec-sheet-left-section {
  margin-top: 16px;
}

.spec-sheet-body-bottom {
  display: flex;
  gap: 24px;
  padding: 0 16px;
  align-items: flex-start;
}

.spec-sheet-col-bottom-left {
  flex: 1;
}

.spec-sheet-col-bottom-right {
  flex: 1;
}

.spec-sheet-hero {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.spec-sheet-hero-image {
  flex: 0 0 40%;
  max-width: 40%;
}
.spec-sheet-hero-image img {
  width: 100%;
  height: auto;
}

.spec-sheet-hero-content {
  flex: 1;
}

.spec-sheet-product-code {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 4px;
}

.spec-sheet-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #25292A;
}

.spec-sheet-section-heading {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 16px 0 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #D5D5D5;
  color: #25292A;
}

.spec-sheet-overview {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.spec-sheet-info-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 8px;
}

.spec-row {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: #25292A;
}

.spec-value {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
  color: #25292A;
}

.spec-sheet-info {
  margin-top: 16px;
}

.spec-sheet-dimensions {
  margin-top: 16px;
}

.spec-sheet-accessories {
  margin-top: 16px;
}

.spec-sheet-accessory-item {
  margin-bottom: 4px;
}

.spec-sheet-features {
  margin-top: 16px;
}
.spec-sheet-features ul {
  list-style: disc inside;
  margin: 4px 0;
  padding: 0;
}

.spec-sheet-feature-item {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
}

.spec-sheet-control-options {
  margin-top: 16px;
}

.spec-sheet-control-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.spec-sheet-control-icon {
  text-align: center;
}
.spec-sheet-control-icon img,
.spec-sheet-control-icon svg {
  width: 32px;
  height: 32px;
}
.spec-sheet-control-icon span {
  display: block;
  font-size: 8px;
  margin-top: 2px;
}

.spec-sheet-dimension-drawing,
.spec-sheet-wiring-diagram,
.spec-sheet-left-image {
  display: block;
  max-width: 100%;
  max-height: 70mm;
  object-fit: contain;
  object-position: left top;
}

.spec-sheet-dimensions-text,
.spec-sheet-dimension-text {
  font-size: 11px;
  font-weight: 300;
}

.spec-sheet-section-subheading {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 12px 0 8px;
  color: #25292A;
}

.spec-sheet-footer-area {
  margin-top: auto;
}

.spec-sheet-footer {
  background: #4a4a4a;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  color: #FCFCFC;
  text-align: center;
  padding: 8px 16px;
  font-size: 9px;
  font-weight: 300;
  line-height: 1.2;
}

.spec-sheet-disclaimer {
  font-size: 8px;
  font-weight: 300;
  line-height: 1.4;
  color: #25292A;
  margin-top: 6px;
  text-align: center;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  body.spec-sheet-page {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
    font-size: 10pt;
  }
  .spec-sheet-wrap {
    max-width: none;
    min-height: 0;
    height: 100vh;
    padding: 0;
    margin: 0;
  }
  .spec-sheet-dimensions img {
    max-height: 150px;
  }
  .spec-sheet-accessories img {
    max-height: 150px;
  }
  .spec-sheet-print-btn {
    display: none !important;
  }
  #wpadminbar,
  .site-header,
  .site-footer {
    display: none !important;
  }
  .spec-sheet-hero,
  .spec-sheet-info-table {
    page-break-inside: avoid;
  }
  .spec-sheet-product-code {
    font-size: 18pt;
  }
  .spec-sheet-subtitle {
    font-size: 9pt;
    margin-bottom: 8px;
  }
  .spec-sheet-overview {
    font-size: 8pt;
    line-height: 1.3;
  }
  .spec-label {
    font-size: 6.5pt;
  }
  .spec-value {
    font-size: 7.5pt;
  }
  .spec-sheet-section-heading {
    font-size: 6.5pt;
    margin: 8px 0 3px;
    padding-bottom: 2px;
  }
  .spec-sheet-footer {
    font-size: 6.5pt;
  }
  .spec-sheet-disclaimer {
    font-size: 5.5pt;
    margin-top: 3px;
  }
  .spec-sheet-feature-item {
    font-size: 7.5pt;
    line-height: 1.4;
  }
  .spec-sheet-features ul {
    margin: 2px 0;
  }
  .spec-sheet-body {
    margin-top: 6px;
    gap: 16px;
  }
  .spec-sheet-col-left {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .spec-sheet-hero {
    margin-top: 6px;
    gap: 16px;
  }
  .spec-sheet-hero-image {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .spec-sheet-body-bottom {
    gap: 16px;
    margin-top: 8px;
  }
  .spec-sheet-left-section {
    margin-top: 8px;
  }
  .spec-sheet-info {
    margin-top: 8px;
  }
  .spec-sheet-dimensions,
  .spec-sheet-accessories,
  .spec-sheet-features,
  .spec-sheet-control-options {
    margin-top: 8px;
  }
  .spec-sheet-info-table {
    gap: 4px 16px;
    margin-top: 4px;
  }
  .spec-sheet-accessory-item {
    margin-bottom: 2px;
  }
  .spec-sheet-header {
    padding: 8px 16px;
  }
  .spec-sheet-header-left img {
    max-height: 40px;
  }
  .spec-sheet-warranty-badge img {
    height: 45px;
  }
  .spec-sheet-footer-area {
    margin-top: auto;
  }
}
