@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


* {
    box-sizing: border-box;
    font-family: 'Rubik';
}

:root {
    --main-color: #bad3da;
    --sub-color: #96c0d0;
    --dark-color: #1e536d;
    --sup-dark-color: #27536e;
    --dark-purple: #545775;
    --light-purple: #7f84be;
    --light-sub-color: rgba(150, 192, 208, 40%);
}


.btn_light_purple {
    background-color: var(--light-purple) !important;
    color: #fff !important;
    border: none !important;
}

.btn_light_purple:hover {
    background-color: var(--dark-purple) !important;
    color: #fff !important;
}

.main_color {
    color: var(--main-color) !important;
}

.sub_color {
    color: var(--sub-color) !important;
}

.dark_color {
    color: var(--dark-color) !important;
}

.sup_dark_color {
    color: var(--sup-dark-color) !important;
}

.dark_purple {
    color: var(--dark-purple) !important;
}

.light_purple {
    color: var(--light-purple) !important;
}

.text-start {
    text-align: start !important;
}

a {
    text-decoration: none !important;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    background-color: var(--light-sub-color) !important;
    width: 100%;
    overflow-x: hidden;
}




.ar .rating,
.ar .star-rating {
    direction: ltr;
    unicode-bidi: bidi-override;
    transform: rotateY(180deg);
}


/* scroll bar */

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb {
    background-color: #1e536d;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #144156;
}



/* mobile nav */
.d-md-none {
    display: none;
}

.container-fluid.navbar-width {
    padding: 10px;
    padding-right: 50px !important;
    padding-left: 50px !important;

}

.navbar .logo {
    width: clamp(9rem, 15vw, 12rem);
    object-fit: contain;
}

body.ar .navbar .logo {
    width: clamp(7rem, 8vw, 12rem);
}

.navbar .nav-icon {
    height: clamp(2.5rem, 3vw, 6rem);
    object-fit: contain;
    cursor: pointer;
}

