/*==================================================
  FONT DECLARATIONS
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');

/*==================================================
  CSS CUSTOM PROPERTIES (VARIABLES)
==================================================*/
:root {
    /* Brand Colors */
    --brand-primary-color: #000066;
    --brand-secondary-color: #ffaa00 !important;
    --primary-text: #000;
    --secondary-text: #fff;
    --hoverColor: #ffaa00;
    --text-copy-font-family: 'Stack Sans Text';
    --text-heading-font-family: 'Stack Sans Text';
    
    /* Button Colors */
    --button-primary-background-color: var(--brand-primary-color);
    --button-primary-hover-background-color: var(--hoverColor);

    /* Rounded Corners */
    --rounded-corners: 25px;
    
    /* Header */
    --header-background-color: white;
    --header-link-color: white;
    --header-link-visited-color: white;
    --header-nav-background-color: var(--brand-primary-color);
    --header-nav-hover-background-color: var(--brand-secondary-color);
    --link-text-color: var(--primary-text);
    --header-width: 95%;
    --header-navigation-font-size: 12px;

    /* Search */
    --search-input-background-color: #f7f7f7;
    --search-input-border-color: var(--brand-primary-color);
    --search-input-focus-background-color: #22a6b3;
    
    /* Icons */
    --icon-button-background-color: #fff;
    --icon-button-size: 35px;
    --icon-button-color: #000;
    --cart-count-color: #000;
    
    /* Identity Selector */
    --identity-selector-background-color: #f7f7f7;
    --identity-selector-border-color: #bdbdbd;
    --identity-selector-text-color: #323232;
    
    /* Slide Tray */
    --slide-tray-background-color: #fff;
    --slide-tray-width: 40%;
    --slide-tray-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    --tray-overlay-background: rgba(0, 0, 0, 0.5);
    
    /* Navigation */
    --nav-tray-background: #ededed;
    --nav-tray-secondary-background: #d8d8d8;
    --nav-tray-tertiary-background: #b9b9b9;
    --nav-tray-hover-background: #fff;
    
    /* Footer */
    --footer-cta-background: var(--brand-secondary-color);
    --footer-background-color: var(--brand-secondary-color);
    --footer-text-color: #fff;
    --footer-link-color: white;
    --footer-info-box-border-color: #888;
    --footer-border: none;
    
    /* Divider */
    --divider-color: #d4d4d4;

    /* Layout Variables */
    --container-max-width: clamp(1000px, 90vw, 1300px);
    --homepage-callout-link-color: #000;
    --homepage-callouts-per-row: 7;
    --categories-per-row-medium: 4;
    --category-products-per-row-large: 5;
    --customization-column-widths: 1fr 3fr;
    --category-product-name-text-alignment: left;
    --category-title-font-size: 2rem;
}

/*==================================================
  GLOBAL TYPOGRAPHY
==================================================*/
*:not(.fa) {
    font-family: var(--text-copy-font-family), serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-family: var(--text-heading-font-family), serif;
}

.container--homepage h1,
.container--homepage h2,
.container--homepage h3,
.container--homepage h4,
.container--homepage h5,
.container--homepage h6 {
    color: var(--brand-primary-color);
}

/*==================================================
  GLOBAL TYPOGRAPHY
==================================================*/
*:not(.fa) {
    font-family: var(--text-copy-font-family), serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-family: var(--text-heading-font-family), serif;
}

.container--homepage h1,
.container--homepage h2,
.container--homepage h3,
.container--homepage h4,
.container--homepage h5,
.container--homepage h6 {
    color: var(--brand-primary-color);
}

/*==================================================
  GLOBAL LINK & HOVER STYLES
==================================================*/
.slide-tray li a:hover,
.header-nav-item a:hover {
    color: var(--hoverColor) !important;
}

a:hover {
    text-decoration: underline;
    color: var(--hoverColor);
}

/*==================================================
  FORM INPUTS & SELECTS
==================================================*/
input,
select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea {
    border: 2px solid #e3e3e3;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 10px;
}

input#searchTerm {
    background: white;
    border: 0;
    box-shadow: none;
    border-radius: var(--rounded-corners);
}

