@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'High Speed';
    src: url('../fonts/HighSpeed-Regular.eot');
    src: url('../fonts/HighSpeed-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HighSpeed-Regular.woff2') format('woff2'),
        url('../fonts/HighSpeed-Regular.woff') format('woff'),
        url('../fonts/HighSpeed-Regular.ttf') format('truetype'),
        url('../fonts/HighSpeed-Regular.svg#HighSpeed-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #F50A0A;
    --bgDark: #050202;
    --bgLight: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --black: #000000;
    --borderColor: rgba(255, 255, 255, 0.15);
    --bgGray: #EEEEEE;
    --borderLight: #8D8D8D;
}

.light:root {
    --primary: #F50A0A;
    --bgDark: #ffffff;
    --bgLight: rgba(0, 0, 0, 0.08);
    --white: #202020;
    --black: #ffffff;
    --borderColor: rgba(0, 0, 0, 0.15);
    --bgGray: #EEEEEE;
    --borderLight: #000000;
}

body {
    font-family: "Inter", serif;
    font-size: 18px;
    line-height: 26px;
    color: var(--white);
    background: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}

.light body {
    background: url(../images/bg-light.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}

p {
    font-size: 18px;
    line-height: 26px;
    color: var(--white);
    margin: 0 0 20px;
}

p:last-child {
    margin: 0;
}

h1 {
    font-size: 48px;
    line-height: 58px;
    font-family: 'High Speed';
}

h2 {
    font-size: 30px;
    line-height: 40px;
    font-family: 'High Speed';
}

h3 {
    font-size: 20px;
    line-height: 28px;
    font-family: 'High Speed';
}

h4 {
    font-size: 26px;
    line-height: 34px;
}

h5 {
    font-size: 20px;
    line-height: 28px;
}

h6 {
    font-size: 18px;
    line-height: 26px;
}

a {
    transition: 0.5s ease;
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--white);
}

.text_20 {
    font-size: 20px;
    line-height: 30px;
}

.text_18 {
    font-size: 18px;
    line-height: 26px;
}

.text_16 {
    font-size: 16px;
    line-height: 24px;
}

.text_14 {
    font-size: 14px;
    line-height: 22px;
}

.fw_100 {
    font-weight: 100;
}

.fw_200 {
    font-weight: 200;
}

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.btn_primary {
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    transition: 0.5s ease;
}

.btn_primary img {
    margin-right: 10px;
}

.btn_primary:hover {
    background: var(--bgDark);
    border: 1px solid var(--white);
}