.navbar .nav-link {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.nav-link span {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark-color);
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-options {
    position: absolute;
    top: 100%;
    inset-inline-start: -50px;
    color: var(--dark-color);
    background-color: var(--sub-color);
    border: 1px solid var(--sub-color);
    min-width: 100px;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.language-options div {
    padding: 8px 12px;
    cursor: pointer;
}

.language-options div:hover {
    background-color: var(--dark-color);
    color: var(--main-color);
}

.navbar .ms-auto {
    margin-inline-start: auto !important;
    margin-inline-end: 0px !important;
}





/* Purble Button */

.custom-btn {
    position: relative;
    padding: 8px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #7f84be;
    color: #96c0d0;
    font-size: 14px;
    box-shadow: inset 0 -3px 0 #5659a563, inset 0 1px 0 #28113800;
    font-weight: 700;
    border-radius: 12px;
    text-transform: capitalize;
}



.custom-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 1px;
    right: 1px;
    height: 45%;
    border-radius: 5px 5px 8px 8px;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    filter: blur(2px);
}

.custom-btn:hover {
    background: #6e74b0;
    color: #c0d8e0;
    box-shadow: inset 0 -3px 0 #3f4175a5, 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.custom-btn:active {
    background: #5c6399;
    box-shadow: inset 0 -2px 0 #2f2f5a, 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}



/* ------------------------------- main page ----------------------------- */
.main-page .side-nav-web {
    position: fixed;
    inset-inline-start: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.main-page .side-nav-web .icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-page .side-nav-web .icons img {
    height: 60px;
    width: 60px;
}

.main-page .part-4,
.main-page .part-5,
.main-page .part-6 {
    scroll-margin-top: 100px;
}


.main-page .container-fluid {
    padding-inline: 14vw;
}

.main-page .row.part-1 {
    align-items: center !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-page .part-1 span {
    font-size: clamp(1.5rem, 3vw, 2.7rem);
    color: var(--dark-color);
    font-weight: 700;
}

.main-page .part-1 .section-1 {
    display: flex;
    flex-direction: column;

}

.main-page .part-1 button {
    font-weight: 700;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
}

.main-page .part-1 .section-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

body.ar .main-page .part-1 .section-2 {
    justify-content: left;
}

.main-page .part-1 .section-2 .mobile {
    display: none;
}


.main-page .part-1 .section-2 .img {
    width: clamp(2.5rem, 27vw, 35rem);
}

.main-page .part-1 .section-2 .img img {
    width: 90%;
    object-fit: contain;
    border-radius: 40px;
}

.main-page .part-2 .swiper-slide {
    height: 210px;
}

.main-page .part-2 .box {
    border: 4px solid var(--dark-purple);
    border-radius: 20px;
    width: 260px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: auto;
}

.main-page .part-2 .box img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.main-page .icon-spical {
    display: flex;
    flex-direction: row;
    gap: 10px;
}


.main-page .part-2 .swiper {
    width: 100%;
    padding: 20px 0;
}

.main-page .part-2 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;

}

.main-page .swiper-horizontal>.swiper-pagination-bullets,
.main-page .swiper-pagination-bullets.swiper-pagination-horizontal,
.main-page .swiper-pagination-custom,
.main-page .swiper-pagination-fraction {
    bottom: 0px;
}

/* for all swipers */
.swiper-pagination .swiper-pagination-bullet {
    background-color: var(--light-purple);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--dark-purple);
}

/* --  */
.main-page .header h2 {
    color: var(--dark-color);
}

.main-page .header span {
    color: var(--dark-color);
}

.main-page .part-3 .box {
    width: 100%;
    background-color: var(--sub-color);
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.main-page .part-3 .box .box-content {
    padding-inline: clamp(10px, 2.5vw, 40px);
}

.main-page .part-3 .box .box-content h4 {
    color: var(--dark-color);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
}



.main-page .part-3 .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-page .part-3 .box .box-content li {
    color: var(--dark-purple);
    font-size: clamp(15px, 1vw, 22px);
}

.main-page .part-3 .box .web-button {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
}

.main-page .part-3 .box .web-button img {
    width: 60%;
}

.ar .main-page .part-3 .box .web-button img {
    transform: rotateY(180deg);
}

/* --------- same part in index and cards pages -----3----- */
.part-4 .steps {
    display: flex;
    flex-direction: column;
}

.part-4 .step {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.part-4 .number {
    text-align: center;
}


.part-4 .all-text {
    flex: 1;
}

.part-4 .steps .number img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    margin-inline-end: 20px;
}

.part-4 .step span {
    color: var(--dark-purple);
    font-size: 15px;
    display: block;
}

.part-4 .step .text {
    color: var(--light-purple);
    font-size: 16px;
    font-weight: 700;
}

.part-4 .image {
    display: flex;
    justify-content: center;
}

.part-4 .image img {
    height: 280px;
    object-fit: contain;
    border-radius: 40px;
}

/* end of part 4 */


.main-page .part-5 .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-page .part-5 .header img {
    height: 80px
}

.main-page .part-5 .swiper-2 {
    width: 100%;
    overflow: hidden;
}



.main-page .part-5 .swiper-slide {
    height: 380px;
}

.main-page .swiper-2 .swiper-slide {
    transition: transform 0.5s ease;
    z-index: 1;
}


.main-page .swiper-2 .swiper-slide.first-slide {
    transform: rotate(0deg) scale(1);
    z-index: 10;
}


.main-page .swiper-2 .swiper-slide.middle-slide {
    transform: rotate(10deg) scale(1);
    z-index: 20;
}


.main-page .swiper-2 .swiper-slide:not(.first-slide):not(.middle-slide) {
    transform: rotate(0deg) scale(0.95);
    z-index: 5;
}

.main-page .part-5 .center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main-page .part-5 .box {
    width: 100%;
    height: 80%;
    background-color: rgba(150, 192, 208, 0.441);
    color: var(--dark-color);
    border-radius: 20px;
    padding: 30px;
    font-size: 18px;
    z-index: 2;
}

.main-page .part-5 .box .review {
    margin-bottom: 10px;
}


.main-page .part-6 .content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.main-page .part-6 .box {
    background-color: var(--sub-color);
    width: 80%;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
}

.main-page .part-6 .box .section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-color);
}

.main-page .part-6 .box .section button {
    margin-inline-start: 30px;
    border: none;
}

.main-page .part-6 .section img {
    transition: transform 0.3s ease;
}

.main-page .part-6 .section img {
    transform: scale(1.1);
}

.main-page .part-6 .box .section img {
    width: 55px;

}

.main-page .part-7 {
    padding-inline: 30px;
}

.main-page .section .part-7 .answer {
    display: none;
    margin-top: 10px;
}

.main-page .part-7 .q {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;

}

.main-page .part-7 .q button {
    background-color: transparent;
    border: none;
    color: var(--dark-purple);
    cursor: pointer;
}

.main-page .part-7 h3 {
    color: var(--dark-color);
}

.main-page .part-7 .content span {
    color: var(--light-purple);
    font-weight: 600;
}

#options_card {
    scroll-margin-top: 100px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--dark-purple);
    color: var(--main-color) !important;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {

    /* for all  */
    .container-fluid {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .container-fluid.navbar-width {
        padding-right: 15px !important;
        padding-left: 15px !important;

    }

    .nav-link span {
        font-size: 7px;
    }

    .navbar .nav-icon {
        margin-top: 10px;
    }

    .nav-link.cart {
        display: none;
    }

    /* for main page */

    .main-page .side-nav-web {
        display: none;
    }

    .main-page .row.part-1 {
        background-color: var(--sub-color);
        margin-inline: 0px;
    }

    .main-page .part-1 .section-1 .web {
        display: none;
    }

    .main-page .part-1 .section-2 .mobile {
        display: block;
        margin-inline-start: 15px;
    }


    .main-page .part-1 .section-1 {
        padding-bottom: 15px;
    }

    .main-page .part-1 .section-2 {
        padding: 0 !important;
    }

    .main-page .part-1 .section-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: right;
    }

    .main-page .part-1 .section-2 .img {
        width: 100%;
        text-align: center;
    }

    .main-page .part-1 .section-2 .img img {
        border-radius: 0%;
        width: 90%;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }

    .main-page .part-3 {
        margin: 10px;
    }

    .main-page .part-3 .box {
        margin: 15px;
    }

    .part-4 {
        margin: 10px;
    }

    .part-4 .step {
        padding-inline: 20px;
    }

    .main-page .part-5 {
        margin: 10px;
    }

    .main-page .part-5 .box.right {
        transform: rotate(0deg);
    }

    .main-page .part-5 .box.left {
        transform: rotate(0deg);
    }

    .main-page .part-5 .box {
        margin: 15px;
    }

    .main-page .swiper-2 .swiper-slide.middle-slide {
        transform: rotate(0deg) scale(1);
        z-index: 20;
    }

    .main-page .part-5 .swiper-slide {
        height: 300px;
    }

    .main-page .part-6 {
        margin: 10px;
    }

    .main-page .part-6 .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-page .part-6 .box {
        width: 100%;
        margin: 15px;
        padding: 20px;
    }

    .main-page .part-6 .box span {
        font-size: 14px;

    }

    .main-page .part-6 .box button {
        font-size: 14px !important;

    }

    .main-page .part-6 .box .section button img {
        width: 55px;
    }

    .main-page .part-6 .box .section button {
        margin-inline-start: 8px;

    }

    .main-page .part-7 {
        padding-inline: 0;
        margin: 10px;
    }

    .main-page .part-7 .content {
        margin: 15px;
    }

    .main-page .part-7 h3 {
        font-size: 20px;
    }

    .main-page .part-7 .content span {
        font-size: 15px;
    }


}

