.topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: linear-gradient(90deg, #0a2540, #0989ff);
    color: #fff;
    padding: 10px 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 20%);
}


@media (max-width: 768px) {

    .topbar {
        flex-wrap: wrap;
        margin-bottom: 9px;
        border-radius: 0;
    }
}

.time-wepper p {
    text-align: center;
}

.time-wepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;

    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    color: #fff;
    padding: 10px 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 20%);
    margin-top: 0PX;
}

.time-wepper__item {
    width: 85px;
    height: 85px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 6px;
    background-color: #0a2b4c;
}

.time-wepper__item h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 33px;
    line-height: 42px;
    text-align: center;
    text-transform: uppercase;
    color: var(--gotur-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
}

.time-wepper__item__text {
    padding-top: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    text-transform: uppercase;
    color: var(--gotur-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
    border-top: 1px solid rgba(230, 247, 252, 0.2);
    display: block;
}

.hero {
    height: auto;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-position: 50% 50%, 50% 50%;
    background-size: cover, cover;
    background-image: url(./blog_bg_1.png), linear-gradient(0deg, #EEEEEE, #DBE2EF);
    /* margin-bottom: 26px; */
}

.hero-right {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 24px;
}

.hero-right h1 {
    font-family: Cairo;
    color: #0a2744;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 11px;
    margin-top: 7px;
}

.discount h4 {
    font-family: Cairo;
    font-size: 32px;
    font-weight: 700;
    color: #0980ed;
}

.discount p {
    font-family: Cairo;
    color: #636669ab;
    font-size: 21px;
    font-weight: 500;
    text-decoration: line-through;
    margin: auto 11px;
}

.discount .percentage {
    font-size: 16px;
    border-style: solid;
    border-width: 0px;
    border-radius: 6px;
    color: #112d4e;
    background-color: #DBE2EF;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 7px;
    padding-left: 7px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
    letter-spacing: -0.6px;
}

.description_text p {
    font-family: Cairo;
    line-height: 160%;
    color: #52443acf;
    font-weight: 700;
    font-size: 18px;
    margin-top: 14px;
}

.order-now {
    font-family: Cairo;
    line-height: 170%;
    font-size: 16px;
    padding: 12px;
    color: #fff;
    background-color: #0a2743;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    width: 100%;
    /* animation-iteration-count: infinite; */
    /* animation-name: pulse; */
    /* animation-fill-mode: both; */
    /* animation-timing-function: ease-in-out; */
    /* animation-duration: 1000ms; */
    text-align: center;
    text-decoration: none;
    display: block;
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes fadeIn {
    0% {
        opacity: .01
    }

    to {
        opacity: 1
    }
}

.exist-amount {
    align-items: center;
    border-radius: 10px;
    padding: 9px;
    background-color: #dbe2ef;
    margin-bottom: 11px;
}

.exist-amount .left svg {
    animation-iteration-count: infinite;
    animation-duration: 1400ms;
    animation-name: heartBeat;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: auto 0px auto 3px;
    font-size: 20px;
    color: #ff9a8b;
}

.exist-amount .left p {
    line-height: 100%;
    /* font-family: Cairo; */
    color: #000;
    font-size: 17px;
    font-weight: 600;
    margin: auto 0px;
}

.exist-amount .line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-radius: 100px;
    width: 60%;
}

.exist-amount .line .l {
    width: 30%;
    background-color: #fbae2a;
    height: 3px;
}

.exist-amount .line .r {
    width: 70%;
    background-color: rgba(247, 196, 48, 0.35);
    height: 3px;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}


.features-content .item img {
    margin-bottom: 12px;
    width: auto;
    height: 50px;
    background-color: #dbe2ef;
    border-style: solid;
    border-color: var(--color-yellow-dark);
    border-width: 0px;
    padding: 8px;
    border-radius: 14px;
}

.features-content .item h6 {
    color: #393e46;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Cairo;
    font-size: 14px;
    line-height: 130%;
}


#features .content {
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 0px;
    border-radius: 14px;
    padding: 34px 40px 21px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 42%);
    max-width: 1454px;
    margin-right: auto;
    margin-left: auto;
    margin-top: -35px;
    margin-top: 28px;
}

#features .content .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
}

#features .content .item img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 18px;
    width: auto;
    background-color: #dbe2ef;
    border-style: solid;
    border-radius: 14px;
    border-color: #a6e3e9;
    border-width: 0px;
    height: 54px;
    padding: 8px;
}

