﻿
/* =========================================================
   PRODUCT TAB CONTENT
   ========================================================= */
.product-tab-body {
    width: 100%;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 22px;
    color: #222;
    box-sizing: border-box;
}


/* =========================================================
   UNORDERED LIST - KEY FEATURES
   ========================================================= */

.product-tab-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}


    /* List item */

    .product-tab-body ul li {
        position: relative;
        padding-left: 25px;
        margin: 0 0 7px 0;
        font-size: 14px;
        line-height: 20px;
        color: #222;
        box-sizing: border-box;
    }


        /* Blue check icon */

        .product-tab-body ul li::before {
            content: "\f00c";
            position: absolute;
            left: 2px;
            top: 2px;
            font-family: "FontAwesome";
            font-size: 9px;
            width: 12px;
            height: 12px;
            line-height: 12px;
            text-align: center;
            color: #fff;
            background: #1674c8;
            border-radius: 50%;
        }


        /* Last item */

        .product-tab-body ul li:last-child {
            margin-bottom: 0;
        }


/* =========================================================
   ORDERED LIST
   ========================================================= */

.product-tab-body ol {
    margin: 0;
    padding-left: 25px;
    width: 100%;
    box-sizing: border-box;
}

    .product-tab-body ol li {
        padding-left: 5px;
        margin-bottom: 7px;
        font-size: 14px;
        line-height: 20px;
        color: #222;
    }

        .product-tab-body ol li:last-child {
            margin-bottom: 0;
        }


/* =========================================================
   NORMAL PARAGRAPH
   ========================================================= */

.product-tab-body p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 22px;
}

    .product-tab-body p:last-child {
        margin-bottom: 0;
    }

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767px) {

    .product-tab-body {
        padding: 15px;
        font-size: 13px;
        line-height: 21px;
    }

        .product-tab-body ul li {
            padding-left: 23px;
            margin-bottom: 6px;
            font-size: 13px;
            line-height: 20px;
        }

            .product-tab-body ul li::before {
                left: 1px;
                top: 3px;
            }

        .product-tab-body ol li {
            font-size: 13px;
            line-height: 20px;
        }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .product-tab-body {
        padding: 12px;
    }

        .product-tab-body ul li {
            padding-left: 21px;
            margin-bottom: 6px;
            font-size: 12px;
            line-height: 19px;
        }

            .product-tab-body ul li::before {
                left: 0;
                top: 3px;
                width: 11px;
                height: 11px;
                line-height: 11px;
                font-size: 8px;
            }

        .product-tab-body ol {
            padding-left: 22px;
        }

            .product-tab-body ol li {
                padding-left: 3px;
                font-size: 12px;
                line-height: 19px;
            }
}

/* =========================================================
   PRODUCT SPECIFICATION TABLE
   ========================================================= */

.product-tab-body table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}


    /* Table cells */

    .product-tab-body table th,
    .product-tab-body table td {
        padding: 4px 15px;
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        text-align: left;
        vertical-align: middle;
        color: #222;
        box-sizing: border-box;
    }


        /* First column */

        .product-tab-body table td:first-child,
        .product-tab-body table th:first-child {
            width: 44%;
            font-weight: 600;
            background: #f7f7f7;
        }


        /* Second column */

        .product-tab-body table td:nth-child(2),
        .product-tab-body table th:nth-child(2) {
            width: 56%;
            background: #fff;
        }


        /* Remove right border from last column */

        .product-tab-body table th:last-child,
        .product-tab-body table td:last-child {
            border-right: none;
        }


    /* Remove bottom border from last row */

    .product-tab-body table tr:last-child td,
    .product-tab-body table tr:last-child th {
        border-bottom: none;
    }


    /* Header if your HTML contains <thead> */

    .product-tab-body table thead th {
        background: #f2f2f2;
        font-weight: 600;
    }


    /* Hover */

    .product-tab-body table tbody tr:hover td {
        background: #fafafa;
    }

        .product-tab-body table tbody tr:hover td:first-child {
            background: #f3f3f3;
        }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767px) {

    .product-tab-body {
        padding: 15px;
    }

        .product-tab-body table {
            font-size: 13px;
            line-height: 19px;
        }

            .product-tab-body table th,
            .product-tab-body table td {
                padding: 5px 10px;
            }

                .product-tab-body table td:first-child,
                .product-tab-body table th:first-child {
                    width: 42%;
                }

                .product-tab-body table td:nth-child(2),
                .product-tab-body table th:nth-child(2) {
                    width: 58%;
                }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .product-tab-body {
        padding: 12px;
    }

        .product-tab-body table {
            width: 100%;
            font-size: 12px;
            line-height: 18px;
            table-layout: fixed;
        }

            .product-tab-body table th,
            .product-tab-body table td {
                padding: 5px 8px;
                word-break: normal;
                overflow-wrap: break-word;
            }

                .product-tab-body table td:first-child,
                .product-tab-body table th:first-child {
                    width: 42%;
                }

                .product-tab-body table td:nth-child(2),
                .product-tab-body table th:nth-child(2) {
                    width: 58%;
                }
}