input#productQuantity,
.product__options select {
    border: 1px solid #2c245700;
    background: #d9d9d95e;
}

label#productQuantityLabel,
.product__options label {
    text-transform: uppercase;
    font-size: smaller;
    font-weight: 500;
}

/*==================================================
  HEADER STYLES 
==================================================*/
.header {
    background-color: var(--header-background-color);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 3px 3px 3px #79797942;
}

.header-container {
    max-width: var(--header-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-item {
    position: relative;
}

.header-nav li {
    font-size: var(--header-navigation-font-size);
}

.header-nav-link {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.header-nav i:hover {
    color: var(--hoverColor) !important;
}

.top-nav a {
    color: var(--secondary-text) !important;
}

/* Search Container */
.header-search-container {
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border: 2px solid var( --search-input-border-color);
    background: #ffffff;
    border-radius: var(--rounded-corners);
    padding: 3px;
}

.header-search-input {
    background: none;
    border: none;
    outline: none;
    padding: 4px 8px;
    font-size: 14px;
    color: #333;
    width: 200px;
}

.header-search-input::placeholder {
    color: #999;
}

.header-search-btn {
    padding: 0 0.75em;
    border-radius: var(--rounded-corners);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: none;
}

.header-search-reset {
    padding: 0 0.75em;
}

.header-search-reset svg {
    fill-color: var(--color-error-dark, red);
}

.header-nav .tray.has-children ul .tray2.has-children > ul,
.header-nav .tray2.has-children ul .tray3.has-children > ul {
    top: 0;
    left: 100%; 
    border-left: 3px solid var(--brand-secondary-color);
    border-top: none;
}

a#btnSearch {
    position: relative;
    right: 35px;
    color: #2c2457;
}

.search-box {
    width: fit-content;
    margin-right: 5rem;
    display: inline-flex;
    justify-content: center;
}

.search-form input {
    background-color: #f7f7f794;
    border-color: #d7d7d7;
    border-width: 1px;
}

/* Mobile Toggle */
.header-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Impersonation Bar */
.imp-container-parent {
    position: sticky;
    top: 0;
    z-index: 100;
}

.imp-container {
    background: black;
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

select#userToImpersonate {
    width: 100%;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 16px;
        margin: 0;
    }

    .header-nav.active {
        display: flex;
    }

    .header-mobile-toggle {
        display: block;
    }

    .header-container {
        padding: 0 16px;
    }

    .header-search-container {
        order: -1;
        width: 100%;
        margin-bottom: 16px;
    }

    .header-search-input {
        width: 100%;
    }
}

.mobile-menu {
    display: none;
}

/*==================================================
  SLIDER STYLES
==================================================*/
.slide img {
    border: 0;
    background: white;
    box-shadow: var(--homepage-slide-shadow, none);
}

.slider {
    margin-top: 0;
}

.owl-theme .owl-nav {
    margin-bottom: -0.8em !important;
}

.lp-slider-container {
    background: #f1f1f1 !important;
}


/*==================================================
  HOMEPAGE SECTIONS
==================================================*/
.homepage__secondary-callouts .callout__image {
    box-shadow: none;
    border-radius: var(--rounded-corners);
}

.homepage__secondary-callouts {
    grid-area: secondary-callouts;
}

figure.callout:hover .cta a {
    color: var(--brand-primary-color) !important;
}

@media screen and (min-width: 1024px) {
    .homepage__secondary-callouts .callouts {
        grid-template: auto / repeat(4, 1fr);
    }

    .homepage__callouts .callouts {
        grid-template: auto / repeat(var(--homepage-callouts-per-row), 1fr);
    }
}

@media screen and (max-width: 1020px) {
    .homepage__callouts .callouts {
        grid-template: auto / repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .homepage__callouts .callouts {
        grid-template: auto / repeat(1, 1fr);
    }
}

.homepage__callouts .callout {
    box-shadow: none !important;
}

/*==================================================
  CALLOUT HOVER EFFECTS
==================================================*/
.callout {
    grid-template-areas:
        "image"
        "title"
        "info";
    background-color: #fff;
}

.callout:hover {
    transition: 1.2s ease;
}

.callout:hover .callout__title a {
    color: var(--brand-secondary-color) !important;
}

.callout__image img:hover {
    transform: scale(1.1);
    opacity: 1;
    transition: 1s ease;
}

.callout__image {
    overflow: hidden;
}

.callout__image img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
    transform: scale(1);
    background: radial-gradient(#00000026 50%, #000000b8);
    backdrop-filter: opacity(3.5);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    transition: 1s ease;
    transform-origin: center center;
}

/*==================================================
  HOMEPAGE SECONDARY CALLOUTS
==================================================*/
.homepage__secondary-callouts .callout__subtitle {
    position: relative;
    padding: 0;
    background: none;
    color: black;
    font-size: 14px;
    pointer-events: none;
    padding-top: 10px;
}

.homepage__secondary-callouts .callout__title {
    text-align: left;
}

.homepage__callouts h2,
.homepage__secondary-callouts h2 {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 600;
}

.homepage__callouts h2 {
    margin-top: 38px;
}

.callout__title a {
    font-size: 20px;
    font-weight: 600;
}

/*==================================================
  CATEGORY STYLES
==================================================*/
.categories {
    grid-template: auto / repeat(1, 1fr);
}

.category {
    grid-template-areas:
        "title"
        "image"
        "info";
    background-color: #ffff;
}

.category__copy {
    padding-left: 1vw;
}

.category__cta {
    display: none;
    height: 0px;
}

.category__image img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
    transition: all 1s ease;
    transform-origin: center center;
    transform: scale(1);
}

.category__image img:hover {
    transform: scale(1.05);
    opacity: 1;
    transition: 1s ease;
}

.categories + .categories.subcategories {
    display: none;
    width: 100%;
}

/*==================================================
  FOOTER STYLES
==================================================*/
footer ul {
    margin: 0px;
    padding: 0px;
}

.footer-widget ul {
    margin-left: 0px;
}

.footer-section {
    background: var(--footer-background-color);
    position: relative;
    margin-top: 50px;
}

.footie-container {
    padding: 2em 4em;
}

.footie-top-row {
    text-align: center;
    display: grid;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    grid-template-areas: 'box1 box2 box3';
}

@media screen and (max-width: 1080px) {
    .footie-top-row {
        grid-template-areas:
            'box1'
            'box2'
            'box3';
    }

    .sticky li {
        display: block;
        color: white;
    }
}

.footer-cta {
    border-bottom: 1px solid #fff;
    padding: 35px 0 50px 0;
}

.single-cta i {
    color: #fff !important;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 55px;
    text-align: left;
}

.cta-text h4 {
    color: var(--secondary-text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: var(--secondary-text);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.footer-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 300px;
}

.footer-text {
    width: 100%;
    max-width: 420px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--secondary-text);
    line-height: 28px;
}

.footer-social-icon span {
    color: var(--secondary-text);
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.footer-social-icon a {
    color: var(--secondary-text);
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    text-align: center;
    border-radius: 50%;
    width: 25% !important;
}

li.sm-list-item {
    width: 12% !important;
    margin-right: 15px;
}

.footer--column.col1, .footer--column.col2  {
    margin-left: 0px;
}

.footer--column.col3.floater {
    display: none;
}

.footie-row {
    display: grid;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    grid-template-areas: 'col1 col2';
}

@media screen and (max-width: 1080px) {
    .footie-row {
        grid-template-areas:
            'col1'
            'col2';
    }

    .footie-bottom-row {
        display: block !important;
    }

    .footer-menu ul {
        float: none !important;
    }

    .footer-menu li {
        margin: 10px 20px 5px 0 !important
    }
}

@media screen and (min-width: 1080px) {
    .footer--infoBox {
        margin-left: 20%;
    }

    .footer--column,
    .footer--infoBox {
        width: 27vw;
    }
}

.footer-widget-heading h3 {
    color: var(--secondary-text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--secondary-text);
}

.footer-menu ul {
    float: right;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li a {
    font-size: 14px;
    color: var(--secondary-text);
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    margin-bottom: 12px;
    width: 50%;
}

.footer-widget ul li a:hover {
    color: var(--secondary-text);
}

.footer-widget ul li a {
    color: var(--secondary-text);
    text-transform: capitalize;
}

.footie-bottom-row {
    display: grid;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    grid-template-areas: 'col1 col2';
}

.copyright-area {
    background: #00000026;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: var(--secondary-text);
}

.copyright-text p a {
    color: var(--hoverColor);
}

.footer-menu .cc-list li {
    width: 30px;
}

/*==================================================
  PRODUCT LIST PAGE
==================================================*/
.products.products--grid .product__info * {
    font-weight: revert;
    display: flex;
    justify-content: center;

}

.product__title h3 {
    font-size: 20px;
}

.products.products--grid .product__cta .button {
    display: none;
}

.products.products--grid .product__cta {
    border-top: none;
}

.products.products--grid .product__image .img-wrap img {
    border-radius: var(--rounded-corners);
}

@media screen and (min-width: 1024px) {
    .products.products--grid {
        grid-template: auto / repeat(4, 1fr);
    }
}

.products.products--grid .product__info {
    display: grid;
    grid-template: 4fr auto / 9fr;
}

.product__title h3 {
    font-size: 18px !important;
}

.category__image {
    grid-area: image;
    overflow: hidden;
}

.products.products--grid .product__cta {
    border-top: none;
    display: none;
}

/*==================================================
  PAGEFLEX CUSTOMIZE PRODUCT PAGE
==================================================*/
.accordion__panel__header {
    border-radius: 5px;
    border: 1px solid var(--divider-color);
    background: #2c2457;
    padding: var(--half-gutter) var(--half-gutter);
}

p#btnDownloadProof a.button.button--theme--primary {
    border: 1px solid #f96639 !important;
    background: white !important;
    color: #f96639 !important;
}

button.button.button--theme--primary {
  border-radius: var(--rounded-corners);
}

button.button.button--theme--primary:hover {
  border-radius: var(--rounded-corners);
  background-color: var(--brand-secondary-color);
  border-color: var(--brand-secondary-color);
}

.configuration-wrapper h1 {
    font-size: var(--h1-font-size, var(--font-size-xxxl, 2.488rem));
    font-weight: 500;
}

/*==================================================
  STICKY PRODUCT IMAGES
==================================================*/
@media all and (min-width: 771px) {
    .product-landing .product__images {
        position: sticky;
        top: 30px;
    }
}

/*==================================================
  PRODUCT LANDING PAGE
==================================================*/
@media all and (min-width: 771px) {
    .ogrid .product .info {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        align-content: start;
    }

    .product-landing .product__info {
        display: grid;
        grid-template: auto auto 1fr / 1fr;
        grid-template-areas:
            "options"
            "pricing"
            "details";
    }

    .product-landing .product__info > * {
        grid-template: auto auto 1fr / 1fr;
        display: grid;
        grid-template-areas:
            "quantity"
            "cost"
            "addtocart";
    }

    .product__details {
        grid-area: details;
    }

    .product__options.form {
        grid-area: options;
    }

    button.button.button--theme--primary.btnCTA.btnAddToCart.noClickOnEnter {
        grid-area: addtocart;
    }

    .estimated-cost {
        grid-area: cost;
    }

    .product-landing .product__images img {
        display: block;
        width: 100%;
        max-width: 100%;
        float: left;
        display: inline-block;
        padding-right: 20px;
    }

    .product-landing .product__images .img-wrap {
        position: relative;
        width: 75%;
        float: right;
    }

    .product-landing .product__images {
        grid-template-columns: repeat(auto-fit, minmax(1fr, auto));
        display: inline-block;
    }

    .product-landing .product__images ul {
        grid-template: auto / repeat(1, 3fr);
    }

    .product-landing .product__ordering *:not(.button) + .button {
        margin-top: var(--gutter);
        width: 100%;
        padding: 15px;
    }

    .product-landing .estimated-cost .cost {
        display: inline-block;
        float: left;
        font-size: 30px;
        font-weight: 400;
    }

    span.estimated-cost-label.upcharge-price-label {
        min-width: fit-content !important;
    }

    .estimated-cost-label.unit-price-label {
        display: none;
    }

    .estimated-cost-label.cost-label {
        display: none;
    }

    .product-landing {
        --product-grid-template: auto / 2.5fr 2fr;
    }
}

/*==================================================
  HOMEPAGE CALLOUT STYLE #6
==================================================*/
.homepage__callouts .callout {
    overflow: hidden;
}

.homepage__callouts .callout img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    transition: 1s ease;
    transform-origin: center center;
    opacity: 1;
    padding: 0px;
    float: left;
    z-index: 4;
}

.homepage__callouts .callout {
    grid-template-areas:
        "image"
        "title"
        "info";
    float: left;
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.homepage__callouts .callout .callout-cta {
    grid-area: title;
    text-align: var(--category-title-text-alignment, left);
    font-size: var(--category-title-font-size, 1.2rem);
    color: var(--category-title-text-color, black);
    text-align: left;
    padding-left: 1vw;
    transition: all .5s ease-in-out;
}

.homepage__callouts .callout figcaption {
    position: initial;
}

.homepage__callouts .callout a.img-wrap:hover + figcaption .cta {
    background: #ff000000;
}

.homepage__callouts .callout .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--rounded-corners);
}