.btn_border {
    background: var(--bgDark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #313131;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--white);
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    transition: 0.5s ease;
}

.btn_border:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.light .btn_border:hover {
    color: #fff;
}

.light .btn_primary:hover {
    color: #202020;
}

.light .btn_primary:hover img {
    filter: brightness(0);
}

.btn_primary.added {
    background: #545454;
    border: 1px solid #545454;
}

.light .btn_primary.added:hover {
    color: #ffffff;
}

.light .btn_primary.added:hover img {
    filter: inherit;
}

.container {
    max-width: 1750px;
}

.container-sm {
    max-width: 1270px;
}

.bg_light {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(34px);
}

.light .bg_light {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(34px);
}

.light .icon_light {
    filter: brightness(0);
}

header {
    padding: 25px 0;
    border-bottom: 1px solid var(--borderColor);
}

.logo_Wrapper {
    display: flex;
    align-items: center;
}

.logo_Wrapper .logo_text h2 {
    font-size: 26px;
    line-height: 32px;
    padding-left: 20px;
    margin: 0;
}

.logo_dark {
    display: none;
}

.dark .logo_dark {
    display: none;
}

.dark .logo_light {
    display: block;
}

.light .logo_light {
    display: none;
}

.light .logo_dark {
    display: block;
}

.right_header>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.right_header ul li .dropdown .dropdown-toggle {

    background: transparent;

    border: 0;

    padding: 0;

    margin: 0;

    border-radius: 50%;

    box-shadow: none !important;

    outline: 0 !important;

}

.right_header ul li .dropdown .dropdown-toggle::after {

    display: none;

}

.right_header ul li .dropdown .dropdown-menu {

    background: #1A1616;

    padding: 20px;

    border: 1px solid #313131 !important;

    width: 200px;

    top: 10px !important;

}

.light .right_header ul li .dropdown .dropdown-menu {

    background: #fff;

}

.right_header ul li .dropdown .dropdown-menu li {

    margin: 0 0 10px;

}

.right_header ul li .dropdown .dropdown-menu li:last-child {

    margin: 0;

}

.right_header ul li .dropdown .dropdown-menu li a {

    padding: 0;

    color: var(--white);

    display: inline-flex;

    align-items: center;



}

.right_header ul li .dropdown .dropdown-menu li a:hover {

    background: transparent;

    color: var(--primary);

}

.right_header ul li .dropdown .dropdown-menu li a span {

    width: 35px;

    height: 35px;

    border-radius: 10px;

    background: var(--bgGray);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    box-shadow: none;

    outline: 0;

    margin-right: 10px;

}

.right_header ul li .dropdown .dropdown-menu li a span img {

    width: 22px;

}

.darkLightButton b img {

    width: 22px;

}







.dark_icon {
    display: none;
}

.dark .dark_icon {
    display: none;
}

.dark .light_icon {
    display: block;
}

.light .dark_icon {
    display: block;
}

.light .light_icon {
    display: none;
}

.right_header ul li {
    margin-left: 30px;
}

.right_header ul li .form-select {
    min-width: 215px;
}

.device_dropdown .form-select {
    background: var(--bgDark) url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    border: 1px solid #313131 !important;
    color: var(--white);
    font-size: 16px;
    border-radius: 10px;
    padding: 15px 50px 15px 20px;
    box-shadow: none !important;
    outline: 0;
}

.light .device_dropdown .form-select {
    background: var(--bgDark) url(../images/select-arrow-dark.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.cart_button_wrapper a {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart_button_wrapper a span {
    position: absolute;
    right: -11px;
    top: -11px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.dark-light-mode {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: var(--bgGray);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.gallery_wrapper {
    padding: 70px 0;
    min-height: calc(100vh - 156px - 97px);
}

.login_wrapper {
    /* min-height: calc(100vh - 156px - 97px); */
}

.gallery_box .gallery_img {
    width: 100%;
    position: relative;
    border-radius: 14px;
    border: solid 2px transparent;
    z-index: 9;
}

.gallery_box .gallery_img a {
    overflow: hidden;
    display: block;
    border-radius: 14px;
}

.gallery_box .gallery_img a img {
    transition: 0.5s ease;
}

.gallery_box:hover .gallery_img a img {
    transform: scale(1.1);
}

.gallery_box .gallery_img:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    /* same as border width */
    border-radius: inherit;
    /* inherit container box's radius */
    background: linear-gradient(to bottom, #BFBFBF, rgba(223, 223, 223, 0.11));

}

.gallery_box .gallery_img img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 15/8;
    object-fit: cover;
}

.gallery_box .gallery_img .show_more {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    padding: 7px 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24px);
    border-radius: 0 0 14px 14px;
    transition: 0.5s ease;
}

.gallery_box:hover .gallery_img .show_more {
    bottom: 0;
    border-top: 1px solid #858585;
}

.gallery_img_Wrapper {
    overflow: hidden;
}

.gallery_text_wrapper {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
}

.gallery_text_wrapper h3 {
    width: calc(100% - 80px);
    margin: 5px 0 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.gallery_text_wrapper h4 {
    width: 80px;
    text-align: right;
    font-size: 25px;
    line-height: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

footer {
    padding: 30px 0;
    border-top: 1px solid var(--borderColor);
}

footer p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--white);
}

footer .social_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social_wrapper li {
    margin-left: 10px;
}

.social_wrapper li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--borderLight);
    transition: 0.5s ease;
}

.light .social_wrapper li a img {
    filter: brightness(0);
}

.social_wrapper li a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social_wrapper li a:hover img {
    filter: brightness(0) invert(1);
}

.back_button {
    display: inline-flex;
    align-items: center;
    color: var(--white);
}

.back_arrow {
    padding: 35px 0;
}

.back_button img {
    margin-right: 15px;
    width: 20px;
}

.detail_title {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.detail_title h1 {
    font-size: 40px;
    line-height: 50px;
    width: calc(100% - 100px);
    margin: 0;
}

.detail_title h4 {
    width: 100px;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    margin: 0;
    text-align: right;
}

.pages_slider {
    padding: 5px 0;
}

.pages_box_wrapper {
    padding: 30px;
    background: #1A1616;
    border-radius: 27px;
    position: relative;
    border: solid 1px transparent;
}

.light .pages_box_wrapper {
    background: #E3E2E2;
}

.pages_box_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to bottom, #BFBFBF, rgba(223, 223, 223, 0.11));
}

.page_img {
    border-radius: 27px;
    overflow: hidden;
}

.page_img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 14/8;
}

.page_content {
    padding-left: 20px;
}

.page_content p {
    font-size: 16px;
    line-height: 26px;
}

.pages_slider .swiper-slide {
    max-width: 1240px;
    opacity: 0.5;
}

.pages_slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #202020;
    border: 1px solid #fff;
    right: calc(50% - 740px);
}

.swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #202020;
    border: 1px solid #fff;
    left: calc(50% - 740px);
}

.swiper-button-next:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/right-arrow.svg);
    width: 22px;
    height: 15px;
    background-size: 22px;
    background-repeat: no-repeat;
}

.swiper-button-prev:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/left-arrow.svg);
    width: 22px;
    height: 15px;
    background-size: 22px;
    background-repeat: no-repeat;
}

.pages_slider_wrapper {
    margin: 0 0 50px;
}

.detail_content_wrapper {
    margin: 0 0 30px;
}

.detail_content_wrapper h4 {
    margin: 0 0 20px;
}

.description_box {
    padding: 30px;
    border-radius: 20px;
}

.detail_wrapper {
    padding: 0 0 80px;
}

.author_box {
    display: flex;
    align-items: center;
}

.author_box .img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
}

.author_box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author_box .text {
    width: calc(100% - 42px);
    padding-left: 15px;
}

.author_box .text h6 {
    font-size: 12px;
    margin: 0;
    line-height: 14px;
    color: #979797;
}

.author_box .text p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.update_date p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 13px;
    font-style: italic;
    color: #949494;
}

.update_date p span {
    color: var(--white);
    padding-left: 5px;
}

.update_date p img {
    margin-right: 10px;
}

.mat-list-base .mat-list-option:hover {
    background-color: red;
}

.cart_inner_wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.cart_box {
    display: flex;
    margin: 0 0 20px;
}

.cart_content {
    display: flex;
    padding: 8px;
    align-items: center;
    border-radius: 12px;
    width: calc(100% - 145px);
}

.cart_content .cart_img {
    width: 200px;
    height: 115px;
    overflow: hidden;
    border-radius: 12px;
}

.cart_content .cart_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart_items {
    width: calc(100% - 200px);
    padding: 10px 20px;
}

.cart_title {
    display: flex;
    align-items: center;
    margin: 0 0 5px;
}

.cart_items h3 {
    margin: 0 0 5px;
    width: calc(100% - 80px);
    margin: 0;
}

.cart_items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cart_items ul li {
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
}

.cart_items ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: url(../images/page.svg);
    background-size: 25px;
    background-repeat: no-repeat;
}