/* =========================================================
   COMMON PDP SECTION
   ========================================================= */

.pdp-section {
    width: calc(100% - 240px);
    margin: 15px 120px;
    box-sizing: border-box;
}


/* =========================================================
   FREQUENTLY BROUGHT TOGETHER
   ========================================================= */

.frequently-wrapper {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #fff;
    padding: 14px 20px 18px;
    box-sizing: border-box;
}


/* Title */

.frequently-title {
    width: 100%;
    margin: 0;
}

    .frequently-title .pdp-title {
        display: block;
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        color: #111;
    }


/* Main row */

.frequently-content {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-top: 1px solid #e6e6e6;
    margin-top: 12px;
    padding-top: 14px;
    box-sizing: border-box;
}


/* Products - 9 column */

.frequent-products {
    width: 75%;
    flex: 0 0 75%;
    max-width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
}


/* Individual product */

.frequent-product {
    width: calc(50% - 30px);
    display: flex;
    align-items: center;
    min-width: 0;
    box-sizing: border-box;
}


/* Image */

.frequent-product-image {
    width: 135px;
    min-width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-sizing: border-box;
}

    .frequent-product-image a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

.frequent-img {
    display: block;
    max-width: 135px;
    max-height: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* Product information */

.frequent-product-info {
    flex: 1;
    min-width: 0;
}

.frequent-product-name {
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    overflow-wrap: break-word;
}

.frequent-product-link {
    color: #222;
    text-decoration: none;
}

    .frequent-product-link:hover {
        color: #222;
        text-decoration: none;
    }


/* Plus */

.frequent-plus {
    width: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .frequent-plus img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }


/* =========================================================
   PRICE / CART - 3 COLUMN
   ========================================================= */

.frequent-price-section {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
    border-left: 1px solid #e1e1e1;
    padding: 0 8px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}


/* Price */

.frequent-price-box {
    width: 100%;
    margin-bottom: 12px;
}

.frequent-sale-price {
    margin: 0 0 7px !important;
    color: #111;
    font-size: 15px !important;
    line-height: 21px;
}

    .frequent-sale-price span {
        white-space: nowrap;
    }

.frequent-club-price {
    margin: 0 !important;
    color: #1475c9;
    font-size: 14px !important;
    line-height: 21px;
}

    .frequent-club-price #spprice86902 {
        color: #008b45;
        font-weight: 600;
    }


/* Buttons */

.frequent-cart-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .frequent-cart-buttons button {
        width: 100%;
        min-height: 40px;
        border-radius: 4px;
        padding: 8px 12px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        box-sizing: border-box;
    }

    .frequent-cart-buttons .cart-trolley {
        width: 18px;
        height: 18px;
        margin-right: 6px;
        vertical-align: middle;
    }


/* =========================================================
   PRODUCT OVERVIEW
   ========================================================= */

.product-overview-wrapper {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #fff;
    padding: 15px 25px;
    box-sizing: border-box;
}

.product-overview-title {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 25px;
    font-weight: 600;
    color: #111;
}

.recentlyview-title h3 {
    font-size: 19px;
    line-height: 25px;
    font-weight: 600 !important;
}

.product-overview-content {
    font-size: 15px;
    line-height: 24px;
    color: #222;
}

    .product-overview-content p {
        margin: 0 0 12px;
    }

        .product-overview-content p:last-child {
            margin-bottom: 0;
        }

    .product-overview-content ul,
    .product-overview-content ol {
        margin-top: 8px;
        margin-bottom: 10px;
        padding-left: 22px;
    }

    .product-overview-content li {
        margin-bottom: 5px;
    }


