/* Product Single Container */
.product-single-container {
    padding: 30px 0 0;
    border-left: 6px solid var(--accent-color);
}

/* Masthead */
.masthead--product {
    padding: 0 0 30px;
    background-color: transparent;
}

.masthead--product .masthead__inner {
    padding: 0 0 15px;
    border-bottom: 6px solid var(--accent-color);
}

.masthead--product .breadcrumbs {
    padding-top: 0;
    padding-bottom: 10px;
}

.masthead--product .masthead__title {
    font-size: 26px;
}

/* Product */
.product {}

/* Section */
.product-section {
    --section-margins: 50px;
}

/* Gallery */
.product-gallery {
    margin-bottom: 50px;
}

.product-gallery-slide__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-gallery-slide__img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

/* Gallery - Main */
.product-gallery-main {
    position: relative;
}

.product-gallery-main-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    border: 1px solid #383737;
}

.product-gallery-main-slider .product-gallery-slide__inner {
    height: 285px;
}

.product-gallery-main-slider {
    cursor: zoom-in;
}

/* Gallery - Nav */
.product-gallery-nav {
    margin: 20px -7.5px 0;
}

.product-gallery-nav .product-gallery-slide {
    padding: 0 7.5px;
    background: none;
    border: none;
    outline: none;
}

.product-gallery-nav .product-gallery-slide__inner {
    padding: 5px;
    height: 95px;
    border-radius: 2px;
    border: 1px solid rgba(56, 55, 55, 0.35);
}

.product-gallery-nav .slick-current .product-gallery-slide__inner {
    border: 2px solid #383737;
}

/* Gallery - Nav - Uninitialized */
.product-gallery-nav:not(.slick-initialized) {
    display: flex;
}

.product-gallery-nav:not(.slick-initialized) .product-gallery-slide:nth-child(-n+3) {
    display: block;
}

.product-gallery-nav:not(.slick-initialized) .slick-current-fake .product-gallery-slide__inner {
    border: 2px solid #383737;
}

.product-gallery-nav .slick-arrow {
    width: 30px;
    height: 30px;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
}

.product-gallery-nav .slick-arrow:before {
    font-size: 16px;
}

.product-gallery-nav .slick-arrow.slick-prev {
    right: auto;
    left: 7.5px;
    transform: translate(-50%, -50%);
}

.product-gallery-nav .slick-arrow.slick-next {
    right: 7.5px;
    left: auto;
    transform: translate(50%, -50%);
}

.product-gallery-zoom-in-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    border: 1px solid #900006;
    border-radius: 2px;
    background-color: #900006;
    color: #fff;
}

/* CTA */
.product-cta {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.product-cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.product-cta__content h2 {
    font-size: 28px;
}

.product-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.product-cta:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(#141414, #383737);
    opacity: 0.85;
}

/* Resources */
.product-resources-section {
    margin: 0 -22px;
}

.product-resources__inner {
    background-color: #ededed;
}

.product-resources-section__intro-content {
    margin-bottom: 15px;
    text-align: center;
}

.product-resources-row {
    --bs-gutter-x: 15px;
}

/* Single Resource */
.product-resource-link {
    display: block;
    border-bottom: none;
}

.product-resource {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    border-radius: 2px;
    border: 1px solid #383737;
}

.product-resource__icon-col {
    flex: 0 1 auto;
}
.product-resource__title-col {
    flex: 1;
}
.product-resource__xxx-col {
    flex: 0 1 auto;
}

.product-resource__icon-type {
    font-size: 24px;
    line-height: 1;
}

.product-resource__title {
    padding-bottom: 0;
    font-size: 22px;
}

/* Additional Info */
.product-additional {
    margin-bottom: 19px;
    padding-bottom: 35px;
    border-bottom: 1px solid #d8232A;
}

/* Product CTA */
.product-cta-section {
    margin: 0 -22px 0 -25px;
    position: relative;
    z-index: 1;
}

.product-resources-section + .product-cta-section {
    margin-top: 50px;
}

/* Attribute List */
.product-attr-col-group {
    margin-top: 30px;
}

.product-attr-list {
    margin-bottom: 0;
}

.product-attr-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
}

.product-attr-item.invisible {
    display: none;
}

.product-attr-item::before {
    display: none;
}

.product-attr-item__label,
.product-attr-item__value {
    flex: 0 0 auto;
    width: 50%;
    padding: 12px;
    font-size: 16px;
    word-break: break-word;
}