.homepage__callouts .callout .img-wrap img {
    transition: filter 0.3s ease;
}

.homepage__callouts .callout .img-wrap:hover img {
    filter: brightness(80%);
}

.homepage__callouts .callout figcaption .cta {
    font-size: 1.2em;
    font-weight: 600;
    background: hsl(0deg 0% 50% / 0%);
}

/*==================================================
  SUBCATEGORY SELECTOR
==================================================*/
.subcategorySelector {
    text-align: center;
}

a.button.button.button--theme--primary {
    padding: 12px 10px !important;
}

/*==================================================
  LINKED PRODUCTS STYLES
==================================================*/
.lp-slide .lp-description {
    display: none;
}

.lp-cta a.button.button--small.button--theme--secondary {
    color: #fff;
    border: 0 !important;
    padding: 10px 20px;
}

.lp-cta a.button.button--small.button--theme--secondary:hover {
    color: #f96639 !important;
}

.lp-slider-container .owl-stage {
    place-items: start;
}

.ajs-body .linked-product-description {
    display: none;
}

.ajs-header {
    background-color: #2c2457 !important;
    color: #fff;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary {
    text-align: center;
}

.ajs-button {
    border: 2px solid black;
    width: 40%;
}

.linked-product--modal {
    grid-template: auto / 88px 1fr !important;
    place-items: center;
}