/* ------------------------------- cards page ----------------------------- */

.cards-page .container-fluid {
    padding-inline: 14vw;
}

.cards-page .part-1 .row {
    margin-top: 50px;
}

.cards-page .swiper .swiper-slide {
    padding-inline: 20px;
}


.cards-page .swiper-slide {
    padding-bottom: 30px !important;
}

.cards-page .photo-section {
    display: flex;
    justify-content: start;
    align-items: start;
}

.cards-page .photo-section img {
    border-radius: 20px;
    width: 90%;

}

.cards-page .details-section .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.cards-page .details-section .header span {
    font-size: clamp(19px, 2vw, 25px);
    color: var(--dark-purple);
    font-weight: 600;
}

.cards-page .details-section .header .text {
    color: var(--dark-color);
}

.cards-page .details-section .description-section .description-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--dark-color);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
}

.cards-page .details-section .description-section .description-header .text {
    color: var(--dark-purple);
    font-size: clamp(18px, 2vw, 20px);
}

.cards-page .details-section .description-section .description {
    color: var(--dark-color);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
}

.cards-page .details-section .description-section .description .saving {
    display: block;
    margin-top: 20px;
}

.cards-page .details-section .description-section .description .best-for {
    color: var(--dark-purple);
    display: block;
}

.cards-page .colors-section .colors-headers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
}