.product-attr-item__label {
    height: auto;
    font-weight: 700;
    border: 1px solid #d6d6d6;
    border-top: none;
    border-right-color: #e6e6e6;
    background-color: #ededed;
}

.product-attr-col:first-child .product-attr-item:first-child .product-attr-item__label {
    border-top: 1px solid #d6d6d6;
}

.product-attr-item__value {
    height: auto;
    border: 1px solid #e6e6e6;
    border-top: none;
    border-left: none;
}

.product-attr-col:first-child .product-attr-item:first-child .product-attr-item__value {
    border-top: 1px solid #e6e6e6;
}

/* Highlights */
.product-highlight-list {
    --bs-gutter-x: 20px;
    padding: 15px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.product-highlight-list__item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.product-highlight-list__item::before {
    display: none;
}

.product-highlight {}

.product-highlight__img {
    margin-bottom: 15px;
    width: 60px;
}

.product-highlight__tax-name {
    padding-bottom: 5px;
    font-size: 17px;
    color: #383737;
    text-transform: capitalize;
}

.product-highlight__term-name {
    font-size: 20px;
}

/* Action Button */
.product-action-button-group {
    margin-top: 25px;
}

/* Variation Form */
.single_variation_wrap {
    display: none !important;
}

.variations {
    margin-bottom: 25px;
}

.variations tbody tr,
.variations tbody tr th,
.variations tbody tr td {
    display: block;
}

.variations tbody tr th {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.variations tbody tr th label {
    margin-bottom: 6px !important;
}

.reset_variations {
    visibility: hidden;
    text-transform: uppercase;
}

/* Woo Swatches */
:root {
    --wvs-cross: url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 5px rgb(255 255 255 / .6))' xmlns='http://www.w3.org/2000/svg' width='72px' height='72px' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23900006' stroke-linecap='round' stroke-width='0.6' d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E")
}
.woo-variation-swatches .variable-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
    margin: 0;
    height: auto;
    width: auto;
    border: 1px solid #383737;
    box-shadow: none;
    transition-property: border-color;
    transition-duration: 0.3s;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.disabled {
    border-color: #b8b7b7;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    border-width: 2px;
    border-color: #900006;
}

.woo-variation-swatches .variable-items-wrapper .variable-item .variable-item-contents {
    padding: 9px 20px;
}

.woo-variation-swatches.wvs-show-label .variations th .woo-selected-variation-item-name {
    display: none;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item .variable-item-span {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #383737;
    transition-property: color;
    transition-duration: 0.3s;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) .variable-item-span {
    color: #900006;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).disabled .variable-item-contents::before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).disabled:hover .variable-item-contents::before {
    display: none;
}

[data-wvstooltip]:before,
[data-wvstooltip]:after {
    display: none !important;
}

/* Responsive */
@media (min-width: 768px) {
    /* Masthead */
    .masthead--product .masthead__inner {
        padding-bottom: 20px;
    }

    /* Product Single Container */
    .product-single-container {
        padding-top: 60px;
    }

    /* Masthead */
    .masthead--product {
        padding-bottom: 44px;
    }

    /* Section */
    .product-section {
        --section-margins: 60px;
    }

    /* Gallery */
    .product-gallery {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: space-between;
        gap: 6.03773585%;
    }

    /* Gallery - Main */
    .product-gallery-main {
        flex: 0 0 auto;
        width: 73.77358491%;
    }

    .product-gallery-main-slider .product-gallery-slide__inner {
        height: 425px;
    }

    /* Gallery - Nav - Uninitialized */
    .product-gallery-nav:not(.slick-initialized) {
        flex-direction: column;
    }

    /* Gallery - Nav */
    .product-gallery-nav {
        flex: 0 0 auto;
        margin: -7.5px 0;
        width: 20.18867925%;
    }
    
    .product-gallery-nav .product-gallery-slide {
        padding: 7.5px 0;
    }

    .product-gallery-nav .product-gallery-slide__inner {
        height: 130px;
    }

    .product-gallery-nav.slick-vertical .slick-arrow {
        right: 0;
        left: 50%;
    }

    .product-gallery-nav.slick-vertical .slick-prev {
        top: auto;
        bottom: 100%;
        transform: translate(-50%, 24px) rotateZ(90deg);
    }

    .product-gallery-nav.slick-vertical .slick-next {
        top: 100%;
        bottom: auto;
        transform: translate(-50%, -20px) rotateZ(90deg);
    }

    /* Additional Info */
    .product-additional {
        margin-bottom: 8px;
        padding-bottom: 40px;
    }

    /* Product CTA */
    .product-cta-section {
        margin: 0 -52px 0 -55px;
    }

    .product-cta {
        padding: 30px 0;
    }

    .product-cta .container-fluid {
        padding: 0 22px;
    }

    .product-cta__content {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        text-align: left;
    }

    .product-cta__content h2 {
        flex: 0 0 auto;
        padding-bottom: 0;
    }

    .product-cta__content .btn {
        flex: 0 0 auto;
    }

    /* Resources */
    .product-resources-section {
        margin: 0;
    }

    .product-resources-section + .product-cta-section {
        margin-top: 60px;
    }

    .product-resources__inner {
        --section-margins: 50px;
        border-radius: 10px;
    }

    /* Attribute List */
    .product-attr-col-group {
        display: flex;
        flex-wrap: wrap;
    }

    .product-attr-col {
        flex: 0 0 auto;
        width: 50%;
    }

    .product-attr-list {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-attr-item {
        flex: 1 0 auto;
    }

    .product-attr-item.invisible {
        display: flex;
    }

    .product-attr-item__label,
    .product-attr-item__value {
        height: 100%;
        font-size: 18px;
    }

    .product-attr-item:first-child .product-attr-item__label {
        border-top: 1px solid #d6d6d6;
    }
    
    .product-attr-item:first-child .product-attr-item__value {
        border-top: 1px solid #e6e6e6;
    }

    .product-attr-col:last-child .product-attr-item__label {
        border-left: none;
    }

    /* Highlight */
    .product-highlight-list {}

    .product-highlight {
        display: flex;
        align-items: center;
    }

    .product-highlight__img {
        margin-right: 25px;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    /* Product Single Container */
    .product-single-container {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    /* Masthead */
    .masthead--product {
        padding-bottom: 70px;
    }

    /* Section */
    .product-section {
        --section-margins: 70px;
    }

    /* Summary */
    .product-summary-row {
        display: flex;
        gap: 5.81583199%;
    }

    .product-gallery-col {
        flex: 0 0 auto;
        width: 42.81098546%;
    }

    .product-summary-col {
        flex: 0 0 auto;
        width: 51.29240711%;
    }

    /* Gallery */
    .product-gallery {
        margin-bottom: 0;
    }
    
    /* Gallery - Main */
    .product-gallery-main-slider .product-gallery-slide__inner {
        height: 350px;
    }

    /* Gallery - Nav */
    .product-gallery-nav .product-gallery-slide__inner {
        height: 90px;
    }

    .product-gallery-zoom-in-btn {
        transition-property: background-color, color;
        transition-duration:  0.3s;
    }

    .product-gallery-main:hover .product-gallery-zoom-in-btn,
    .product-gallery-zoom-in-btn:hover {
        background-color: #fff;
        color: #900006
    }

    /* Product CTA */
    .product-cta-section {
        margin: 0;
    }

    .product-resources-section + .product-cta-section {
        margin-top: 70px;
    }

    .product-cta {
        border-radius: 2px;
        overflow: hidden;
    }

    /* Additional Info */
    .product-additional {
        margin-bottom: 0;
        padding-right: 53px;
        padding-bottom: 0;
        height: 100%;
        position: relative;
        z-index: 1;
        border-bottom: none;
    }

    .product-additional:after {
        content: '';
        display: block;
        height: 100%;
        width: 1px;
        position: absolute;
        top: 0;
        right: calc(var(--bs-gutter-x) * -.5);
        background-color: #d8232A;
    }

    /* FAQs */
    .product-faqs {
        padding-left: 53px;
        height: 100%;
    }

    /* Resources */
    .product-resources-row {
        --bs-gutter-x: 10px;
    }

    /* Single Resource */
    .product-resource-link {
        height: 100%;
        text-align: center;
        transition: background-color 0.3s;
    }

    .product-resource {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 28px 32px;
        height: 100%;
    }

    .product-resource-link:hover .product-resource {
        background-color: rgba(56, 55, 55, 0.10);
    }

    .product-resource__icon-type {
        transition: color 0.3s;
    }

    .product-resource-link:hover .product-resource__icon-type {
        color: #900006;
    }

    .product-resource__title-col {
        flex: 0;
    }

    .product-resource__action-col {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Highlight */
    .product-highlight-list {
        --bs-gutter-x: 20px;
        padding: 0 12px;
    }
}