button.ajs-button.ajs-cancel.tpHookCancel {
    background-color: red;
    color: white;
}

.alertify .ajs-footer {
    background-color: #f6f6f6;
}

.ajs-content div {
    border: 0 !important;
    margin-bottom: 0 !important;
}

.ajs-button {
    border: 0 !important;
    width: 45%;
    background-color: #fff;
    padding: 12px !important;
    text-transform: uppercase;
}

.lp-name {
    min-height: 50px;
}

/*==================================================
  PROGRESS BAR
==================================================*/
.progress-bar li.active::after {
    border-top-color: var(--brand-primary-color);
}

.progress-bar li.active {
    border-top: 4px solid var(--brand-primary-color);
}

/*==================================================
  LOGIN PAGE STYLES
==================================================*/
.container#bodyContainer:has(.login) {
    margin-top: 0px;
    width: 100%;
    margin-bottom: -50px;
}

.login__box fieldset {
    border-radius: var(--rounded-corners);
    box-shadow: 3px 3px 3px #79797942;
}

.login__box .swap-pane .swap-trigger {
    border-radius: calc(.5 * var(--rounded-corners)) calc(.5 * var(--rounded-corners)) 0px 0px;
    background: var(--brand-secondary-color);
}

.login__box .swap-pane {
    margin-right: 10%;
}

