:root {
    --white: #fff;
    --blue-dark: #001637;
    --blue-darker: #00112a;
    --blue: #001E4B;
    --blue-tint: #002965;
    /* --red: #FA1400; */
    --red: #DA1C15;
    --red-dark: #C8251F;
    --mint: #E3F3EF;
    --mint-tint: #F2F9F7;
    --mint-shade: #AADBCF;
    --black: #000;
    --gray: #222;
    --gray-light: #757575;
    --titanium: #f4f4f4;
    --titanium-shade: #ccc;
    --titanium-light: #e9e9e9;
    --green: #338449;
}

/*** Enqueue Fonts ***/
/* 1-23-2026: Fixed format declarations - woff2 should be format("woff2") */
@font-face {
    font-family: "Gotham";
    src: url("../woff2/gotham-book.woff2") format("woff2"),
         url("../woff/gotham-book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../gotham-book-italic.html") format("woff2"),
         url("../woff/gotham-book-italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../woff2/gotham-bold.woff2") format("woff2"),
         url("../woff/gotham-bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../woff2/gotham-bold-italic.woff2") format("woff2"),
         url("../woff/gotham-bold-italic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/*** HTML ***/
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/*** Body ***/
body {
    font-family: "Gotham", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--blue-dark);
}

pre {
    max-width: 100%;
    white-space: break-spaces;
}

/*** Sections ***/
.section {
    color: var(--blue);
}

.section p:empty {
    display: none;
}

.section .content p:not(:last-child) {
    margin-bottom: 1rem;
}

/*** Body ***/
body p a, body .entry-content a, body .description a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/*** Links ***/
.link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.link svg {
    width: 0.75rem;
    height: 0.75rem;
}

/*** Headings ***/
body h1, .section h1, .editor-styles-wrapper h1, .body .h1, .section .h1, .editor-styles-wrapper .h1,
body h2, .section h2, .editor-styles-wrapper h2, body .h2, .section .h2, .editor-styles-wrapper .h2,
body h3, .section h3, .editor-styles-wrapper h3, body .h3, .section .h3, .editor-styles-wrapper .h3,
body h4, .section h4, .editor-styles-wrapper h4, body .h4, .section .h4, .editor-styles-wrapper .h4,
body h5, .section h5, .editor-styles-wrapper h5, body .h5, .section .h5, .editor-styles-wrapper .h5,
body h6, .section h6, .editor-styles-wrapper h6, body .h6, .section .h6, .editor-styles-wrapper .h6 {
    line-height: 1.2em;
    font-family: "quasimoda", sans-serif;
    margin: 0;
    font-weight: 800;
    line-height: 1.2em;
    color: var(--blue);
}

body h1, .section h1, .editor-styles-wrapper h1, body .h1, .section .h1, .editor-styles-wrapper .h1 { font-size: 3.5rem; }
body h2, .section h2, .editor-styles-wrapper h2, body .h2, .section .h2, .editor-styles-wrapper .h2 { font-size: 2.25rem; }
body h3, .section h3, .editor-styles-wrapper h3, body .h3, .section .h3, .editor-styles-wrapper .h3 { font-size: 2rem; }
body h4, .section h4, .editor-styles-wrapper h4, body .h4, .section .h4, .editor-styles-wrapper .h4 { font-size: 1.25rem; }
body .span, .section .span, .editor-styles-wrapper .span { font-size: 1rem; font-family: "Gotham", 'sans-serif'; }

@media screen and (max-width: 800px) {
    body h1, .section h1, .editor-styles-wrapper h1, body .h1, .section .h1, .editor-styles-wrapper .h1 { font-size: 1.75rem; }
    body h2, .section h2, .editor-styles-wrapper h2, body .h2, .section .h2, .editor-styles-wrapper .h2 { font-size: 1.5rem; }
    body h3, .section h3, .editor-styles-wrapper h3, body .h3, .section .h3, .editor-styles-wrapper .h3 { font-size: 1.25rem; }
    body h4, .section h4, .editor-styles-wrapper h4, body .h4, .section .h4, .editor-styles-wrapper .h4 { font-size: 1rem; }
}

.section h1 u, body h1 u, .editor-styles-wrapper h1 u, .section h2 u, body h2 u, .editor-styles-wrapper h2 u {
    text-decoration: none;
    position: relative;
}

.section h1 u::after, .section h2 u::after, .editor-styles-wrapper h1 u::after, .editor-styles-wrapper h2 u::after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--red);
    margin-top: 0;
}

.section h3.subheading {
    font-weight: 500;
    font-size: 1.75rem;
}

@media screen and (max-width: 800px) {
    .section h3.subheading {
        font-size: 1.25rem;
    }
}

.section p, .editor-styles-wrapper p,
.editor-styles-wrapper ul,
.editor-styles-wrapper li {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--blue-dark);
}


.section .text-small, body .text-small, body p.text-small {
    font-size: 0.85rem;
}

.container {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.container.container-lg {
    max-width: 105rem;
}

.container.container-md {
    max-width: 75rem;
}

.container.container-sm {
    max-width: 65rem;
}

.relative {
    position: relative;
}

body .bg-cover, body .editor-styles-wrapper .bg-cover, body.woocommerce-page img.bg-cover {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    position: absolute;
}

body .img-position-top-left, body img.img-position-top-left {
    background-position: top left;
    object-position: top left;
}
body .img-position-top-center, body img.img-position-top-center {
    background-position: top center;
    object-position: top center;
}
body .img-position-top-right, body img.img-position-top-right {
    background-position: top right;
    object-position: top right;
}
body .img-position-center-left, body img.img-position-center-left {
    background-position: center left;
    object-position: center left;
}
body .img-position-center-center, body img.img-position-center-center {
    background-position: center center;
    object-position: center center;
}
body .img-position-center-right, body img.img-position-center-right {
    background-position: center right;
    object-position: center right;
}
body .img-position-bottom-left, body img.img-position-bottom-left {
    background-position: bottom left;
    object-position: bottom left;
}
body .img-position-bottom-center, body img.img-position-bottom-center {
    background-position: bottom center;
    object-position: bottom center;
}
body .img-position-bottom-right, body img.img-position-bottom-right {
    background-position: bottom right;
    object-position: bottom right;
}

/*** Screen Reader Text ***/
body screen-reader-text, .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* Added just in case you need it */
    border: 0;
}

/*** Skip Link ***/
body .skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 8px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: #000;
    color: #fff;
    z-index: 100;
}

/*** Focus ***/
[contentEditable=true]:focus, [href]:focus, [tabindex]:focus, iframe:focus, button:focus, input:focus, select:focus, textarea:focus, .variation-items span:focus {
    outline: .25rem solid #2491ff;
    outline-offset: 0;
}

/*** Border ***/
.border-right { border-right: 1px solid var(--blue); }
.border-bottom { border-bottom: 1px solid var(--blue); }
.border-top { border-top: 1px solid var(--blue); }
.border-left { border-left: 1px solid var(--blue); }
.border { border: 1px solid var(--blue); }

/*** Z-Index ***/
.z-100 { z-index: 100; }
.z-200 { z-index: 200; }
.z-300 { z-index: 300; }
.z-400 { z-index: 400; }
.z-500 { z-index: 500; }


/*** Backgrounds ***/
.bg-white { background: var(--white); }
.bg-blue { background: var(--blue); }
.bg-blue-dark { background: var(--blue-dark); }
.bg-red { background: var(--red); }
.bg-mint { background: var(--mint); }
.bg-titanium { background: var(--titanium); }
.bg-black { background: var(--black); }
.bg-transparent { background: transparent; }

@media screen and (min-width: 768px) {
    body .sm\:bg-white { background: var(--white); }
    body .sm\:bg-blue { background: var(--blue); }
    body .sm\:bg-blue-dark { background: var(--blue-dark); }
    body .sm\:bg-red { background: var(--red); }
    body .sm\:bg-mint { background: var(--mint); }
    body .sm\:bg-titanium { background: var(--titanium); }
    body .sm\:bg-black { background: var(--black); }
    body .sm\:bg-transparent { background: transparent; }
}