.cards-page .colors-section .colors-headers .text {
    color: var(--dark-purple);
    font-size: clamp(17px, 2vw, 18px);
    ;
    font-weight: 500;
}

.cards-page .colors {
    display: flex;
    gap: 4px;
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
}

.cards-page .color-holder {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cards-page .color-radio {
    display: none;
}

.cards-page .color-radio:checked+label .color-holder {
    border: 4px solid var(--light-purple);

}

.cards-page .toggle-icon {
    cursor: pointer;
}

.cards-page .toggle-content {
    transition: all 0.3s ease;

}

.cards-page .header h2 {
    color: var(--dark-color);
}

.cards-page .part-1 {
    position: relative;
}

.cards-page .swiper-slide {
    width: 100% !important;
}

.cards-page .custom-prev,
.cards-page .custom-next {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    z-index: 10;
    cursor: pointer;
}

.cards-page .custom-prev {
    inset-inline-start: -20px;
}

.cards-page .custom-next {
    inset-inline-end: -20px;
}

.cards-page .custom-prev img,
.cards-page .custom-next img {
    width: 100%;
    height: auto;

}


.ar .cards-page .custom-prev img,
.ar .cards-page .custom-next img {
    transform: rotateY(180deg) !important;
}

.ar .cards-page .custom-prev {
    right: -5px !important;
    left: auto !important;
}

.ar .cards-page .custom-next {
    left: -5px !important;
    right: auto !important;
}

.cards-page .swiper-button-next::after,
.cards-page .swiper-button-prev::after {
    display: none;
}


@media (max-width: 768px) {

    .cards-page .swiper .swiper-slide {
        padding-inline: 0px;
    }


    .cards-page .photo-section {
        display: flex;
        justify-content: center;
        align-items: center;

    }


    .cards-page .photo-section img {
        display: block;
        border-radius: 0px;
        width: 100%;
    }

    .cards-page .details-section {
        position: relative;
        margin-top: -30px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background-color: var(--sub-color);
        border-radius: 48px;
        padding: 40px;
    }


    .cards-page .details-section .header span {
        font-size: 20px;

    }

    .cards-page .details-section .description-section .description-header .text {
        font-size: 18px;
    }

    .cards-page .details-section .description-section .description {
        font-size: 14px;
    }

    .cards-page .colors-section .colors-headers .text {
        font-size: 16px;
    }



    .cards-page .custom-prev,
    .cards-page .custom-next {
        position: absolute;
        top: 68%;
        transform: translateY(-50%);
    }

    .cards-page .custom-prev {
        inset-inline-start: 0px;
    }

    .cards-page .custom-next {
        inset-inline-end: 0px;
    }

    .cards-page .custom-prev img,
    .cards-page .custom-next img {
        width: 70%;
        height: auto;
    }

    .cards-page .swiper-slide {
        padding-bottom: 0px !important;
    }

    .cards-page .part-1 .row {
        margin-top: 0px;
    }
}

/* ------------------------------- cart page ----------------------------- */
.cart-page .container-fluid {
    padding-inline: 14vw;
}

.cart-page .part-1.row {
    justify-content: space-between !important;
}

.cart-page .part-1 .box {
    background-color: var(--light-sub-color);
    border-radius: 30px;
    padding: 30px;

}

.cart-page .part-1 .box h3 {
    color: var(--dark-purple);
    font-weight: 600;
}

.cart-page .order .items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding-right: 10px;
}

