@import 'common.css';
@import 'swiper.min.css';
@import 'tabler-icons.min.css';



/* Header */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 50px;
}
.header_left,
.header_right {
    display: flex;
    align-items: center;
}

/* logo */
.logo {
    width: 65px;
}

/* menu */
.menu {
    margin-left: 165px;
}
.menu_items {
    display: flex;
}
.menu_item_link {
    color: var(--color-text);
    text-transform: uppercase;
    margin-left: 35px;
    margin-right: 35px;
    position: relative;
    letter-spacing: 1px;
}
.menu_item_link:hover {
    color: var(--color);
}
.menu_item_link.active::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: -26px;
    width: 17px;
    height: 1px;
    background-color: var(--color);
}

/* search */
.search {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.search_form {
    position: absolute;
    right: 50px;
    bottom: 0;
    width: 0;
    overflow: hidden;
    transition: 500ms;
}
.search_form.active {
    width: 200px;
}
.search_form_input {
    background: none;
    border: 0;
    border-bottom: 1px solid var(--color-text);
    padding: 5px 0;
    letter-spacing: 1px;
    color: var(--color-text);
    font-family: Arial;
}
.search_form_input:focus {
    outline: none;
}
.search .ti {
    font-size: var(--fs-semibig);
}

/* cart */
.cart {
    display: flex;
    align-items: center;
    margin-left: 30px;
    margin-right: 45px;
    cursor: pointer;
}
.cart_count {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-left: 24px;
    position: relative;
}
.cart_count::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -19px;
    width: 12px;
    height: 1px;
    background-color: var(--color-text);
}
.cart .ti {
    font-size: var(--fs-semibig);
}

/* account */
.account {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.account span {
    text-transform: uppercase;
    margin-right: 10px;
    letter-spacing: 1px;
}
.account .ti {
    font-size: var(--fs-big);
}

/* toogle */
.menu_toggle {
    width: 25px;
    height: 18px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-left: 85px;
}
.menu_toggle_line {
    width: 100%;
    height: 2px;
    background-color: var(--color);
}
.menu_toggle_line::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color);
    border-radius: 1px;
}
.menu_toggle_line::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 2px;
    background-color: var(--color);
    border-radius: 1px;
}


/* Banner */
.banner  {
    height: 500px;
}
.banner .container {
    position: relative;
    height: 100%;
}
.banner_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.banner_custimise {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    transform: translateX(-40%) rotate(-90deg);
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
.banner_custimise span {
    color: var(--color-text-optional);
    text-transform: uppercase;
    font-size: var(--fs);
    position: relative;
    top: 2px;
    letter-spacing: 1px;
    font-weight: 700;
}
.banner_custimise img {
    width: 14px;
    margin-left: 8px;
}

.top_title {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-decorative);
    color: var(--color);
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}
.title {
    font-size: 310px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 17px;
}


/* banner slider */
.banner_slide {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: visible;
}

.banner_slide .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_slide_img {
    width: 44%;
    -webkit-filter: drop-shadow(0 35px 75px  rgba(0,0,0, 0.7));
    filter: drop-shadow(0 35px 75px  rgba(0,0,0, 0.7)); 
    transform: translate(-10px, -25px) rotate(-28deg);
}
.banner_slide .swiper-slide .button {
    position: absolute;
    right: 200px;
    bottom: 70px;
    padding-right: 27px;
}
.banner_slide .swiper-slide .button .ti {
    font-size: 14px;
    margin-left: 12px;
    line-height: 1;
}

.banner_slide .swiper-pagination {
    width: auto;
    bottom: 50%;
    transform: translateY(50%);
    right: 0;
    left: auto;
}

.swiper.banner_slide .swiper-pagination-bullet {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--color-text);
    opacity: 1;
    position: relative;
}

.banner_slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color);
    margin-top: 30px;
    margin-bottom: 30px;
}
.banner_slide .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    top: -9px;
    left: -9px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-text);
    border-radius: 100%;
}
.banner_slide .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 28px;
    width: 70px;
    height: 2px;
    background-color: var(--color-text);
}




/* Gallery slide */
.gallery {
    overflow: hidden;
}
.gallery_row {
    --left-block-width: 160px;

    display: flex;
}
.gallery_slide {
    padding-top: 10px;
    padding-bottom: 50px;
}
.gallery_slide .swiper-wrapper {
    padding-bottom: 25px;
}
.gallery_left_block {
    width: var(--left-block-width);
    min-width: 200px;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}
.gallery_right_block {
    width: calc(100% - var(--left-block-width));
    overflow: hidden;
}
.left_block_heading {
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
}
.left_block_heading::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    background-color: var(--color-text);
    width: 70px;
    height: 1px;
}
.left_block_text {
    font-family: Arial;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255, 0.8);
    margin-top: 7px;
    margin-bottom: 12px;
}
.gallery_left_block .swiper-pagination {
    position: static;
    text-align: left;
}
.gallery_left_block .swiper-pagination-bullet {
    background-color: var(--color-text);
    opacity: 1;
    width: 5px;
    height: 5px;
    transition: 400ms;
    border-radius: 50px;
}
.gallery_left_block .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color);
    width: 25px;
    border-radius: 5px;
}
/* arrow next */
.gallery_left_block .swiper-button-next {
    top: 35%;
    right: 0;
    width: 31px;
    height: 31px;
    border: 1px solid var(--color);
    border-radius: 100%;
}
.gallery_left_block .swiper-button-next::after {
    content: '\ea1c';
    font-family: "tabler-icons";
    color: var(--color-text);
    font-size: var(--fs-big);
}
.gallery_left_block .swiper-button-next:hover {
    background-color: var(--color);
}


/* slide */
.gallery_slide_container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 17px 15px 15px 15px;
    color: var(--color-text-optional);
    width: 80%;
    margin-left: auto;
    box-shadow: -10px 20px 15px rgba(0,0,0, 0.3);
}
.gallery_slide_img {
    width: 50%;
    position: relative;
}
.gallery_slide_img img {
    transform: rotate(-30deg);
    max-width: 150%;
    position: absolute;
    top: -20px;
    left: -60px;
}
.gallery_slide_content {
    width: 50%;
}
.gallery_slide_title {
    color: var(--color-optional);
    letter-spacing: 0.5px;
    font-size: var(--fs);
}
.gallery_slide_subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25px;
    color: var(--color-text-light);
}
.gallery_slide_rating {
    margin-top: 5px;
    margin-bottom: 3px;
    font-size: 8px;
    color: var(--color-text-light);
}
.gallery_slide_rating .ti {
    margin-right: 1px;
}

.gallery_slide_rating .ti.active {
    color: rgb(255, 187, 0);
}
.gallery_slide_price {
    font-size: var(--fs-big);
    color: var(--color-optional);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.gallery_slide_bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.gallery_slide_button_add {
    width: 22px;
    height: 22px;
    background-color: var(--color-optional);
    color: #fff;
    font-size: 15px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery_slide_button_add::before {
    content: '\eb0b';
    font-family: 'tabler-icons';
    font-size: 14px;
    line-height: 1;
}