#features .content .item h5 {
    color: rgb(72, 59, 54);
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

#features .content .item p {
    font-family: Cairo;
    font-weight: 400;
    color: rgb(72, 59, 54);
    line-height: 22.4px;
    text-align: center;
    font-size: 14px;
}

.gallery-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}



.swiper-thumbs {
    width: 120px;
    height: 493px;
    overflow: hidden;
}

.swiper-thumbs .swiper-slide {
    height: 115px !important;
    cursor: pointer;
    opacity: 0.5;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #519c95;
    border-radius: 9px;
}

.swiper-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.swiper-main {
    flex: 1;
    position: relative;
    border-radius: 14px;
    width: 100%;
    height: 500px;
}

.swiper-main img {
    width: 100%;
    height: 490px;
    border-radius: 11px;
    display: block;
    object-fit: contain;
    transform-origin: center center;
}

.swiper-main .swiper-slide {
    width: 100% !important;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
}

.see-more-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}


#static-section {
    padding-bottom: 18px;
    padding-right: 24px;
    padding-left: 24px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: 0;
    width: 100vw;
    z-index: 1000;
    bottom: 0;
}

#static-section .static {
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-style: solid;
    border-top-width: 1px;
    border-bottom-width: 0px;
    border-left-width: 1px;
    border-right-width: 1px;
    background-color: rgba(255, 255, 255, 1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 24px;
    z-index: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 18px;
    border-color: #a6e3e9;
    padding-top: 5px;
    padding-bottom: 0px;
}

#static-section .static .right {
    display: flex;
    padding-left: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


#static-section .static .left {
    width: 28%;
}

#static-section .static .right .r img {
    border-radius: 8px;
    box-shadow: 0px 0px 0px 6px rgba(251, 184, 46, 0.12);
    height: 64px;
    margin-left: 13px;
    width: 64px;
    min-width: 64px;
    margin-right: 18px;
}

#static-section .static .right .r {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.contact-page {
    background-color: rgb(250, 250, 250)
}

.contact-progressbar {
    width: 0;
    height: 5px;
    margin-bottom: 30px;
    background-color: var(--second-color);
    display: block;
    border-radius: 20px 20px 0 0;
}

.contact-form {
    padding: 1rem;
}

.input-box input[type="date"]:focus+label,
.input-box input[type="date"]:valid+label,
.input-box input[type="number"]:focus+label,
.input-box input[type="tel"]:focus+label,
.input-box input:not(:placeholder-shown)+label,
.input-box input[type="email"]:focus+label,
.input-box input[type="text"]:focus+label,
.input-box input[type="text"]:not(:placeholder-shown)+label,
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown)+label {
    left: 15px;
    top: -0.5rem;
    background-color: var(--white-color);
    font-size: 16px !important;
    color: var(--second-color);
    padding: 3px 5px;
    transition: 0.5 all ease-in-out;
    border-radius: 2px;
}