/* =========================================================
   PRODUCT TABS
   ========================================================= */

.product-tabs-wrapper {
    width: 100%;
}

.product-tabs {
    width: 100%;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #d9d9d9;
    margin: 0;
    padding: 0;
}

    .product-tabs .nav-item {
        margin-bottom: -1px;
    }

        .product-tabs .nav-item + .nav-item {
            margin-left: 3px;
        }

    .product-tabs .nav-link {
        display: block;
        padding: 10px 16px;
        color: #222;
        background: #f2f2f2;
        border: 1px solid #ddd;
        border-bottom: none;
        border-radius: 4px 4px 0 0;
        font-size: 15px;
        line-height: 20px;
        white-space: nowrap;
    }

        .product-tabs .nav-link.active {
            background: #fff;
            color: #111;
            border-color: #d9d9d9;
            border-bottom-color: #fff;
            font-weight: 600;
        }

        .product-tabs .nav-link:hover {
            background: #fff;
            color: #111;
        }


/* Tab content */

.product-tab-content {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-top: none;
    background: #fff;
    box-sizing: border-box;
}

.product-tab-body {
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #222;
    box-sizing: border-box;
}

    .product-tab-body p:last-child {
        margin-bottom: 0;
    }


/* Category */

.product-category {
    font-size: 15px;
    line-height: 24px;
}

    .product-category strong {
        margin-right: 5px;
    }

    .product-category a {
        color: #135f9c;
        text-decoration: none;
    }

        .product-category a:hover {
            text-decoration: underline;
        }


/* =========================================================
   ACCORDION
   ========================================================= */

.product-accordion-wrapper {
    width: 100%;
}

.product-accordion-item {
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 5px;
    overflow: hidden;
    box-sizing: border-box;
}


/* Header */