.cart_items ul li:first-child {
    margin-left: 0;
}

.item_price {
    width: 80px;
    text-align: right;
    padding: 4px;
}

.item_price h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
}

.remove_item {
    width: 130px;
    margin-left: 15px;
}

.remove_item .btn_trash {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_button_Wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart_button_Wrapper p {
    margin: 0;
    padding: 11px 22px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #848484;
    margin-right: 15px;
}

.cart_button_Wrapper p span {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    padding-left: 5px;
}

.cart_wrapper {
    padding: 0 0 80px;
}

.login_wrapper {
    padding: 100px 0;
}

.login_box {
    padding: 35px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 25px;
}

.login_title {
    margin: 0 0 20px;
}

.or_wrap {
    text-align: center;
    position: relative;
    margin: 0 0 20px;
}

.or_wrap span {
    display: inline-block;
    background: rgb(20 20 20);
    padding: 0 10px;
}

.light .or_wrap span {
    background: rgb(227 227 227);
}

.or_wrap:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 1px;
    background: var(--borderColor);
    z-index: -1;
}

.login_form h4 {
    text-align: center;
    font-family: 'High Speed';
}

.form-group label {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px;
    color: var(--white);
    font-weight: 300;
}

.form-group .form-control {
    background: var(--bgDark);
    border: 1px solid #313131;
    border-radius: 7px;
    padding: 10px 20px;
    box-shadow: none !important;
    outline: 0 !important;
    color: var(--white);
}

.form-group .form-select {
    background: var(--bgDark) url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    border: 1px solid #313131 !important;
    border-radius: 7px;
    padding: 10px 20px;
    color: var(--white);
    box-shadow: none !important;
    outline: 0;
}

.light .form-group .form-select {
    background: var(--bgDark) url(../images/select-arrow-dark.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group .form-control::-webkit-input-placeholder {
    color: #7C7C7C;
}

.form-group .form-control::-moz-placeholder {
    color: #7C7C7C;
}

.form-group .form-control:-ms-input-placeholder {
    color: #7C7C7C;
}

.form-group .form-control:-moz-placeholder {
    color: #7C7C7C;
}

.checkout_wrapper {
    padding: 0 0 80px;
}

.billing_wrapper {
    padding: 40px 35px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.payment_radio_wrapper .form-check {
    padding: 0;
    margin: 0;
}

.payment_radio_wrapper .form-check .form-check-input {
    display: none;
}

.payment_radio_wrapper .form-check .form-check-label {
    padding: 25px 25px 25px 65px;
    border-radius: 25px;
    display: block;
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    position: relative;
}

.payment_radio_wrapper .form-check .form-check-label:before {
    width: 23px;
    height: 23px;
    border: 1px solid var(--white);
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.payment_radio_wrapper .form-check .form-check-label:after {
    content: "";
    position: absolute;
    left: 37px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D9D9D9;
    display: none;
}

.payment_radio_wrapper .form-check .form-check-input:checked+.form-check-label:before {
    background: var(--primary);
    border-color: var(--primary);
}

.payment_radio_wrapper .form-check .form-check-input:checked+.form-check-label:after {
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.card_detail_wrap {
    display: none;
}

.payment_radio_wrapper .form-check:has(.form-check-input:checked) .card_detail_wrap {
    display: block;
}

.payment_wrapper {
    margin-bottom: 30px;
}

.checkout_cart_info {
    padding-left: 80px;
    position: sticky;
    top: 30px;
}

.checkout_cart_info .cart_content {
    width: 100%;
}

.checkout_cart_info .cart_content .cart_img {
    width: 92px;
    height: 60px;
}

.checkout_cart_info .item_price h5 {
    font-size: 17px;
    line-height: 22px;
}

.checkout_cart_info .item_price {
    width: 50px;
}

.checkout_cart_info .cart_items {
    width: calc(100% - 92px - 50px);
    padding: 7px 15px;
}

.checkout_cart_info .cart_items h3 {
    font-size: 14px;
}

.checkout_cart_info .cart_items ul {
    gap: 8px;
}

.checkout_cart_info .cart_items ul li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 20px;
}

.checkout_cart_info .cart_items ul li:before {
    top: 3px;
    width: 15px;
    height: 15px;
    background-size: 15px;
}

.checkout_cart_info .cart_button_Wrapper p {
    margin-right: 0;
}

.thankyou_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100vh - 156px);
}

.thankyou_wrapper h4 {
    margin: 15px 0 35px;
}

.mobile_device_drop {
    display: none;
}

.pages_slider .swiper-pagination {
    display: none;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: #D9D9D9;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.cart_content .cart_img .btn_primary {
    display: none;
}

.cart_button_Wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.form-check.custom_checkbox {
    margin: 0;
    padding: 0;
}

.form-check.custom_checkbox label {
    position: relative;
    padding-left: 30px;
}

.form-check.custom_checkbox label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--bgDark);
    border: 2px solid #313131;
}