.input-box input[type="date"]:focus,
.input-box input[type="date"]:valid,
.input-box input[type="number"]:focus,
.input-box input[type="tel"]:focus,
.input-box input:not(:placeholder-shown),
.input-box input[type="email"]:focus,
.input-box input[type="text"]:focus,
.input-box input[type="text"]:not(:placeholder-shown),
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown) {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.input-box {
    position: relative;
}

.form-select {
    border: none;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 2px;
}

.input-box label {
    position: absolute;
    top: calc(100% - 30px);
    z-index: 20;
    left: 10px;
    text-transform: capitalize;
    font-size: 16px !important;
    font-weight: 500;
}

input {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-cta {
    margin-bottom: 20px;
}

.contact-box {
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.contact-sidebar {
    border-radius: 10px;
    height: 97%;
    background: var(--white-color);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 30px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    background: #eafaf6;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 18px;
    gap: 16px;
}

.contact-info-box .icon {
    font-size: 2rem;
    color: #1ec28b;
    background: #d1f5e6;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-title {
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 2px;
    color: var(--black-color);
}

.info-text {
    color: var(--black-color);
    font-size: 0.98rem;
}

.help-card {
    background: var(--white-color);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30, 194, 139, 0.07);
    padding: 22px 18px 16px 18px;
    margin-top: 18px;
    border: 1px solid #eee;
    /* box-shadow: var(--box-shadow); */
}

.form_bSo96 {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 4px;
}

.form_bSo96 a {
    color: #000;
}

/* .form-floating>label {
    right: 0 !important;
    left: auto;
} */

.btn__three {
    color: #142843;
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    overflow: hidden;
    padding: 8px 48px;
    position: relative;
    transition: all .5s ease;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid;
}

.theme-btn {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.tour-details-package-item,
.tour-details-deals-box {
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 27%);
}

.card_text {

    font-size: 22px;

    color: #092d4f;

    font-weight: 600;

    border-bottom: 2px solid #ccc;

    padding-bottom: 7px;
}

.right__box-price {

    border-radius: 20px;

    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 27%);

    padding: 22px;
}


.right__box-price_text {

    text-align: center;

    font-size: 22px;

    padding: 8px;
}


.footer-bar {
    z-index: 3;
    position: relative;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    text-align: center;
    color: #212529;
    padding: 15px;
    margin-bottom: 0;
}

.right__box-price_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.payment-box {

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.payment-option {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.payment-label {
    flex-grow: 1;
}

.payment-icons img {
    height: 30px;
    margin-left: 10px;
}

.instapay-link {
    color: #0073e6;
    margin-left: 10px;
    text-decoration: none;
}

.instapay-link:hover {
    text-decoration: underline;
}

.tp-checkout-payment-item label {
    font-size: 14px;
    position: relative;
    padding-left: 27px;
    font-weight: 500;
    color: #000;
}

label {
    display: inline-block;
}

.tp-checkout-payment-item label a {
    font-size: 14px;
    position: relative;
    padding-left: 27px;
    font-weight: 500;
    color: #000;
}

.tp-checkout-payment-item:not(:last-child) {
    margin-bottom: 10px;
}

.disclaimerPolicyContainer__XK18 {
    display: flex;
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
}

.disclaimerPolicyContainerStyle__KKAG {
    padding: .75rem .5rem .75rem 1rem;
    background: #eafbf7;
    border-radius: .5rem;
}

.cancellationPolicyContainer___3c8 {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    gap: .75rem;
    width: 100%;
}


.tp-product-details-variation-title {
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
}

.btn-input-size {
    margin: 0 10px 0 0;
    padding: 0;
    position: relative;
    font-size: 17px;
    width: 50px;
    height: 50px;
    z-index: 0;
}

.btn-input-size input {
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.btn-input-size span {
    position: absolute;
    z-index: 99999;
    text-align: center;
    line-height: 42px;
    color: #000;
    font-size: 14px;
    margin: auto;
    height: 42px;
    left: 10px;
    width: calc(100% - 12px);
    border-radius: 10px;
    border: 1px solid #000;
}

.tp-product-details-variation-list,
.tp-product-details-variation-item,
.tp-product-details-action-wrapper {
    display: flex;
}

.counter-controls {
    display: flex;
    align-items: center;
    border-radius: 999px;
    gap: 6px;
}

button.decrease-btn {
    background: #fff;
    box-shadow: none;
    border: 2px solid #ddd;
    height: 38px;
    width: 38px;
    border-radius: 20px;
    color: #1a2b49;
    font-size: 14px;
}

input.quantity-input {
    width: 70px;
    text-align: center;
    height: 35px;
}


button.increase-btn {
    background: #fff;
    box-shadow: none;
    border: 2px solid #ddd;
    height: 38px;
    width: 38px;
    border-radius: 20px;
    color: #1a2b49;
    font-size: 13px;
}








.tp-product-details-action-wrapper input[type=number]::-webkit-inner-spin-button,
.tp-product-details-action-wrapper input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tp-product-details-action-wrapper input[type=number] {
    -moz-appearance: textfield;
}


/* Responsive styles */
@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .hero-right {
        margin-top: -82px;
    }

    #features .content {
        margin-top: 0;
        padding: 34px 3px 21px;
    }

    /* .gallery-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }

    .swiper-thumbs {
        width: 100%;
        height: auto;
    } */

    .swiper-thumbs .swiper-slide {
        height: auto;
        /* display: none; */
    }

    .swiper-thumbs .swiper-wrapper {
        flex-direction: row !important;
    }

    .swiper-thumbs img {
        height: 80px;
        width: auto;
    }

    .swiper-thumbs {
        order: 1;
    }

    .swiper-main {
        order: 2;
    }

    .swiper-main img {
        width: 100%;
        height: 254px;
        border-radius: 10px;
    }

    .swiper-main .swiper-slide img {
        width: 100%;
        height: 281px !important;
        margin-bottom: 23px;
    }

}

@media (max-width: 768px) {




    .contact-box {
        margin: 14px auto;
    }

    #static-section .gap-4 {
        gap: 0 !important;
    }

    #static-section .static {
        flex-wrap: wrap;
    }

    #static-section .static .left {
        width: 100%;
    }


    #static-section {
        padding-bottom: 0;
    }

    .contact-page {
        background-color: rgb(250, 250, 250);
        margin-bottom: 71px !important;
    }



    .right__box-price {
        padding: 5px;
    }






}