.items::-webkit-scrollbar {
    width: 6px;
}

.items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.items::-webkit-scrollbar-thumb {
    background-color: #1e536d;
    border-radius: 4px;
    border: 2px solid var(--dark-color);
}

.items::-webkit-scrollbar-thumb:hover {
    background-color: #144156;
}

.cart-page .order .items .item {
    border: 1px solid var(--dark-color);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.cart-page .order .items .item .section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cart-page .order .items .item .image {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page .order .items .item img {
    height: 110px;
    border-radius: 10px;

}

.cart-page .order .items .item .details {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 10px;
}

.cart-page .order .items .item .details .name {
    font-size: 16px;
    color: var(--dark-purple);
    font-weight: 600;
}

.cart-page .order .items .item .details .item-price {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
}

.cart-page .order .items .item .details .item-price .text {
    font-size: 13px;
    color: var(--dark-purple);
    font-weight: 400;
}

.cart-page .quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--dark-purple)
}

.cart-page .quantity-selector {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 10px;
    height: 30px;
    font-weight: 700;
}

.cart-page .qty-btn {
    background: #8dbdcc;
    border: none;
    width: 35px;
    height: 100%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: 700;
}

.cart-page .qty-input {
    width: 30px;
    height: 100%;
    text-align: center;
    border: none;
    font-size: 16px;
    color: var(--dark-color);
    background-color: #8dbdcc;
}

.cart-page .coupon {
    display: flex;
    margin-top: 20px;
    width: 100%;
    border: 1px solid var(--dark-color);
    border-radius: 10px;
    overflow: hidden;/
}

.cart-page .coupon input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 18px;
    color: var(--dark-color);
}



.cart-page .form-control:focus {
    box-shadow: 0 0 8px rgba(30, 83, 109, 0.7);
}

.cart-page .coupon input::placeholder {
    color: var(--sub-color);
    font-size: 18px;
    font-weight: 600;
}

.cart-page .coupon button {
    padding: 10px 50px;
    background-color: var(--dark-color);
    color: var(--sub-color);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-page .coupon button:hover {
    background-color: var(--sup-dark-color);
}

.cart-page .count .subtotal,
.cart-page .count .delivery,
.cart-page .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--dark-color);
}

.cart-page .total .final-price .text {
    color: var(--dark-purple);
    font-size: 9px;
    display: block;
    font-weight: 600;
}

.cart-page .address .text-info .section {
    margin-bottom: 15px;
}

.cart-page .address label {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-page .address .text-info .required {
    color: var(--light-purple);
    font-size: 22px;
}

.cart-page .address .text-info input {
    background-color: transparent;
    border: 1px solid var(--dark-color);
    padding: 10px 15px;
    font-size: 18px;
}

.cart-page .address .text-info input::placeholder {
    color: var(--sub-color);
    font-size: 18px;
}



.cart-page .address .shipping .section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap
}

.cart-page .address .shipping {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
}

.cart-page .address .radio-circle {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--dark-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    margin-inline-end: 10px;
}


.cart-page .address .radio-circle:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--dark-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
}

.cart-page .address select {
    padding: 10px 15px;
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}


.cart-page .address select:hover {
    border-color: var(--dark-color);
}


