/* Product detail */

.product-detail {
    padding: 40px 0 100px;
}

.product-detail .container {
    max-width: 1410px;

    position: relative;
    z-index: 2;
}

.product-detail .container:after {
    content: url('../img/PP/element1.svg');

    position: absolute;
    left: 1151px;
    bottom: -152px;
    z-index: -1;

    width: 360px;
    

    pointer-events: none;
    
}

.product-detail__row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}


/* Sidebar */

.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-sidebar__item {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 50px;
    padding: 15px 20px;

    border: none;
    border-radius: 4px;

    background: #ffffff;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;

    color: #161616;

    cursor: pointer;
    transition: color .2s ease;
}

.product-sidebar__item.active,
.product-sidebar__item:hover {
    color: #F7941D;
}


/* Content */

.product-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-tab {
    display: none;
}

.product-tab.active {
    display: block;
}


/* Hero */

.product-content__hero {
    margin-bottom: 40px;
}

.product-content__hero-row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}

.product-content__info {
    min-height: 220px;
    height: 100%;
    padding: 40px 39px;

    border-radius: 10px;
    background: #ffffff;
}

.product-content__title {
    margin: 0 0 30px;

    font-family: 'RoadRadio', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
}

.product-content__text {
    max-width: 720px;
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #8A8A8A;
}

.product-content__image {
    width: 220px;
    height: 220px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
}

.product-content__image img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;
    transform: none;
}


/* Product rows */

.product-content__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-content__row {
    display: flex;
    align-items: flex-start;
	justify-content: center;
	flex-direction: column;

    min-height: 50px;
    padding: 15px 20px;

    border-radius: 4px;

    background: #ffffff;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;

    color: #1D3F77;
	cursor: pointer;
}

.product-content__row a{
	display: flex;
	width: 100%;
	align-items: center;
    color: #1D3F77 !important;
    font-weight: 700;
    transition: color .2s ease;
}

.product-content__row a:hover {
    color: #F7941D !important;
}

.product-content__desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.product-content__row.active .product-content__desc {
    transition: max-height 0.5s ease-in;
}

/* product-intro */

.product-intro {
    padding: 0 0 40px;
}

.product-intro .container {
    max-width: 1410px;
}

.product-intro__title {
    margin: 0;

    font-family: 'RoadRadio', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
}

.product-intro__text {
    max-width: 800px;
    margin: 0 0 0 auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #8A8A8A;
}

/* =========================
   Product detail adaptive
========================= */

@media (max-width: 767px) {
    .product-intro {
        padding: 0 0 24px;
    }

    .product-detail {
        padding: 0 0 40px;
    }

    .product-intro .container,
    .product-detail .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-detail .container::after {
        display: none;
    }

    .product-intro__title {
        margin-bottom: 18px;

        font-size: 28px;
        line-height: 1;
    }

    .product-intro__text {
        max-width: 100%;
        margin: 0;

        font-size: 13px;
        line-height: 1.45;
    }

    .product-detail__row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 20px;
    }

    .product-detail__row > [class*="col"] {
        width: 100%;
        flex: 0 0 100%;
    }

    .product-sidebar {
        gap: 5px;
    }

    .product-sidebar__item {
        min-height: 42px;
        padding: 12px 16px;

        font-size: 11px;
        line-height: 1.2;
    }

    .product-content {
        gap: 20px;
    }

    .product-content__hero {
        margin-bottom: 20px;
    }

    .product-content__hero-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 10px;
    }

    .product-content__hero-row > .col,
    .product-content__hero-row > .col-auto {
        width: 100%;
        flex: 0 0 100%;
    }

    .product-content__info {
        min-height: auto;
        padding: 24px 18px;

        border-radius: 10px;
    }

    .product-content__title {
        margin-bottom: 16px;

        font-size: 18px;
        line-height: 1.1;
    }

    .product-content__text {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.45;
    }

    .product-content__image {
        width: 100%;
        height: 210px;
        padding: 24px;

        border-radius: 10px;
    }

    .product-content__image img {
        max-width: 220px;
        max-height: 170px;
    }

    .product-content__list {
        gap: 5px;
    }

    .product-content__row {
        min-height: 42px;
        padding: 12px 16px;

        font-size: 11px;
        line-height: 1.2;
    }
}