@media (max-width: 500px) {
    .time-wepper {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 55px;
    }

    .time-wepper__item {
        flex: 45%;
        width: 50%;
    }
}


@media (min-width: 1024px) and (max-width: 1400px) {
    .hero {
        height: 91vh;
    }
}



#sizes-container select {
    width: 155px;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
}

#sizes-container {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.file-upload-box {
    display: none;
    margin-top: 1px;
    padding: 15px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    background-color: #fafafa;
    transition: all 0.3s ease;
    margin-bottom: 11px;
}

.file-upload-box.active {
    display: block;
}

.file-upload-box label {
    font-weight: bold;
    color: #444;
    display: block;
    margin-bottom: 10px;
}

.file-upload-box input[type="file"] {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
}



#contact-form {
    margin-bottom: 83px;
}





/* #exampleModalToggle .modal-body {
    overflow: hidden;
} */
 .modal-body {
  overflow: visible !important;
}


#exampleModalToggle .modal-body img {
    width: 100%;
}

@media (min-width: 576px) {
    #exampleModalToggle .modal-dialog {
        max-width: 734px;
        margin-right: auto;
        margin-left: auto;
    }

    /* .container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 87%;
} */
    .time-wepper {
        padding: 35px 16px;
    }

    .tp-product-details-variation-list,
    .tp-product-details-variation-item,
    .tp-product-details-action-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #features .content .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .contact-form {
        padding: 0;
    }

    #contact-form {
        margin-bottom: 137px;
    }

    .contact-box {
        margin: 14px auto;
        padding-bottom: 20px;
    }

    .tp-product-details-variation-list,
    .tp-product-details-variation-item,
    .tp-product-details-action-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .total-easy-order sup {
        padding-left: 6px;
    }
}


.Modal_icon {
    position: fixed;
    z-index: 888;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 92px;
    height: 65px;
    background: #0989ff;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 26px;
    margin: 0 0 0 10px;
    font-weight: 500;
}






.tp-product-details-action-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 22px;
    align-items: center;
}

.tp-product-details-action-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}

.modal-dialog-centered {
    min-height: calc(100% - 11rem);
}

@media (max-width: 768px) {
    .swiper-thumbs {
        height: auto;
        width: 100%;
        order: 2;
        /* يخليه تحت الصورة الرئيسية */
    }

    .swiper-main {
        order: 1;
    }
}

.gallery-wrapper {
    display: flex;
    gap: 20px;
}

.menu_mobile_fixed {
    display: none;
}

@media (max-width: 768px) {
    .menu_mobile_fixed {
        padding-bottom: 8px;
        position: fixed;
        bottom: 0;
        background: #fff;
        left: 0;
        text-align: center;
        box-shadow: 0 0 10px #7a7575;
        z-index: 999999;
        display: block;
        top: 0;
        bottom: auto;
        right: 0;
    }

    .menu_mobile_fixed a {
        display: flex;
        width: 86%;
        justify-content: center;
    }



    .gallery-wrapper {
        flex-direction: column;
    }

    .swiper-thumbs {
        width: 100%;
        height: auto;
        margin-top: 10px;
        order: 2;
        /* تخليها تحت */
    }

    .gallery-wrapper {
        display: flex;
        gap: 0;
    }

    .swiper-main .swiper-slide img {
        width: 100%;
        height: 281px !important;
        margin-bottom: 0;
    }

    .swiper-thumbs {
        width: 100%;
        height: 161px;
        margin-top: 0;
        order: 2;
    }

    #static-section .static {
        display: none !important;
    }

    .swiper-thumbs .swiper-slide-thumb-active {
        opacity: 1;
        border: 2px solid #519c95;
        overflow: hidden;
        border-radius: 9px;
        height: 87px !important;
    }

    .swiper-thumbs img {
        height: 80px;
        width: 100%;
    }

    #sizes-container select {
        width: 147px;
    }

}