/*==================================================
  MISC. COMPONENT STYLES
==================================================*/

table thead th {
    background: var(--hoverColor);
}

/*==================================================
  PRODUCT LIST VIEW
==================================================*/
.products.products--list .product {
    grid-template: auto / 2fr 4fr;
}

.products.products--list .product .img-wrap img {
    max-height: unset;
    object-fit: cover;
}

.product__cta {
    margin-top: 20px;
}

.products--list .product__title a {
    font-weight: 600;
    color: black;
}

.products--list .product__copy strong {
    text-transform: uppercase;
}

/*==================================================
  CART STYLES
==================================================*/
@media (max-width: 2771px) {
    a.button.button--theme--secondary.button--small.btnViewCart {
        position: relative !important;
        top: 8px !important;
    }

    a.button.button--theme--secondary:link,
    button.button.button--theme--secondary:link,
    input[type="submit"].button.button--theme--secondary:link {
        color: #fff !important;
        padding: 5px;
        margin-top: 5px;
        min-width: 100px;
    }

    button.button.button--small {
        min-width: 100px !important;
        padding: 5px !important;
    }
}

.cart__item.bundle .item__details {
    display: contents;
}

.cart__item.bundle .item__text {
    padding: 0 !important;
    margin: 0 !important;
}

.cart__item {
    padding: var(--gutter);
}