.product-accordion-header {
    width: 100%;
    min-height: 42px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

    .product-accordion-header:hover {
        background: #fafafa;
    }


/* Title */

.product-accordion-title {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #111;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.product-accordion-icon {
    width: 28px;
    min-width: 28px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
}


/* Arrow */

.product-accordion-arrow {
    width: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #111;
    transition: transform .25s ease;
}

.product-accordion-header[aria-expanded="true"]
.product-accordion-arrow {
    transform: rotate(180deg);
}


/* Accordion body */

.product-accordion-body {
    border-top: 1px solid #e5e5e5;
    padding: 15px 20px 15px 53px;
    font-size: 14px;
    line-height: 22px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

    .product-accordion-body p:last-child {
        margin-bottom: 0;
    }

    .product-accordion-body ul,
    .product-accordion-body ol {
        margin-bottom: 10px;
    }


/* =========================================================
   TABLET - 992px
   ========================================================= */

@media (max-width: 1199px) {

    .frequent-product-image {
        width: 110px;
        min-width: 110px;
        height: 110px;
    }

    .frequent-img {
        max-width: 110px;
        max-height: 110px;
    }

    .frequent-product-name {
        font-size: 14px;
        line-height: 20px;
    }

    .frequent-plus {
        width: 45px;
        min-width: 45px;
    }

    .frequent-price-section {
        padding-left: 15px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
    /* Frequently brought together */

    .frequently-content {
        flex-wrap: wrap;
    }

    .frequent-products {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-bottom: 10px;
    }

    .frequent-price-section {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-left: none;
        border-top: 1px solid #e1e1e1;
        padding: 15px 10px 0;
        margin-top: 10px;
    }

    .frequent-price-box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .frequent-cart-buttons {
        flex-direction: row;
    }

        .frequent-cart-buttons button {
            flex: 1;
        }
}


/* =========================================================
   MOBILE - 767px
   ========================================================= */

@media (max-width: 767px) {

    .pdp-section {
        width: auto;
        margin: 15px 120px;
        box-sizing: border-box;
    }
    /* Laptop */
    @media (max-width: 1199px) {
        .pdp-section {
            margin-left: 80px;
            margin-right: 80px;
        }
    }
    /* Tablet */
    @media (max-width: 991px) {
        .pdp-section {
            margin-left: 40px;
            margin-right: 40px;
        }
    }
    /* Mobile */
    @media (max-width: 767px) {
        .pdp-section {
            margin-left: 20px;
            margin-right: 20px;
        }
    }
    /* Small Mobile */
    @media (max-width: 480px) {
        .pdp-section {
            margin-left: 10px;
            margin-right: 10px;
        }
    }
    /* Frequently */

    .frequently-wrapper {
        padding: 13px 14px 15px;
    }

    .frequently-title .pdp-title {
        font-size: 17px;
    }

    .frequent-products {
        flex-direction: column;
        gap: 10px;
        padding: 5px 0;
    }

    .frequent-product {
        width: 100%;
        max-width: 100%;
    }

    .frequent-plus {
        width: 100%;
        min-width: 100%;
        height: 25px;
    }

        .frequent-plus img {
            width: 25px;
            height: 25px;
            transform: rotate(90deg);
        }

    .frequent-product-image {
        width: 90px;
        min-width: 90px;
        height: 90px;
        margin-right: 12px;
    }

    .frequent-img {
        max-width: 90px;
        max-height: 90px;
    }

    .frequent-product-name {
        font-size: 14px;
        line-height: 20px;
    }
    /* Price */

    .frequent-price-section {
        padding: 15px 0 0;
    }

    .frequent-price-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        margin-bottom: 12px;
    }

    .frequent-cart-buttons {
        flex-direction: column;
    }
    /* Overview */

    .product-overview-wrapper {
        padding: 14px 16px;
    }

    .product-overview-title {
        font-size: 18px;
        line-height: 23px;
    }

    .recentlyview-title h3 {
        font-size: 18px;
        line-height: 23px;
        font-weight: 600 !important;
    }


    .product-overview-content {
        font-size: 14px;
        line-height: 22px;
    }
    /* Tabs */

    .product-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

        .product-tabs .nav-item {
            flex: 0 0 auto;
        }

        .product-tabs .nav-link {
            padding: 9px 13px;
            font-size: 14px;
        }

    .product-tab-body {
        padding: 15px;
        font-size: 14px;
        line-height: 22px;
    }
    /* Accordion */

    .product-accordion-header {
        min-height: 44px;
        padding: 8px 12px;
    }

    .product-accordion-title {
        font-size: 13px;
    }

    .product-accordion-icon {
        width: 26px;
        min-width: 26px;
        margin-right: 8px;
        font-size: 15px;
    }

    .product-accordion-body {
        padding: 14px 15px 14px 46px;
        font-size: 14px;
        line-height: 21px;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .frequently-wrapper {
        padding: 12px;
    }

    .frequent-product-image {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .frequent-img {
        max-width: 80px;
        max-height: 80px;
    }

    .frequent-product-name {
        font-size: 13px;
        line-height: 18px;
    }

    .frequent-sale-price {
        font-size: 14px !important;
    }

    .frequent-club-price {
        font-size: 13px !important;
    }
    /* Overview */

    .product-overview-wrapper {
        padding: 12px 14px;
        border-radius: 5px;
    }

    .product-overview-title {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 9px;
    }

    .product-overview-content {
        font-size: 13px;
        line-height: 20px;
    }

    .recentlyview-title h3 {
        font-size: 17px;
        line-height: 22px;
        font-weight: 600 !important;
    }
    /* Tabs */

    .product-tabs .nav-link {
        padding: 8px 11px;
        font-size: 13px;
    }

    .product-tab-body {
        padding: 13px;
        font-size: 13px;
        line-height: 20px;
    }
    /* Accordion */

    .product-accordion-header {
        min-height: 42px;
        padding: 8px 10px;
    }

    .product-accordion-title {
        font-size: 13px;
        line-height: 18px;
    }

    .product-accordion-icon {
        width: 24px;
        min-width: 24px;
        margin-right: 7px;
    }

    .product-accordion-body {
        padding: 12px 12px 12px 40px;
        font-size: 13px;
        line-height: 20px;
    }
}


.product-unavailable-message {
    background-color: none;
    padding: 12px 16px;
    border-radius: 4px;
    pointer-events: none;
    user-select: none;
}

    .product-unavailable-message::before {
        content: "⚠ IMPORTANT: Sorry! This product is out of stock right now. Buy together offers are unavailable.";
        color: #dc3545;
        font-weight: bold;
        display: block;
        filter: none !important;
        font-size: 20px;
    }

    .product-unavailable-message::after {
        display: block;
        color: #333;
        font-size: 14px;
        margin-top: 8px;
    }

.f-sec {
    filter: blur(5px);
}