@media (max-width: 768px) {
    #sizes-container select {
        width: 144px;
    }
}

.zoom-wrapper {
    position: relative;
    overflow: hidden;
}

.zoom-img {
    width: 100%;
    display: block;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.lens {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: none;
    pointer-events: none;
}

.zoom-wrapper .zoom-img {
    transition: transform 0.25s ease;
    touch-action: none;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: 485px;
}

@media (max-width: 768px) {
    .swiper-main .swiper-slide img {
        margin-bottom: 13px;
    }
}

/* .zoom-wrapper {
  position: relative;
  overflow: hidden;
}
.zoom-img {
  transition: transform 0.2s ease;
  width: 100%;
  display: block;
}
.lens {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.3);
  border: 1px solid #ccc;
  border-radius: 50%;
  display: none;
  pointer-events: none;
} */

.zoom-wrapper {
    position: relative;
    overflow: hidden;
}

.zoom-img {
    transition: transform 0.2s ease;
    width: 100%;
    display: block;
}

.lens {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #ccc;
    border-radius: 50%;
    display: none;
    pointer-events: none;
    transition: left 0.05s, top 0.05s;
}

.menu_mobile_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    display: block;

}

.card__check {
    display: none;
}


@media (max-width: 500px) {
    .time-wepper__item {
        flex: 9%;
        width: 31%;
    }

    .card__check {
        margin-top: 34px;
        display: block;
    }
}

.tour-gallery {
    position: relative;
}

.swiper-thumbs {
    width: 100px;
    float: left;
    margin-right: 15px;
    height: 450px;
}

.swiper-main {
    width: calc(100% - 120px);
    float: left;
}

.swiper-slide img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .swiper-thumbs {
        display: none;
    }

    .swiper-main {
        width: 100%;
    }
}

.tour-gallery {
    position: relative;
}

.gallery-wrapper {
    display: flex;
    gap: 10px;
}

.swiper-thumbs {
    width: 100px;
    height: 500px;
}

.swiper-thumbs img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.swiper-thumbs .swiper-slide-thumb-active img {
    opacity: 1;
    border: 2px solid #000;
}

.swiper-main {
    width: calc(100% - 120px);
    height: 500px;
}

.swiper-main img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    cursor: zoom-in;
}


@media (max-width: 768px) {
    .swiper-main {
        width: 100%;
        width: 100%;
        margin-bottom: 51px;
    }
}