.cart__item br {
    display: block;
}

/*==================================================
  SLIDE TRAY / MOBILE MENU
==================================================*/
.slide-tray {
    position: fixed;
    top: 0;
    height: 100%;
    width: var(--slide-tray-width, 55%);
    background-color: var(--slide-tray-background-color, #fff);
    z-index: 1001;
    box-shadow: var(--slide-tray-shadow, 2px 0px 10px rgba(0, 0, 0, 0.2));
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.left-tray {
    left: 0;
    transform: translateX(-105%);
}

.right-tray {
    right: 0;
    transform: translateX(100%);
}

.left-tray,
.right-tray {
    z-index: 1001;
}

.slide-tray.active {
    transform: translateX(0);
}

.tray-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--tray-overlay-background, rgba(0, 0, 0, 0.5));
    z-index: 1000;
    transition: opacity 0.4s ease out;
    opacity: 0;
}

.tray-overlay.active {
    display: block;
    z-index: 999999;
    opacity: 1;
}

.left-tray.active {
    left: calc(-4.6875 * var(--gutter, 1rem));
    transform: translateX(-100%);
    z-index: 9999999;
    padding-left: calc(1.5625 * var(--gutter, 1rem));
}

.right-tray.active {
    right: calc(-4.6875 * var(--gutter, 1rem));
    z-index: 9999999;
    padding-right: calc(2.8125 * var(--gutter, 1rem));
}

.left-tray.active,
.right-tray.active {
    transform: translateX(0);
}

.left-tray a,
.right-tray a,
.left-tray button,
.right-tray button {
    position: relative;
}

/* Tray Navigation Structure - MOBILE ONLY */
.slide-tray .tray.has-children > ul {
    display: none !important;
}

.slide-tray .has-children.tray ul {
    position: relative;
}

.slide-tray .has-children.tray ul ul {
    left: 0;
    top: 0;
    background: var(--nav-tray-secondary-background, #d8d8d8);
    border-bottom: 1px solid var(--color-grey, grey);
    border-top: 1px solid var(--color-grey, grey);
}

.slide-tray .has-children.tray ul ul ul {
    background: var(--nav-tray-tertiary-background, #b9b9b9);
}

.slide-tray .tray.active > ul {
    display: block !important;
}

.nav--site .has-children:hover > ul {
    display: block;
}

.slide-tray li a {
    color: var(--text-copy-color, black) !important;
    padding: 0 calc(1.875 * var(--gutter, 1rem));
    line-height: 3;
}

#leftTray ul,
#rightTray ul {
    list-style: none;
    line-height: 3;
    font-size: var(--form-input-font-size, 18px) !important;
    letter-spacing: 2px !important;
    width: 100%;
    margin-left: 0em;
}

#leftTray nav {
    padding-left: calc(3.4375 * var(--gutter, 1rem));
    padding-top: calc(3.4375 * var(--gutter, 1rem));
}

#rightTray nav {
    padding-left: calc(3.4375 * var(--gutter, 1rem));
    padding-top: calc(3.4375 * var(--gutter, 1rem));
}

