@import 'swiper.min.css';
@import 'common.css';

.product_price {
    text-align: center;
}
.product_price_old {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: 700;
    position: relative;
}
.product_price_old::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    right: -4px;
    background-color: var(--color);
    height: 2px;
    border-radius: 2px;
    transform: rotate(7deg);
}
.product_price_standart {
    font-weight: 800;
    font-size: var(--fs-big);
    line-height: 1;
}

/* header */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 25px;
}
.logo {
    width: 150px;
}
.menu_items {
    display: flex;
}
.menu_item_link {
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--font);
    margin-left: 20px;
    margin-right: 20px;
}
.menu_item_link:hover {
    color: var(--color);
}

.header_options {
    display: flex;
    align-items: center;
}
.header_option {
    position: relative;
    margin-left: 35px;
    position: relative;
    cursor: pointer;
}
.header_option::before {
    content: '';
    position: absolute;
    top: calc(50% - 27.5px);
    left: calc(50% - 27.5px);
    width: 55px;
    height: 55px;
    background-color: var(--bg-more);
    border-radius: var(--br);
    transform: scale(0);
    transition: 500ms;
}
.header_option:hover::before {
    transform: scale(1);
}
.header_option img {
    width: 30px;
}
.header_option_count {
    position: absolute;
    bottom: -5px;
    right: -9px;
    background-color: var(--color);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-middle);
    color: #fff;
    font-weight: 800;
}

/* swiper banner */
.banner .indent {
    padding-top: 50px;
}
.banner .container {
    position: relative;
    overflow: hidden;
}
.banner_slide .row {
    align-items: center;
}
.banner_slide .col-5 {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_slide_img {
    max-height: 100%;
}
.banner_heading_top {
    font-weight: 700;
    font-size: var(--fs-big);
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}
.banner_heading_top::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -10px;
    right: -10px;
    z-index: -1;
    height: 10px;
    background-color: rgba(253,208,184);
}
.banner .button {
    margin-right: 15px;
}
.swiper_banner {
    overflow: visible;
}
.banner_slide_info {
    font-size: var(--fs-middle);
    color: var(--color-text-more);
    margin-top: 45px;
}
.banner_slide_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*  */

.swiper_banner .swiper-pagination{
    width: auto;
    left: auto;
    right: 110px;
    bottom: 34px;
}
.swiper_banner .swiper-button-prev,
.swiper_banner .swiper-button-next {
    top: auto;
    bottom: 30px;
    border: none;
    background: none;
}
.swiper_banner .swiper-button-prev {
    left: auto;
    right: 200px;
}
.swiper_banner .swiper-button-next {
    right: 0;
}
.swiper_banner .swiper-pagination-fraction {
    color: var(--color-text);
    font-weight: 700;
}
.swiper_banner .swiper-pagination-current {
    color: var(--color);
    font-size: 25px;
}
.swiper_banner .swiper-button-prev::after,
.swiper_banner .swiper-button-next::after {
    font-size: 30px;
}
.swiper_banner .swiper-button-prev:hover,
.swiper_banner .swiper-button-next:hover {
    box-shadow: none;
}
.swiper_banner .swiper-button-prev:hover::after, 
.swiper_banner .swiper-button-next:hover::after {
    color: var(--color);
}

/* swiper products */
.products {
    overflow: hidden;
}
.swiper_products {
    overflow: visible;
    padding-bottom: 70px;
}
.product {
    background-color: #fff;
    position: relative;
    border: var(--border);
    border-radius: var(--br);
    padding: 25px;
}
.product:hover {
    border: 1px solid var(--color);
    box-shadow: 0 10px 25px rgba(0,0,0, 0.1);
}
.product_img {
    margin-bottom: 15px;
}
.product_img a {
    display: block;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_img img {
    max-height: 100%;
}
.product_img_more {
    display: none;
}
.product_img a:hover .product_img_more {
    display: block;
}
.product_img a:hover .product_img_common {
    display: none;
}
.product_info {
    display: flex;
    flex-direction: column;
}
.product_category {
    text-align: center;
    margin-bottom: 7px;
}
.product_category a {
    font-size: var(--fs-small);
    color: var(--color-text-more);
}
.product_category a:hover {
    color: var(--color);
}
.product_heading {
    flex-grow: 1;
    text-align: center;
}
.product_heading a {
    color: var(--color-text);
}
.product_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}


.product_cart {
    background-color: var(--color);
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br-middle);
    cursor: pointer;
}
.product_cart img {
    width: 55%;
}
.product_cart:hover {
    box-shadow: var(--shadow-color);
}

.swiper_products .swiper-button-prev,
.swiper_products .swiper-button-next {
    top: auto;
    bottom: 0;
}

.swiper_products .swiper-pagination {
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper_products .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 500ms;
}
.swiper_products .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color);
    transform: scale(1.4);
}

/* swiper reviews */
.reviews {
    overflow: hidden;
}
.swiper_reviews {
    overflow: visible;
}
.review.swiper-slide {
    background-color: #fff;
    position: relative;
    border: var(--border);
    border-radius: var(--br-big);
    padding: 0 45px 45px 45px;
    transition: 500ms;
    transform: scale(0.9);
}
.review.swiper-slide-active {
    transform: scale(1.1);
    z-index: 1;
}
.review_quotes {
    width: 75px;
    margin-top: -35px;
    margin-bottom: 5px;
}
.review_content {
    font-size: var(--fs-big);
}
.review_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}
.review_user {
    display: flex;
    align-items: center;
}
.review_user_avatar {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 15px;
}
.review_user_name {
    font-weight: 700;
    font-size: var(--fs-big);
}
.review_user_job {
    color: var(--color-text-more);
    font-size: var(--fs-small);
}
.review_rating p {
    color: var(--color-text-more);
    font-size: var(--fs-small);
    margin-top: 4px;
}

.swiper_reviews .swiper-button-prev {
    left: 200px;
}
.swiper_reviews .swiper-button-next {
    right: 200px;
}



/* Footer */
.footer {
    border-top: var(--border);
}
.footer_bottom {
    font-size: var(--fs-small);
    color: var(--color-text-more);
}