/* ===================== Zoom on Hover ===================== */
.swiper-main img {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.swiper-main img:hover {
    transform: scale(1.1);
}

/* ===================== PhotoSwipe Buttons Centered ===================== */
.pswp__button--arrow--prev,
.pswp__button--arrow--next,
.pswp__button--close {
    position: fixed !important;
    bottom: 30px !important;
    transform: translateY(0) !important;
    background: white !important;
    border-radius: 10px !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.95 !important;
}

.pswp__button--close {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.pswp__button--arrow--prev {
    left: calc(50% - 112px) !important;
    bottom: 29px !important;
    /* left: 50% !important; */
    transform: translateX(-50%) !important;
    top: auto !important;
}

.pswp__button--arrow--next {
    left: calc(50% + 90px) !important;
    top: auto;
    left: calc(50% - 112px) !important;
    bottom: 29px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
    right: 42%;
}

.pswp__icn {
    color: #000 !important;
    width: 22px !important;
    height: 22px !important;
}

.pswp__bg {
    transition: opacity 0.4s ease !important;
}

.pswp--open .pswp__bg {
    opacity: 1 !important;
}

.pswp__img {
    transition: transform 0.5s ease, opacity 0.5s ease !important;
}

/* Container للصور */
.gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

/* الصور */
.gallery-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    /* سرعة التحريك */
}

/* الأسهم */
.gallery-arrow {
    position: absolute;
    bottom: 10px;
    /* تحت الصورة */
    transform: translateY(0);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.gallery-arrow.left {
    left: 20px;
}

.gallery-arrow.right {
    right: 20px;
}

/* Optional: animation for slide effect */
.slide {
    transition: transform 0.7s ease;
}

.pswp__button--arrow .pswp__icn {
    top: 83%;
}

.zoom-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.zoom-wrapper:hover img {
    transform: scale(1.1);
}

.zoom-wrapper.zoomed img {
    transform: scale(1.1);
    transition: transform 0.7s ease;
    cursor: zoom-out;
}

.tp-color-variation-tootltip.active {
    border: 2px solid #007bff;
}

.btn-input-size span {
    width: calc(100% - 10px);
}


.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -5px;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.swiper-main {
    padding-bottom: 265px;
}


@media (max-width: 768px) {
    .pswp__button--close {
        left: 50% !important;
        transform: translateX(-50%) !important;
        transform: translatey(-312%) !important;
    }

    .pswp__button--arrow--prev {
        left: calc(50% - 112px) !important;
        bottom: 165px !important;
    }

    .pswp__button--arrow--next {
        left: calc(50% + 90px) !important;
        top: auto;
        left: calc(50% - 112px) !important;
        bottom: 169px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: auto !important;
        right: 6%;
    }

    .swiper-main {
        padding-bottom: 8px;
    }

}

.pswp__button--arrow--prev {
    left: 42% !important;
}

.pswp__button--arrow--next {
    right: 40%;
}

.pswp__button--arrow .pswp__icn {
    top: 93%;
    left: 31%;
}

.pswp__icn {
    top: 14px;
    left: 11px;
}



.swiper-main img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.pswp__img {
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  transform: none !important;
}

.pswp__content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}




@media (max-width: 768px) {
    .pswp__button--arrow--next {
        right: 14%;
    }

    .pswp__button--arrow--prev {
        left: 28% !important;
        bottom: 171px !important;
    }

    .pswp__button--close {
        left: 44% !important;
    }

    .btn-input-size {
        float: right;
        margin: 0;
    }

    .tp-product-details-variation-item {
        display: flex;
        flex-wrap: wrap;
    }

    .swiper-main .swiper-slide img {
        width: 100%;
        height: 395px !important;
    }

    .tour-gallery{

        margin-top: -38px ;
    }

}

.pswp__img, .pswp__zoom-wrap {

    width: 100%;
    height: 100%;
}

@media only screen
    and (max-device-width: 480px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: portrait) {

  .swiper-main {
    padding-bottom: 0 !important;
  }

  .swiper-main .swiper-slide img {
    margin-bottom: 0 !important;
    display: block;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    margin-top: -7px !important;
    bottom: 64px !important;
  }
}

@media only screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -8px !important;
  }

}

.pswp__img {
  transform-origin: center center !important;
  transition: transform 0.25s ease !important;
}


.hero_gallery .swiper-horizontal {
    touch-action: pan-y;
    padding-bottom: 28px !important;
}


@media only screen and (max-width: 768px) {
    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: -6px !important;
    }
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -12px;
}


 .hero_gallery  .swiper-pagination-bullet {
  width: 20px;
  height: 10px;
  display: inline-block;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
}


 .hero_gallery  .swiper-pagination-bullet-active {
  background:#0a2743;
  width: 21px;
  height: 10px;
}


.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}


@media (max-width: 768px) {
    .heroprice--box.stickyTour {
        position: fixed;
        top: 0;
        left: 0;
        bottom: auto;
        width: 100%;
        background: #fff;
        padding: 2px 12px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 9999;
        display: flex;
        justify-content: center;
      transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .heroprice--box.stickyTour.show {
        transform: translateY(0);
    }
}


@media (min-width: 769px) {
    .heroprice--box.stickyTour {
        display: none !important;
    }
}




@supports (-webkit-touch-callout: none) {
  @media only screen
    and (max-device-width: 430px)
    and (-webkit-min-device-pixel-ratio: 2)
    and (orientation: portrait) {
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        margin-top: -7px !important;
        bottom: 70px !important;
    }
    .hero-right {
        margin-top: -155px;
    }
    .tour-gallery {
      margin-top: -35px !important;
    }
    .hero_gallery .swiper-horizontal {
        touch-action: pan-y;
        padding-bottom: 17px !important;
    }
  }
}


.size-selects {
  direction: rtl; /* خلي النصوص بالعربي */
  text-align: right;
}

.size-selects::-ms-expand {
  display: none; /* لإخفاء السهم في متصفح Edge القديم */
}

.size-selects {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>") no-repeat left 0.75rem center;
  background-size: 10px;
  padding-left: 2rem; /* مساحة للسهم من الشمال */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}




 [dir="ltr"] .swiper-free-mode>.swiper-wrapper {
    flex-direction: column !important;
}
 [dir="ltr"]  .swiper-thumbs .swiper-slide {
    width: auto !important;
    margin-bottom: 6px;
}