.slide-tray .has-children.tray ul {
    color: var(--text-copy-color, #000000) !important;
    background: var(--nav-tray-background, #ededed);
}

.slide-tray .has-children.tray:hover > a {
    color: #000 !important;
    background: var(--nav-tray-hover-background, #dd6220) !important;
}

.slide-tray .has-children.tray .has-children.tray2 > a::after,
.slide-tray .has-children.tray .has-children.tray3 > a::after {
    content: "\f107" !important;
}

.slide-tray .has-children > a::after {
    margin-left: 10px;
    right: initial;
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    right: 8px;
}

@media (max-width: 768px) {
    .slide-tray {
        width: 80%;
    }
}

/*==================================================
  DESKTOP HEADER DROPDOWN NAVIGATION
==================================================*/

.header-nav .tray.has-children > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 3px solid var(--brand-secondary-color);
}

.header-nav .tray.has-children:hover > ul {
    display: block;
}

.header-nav ul ul {
    top: 0;
    left: 100%;
    border-left: 3px solid var(--brand-secondary-color);
    border-top: none;
}

.header-nav .tray.has-children ul li {
    border-bottom: 1px solid #f0f0f0;
    line-height: normal;
}

.header-nav .tray.has-children ul li:last-child {
    border-bottom: none;
}

.header-nav .tray.has-children ul a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    line-height: 1.5;
    white-space: nowrap;
}

.header-nav .tray.has-children ul a:hover {
    background-color: #f8f8f8 !important;
    color: var(--hoverColor) !important;
    padding-left: 24px;
}

.header-nav > .tray.has-children > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 6px;
    font-size: 12px;
}

.header-nav .tray.has-children ul .tray2.has-children > a::after,
.header-nav .tray2.has-children ul .tray3.has-children > a::after {
    content: '\f105';
    font-family: 'FontAwesome';
    float: right;
    margin-left: 10px;
}

.header-nav .has-children.tray > a {
    background: transparent !important;
    color: var(--primary-text) !important; /* Original link color */
}

.header-nav .has-children.tray:hover > a {
    background: transparent !important;
    color: var(--hoverColor) !important; /* Blue on hover */
}

@media (max-width: 768px) {
    .header-nav .tray.has-children > ul {
        display: none !important;
    }
}

/*==================================================
  IDENTITY SELECTOR
==================================================*/
.identity-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
display: none;
}

.identity-selector::after {
    content: '\25BC';
    position: absolute;
    right: calc(1.25 * var(--gutter, 1rem));
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--identity-selector-text-color, #323232);
    font-size: var(--font-size-s, 12px);
    z-index: 9999;
}

.identity-selector:hover::after {
    color: var(--primary-text) !important;
}