.cart-page .address select:focus {
    outline: none;
    border-color: var(--dark-color);
    box-shadow: 0 0 0 3px rgba(30, 83, 109, 0.445);
}


.cart-page .address .gift {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-page .address .checkbox-style {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--dark-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}


.cart-page .address .checkbox-style:checked::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid var(--dark-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 1px;
    inset-inline-start: 5px;
}


.cart-page .address .checkbox-style:hover {
    border-color: var(--dark-color);
}


.cart-page .address .gift label {
    cursor: pointer;
    margin-bottom: 0;
    ;

}

.cart-page .order-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;

}

.cart-page .order-button button {
    font-size: 24px;
    padding-inline: 40px;
}


@media (max-width: 992px) {
    .cart-page .part-1 .order {
        margin-bottom: 40px;
    }

    .cart-page .part-1 .box {
        margin-inline: 10px;
        padding: 30px;
        padding-inline: 15px;
    }

    .cart-page .address .shipping .section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cards-page .custom-prev,
    .cards-page .custom-next {
        position: absolute;
        top: 75%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        z-index: 10;
        cursor: pointer;
    }

    .cart-page .order .items .item .details .name {
        font-size: 15px;

    }

    .cart-page .order .items .item .details .item-price {
        font-size: 15px;
    }

    .cart-page .quantity {
        font-size: 14px;
    }

    .cart-page .qty-btn {
        width: 25px;
        font-size: 17px;
    }

    .cart-page .order .items .item {
        padding: 4px;
        gap: 12px;
    }

    .cart-page .address label {
        font-size: 18px;
    }

    .cart-page .count .subtotal,
    .cart-page .count .delivery,
    .cart-page .total {

        font-size: 18px;

    }

    .cart-page .address .text-info .section {
        margin-bottom: 7px;
    }

    .cart-page .address .text-info input {
        height: 40px;
    }

    .cart-page .order-button button {
        font-size: 18px;
        padding-inline: 40px;
    }
}


@media (max-width: 576px) {

    /* option */
    .cart-page .order .items .item {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 20px;

    }
}


/* footer */

.footer {
    background-color: var(--dark-color);
    background-image: url("../images/background-footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px clamp(20px, 6vw, 130px);
    height: auto;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer .footer-header {
    color: var(--light-purple);
    font-size: clamp(19px, 3vw, 25px);
    margin-bottom: 15px;
}

.footer .section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .section .text {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--sub-color);
}

.footer .section .icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer .section .icons button {
    background: none;
    border: none;
    outline: none;
}

.footer .section .icons img {
    width: clamp(30px, 3vw, 50px);
}





@media (max-width: 768px) {
    .d-md-none {
        display: block;
    }

    .side-nav-mobile {
        z-index: 10;
        background-color: var(--main-color);
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 5px;
        padding-inline: 25px;
        height: 80px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    }

    .side-nav-mobile .items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .side-nav-mobile .items .nav-item img {
        height: 45px;
        width: 45px;
        margin-bottom: 7px;
    }

    .side-nav-mobile .items .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .side-nav-mobile .items .nav-item span {
        font-size: 11px;
        color: var(--dark-color);
    }

    .footer {
        padding-bottom: 90px;
    }

    .footer .section .icons {
        margin-top: 20px;
        margin-bottom: 10px;
    }


}

.reveal {
    display: block;
}

.highlighter {
    position: relative;
    display: inline-block;

}

.highlight-bg {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0.15em;
    width: 100%;
    height: 100%;
    background-color: #7f84be;
    z-index: -1;
    border-radius: 7px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s ease-out;
    transition-delay: 1s;
}

body.ar .highlight-bg {
    transform-origin: right;
}



/* animation  */
.reveal.active .highlight-bg {
    transform: scaleX(1);
}

.zoom-img {
    width: 200px;
    transition: transform 0.3s ease;
}

.zoom-img:hover {
    transform: scale(1.1);
}