@media screen and (min-width: 1024px) {
    body .md\:bg-white { background: var(--white); }
    body .md\:bg-blue { background: var(--blue); }
    body .md\:bg-blue-dark { background: var(--blue-dark); }
    body .md\:bg-red { background: var(--red); }
    body .md\:bg-mint { background: var(--mint); }
    body .md\:bg-titanium { background: var(--titanium); }
    body .md\:bg-black { background: var(--black); }
    body .md\:bg-transparent { background: transparent; }
}

@media screen and (min-width: 1280px) {
    body .lg\:bg-white { background: var(--white); }
    body .lg\:bg-blue { background: var(--blue); }
    body .lg\:bg-blue-dark { background: var(--blue-dark); }
    body .lg\:bg-red { background: var(--red); }
    body .lg\:bg-mint { background: var(--mint); }
    body .lg\:bg-titanium { background: var(--titanium); }
    body .lg\:bg-black { background: var(--black); }
    body .lg\:bg-transparent { background: transparent; }
}

/*** Text Light ***/
.section .text-light, .section .text-light a, .section .text-light p, .section .text-light h1, .section .text-light h2, .section .text-light h3, .section .text-light h4, .section .text-light h5, .section .text-light h6, .section .text-light div, .section .text-light span, .section .text-light div span, .section .text-light p, .text-light, .text-light *, .section.text-light, .section.text-light a, .section.text-light p, .section.text-light h1, .section.text-light h2, .section.text-light h3, .section.text-light h4, .section.text-light h5, .section.text-light h6, .section.text-light div, .section.text-light span, .section.text-light div span, .section .text-light .button-secondary {
    color: var(--white);
}

/*** Gravity Fix ***/
body .gform_wrapper input[type=color], body .gform_wrapper input[type=date], body .gform_wrapper input[type=datetime-local] , body .gform_wrapper input[type=datetime] , body .gform_wrapper input[type=email] , body .gform_wrapper input[type=month] , body .gform_wrapper input[type=number] , body .gform_wrapper input[type=password] , body .gform_wrapper input[type=search] , body .gform_wrapper input[type=tel] , body .gform_wrapper input[type=text] , body .gform_wrapper input[type=time] , body .gform_wrapper input[type=url] , body .gform_wrapper input[type=week] , body .gform_wrapper select , body .gform_wrapper textarea {
    color: var(--blue);
}

/*** Buttons ***/
.section .button, .section [type='button'].button, body a.wp-element-button, .section [type='submit'], button.search-button, .wp-block-buttons .wp-block-button .wp-element-button, .woocommerce .section .button, .gform_footer.top_label input, a.elementor-button, .wp-block-button a.add_to_cart_button, .woocommerce-checkout .wc-block-components-checkout-place-order-button {
    display: inline-flex;
    gap: 0.5rem;
    width: fit-content;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
    border: 1px solid var(--red);
    background-color: var(--red);
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/*** Disabled Woo Button ***/
.woocommerce .section .button:disabled, .woocommerce .section .button:disabled:hover {
    background-color: var(--titanium-shade);
    color: var(--gray);
    border-color: var(--titanium-shade);
    border: 0;
}

.button > svg, .button > img, .button-secondary > svg, .button-secondary > img {
    width: 0.9rem;
    height: 0.9rem;
}

.section .button:hover, .section [type='button'].button:hover, body a.wp-element-button:hover, .section [type='submit']:hover, button.search-button:hover, .wp-block-buttons .wp-block-button .wp-element-button:hover, .woocommerce .section .button:hover, .gform_footer.top_label input:hover, a.elementor-button:hover, .wp-block-button a.add_to_cart_button:hover {
    border: 1px solid var(--red-dark);
    background-color: var(--red-dark);
    color: var(--white);
    text-decoration: none;
}

/*** Woo Buttons ***/
body .wc-block-components-button:not(.is-link).outlined {
    border: 0;
}

/*** WooCommerce Error Text ***/
.wc-block-components-checkbox.has-error {
    font-weight: bold;
}
.custom-error-label {
    font-weight: bold;
    color: #CC1818;
}
.wc-block-components-text-input.has-error, .wc-block-components-state-input.has-error {
    font-weight: bold;
}
.wc-block-components-validation-error p {
    color: #CC1818;
}

/* Make sure your form, input, and buttons are displayed nicely */
.search-form {
    position: relative; /* so we can position the clear button absolutely */
    display: inline-block;
}

/*
  When the user hovers over .search-form, or
  when any child inside .search-form is focused (focus-within),
  make .clear-search-button visible.
*/
.search-form:hover .clear-search-button,
.search-form:focus-within .clear-search-button {
    visibility: visible;
}

/* The clear button (“X”) */
.clear-search-button {
    position: absolute;
    top: 53%;
    right: 10px;  /* Adjust as needed for your layout */
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--blue);
    cursor: pointer;
    padding: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;

    /* Hidden by default */
    visibility: hidden;
}

/* (Optional) Remove native “X” in Chrome/Safari */
.search-field::-webkit-search-decoration,
.search-field::-webkit-search-cancel-button,
.search-field::-webkit-search-results-button,
.search-field::-webkit-search-results-decoration {
    display: none; /* or visibility: hidden; */
}

/* Container for input + label */
.floating-label-group {
    position: relative;
    margin: 1em 0;
}

/* The input has extra top padding to accommodate the label when it floats */
.floating-label-group input[type="search"] {
    padding: 1.2em 10px 0.4em;
    box-sizing: border-box;
    width: 220px; /* Or however wide you want */
    font-size: 16px;
}

/* The label is absolutely positioned over the input */
.floating-label-group label {
    position: absolute;
    left: 10px;            /* Same horizontal padding as input */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;  /* So clicks go through to the input */
    transition: 0.2s ease all;
    color: #999; /* Initial text color */
}

/* When the input is focused, or if it has a value (NOT placeholder-shown), float the label up */
.floating-label-group input[type="search"]:focus + label,
.floating-label-group input[type="search"]:not(:placeholder-shown) + label {
    top: 0;
    left:0;
    transform: translateY(-100%);
    font-size: 0.8em; /* Smaller label */
    color: var(--white);      /* Darker color on focus or has content */
}

a.elementor-button span {
    color: var(--white);
}

.section .button-secondary, .wp-block-buttons .wp-block-button.button-secondary .wp-element-button, .woocommerce .section .button-secondary, a.elementor-button.button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    border-color: transparent;
    color: var(--blue);
    padding-left: 0;
    padding-right: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1em;
    font-weight: bold;
    text-decoration: none;
}

body .unstyled-button {
    background: transparent;
}

a.elementor-button.button-secondary span {
    color: var(--blue);
}

.button-secondary > span {
    margin-top: 0.1em;
}

.section .button-secondary:hover, .wp-block-buttons .wp-block-button.button-secondary .wp-element-button:hover, .woocommerce .section .button-secondary:hover, a.elementor-button.button-secondary:hover {
    color: var(--blue-dark);
    background: transparent;
    border-color: transparent;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    .section .button-secondary, .wp-block-buttons .wp-block-button.button-secondary .wp-element-button, .woocommerce .section .button-secondary {
        font-size: 0.85rem;
    }
}

.text-light .button, .woocommerce .section .text-light.button {
    color: var(--white);
}