.identity-selector select {
    height: var(--icon-button-size, 40px) !important;
    width: fit-content;
    padding: var(--quarter-gutter, 0.25rem) !important;
    font-size: var(--form-input-font-size, 18px) !important;
    letter-spacing: 2px !important;
    border: none !important;
    outline: none !important;
    transition: all 0.4s ease !important;
    padding-right: calc(2.8125 * var(--gutter, 1rem)) !important;
    background-color: var(--identity-selector-background-color, #f7f7f7) !important;
    padding-left: calc(1.5625 * var(--gutter, 1rem)) !important;
    appearance: none;
    background-size: 12px 12px;
    color: var(--identity-selector-text-color, #323232);
    border: 1px solid var(--identity-selector-border-color, #bdbdbd) !important;
    cursor: pointer;
    z-index: 1000;
    position: inherit;
    border-radius: var(--rounded-corners);
}

.identity-selector select:hover {
    color: var(--text-copy-color, #454545);
}

.identity-selector select:focus {
    box-shadow: var(--shadow-standard, 0 2px 5px rgba(0, 0, 0, 0.2));
}

.identity-selector select option {
    background-color: var(--body-background-color, white);
    color: var(--text-copy-color, black);
    padding: var(--half-gutter, 0.5rem);
    font-size: var(--font-size-s, 14px);
}

.identity-selector select option:hover {
    background-color: var(--color-x-light-grey, #f0f0f0) !important;
}

.identity-selector select option:checked {
    background-color: var(--icon-button-background-color, #202020) !important;
    color: var(--icon-button-color, white);
}

.identity-selector select option:focus {
    background-color: var(--color-light-grey, #e6e6e6) !important;
}

label#identitySelectorLabel {
    background-color: rgba(255, 255, 255, 0.11);
    margin-right: 0px;
    border-radius: 25px 0 0 25px;
}

/*==================================================
  TOP NAVIGATION
==================================================*/
.top-nav {
    text-align: right;
    padding: 8px 10vw;
    width: 100%;
    background: var(--brand-primary-color);
}

.top-nav ul,
.top-nav li {
    list-style: none;
    color: var(--primary-text);
    display: inline-block;
    padding: 0 2vh;
    font-size: small;
    max-width: 1200px;
    margin: 0 auto;
}

.top-nav a,
.top-nav a:link {
    color: var(--secondary-text);
}

@media (max-width: 1080px) {
    .footie-container {
        padding: 1em 1em;
        width: 96%;
    }

  .footer--column,
  .footer--infoBox {
    width: fit-content;
    margin-left: 10% !important;
  }
}

@media (max-width: 768px) {
    .top-nav li:not(li.login-link--mobile) {
        display: none;
    }
  .container--homepage {
    display: block;
  }
}

.footer--infoBox {
    margin-left: 10%;
}

.footer--column,
.footer--infoBox {
    width: fit-content;
    margin: auto;
}

.cta-text span {
    overflow-wrap: anywhere;
}

.footer-section {
    display: inline-table;
}

@media (max-width: 1080px) {
    .hoverZoomContainer {
        display: none;
    }
}

.welcome-true img {
    width: 100%;
}

/*==================================================
  BUTTON & LINK OVERRIDES
==================================================*/
button.button.button--large.button--theme--primary.button--small.btnCopyToCurrentCart,
a.button.button--theme--secondary.button--small.btnViewCart {
    color: var(--brand-primary-color); !important;
    border-radius: var(--rounded-corners);
    border: 2px solid var(--brand-primary-color); !important;
    background: white !important;
    border-radius: var(--rounded-corners) !important;
}

img.slider-login {
    min-width: 100vw;
}
.tray--icon {
 justify-content: right;
}

 
.header--icon {
    width: var(--icon-button-size, 40px) !important;
    height: var(--icon-button-size, 40px) !important;
    color: var(--icon-button-color, #fff) !important;
    background-color: var(--icon-button-background-color, #202020) !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none !important;
    font-size: calc(1.25 * var(--gutter, 1rem)) !important;
    cursor: pointer !important;
    border-radius: 25px;
}
   /* Cart Indicator Specific Styling */
    .cart-indicator {
        position: relative !important;
        display: flex !important;
    }
    
    .cart-indicator a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .cart-content-count {
        position: absolute !important;
        top: -8px !important;
        right: -8px !important;
        background: var(--cart-count-color) !important;
        color: white !important;
        border-radius: 50% !important;
        font-size: 11px !important;
        font-weight: bold !important;
        min-width: 20px !important;
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2px !important;
    }

.cart__item.bundle .bundle__info a:link,
.cart__contents a:not(.button):visited {
    color: #4f4f4f;
}

a.button.button--theme--secondary.btnSplitShipping {
    color: white;
}

a.button.button--theme--secondary.btnSplitShipping:hover {
    color: var(--brand-primary-color);
}

.cart__item .item__details h2 {
    font-weight: 800;
}

.cart__footer__info .cart__controls .button:not(:last-child) {
    padding: 12px 10px !important;
}

nav.mobile-menu.slide-down.shown {
    display: block !important;
}

/*==================================================
  QDOBA CUSTOM CSS
==================================================*/

.contact .map {
  box-shadow: var(--shadow-standard);
  border: none;
  outline: none;
  background: var(--color-x-light-grey);
  padding: var(--gutter);
  border-radius: 3px;
  display: none;
}
  .contact .wrap {
    grid-template: none;
    grid-gap: unset;
  }