.form-check.custom_checkbox label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 10px;
    height: 6px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: none;
}

.form-check.custom_checkbox input {
    display: none;
}

.form-check.custom_checkbox input:checked+label:after {
    display: block;
}

.form-check.custom_checkbox input:checked+label:before {
    background: var(--primary);
    border-color: var(--primary);
}


@media (max-width: 1800px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 1681px) {
    .container {
        max-width: 1400px;
    }

    .detail_title h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .detail_title h4 {
        font-size: 34px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .gallery_text_wrapper h4 {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 1442px) {
    .container {
        max-width: 1280px;
    }

    .swiper-button-next {
        right: 20px;
    }

    .swiper-button-prev {
        left: 20px;
    }
}

@media (max-width: 1367px) {

    .container,
    .container-sm {
        max-width: 1140px;
    }

    .gallery_text_wrapper h3 {
        font-size: 14px;
        line-height: 22px;
    }

    .logo_Wrapper .logo_text h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .logo img {
        height: 80px;
    }

    .dark-light-mode,
    .cart_button_wrapper a {
        width: 50px;
        height: 50px;
    }

    .device_dropdown .form-select {
        padding: 12px 40px 12px 15px;
    }

    .checkout_cart_info {
        padding-left: 20px;
    }

    .thankyou_wrapper {
        height: calc(100vh - 131px);
    }
}

@media (max-width: 1271px) {
    .pages_slider .swiper-slide {
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 1201px) {

    .container,
    .container-sm {
        max-width: 1000px;
    }
}

@media (max-width: 1141px) {

    .container,
    .container-sm {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .logo_text {
        display: none;
    }

    .pages_slider .swiper-pagination {
        display: none;
    }

    .pages_slider .swiper-button-prev,
    .pages_slider .swiper-button-next {
        display: none;
    }

    .pages_slider {
        padding-bottom: 40px;
    }

    .pages_slider .swiper-pagination {
        display: block;
        bottom: 0;
    }

    .detail_title {
        align-items: self-start;
        flex-direction: column;
    }

    .detail_title h1,
    .detail_title h4 {
        width: 100%;
        text-align: left;
    }

    .page_content {
        padding-left: 0;
        padding-top: 30px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .remove_item {
        display: none;
    }

    .cart_content {
        padding: 10px;
        width: 100%;
        display: block;
    }

    .cart_content .cart_img {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 4;
    }

    .cart_items {
        width: 100%;
        padding: 15px 0;
        align-self: center;
    }

    .cart_title {
        align-items: self-start;
        flex-direction: column;
        margin: 0 0 10px;
    }

    .item_price {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .cart_items ul li {
        width: calc(50% - 10px);
    }

    .cart_inner_wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .cart_box {
        display: flex;
        margin: 0;
        width: calc(50% - 10px);
    }

    h1 {
        font-size: 38px;
        line-height: 49px;
    }

    .cart_button_Wrapper {
        margin: 20px auto 0;
    }

    .checkout_cart_info {
        padding-left: 0;
    }

    .checkout_cart_info .cart_box {
        width: 100%;
    }

    .checkout_cart_info .cart_content .cart_img {
        width: 100%;
        height: auto;
    }

    .checkout_cart_info .cart_items {
        width: 100%;
        padding: 15px 0;
    }

    .checkout_cart_info {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dark-light-mode {
        background: #dddcdc;
    }

}

@media (max-width: 767px) {
    .right_header ul li:has(.device_dropdown) {
        display: none;
    }

    header {
        padding: 15px 0;
    }

    .mobile_device_drop {
        display: block;
        padding: 15px;
    }

    .gallery_wrapper {
        padding: 10px 0 50px;
    }

    footer p {
        text-align: center;
    }

    footer .social_wrapper {
        justify-content: center;
        margin: 15px 0 0;
    }

    .gallery_text_wrapper {
        margin: 10px 0 0;
    }

    .detail_wrapper {
        padding: 0 0 50px;
    }

    .cart_items ul li {
        padding-left: 22px;
        font-size: 14px;
        line-height: 20px;
    }

    .cart_items ul li:before {
        top: 3px;
        width: 15px;
        height: 15px;
        background-size: 15px;
    }

    .cart_items ul {
        gap: 8px;
    }

    .back_arrow {
        padding: 0 0 30px;
    }

    .login_wrapper {
        padding: 40px 0 50px;
    }

    .thankyou_wrapper {
        height: calc(100vh - 111px);
    }
}

@media(max-width: 575px) {
    .pages_box_wrapper {
        padding: 15px;
    }

    .update_date p {
        justify-content: flex-start;
        margin: 20px 0 0;
    }

    .detail_title h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .detail_title h4 {
        font-size: 30px;
        line-height: 36px;
    }

    .page_content p {
        font-size: 14px;
        line-height: 24px;
    }

    .btn_primary {
        font-size: 16px;
        line-height: 25px;
    }

    .btn_primary img {
        width: 20px;
    }

    .pages_slider_wrapper {
        margin: 0 0 30px;
    }

    .description_box {
        padding: 20px;
        border-radius: 15px;
    }

    p {
        font-size: 14px;
        line-height: 22px;
    }

    .cart_box {
        width: 100%;
    }

    h1 {
        font-size: 28px;
        line-height: 38px;
    }

    h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .cart_button_Wrapper {
        justify-content: center;
    }

    .billing_wrapper {
        padding: 20px 15px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .checkout_wrapper {
        padding: 0 0 50px;
    }

    .form-group .form-control {
        font-size: 14px;
    }

    .payment_radio_wrapper .form-check .form-check-label {
        padding: 20px 25px 20px 60px;
        border-radius: 15px;
        font-size: 15px;
    }
}

@media(max-width: 481px) {
    footer p {
        font-size: 13px;
        line-height: 20px;
    }

    .auth-input-wrapper.form-group .form-control.auth-input {
        padding: 7px 5px;
        margin: 1px !important;
    }

    .auth-input-wrapper b {
        margin: 0 5px !important;
        display: inline-block;
    }

    .logo img {
        height: 60px;
    }

    .dark-light-mode,
    .cart_button_wrapper a {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .dropdown-toggle img {
        width: 40px !important;
    }

    .dark-light-mode img,
    .cart_button_wrapper a img {
        width: 18px;
    }

    .cart_button_wrapper a span {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .right_header ul li {
        margin-left: 20px;
    }

    .device_dropdown .form-select {
        padding: 10px 40px 10px 15px;
    }

    .cart_button_Wrapper p span {
        font-size: 20px;
    }

    .login_box {
        padding: 20px 10px;
    }

    .thankyou_wrapper {
        height: calc(100vh - 91px);
    }
}