.button-primary, .text-light .button.button-primary, .woocommerce .section .button-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.read-more-link.read-more-link-close svg {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

/*** WOOCOMMERCE ***/
.woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product {
    padding: .5rem !important;
}

.woocommerce-cart a.wc-block-cart__submit-button {
    width: 100%;
}

.woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product:focus-within, .woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product:focus {
    border: 2px solid var(--blue);
}

.cross-sells-product h3 {
    font-size: 1.1rem;
}

select.wc-blocks-components-select__select:focus {
    box-shadow: 0 0 0 3px !important;
}

div.wc-block-components-text-input > input:focus {
    box-shadow: 0 0 0 3px !important;
}

div.wc-block-components-text-input.has-error > input:focus {
    box-shadow: 0 0 0 3px #cc1818 !important;
}

button.wc-block-components-panel__button, button.wc-block-components-panel__button:hover {
    background-color: unset;
    border: none;
    color: var(--dark-blue);
}

h2 > .wc-block-components-order-summary__button-text {
    display: inline; /* Ensure the text behaves like an inline element */
    font: inherit; /* Explicitly inherit the font styles */
    font-size: initial; /* Explicitly set font size */
}

h2:has(> .wc-block-components-order-summary__button-text), 
.wc-block-cart-items__header-image h2, h2:has(> .wc-block-cart__totals-title),
h3:has(> .wc-block-components-product-name) {
    font-size: unset;
}

.wc-block-cart__payment-options ul.wc-block-components-express-payment__event-buttons li {
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
}
.wc-block-cart__payment-options ul.wc-block-components-express-payment__event-buttons li:focus {
    border: 5px solid blue !important;
}

.p-ExpressCheckoutButtonGroup button.LinkButton:hover {
    border: 3px solid #011e0f;
    font-weight: 700;
}

.p-ExpressCheckoutButtonGroup .LinkButton:focus {
    border: 3px solid #011e0f!important;
    text-decoration: underline;
}


/*** Inputs ***/
.section input[type="text"], .search-container input[type="text"], .section input[type="email"], .section input[type="password"], .section input[type="tel"], .section input[type="number"], .section input[type="search"], .section input[type="url"], .section select, .section textarea {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 0.3rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--blue);
    background-color: var(--white);
    border: 2px solid var(--gray-light);
}

/* Placeholder ADA compliance for color contrast */
.section input[type="text"]::placeholder, .section input[type="search"]::placeholder, .section input[type="email"]::placeholder, .section input[type="tel"]::placeholder, .section input[type="url"]::placeholder, .section input[type="number"]::placeholder, .section input[type="password"]::placeholder, .section select::placeholder, .section textarea::placeholder {
    color: var(--gray-light);
}

/*** Header ***/
header {
    padding: 0 1.5rem;
}

header .header-inner {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 4rem;
    z-index: 9999;
}
.main-menu-wrapper .menu-item:hover {
    text-decoration: underline;
    text-decoration-color: var(--blue-dark);
    color: var(--blue-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.main-menu-wrapper ul.main-menu .sub-menu li:hover {
    text-decoration: none;
}
.main-menu-wrapper ul.main-menu .sub-menu li a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 2px;
}

/*** Footer ***/
footer ul.menu, footer .menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Logo */
header .logo {
    width: 10rem;
    height: auto;
}

header .logo-wrapper a {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 1.25rem;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* Navigation */
header .navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    position: relative;
}

header nav.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    position: relative;
}

header nav ul a {
    display: block;
    padding: 2rem 1.5rem;
    transition: all 0.2s ease;
    font-weight: bold;
    color: var(--blue-dark);
}

header nav .menu-item.current-menu-item a, header nav .menu-item a:hover {
    color: var(--blue-dark);
}

header nav .menu-item a:hover {
    cursor: pointer;
}

header .menu-item.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding-right: 0.25rem;
}

header nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul.sub-menu li, header nav ul.sub-menu li a {
    width: 100%;
}

header .menu-item .submenu-toggle {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
}

header .menu-item .submenu-toggle svg {
    display: block;
    width: 0.8rem;
    height: auto;
}

header .menu-item.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Icons */
header .header-icons img, .footer img.footer__social_icon {
    width: 1.5rem;
    height: 1.5rem;
}

.header-icon {
    position: relative;
}

.header-icon:hover {
    cursor: pointer;
}

.header-icon .cart-bubble {
    background: var(--red);
    width: 1rem;
    height: 1rem;
    position: absolute;
    font-size: 0.8rem;
    top: -0.5rem;
    right: -0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 0.7rem;
}

/*** Header Mobile Responsiveness ***/
@media screen and (max-width: 981px) {
    header .header-inner {
        gap: 2rem;
        padding: 1rem 1.25rem; 
    }

    header .logo {
        width: 8rem;
    }

    header .main-menu-wrapper {
        display: none;
    }
    header .rental-location-wrapper.rental-location-wrapper-desktop {
        display: none;
    }
    header .navigation-wrapper {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    header {
        padding: 0;
    }

    body .mega-menu-container {
        display: none!important;
    }
}

@media screen and (min-width: 980px) {
    header .menu-mobile {
        display: none!important;
    }
    .rental-location-wrapper.rental-location-wrapper-mobile {
        display: none!important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1100px) {
    .navigation-wrapper .rental-location-wrapper {
        display: none!important;
    }
}

@media screen and (min-width: 1101px) and (max-width: 1340px) {
    .navigation-wrapper .rental-location-wrapper {
        flex-direction: column;
        gap: 0.2rem;
    }
}


/*** Mobile Menu ***/
header.section .menu-toggle {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 1.75rem;
    height: 1.25rem;
    padding: 0;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--blue-dark);
}

@media screen and (min-width: 1001px) {
    .section button.menu-toggle {
        display: none;
    }
}

.section .menu-toggle:hover {
    cursor: pointer;
}

.menu-toggle-icon {
    transition: all 0.3s ease;
    width: 100%;
    height: 2px;
    background: var(--blue-dark);
    display: inline-block;
    content: "";
    position: absolute;
}

.menu-toggle-icon:nth-child(1) {
    top: 0;
    left: 0;
}

.menu-toggle-icon:nth-child(2) {
    top: calc( 50% - 1px );
    left: 0;
}

.menu-toggle-icon:nth-child(3) {
    bottom: 0;
    left: 0;
}

.menu-toggle.active .menu-toggle-icon:nth-child(3) {
    transform: rotate(-225deg);
    top: calc(50% - 1px);
}

.menu-toggle.active .menu-toggle-icon:nth-child(1), .menu-toggle.active .menu-toggle-icon:nth-child(2) {
    transform: rotate(225deg);
    top: calc(50% - 1px);
}

.menu-item-has-children a {
    position: relative;
}

/*** Submenu ***/
.main-navigation ul.sub-menu {
    display: none; /* Hide submenus by default */
    position: absolute;
    padding: 0;
    z-index: 200;
    background: var(--white);
    border: 1px solid var(--titanium);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 18rem;
    z-index: -99999;
    max-height: 0;
    overflow: hidden;
    top: 100%;
    left: 0;
}

/* Ensure submenu is visible when the parent menu item has aria-expanded="true" */
.menu-item[data-expanded="true"] > .sub-menu {
    opacity: 1;
    display: block;
    z-index: 99999;
    max-height: 100rem;
    overflow: visible;
}

header nav ul.sub-menu li a {
    padding: 0.5rem 1rem;
    display: block;
}

header .menu-item.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    display: block;
    z-index: 99999;
    max-height: 100rem;
    overflow: visible;
}

nav.menu-mobile .menu-item-has-children.active .sub-menu {
    border-top: 1px solid var(--titanium);
}

/* Ensure transitions are smooth when toggling submenus */
.menu-item[data-expanded="true"] > .sub-menu {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 100rem;
    z-index: 99999;
    overflow: visible;
}

.menu-item[data-expanded="false"] > .sub-menu {
    opacity: 0;
    max-height: 0;
    z-index: -99999;
    overflow: hidden;
}

/*** Announcement Bar ***/
body .announcement-bar {
    font-size: 0.85rem;
}
.announcement-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

@media screen and (max-width: 800px) {
    body .announcement-bar {
        background-color: var(--mint);
    }

    body .announcement-bar *, body .announcement-bar a, body .announcement-bar svg {
        color: var(--blue);
        fill: var(--blue);
    }
}

/*** Blocks ***/
html .wp-block.acf-block-component {
    max-width: 100%;
}

/*** Overlay ***/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

/*** Search Container ***/
.search-container {
    display: flex;
    grid-template-columns: 1fr max-content;
    width: 100%;
    max-width: 18rem;
}

.search-container input[type="text"].search-input, .section .search-container input[type="text"], .search-container input[type="text"]{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.search-container button[type="submit"].search-submit, .section .search-container button[type="submit"], .search-container button[type="submit"]  {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-container .search-input {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/*** Visually Hidden ***/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*** Breadcrumbs ***/
#breadcrumbs, .section.breadcrumbs {
    margin-bottom: 0;
}

#breadcrumbs > span > *:first-child, .yoast-breadcrumbs > span > *:first-child  {
    margin-left: 0;
}
#breadcrumbs > span > *, .yoast-breadcrumbs > span > * {
    margin: 0 1.25rem;
}

@media screen and (max-width: 800px) {
    #breadcrumbs > span > *, .yoast-breadcrumbs > span > * {
        margin: 0 0.5rem;
    }
}

/*** Icon Headings ***/
body .icon-heading {
    display: grid;
    grid-template-columns: max-content 1fr;
}

.icon-heading .icon .icon-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.icon-heading .icon {
    position: relative;
    width: 5rem;
    height: 5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-heading .icon img {
    z-index: 20;
    width: 2rem;
    height: 2rem;
}

@media screen and (max-width: 800px) {
    .icon-heading .icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .icon-heading .icon img {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/*** Icon helper ***/
.icon {
    position: relative;
}

.icon > svg {
    width: 100%;
    height: auto;
}

/*** Alternating Content Cards ***/
.section-alternating-content-cards .card.has-image {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.section-alternating-content-cards .card-content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 800px) {
    .section-alternating-content-cards .card.has-image {
        grid-template-columns: 1fr;
    }

    .section-alternating-content-cards .card.content-direction-content-left .card-content {
        order: 1;
    }
}

@media screen and (min-width: 800px) {
    .section-alternating-content-cards .card.has-image.content-direction-content-left {
        grid-template-columns: 2fr 1fr;
    }

    .section-alternating-content-cards .card.has-image.content-direction-content-left .card-content {
        order: -1;
    }

    .section-alternating-content-cards .card.has-video {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
}

.section-alternating-content-cards .card.has-video .card-video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.card-video .wp-video, .card-video iframe, .card-video object, .card-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-alternating-content-cards .card {
    width: 100%;
    max-width: 100%;
    border: 0;
}
.alternating-content-area-dark {
    background: var(--blue-dark);
    color: var(--white);
}

.alternating-content-area-dark p, .alternating-content-area-dark h2, .alternating-content-area-dark h3, .alternating-content-area-dark h4, .alternating-content-area-dark .button-secondary {
    color: var(--white);
}


/*** Alternating Content Areas Mobile ***/
.mobile-layout-title_first .alternating-content-area {
    grid-template-rows: auto auto;
    row-gap: 1rem;
}

.mobile-layout-title_first .alternating-content-area .area-image {
    grid-row: 1 / 4;
    grid-column: 1;
}

@media screen and (max-width: 800px) {
    .mobile-layout-title_first .alternating-content-area .area-image {
        grid-row: 2 / 4;
    }

    .section-alternating-content-areas.mobile-layout-reverse .alternating-content-area {
        flex-direction: column-reverse;
        display: flex;
    }

    .mobile-layout-title_first .alternating-content-area {
        row-gap: 2rem;
    }
}

/*** Header Rental Location ***/
.rental-location-wrapper > span {
    min-width: fit-content;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
}

/*** Gravity Form Link on Checkbox ***/
.ginput_container_checkbox .gfield_checkbox a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ginput_container_checkbox .gfield_checkbox input {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}
.ginput_container_checkbox .gfield_checkbox >* {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/*** Feature ***/
.section-feature.content-right .container {
    display: flex;
    justify-content: flex-end;
}

/*** Border Top ***/
.border-top-1 {
    border-top: 1px solid var(--titanium);
}

/*** Tags ***/
.tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tags .tag {
    color: var(--gray);
    background-color: var(--titanium-shade);
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.tags .tag:hover {
    cursor: pointer;
    background-color: var(--titanium);
}

/*** Cleaning Tips Search Bar ***/
.filter-posts-bar .filter-posts-bar-inner {
    display: grid;
    grid-template-columns: max-content max-content 1fr max-content;
    justify-content: space-between;
    align-items: center;
}

.filter-posts-bar .categories {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    justify-content: space-between;
}

.filter-posts-bar button.search-submit {
    display: none;
}
.filter-dropdown select option {
color: var(--blue);
}
.filter-dropdown select option:hover {
color: var(--blue-tint);
}

@media screen and (max-width: 800px) {
    .filter-posts-bar .filter-posts-bar-inner {
        grid-template-columns: max-content max-content 1fr;
        gap: 1rem;
    }
}

.filter-posts-dropdown ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.filter-posts-dropdown li {
    display: block;
}

.filter-posts-dropdown ul {
    border-top: 1px solid var(--blue-darker);
}

.filter-posts-dropdown li a {
    padding: 0.75rem 1.5rem;
    display: block;
    border-bottom: 1px solid var(--blue-darker);
    background: var(--blue);
    line-height: 1em;
}

.filter-posts-dropdown ul li a.current {
    background: var(--blue-tint);
    font-weight: bold;
}

.filter-posts-bar .filter-posts-dropdown {
    display: none;
    z-index: -999;
}

.filter-posts-bar .filter-posts-dropdown-trigger:hover {
    cursor: pointer;
}

.filter-posts-bar .filter-posts-dropdown.active {
    z-index: 999;
}

@media screen and (min-width: 800px) {
    .filter-posts-bar .filter-posts-dropdown {
        position: absolute;
    }
}

.filter-posts-dropdown-trigger svg {
    transition: all 0.3s ease;
}

.filter-posts-dropdown-trigger.active svg {
    transform: rotate(180deg);
}

.single-post .entry-content ol li, .single-post .entry-content ul li {
    margin-bottom: 0.5rem;
}

/*** Category Chips ***/
.category-chips {
    gap: 20px;
    display: flex;
    align-items: center;
}
span.chip {
    padding: 3px 7px;
    background-color: var(--titanium-light);
    color: var(--gray-light);
    border-radius: 5px;
}

/*** Post Item ***/
.post-item h3.post-title {
    font-size: 1.6rem;
}

/*** Icon Areas ***/
.section-icon-areas.layout-vertical h2 {
    font-size: 1.5rem;
    text-align: left;
}
/*** Icon Area Color Style ***/
.card-style-dark {
    background: var(--blue-dark);
    color: var(--white);
    padding: 2rem;
}
.card-style-dark h2, .card-style-dark p, .card-style-dark a {
    color: var(--white);
}

/*** Icon Row Color Style ***/
.section-icon-row.section-icon-row-dark.layout-horizontal {
    background: var(--blue-dark);
    color: var(--white);
}
.relative.section-icon-row.section-icon-row-dark p {
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}
@media screen and (max-width: 800px) {
    .relative.section-icon-row.section-icon-row-dark p {
        font-size: 1rem;
    }
}
.section-icon-row.section-icon-row-light.layout-horizontal {
    background: var(--white);
    color: var(--blue-dark);
}
.relative.section-icon-row.section-icon-row-light p {
    color: var(--blue-dark);
    font-weight: bold;
    font-size: 1.3rem;
}

/*** Featured Area Cards ***/
.featured-area-card .image {
    width: 100%;
}

.featured-area-card .image > img {
    width: 100%;
    height: 100%;
}

.featured-area-card h3 {
    font-size: 1.5rem;
}
.featured-area-card.featured-area-card-background {
    position: relative;
    border-radius: 1rem;
}
.featured-area-card .featured-card-image-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
    z-index: 10;
    border-radius: 1rem;
}

.featured-card-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    display: flex;
    flex-flow: column;
    padding: 1rem;
    justify-content: flex-end;
    z-index: 40;
    width: 90%;
}
.featured-card-content h3 {
    color: var(--white);
}

.featured-area-card .image {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
}

/*** Area Images ***/
.area-image {
    position: relative;
}

.area-image-canvas {
    position: relative;
}

.area-image-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.area-image-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.area-image-button > svg {
    color: var(--white);
}

/*** Card Images ***/
.card-image {
    position: relative;
}

.card-image-canvas {
    position: relative;
}

.card-image-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.card-image-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.card-image-button > svg {
    color: var(--white);
}

/*** Entry Content Styling ***/
.entry-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.entry-content a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.entry-content-wrapper {
    max-width: 70rem;
    margin: auto;
    padding: 0 1.5rem;
}

/*** Grid Direction ***/
.content-direction-content-left .area-image {
    order: 1;
}

/*** Location Preview Items ***/
.locations-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.location-preview-item {
    background-color: var(--mint);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0.6rem 1rem;
    border-radius: 0.25rem;
}

@media screen and (max-width: 800px) {
    .location-preview-item {
        grid-template-columns: 1fr;
    }
}

.location-preview-item:nth-child(odd) {
    background-color: var(--mint-tint);
}

.location-preview-item .location-title {
    font-weight: bold;
}

/*** Rental Price ***/
.rental-price-display .rental-price-inner {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 1.5rem;
}

.rental-price-display .rental-price-details {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1.5rem;
}

.rental-price-display .rental-price-inner ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.rental-location-details {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

@media screen and (max-width: 800px) {
    .rental-price-display .rental-price-inner {
        grid-template-columns: 1fr;
    }

    .rental-price-display .price-option h4 {
        font-size: 1.5rem;
    }

    .rental-price-display .price-options.flex .price-option:first-child {
        border-right: 1px solid #fff;
        padding-right: 2rem;
        text-align: right;
    }

    .rental-location-details h4.rental-price-title {
        font-size: 1.25rem;
    }

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

    .rental-info-buttons a.button {
        width: 100%;
    }
}

@media screen and (min-width: 800px) {
    .rental-price-display .price-options {
        width: 8rem;
        max-width: 100%;
    }    
}

/*** Entry Content Styling ***/
body .entry-content > h2:first-child, body .editor-styles-wrapper .wp-block-post-content > h2:first-child, body .entry-content > h3:first-child, body .editor-styles-wrapper .wp-block-post-content > h3:first-child {
    margin-top: 0;
}

body .entry-content > h2, body .editor-styles-wrapper .wp-block-post-content > h2 {
    font-size: 2.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

body .entry-content > h3, body .editor-styles-wrapper .wp-block-post-content > h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

body .entry-content > h4, body .editor-styles-wrapper .wp-block-post-content > h4 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.25rem;
}

body .entry-content > ul, body .editor-styles-wrapper .wp-block-post-content > ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

body .entry-content > p:not(:last-child) {
    margin-bottom: 1rem;
}

/*** Toggles ***/
.toggle .toggle-title {
    background: var(--blue);
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle .toggle-title:hover {
    cursor: pointer;
}

.toggle .toggle-title svg {
    transition: transform 0.3s;
}

.toggle .toggle-title.active svg {
    transform: rotate(180deg);
}

.toggle-content {
    background: var(--white);
    display: none;
}

.toggle .toggle-title.active .toggle-content {
    display: block;
}

.toggle-content-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.issue-row {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
}

.issue-row > .issue-title {
    text-align: right;
    font-weight: bold;
}

.toggle-content hr {
    color: var(--titanium-shade);
}

/*** Mega Menu ***/
@media screen and (min-width: 981px) {
    .mega-menu-container {
        position: absolute;
        left: 0;
        width: 100%;
        z-index: -999;
        opacity: 0;
        display: none;
    }

    .mega-menu-container.active {
        display: block;
        z-index: 9999;
        opacity: 1;
    }

    .site-content::before {
        position: absolute;
        width: 0;
        height: 0;
        background: transparent;
        opacity: 0;
        z-index: -999;
    }

    .site-overlay.site-content::before {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: block;
        content: "";
        visibility: visible;
        z-index: 500;
        opacity: 1;
        animation: fadeIn 0.3s ease-in-out;
        animation-fill-mode: forwards;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*** WORDPRESS BACKEND ***/
.wp-admin div#cpt_info_box {
    display: none;
}

/*** Social Video Cards ***/
.social-video-card .play-icon {
    background: transparent;
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: calc(50% - 1.5rem);
    top: calc(50% - 3rem);
}

.social-video-card .play-icon > svg {
    width: 100%;
    height: auto;
}

.social-video-card .attribution .icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--white);
}

.social-video-card .pause-icon {
    background: transparent;
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: calc(90% - 1.5rem);
    top: 90%;
    z-index: 99;
}

.social-video-card .pause-icon > svg {
    width: 100%;
    height: auto;
}

.social-video-card .social-video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.8421962535014006) 0%, rgba(0,0,0,0) 100%);
}

.social-video-card .card-content, .social-video-card .placeholder {
    opacity: 1;
    transition: all 0.3s ease;
}

.social-video-card:hover {
    cursor: pointer;
}

.social-video-card:hover .card-content, .social-video-card:hover .placeholder, .social-video-card:focus .card-content, .social-video-card:focus .placeholder {
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.social-video-card:focus .pause-icon,
.social-video-card:focus-within .pause-icon {
    display: block;
}

.social-video-card > button {
    display: none;
}

.social-video-card .placeholder {
    z-index: 5;
}

/*** Rental Support ***/
.rental-support-header h1 {
    font-size: 2.5rem;
}

@media screen and (max-width: 800px) {
    .rental-support-header h1 {
        font-size: 1.75rem;
    }
}

/*** Video Container ***/
.video-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 

.video-container iframe,
.video-container object,
.video-container embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container > iframe {
    z-index: 400;
}

/*** Gutenberg Styling ***/
body .wp-block-heading {
    margin-bottom: 1rem;
}

/*** Location Footer ***/
.rental-location-item .rental-location-footer {
    border-top: 1px solid var(--mint-shade);
}

.rental-location-item .rental-location-footer .button-secondary, .rental-location-item .rental-location-mobile-more-details-trigger .button-secondary {
    width: 100%;
    padding: 1.25rem;
    justify-content: center;
}

.rental-location-item .rental-location-footer .button-secondary:first-child {
    border-right: 1px solid var(--mint-shade);
}

.rental-location-item .rental-location-mobile-more-details-trigger {
    border-top: 1px solid var(--mint-shade);
}

.rental-location-item h3 {
    font-size: 1.25rem;
}

/*** More Details Buttons ***/
@media screen and (max-width: 800px) {
    .rental-location-item h3 {
        font-size: 1rem;
    }
}

body .section .rental-location-button.button-secondary {
    width: 100%;
    background: transparent;
    color: var(--blue-dark);
    border-color: transparent;
}

/*** Rental Availability ***/
h3.rental-location-availability-title {
    font-size: 1.25rem;
}

@media screen and (max-width: 800px) {
    h3.rental-location-availability-title {
        font-size: 1.1rem;
    }
}

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

.list-available li {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 0.75rem;
}

.list-available li svg {
    width: 1rem;
    height: 1rem;
}

/*** Single Rental Machine Tabs ***/
div.tabs button {
    list-style: none;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    background: transparent;
    transition: all 0.3s ease;
}
div.tabs button:hover, a.button-tab:hover {
    cursor: pointer;
}

a.button-tab {
    list-style: none;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

div.tabs {
    margin: 0;
    padding: 0;
}

div.tabs button.active {
    background: var(--white);
    color: var(--blue);
}

@media screen and (max-width: 800px) {
    div.tabs button {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
        line-height: 1em;
    }
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: flex;
}

/*** Product Specifications Table ***/
.specs-table-wrapper {
    margin-top: 1rem;
}

.specs-tables-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 0;
}

.specs-table:last-child {
    margin-bottom: 0;
}

.specs-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

.specs-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

.specs-table tbody th {
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 1rem;
    text-align: left;
    width: 35%;
    vertical-align: middle;
}

.specs-table tbody td {
    padding: 0.875rem 1rem;
    color: var(--white);
    opacity: 0.9;
    vertical-align: middle;
}

/* Side-by-side layout starts early - tablets and up */
@media screen and (min-width: 768px) {
    .specs-tables-container {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .specs-table {
        flex: 1;
        margin-bottom: 0;
    }
    
    .specs-table tbody th {
        width: 30%;
        padding: 0.75rem 0.75rem;
    }
    
    .specs-table tbody td {
        padding: 0.75rem 0.75rem;
    }
}

/* More compact on larger screens */
@media screen and (min-width: 1024px) {
    .specs-table tbody th {
        width: 28%;
        padding: 0.7rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .specs-table tbody td {
        padding: 0.7rem 0.75rem;
        font-size: 0.95rem;
    }
}

/*** Single Rental Machine ***/
.how-to-rent-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*** Location Search ***/
.rent-location-search-inner {
    display: grid;
    grid-template-columns: 1fr max-content;
}

@media screen and (max-width: 800px) {
    .rent-location-search-inner {
        grid-template-columns: 1fr;
    }
}

.icon-box svg {
    width: 0.9rem;
    height: 0.9rem;
}

/*** Toggles ***/
.toggle-container .toggle-content {
    display: none;
    border: 2px solid var(--titanium);
    border-top: 0;
}

.toggle-container.div-toggle-active .toggle-content {
    display: block;
}

.toggle-container {
    margin-bottom: 1rem;
}

.toggle-container:nth-child(even) {
    background: #F1F9F7;
}

.toggle-container:nth-child(odd) {
    background: var(--mint);
}

.toggle-heading img {
	width: 18px;
	min-width: 18px;
	height: 18px;
	margin-right: 0;
	margin-left: auto;
	transition: all 0.4s ease;
}

.toggle-container.div-toggle-active .toggle-heading img {
	transform: rotate(180deg);
}

.toggle-heading:hover {
    cursor: pointer;
}

/*** Product Category Sidebar ***/
ul.product-category-parents, ul.product-categories {
    margin: 0;
    padding: 0;
}

ul.product-category-parents li, ul.product-categories li {
    list-style: none;
}

/*** Stars ***/
.price {
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
}

.price ins {
    text-decoration: none;
}

.price del {
    font-weight: normal;
    font-size: 1rem;
}

.product-item-add-to-cart input[type="number"] {
    width: 3rem;
    padding: 0.5rem;
    border: 2px solid #ccc;
}

.product-categories.tags {
    justify-content: flex-start;
}

/*** Product Review Stars */
.product-review-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-review-stars-wrapper .product-review-stars {
    width: 8rem;
    height: auto;
    position: relative;
    background: #dfdfdf;
}

.product-review-stars-wrapper .product-review-stars svg {
    width: 100%;
    height: auto;
    z-index: 9999;
    position: relative;
}

.product-review-stars-wrapper .product-review-stars-fill {
    background: #fcc410;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.product-review-stars-wrapper .product-review-count {
    font-size: 0.9rem;
    line-height: 1em;
}

/*** Product Single ***/
.product-short-description a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.product-short-description ul {
    margin: 0;
}

.product-single-image {
    position: relative;
    display: block;
    width: 100%;
}

.product-featured-image {
    aspect-ratio: 1/1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.product-featured-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnails .thumbnail:hover {
    cursor: pointer;
}

.thumbnail {
    box-sizing: border-box;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: white;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 90%) !important;
    color: var(--blue) !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -50px) !important;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -50px) !important;
}

.swiper-wrapper {
    gap: 1rem;
}

/* Swiper JS uses translate + spaceBetween; a CSS gap on the wrapper is invisible to
   that math and causes slides to drift and show neighbors after each transition. */
.swiper.swiper-initialized > .swiper-wrapper {
    gap: 0;
}

.thumbnail.swiper-slide-active {
    border: 2px solid var(--blue);
}

.product-single-images {
    position: relative;
    width: 100%;
    display: block;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.slick-slider{
    max-width: 100vw;
    width: 100%;
    overflow: hidden !important;
}

/*** Individual Review Stars ***/
.product-review-tab-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-review-item .review-stars {
    display: flex;
    gap: 0.25rem;
}

.product-review-item .review-stars > svg {
    width: 1rem;
    height: 1rem;
}

.product-review-item .review-name {
    font-weight: bold;
}

.product-review-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variations-form .variations-title {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.variations-form .variations-title {
    margin-bottom: 0.25rem;
}

.variation-items input[type=radio] {
    display: none;
}

.variation-items span {
    border: 2px solid var(--titanium-shade);
    padding: 0.5rem 1rem;
    display: block;
    width: fit-content;
    line-height: 1em;
    border-radius: 0.25rem;
}

.variation-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variation-items input[type=radio]:checked + span {
    border-color: var(--blue);
    font-weight: bold;
}

.variation-items label {
    display: block;
}

.variation-items label:hover {
    cursor: pointer;
}

/** Intro Page Video **/
.intro-video {
    position: absolute;
    top: 0;
    z-index: -1;
}

.intro-video.play {
    position: relative!important;
    z-index: 10 !important;
}

.video-thumbnail{
    cursor: pointer;
}

/*** Product Collection ***/
.collection-wrapper .container {
    display: grid;
    grid-template-columns: 1fr 3fr;;
    gap: 4rem;
}

@media screen and (max-width: 800px) {
    .collection-wrapper .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.product-item {
    position: relative;
}

.product-item .product-item-thumbnail {
    aspect-ratio: 1/1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-item .product-item-thumbnail > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item .product-review-stars-wrapper .product-review-stars svg path {
    fill: var(--white);
}

.product-item .add-to-cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.add-to-cart-wrapper input[type=number] {
    width: 3rem;
    padding: 0.5rem;
    line-height: 1em;
}

body .product-item .add-to-cart-wrapper button.button {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

@media screen and (min-width: 1100px) {
    body.archive .product-item .add-to-cart-wrapper button.button {
        width: 100%;
    }
}

/*** Product Category Menu ***/
ul.product-category-menu {
    margin: 0;
    list-style: none;
    padding: 0;
}

ul.product-category-menu > li {
    font-weight: bold;
}

ul.product-category-menu > ul {
    margin-bottom: 1.5rem;
}

ul.product-category-menu > li > ul {
    font-weight:normal;
}

ul.product-category-menu ul {
    padding: 0;
    list-style: none;
}

ul.product-category-menu li.current > a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

ul.product-category-menu > li + li {
    margin-top: 0.5rem;
}

/* Updates to product category menu */
ul.product-category-menu > li > a {
    padding: 0.35rem 0;
    display: flex;
}

ul.product-category-menu > li + li {
    margin-top: 0;
}

ul.product-category-menu > li:not(:last-child)::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

ul.product-category-menu > li > ul li > a {
    font-size: 0.95rem;
    display: flex;
    padding: 0.5rem;
    line-height: 1.2em;
    padding-right: 0;
    padding-left: 1rem;
    opacity: 1;
    transition: all 0.35s ease;
}

ul.product-category-menu > li > ul li > a:hover {
    padding-left: 1.25rem;
    opacity: 0.8;
}

ul.product-category-menu > li > ul {
    padding-top: 0.25rem;
}

/*** Mobile Menu Toggle ***/
.mobile-menu-toggle {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--blue);
    color: var(--white);
}

.mobile-menu-toggle > svg {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.3s;
}

.mobile-menu-toggle.active > svg {
    transform: rotate(180deg);
}

.mobile-menu-toggle-content {
    display: none;
}

@media screen and (min-width: 800px) {
    .mobile-menu-toggle { display: none; }
    .mobile-menu-toggle-content { display: block!important; }
}

/*** Pagination ***/
.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.pagination .page-numbers {
    background: var(--white);
    padding: 0.25rem 0.5rem;
    min-width: 2rem;
    min-height: 2rem;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 0.25rem;
}

.pagination .page-numbers.current {
    border-color: var(--blue);
}
.button.submitting {
    opacity: 0.5;
    pointer-events: none; /* Disable button clicks */
}

/* Loading spinner */
.button.submitting::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 10px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*** Mobile Menu ***/
nav.menu-mobile ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

nav.menu-mobile {
    display: none;
}

.menu-mobile ul > .menu-item > .menu-item-inner {
    border-bottom: 1px solid var(--blue-tint);
}

.menu-mobile .menu-item > .menu-item-inner {
    display: grid;
    grid-template-columns: 1fr max-content;
    padding: 0;
}

.menu-mobile .menu-item > .menu-item-inner > .menu-item-icon > svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.menu-mobile .menu-item > .menu-item-inner > .menu-item-title {
    padding: 0.75rem 1.5rem;
}

.menu-mobile .menu-item > .menu-item-inner > .menu-item-icon {
    width: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
}

.menu-item.has-children.active > .menu-item-inner > .menu-item-icon > svg {
    transform: rotate(180deg);
}

/*** Mobile Sub Menu ***/
.menu-mobile .sub-menu {
    background-color: var(--blue-darker);
}

.menu-mobile .sub-menu .menu-item > a {
    padding: 1rem;
    padding-left: 3rem;
    border-bottom: 1px solid var(--blue);
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 0.75rem;
}

.menu-mobile .sub-menu .menu-item .menu-item-icon svg {
    fill: var(--blue-tint);
}

/*** Video Thumbnails ***/
.video-thumbnail-container .bg-cover {
    top: unset;
}

.video-thumbnail-container .play-icon > svg {
    width: 100%;
    height: auto;
    color: var(--white);
}

.video-thumbnail-container:hover {
    cursor: pointer;
}

.video-thumbnail-container .play-icon {
    background: transparent;
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    transition: all 0.3s ease;
}

.video-thumbnail-container:hover .play-icon {
    transform: scale(1.1);
}

/*** Footer ***/
footer .footer__nav.container {
    grid-template-columns: 1fr 3fr;
}

footer .footer__column_menu .footer__title {
    text-transform: uppercase;
}

footer .footer__sponsor_logo img {
    height: 2.75rem;
    max-width: 9rem;
    width: 100%;
}

footer .footer__nav_items {
    grid-template-columns: repeat(2, 1fr);
}
.footer__socket_menu_icon {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.footer__socket_menu_icon img {
	width: auto;
    height: 1rem;
}
@media screen and (max-width: 767px) {
    footer .footer__nav.container {
        grid-template-columns: 1fr;
    }

    footer .footer__sponsor_logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1100px) {
    footer .footer__nav_items {
        grid-template-columns: repeat(4, auto);
    }
}

/*** ***/
.search-result-item-inner {
    grid-template-columns: 1fr;
}

.search-result-item.has-featured-image .search-result-item-inner {
    grid-template-columns: max-content 1fr;
}

.search-result-item, .search-result-item * {
    box-sizing: border-box;
}

.search-result-item .search-result-title {
    font-size: 1.5rem;
}

@media screen and (max-width: 800px) {
    .search-result-item.has-featured-image .search-result-item-inner {
        grid-template-columns: 1fr;
    }

    .search-result-item.has-featured-image .search-result-item-title-header {
        grid-template-columns: max-content 1fr;
    }

    .search-result-item .search-result-title {
        font-size: 1.25rem;
    }
}

/*** Cleaning Tips ***/
body .collection-header-inner {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 4rem;
}

.collection-icon-header {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 1rem;
}

.collection-icon-header svg {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 800px) {
    body .collection-header-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body .collection-icon-header {
        gap: 1rem;
    }
}

.categories a.current {
    font-weight: bold;
}

/*** Post Filtering ***/
.filter-posts-bar .filter-posts-dropdown {
    display: none;
}

/*** Rental Machine Filter ***/
.rent-location-search-inner {
    position: relative;
}

.rental-machine-filter {
    position: absolute;
    right: 0;
    z-index: -999;
    display: none;
    opacity: 0;
}

.rental-machine-filter.active {
    z-index: 999;
    opacity: 1;
}

.rental-machine-filter-trigger:hover {
    cursor: pointer;
}

.rental-machine-filter-trigger svg {
    transition: all 0.3s ease;
}

.rental-machine-filter-trigger.active svg {
    transform: rotate(180deg);
}

body .section .rental-machine-filter-trigger.active {
    background: var(--blue);
    color: var(--white);
    fill: var(--white);
}

.section .rental-machine-filter-trigger.active > span, .section .rental-machine-filter-trigger.active > svg {
    color: var(--white);
    fill: var(--white);
}

body .section .rental-machine-filter-trigger.active svg path {
    fill: var(--white);
}

.rental-machine-filter label {
    display: block;
    width: 100%;
}

/*** Styled Checkboxes ***/
.styled-checkbox input[type="checkbox"] {
    display: none;
}

.styled-checkbox .checkbox-box {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.styled-checkbox, label.styled-checkbox {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.75rem;
}

.styled-checkbox:hover, label.styled-checkbox:hover {
    cursor: pointer;
}

.checkbox-box .checkbox-box-inner {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--blue);
    background: var(--blue);
}

.styled-checkbox input[type=checkbox]:checked + .checkbox-box .checkbox-box-inner {
    background: var(--red);
}

/*** SDS & Ingredients ***/
.sds-table-heading {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr minmax(125px, auto) minmax(125px, auto);
}

.sds-table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr minmax(125px, auto) minmax(125px, auto);
}

.sds-table-row:nth-child(odd) {
    background: var(--mint-tint);
}

.sds-table-row:nth-child(even) {
    background: var(--mint);
}

@media screen and (max-width: 800px) {
    .sds-table-row {
        grid-template-columns: 1fr;
    }
}

/*** Featured Area Title ***/
@media screen and (min-width: 800px) {
    body .section .featured-area-title, body .featured-area-title {
        font-size: 1.5rem;
    }
}


/*** Gravity ***/
body .gravity-center-submit .gform_wrapper .gform_footer {
    justify-content: center;
}

/*** Gallery Swiper Buttons ***/
body .swiper-button-prev::after, body .swiper-button-next::after {
    display: none;
}

body .thumbnail-button {
    width: 0.75rem;
    height: auto;
    position: absolute;
	top: calc(50% + 1.5rem)!important;
	color: var(--gray-light)!important;
    transition: all 0.3s ease;
}

body .thumbnail-button:hover {
    color: var(--blue)!important;
}

body .thumbnail-button svg {
    width: 100%;
    height: auto;
}

body .thumbnail-button.thumbnail-prev-button {
    left: -1.75rem!important;
}

body .thumbnail-button.thumbnail-next-button {
    right: -1.75rem!important;
}

@media screen and (max-width: 800px) {
    body .thumbnail-button.thumbnail-prev-button {
        left: -1.5rem !important;
    }

    body .thumbnail-button.thumbnail-next-button {
        right: -1.5rem !important;
    }

    body .thumbnails-wrapper {
        width: 90%;
        margin: 0 auto;
    }
}

/*** Rental Machine Addons ***/
.addon-inner {
    display: grid;
    grid-template-columns: 1fr 9rem;
    gap: 4rem;
}

@media screen and (max-width: 800px) {
    .addon-inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body .addon-content h4, body .rental-pricing h4 {
        font-size: 1.4rem;
    }

    body .rental-pricing strong {
        font-size: 0.85rem;
    }
}

/*** Product Details Grid ***/
.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 5rem;
    row-gap: 1.5rem;
}

.product-images-area {
    grid-row: 1 / 4;
    grid-column: 1;
}

@media screen and (max-width: 800px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat (3, auto);
    }

    .product-images-area {
        grid-row: 2 / 4;
    }
}

.product-short-description ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

/*** ELEMENTOR IMAGE SLIDER ***/
.slider-no-gap .elementor-image-carousel.swiper-wrapper {
	gap: 0;
}
.slider-no-gap .elementor-image-carousel.swiper-wrapper img.swiper-slide-image{
	height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/*** Gravity Form Tool Tips ***/
.emb-tooltip-container {
	max-height: 400px;
    overflow-y: scroll;
	padding: 2rem;
	border-radius: 1rem;
	display: grid;
	gap: 1.5rem;
}
.em-tooltip-item {
    display: grid;
    gap: 0.5rem;
}
@media screen and (max-width: 767px) {
	div#powerTip {
		width: 300px;
	}
}

/*** Share Buttons ***/
body .share-button {
    width: 100%;
    color: var(--blue-dark);
    border: 2px solid var(--blue-dark);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.75rem;
    line-height: 1em;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

body .share-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/*** UGC DIY ***/
@media screen and (max-width: 800px) {
    .ugc-diy-header h2.heading {
        font-size: 2rem;
        line-height: 1.1em;
    }
}

/*** Required ***/
body .section .required, body .required, body p.required {
    color: var(--red);
}

/*** Post Grid Block ***/
a.section-heading-link {
    width: fit-content;
    transform: all ease 0.3s;
}

a.section-heading-link:hover {
    opacity: .8;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/*** Sale Tag ***/
.sale-tag {
    background: #BEF6C0;
    color: #256858;
    width: fit-content;
    border-radius: 0.25rem;
    padding: 0.25rem 1rem;
    font-weight: bold;
    display: flex;
    align-self: end;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
}


/*** Back in Stock Notifications ***/
.product-description-area .woocommerce-info {
    margin: 0;
    border-top-color: var(--red-dark);
    background: var(--white);
}

.product-description-area .woocommerce-info::before, .product-description-area .woocommerce-info a {
    color: var(--red-dark);
}

.woocommerce #wc_bis_product_form {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--titanium-shade);
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.woocommerce #wc_bis_already_registered .wc_bis_success {
    padding: 1rem;
    background: var(--mint);
    color: var(--black);
    border: 1px solid var(--mint-shade);
    font-size: 0.9rem;
    text-align: center;
}

.woocommerce #wc_bis_product_form .wc_bis_form_title {
    margin: 0;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover {
    border: 0;
    cursor: pointer;
}

@media screen and (min-width: 800px) {
    .woocommerce .woocommerce-notices-wrapper .button {
        margin-left: 2rem;
    }
}


/*** Dealer Parts ***/
.dealer-part-tag {
    font-size: 0.75rem;
    color: var(--white);
    background: var(--blue);
    padding: 0.5rem 1rem;
    line-height: 1em;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    border-radius: 0.25rem;
}

/*** Checkout Fixes ***/
h3.wc-block-components-product-name {
    font-size: 1.25rem;
}

/*** Warranty Checkout ***/
/* THIS IS HIDING ALL ADDITIONAL INFORMATION FIELDS BECAUSE WE DON'T WANT TO SHOW THE HEADING SINCE THE ONLY ONE WE HAVE RIGHT NOW IS THE WARRANTY*/
fieldset#additional-information-fields {
    display: none;
}

/* Hide the warrenty entry id field in the checkout form */
.wc-block-components-address-form__warranty-entry-id {
    display: none;
}

.woocommerce-checkout h2.gform_title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.woocommerce-checkout .gform_wrapper {
    margin-top: 3rem;
}

/*** Not Found ***/
.not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--titanium-shade);
}

/*** Login Errors ***/
.notice.notice-error {
    border: 1px solid #c88787;
    background: #ffeeee;
    padding: 0.75rem 1rem;
    line-height: 1em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice.notice-error strong {
    color: var(--red);
}

/*** Map ***/
@media screen and (max-width: 800px) {
    #map_embed {
        height: 400px;
    }
}

.map-pin-leaflet strong {
    font-size: 1.1rem;
    color: var(--blue);
}

.wc-block-cart .wc-block-components-product-name,
.wc-block-checkout .wc-block-components-product-name {
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.woocommerce-checkout .wc-block-components-product-details__dealer-discount .wc-block-components-product-details__name {
    display: none;
}

.woocommerce-checkout .wc-block-components-product-details__dealer-discount .wc-block-components-product-details__value {
    font-weight: bold;
}
.woocommerce-checkout .wc-block-components-address-card__address-section .wc-block-components-address-card__address-section__company-name {
    display: block;
}
.woocommerce-checkout .wc-block-components-address-card__address-section .wc-block-components-address-card__address-section__company-name:after {
    content: "";
}
.wc-block-components-address-form.company-top {
    display: flex;
    flex-wrap: wrap;
}
.wc-block-components-address-form.company-top > * {
    order: 0;
}
.wc-block-components-address-form.company-top .company-top__field {
    order: -1;
    flex: 1 1 100%; /* optional full width */
}
.woocommerce-MyAccount-content #billing_country_field .woocommerce-input-wrapper {
    font-weight: 300;
}
.woocommerce-page .wc-block-components-totals-discount .wc-block-components-totals-item__value {
    color: var(--green);
}
.wc-block-components-textarea {
    border-color: var(--gray-light);
}

.wc-block-components-textarea:focus {
    border-color: var(--gray-light);
}
.gform_wrapper.gravity-theme .gfield_required {
    color: #9f1e00;
}
.search-result-header h2 {
    font-size: 1.2rem;
    font-weight: normal;
}

/*** Gravity Form Required on Dark Background ***/
.section.bg-blue.text-light .gform_wrapper.gravity-theme .gfield_required {
    color: var(--white);
    font-size: 1.2em;
    font-weight: normal;
    line-height: 0em;
}


/*** Video Controls ***/
.video-controls button {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.video-controls {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-controls {
  opacity: 1;
  pointer-events: auto;
}

.play-button,
.pause-button {
  background: none;
  border: none;
  cursor: pointer;
}


/*** Social Feed ***/
.social-feed .post-item-title {
    font-size: 1.25rem;
}

.social-feed .post-header {
    text-decoration: none;
}

.social-feed .swiper-wrapper {
    gap: 0;
}

@media screen and (max-width: 800px) {
    .social-feed .post-item-title {
        font-size: 1rem;
    }
}

.social-feed figure.post-item-media {
    border-top: 1px solid var(--titanium-shade);
    border-bottom: 1px solid var(--titanium-shade);
}

.social-feed .button-secondary {
    border-top: 1px solid var(--titanium-shade);
}

.social-feed .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
}

.social-feed .swiper-pagination-bullet-active {
    background: var(--blue);
}

.social-feed time {
    font-size: 0.8rem;
}

.social-feed .post-header-avatar {
    padding: 0.25rem;
    border: 1px solid var(--titanium-shade);
}

.social-feed article {
    border: 1px solid var(--titanium-shade);
}

.social-feed .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

/* Ensure grid layout before Swiper initializes (optional but helpful) */
.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  gap: 20px;
}

/* Desktop */
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-3 .swiper-slide:nth-child(n+4) { display: none; }
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-2 .swiper-slide:nth-child(n+3) { display: none; }
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-1 { grid-template-columns: 1fr; }
.swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-1 .swiper-slide:nth-child(n+2) { display: none; }

/* ===== Tablet: 768â€“1023px ===== */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .swiper:not(.swiper-initialized) .swiper-wrapper[class*="social-grid-cols-tablet-"] {
    display: grid;
  }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-4 { grid-template-columns: repeat(4, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-4 .swiper-slide:nth-child(n+5) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-3 { grid-template-columns: repeat(3, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-3 .swiper-slide:nth-child(n+4) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-2 { grid-template-columns: repeat(2, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-2 .swiper-slide:nth-child(n+3) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-1 { grid-template-columns: 1fr; }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-tablet-1 .swiper-slide:nth-child(n+2) { display: none; }
}

/* ===== Mobile: <768px ===== */
@media (max-width: 767.98px) {
  .swiper:not(.swiper-initialized) .swiper-wrapper[class*="social-grid-cols-mobile-"] {
    display: grid;
  }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-4 { grid-template-columns: repeat(4, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-4 .swiper-slide:nth-child(n+5) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-3 { grid-template-columns: repeat(3, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-3 .swiper-slide:nth-child(n+4) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-2 { grid-template-columns: repeat(2, 1fr); }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-2 .swiper-slide:nth-child(n+3) { display: none; }

  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-1 { grid-template-columns: 1fr; }
  .swiper:not(.swiper-initialized) .swiper-wrapper.social-grid-cols-mobile-1 .swiper-slide:nth-child(n+2) { display: none; }
}

.schema-faq-answer img {
    margin-top: 42px;
}
