:root {
    --bs-pagination-active-bg: #5DB0A4 !important;
    --bs-pagination-active-border-color: #5DB0A4 !important;
}

dl, ol, ul {
    margin-bottom: 0 !important;
}

ol, ul {
    padding: 0 !important;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10900;
    display: none;
    align-items: center;
    justify-content: center;
}

#loading-cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1090;
    display: none;
    align-items: center;
    justify-content: center;
}

[dir=rtl] .form-control {
    direction: rtl !important;
}

.iti input {
    direction: ltr !important;
}

.iti {
    display: block !important;
    width: 100% !important;
}


.iti input {
    width: 100% !important;
    direction: ltr;
}

[dir="rtl"] .iti {
    text-align: right !important;
}

[dir="rtl"] .iti__flag-container {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .iti__selected-flag {
    padding: 0 8px 0 0 !important;
}

[dir="rtl"] .iti input {
    text-align: right !important;
    direction: ltr !important;
}

[dir="rtl"] .iti__country-list {
    left: 0 !important;
    margin-top: 5px !important;
}

.iti__country-list {
    direction: ltr;
    text-align: left;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin: 0 6px !important;
}

.iti__flag {
    border-radius: 2px
}


.btn-primary {
    color: #fff !important;
    background-color: #5DB0A4 !important;
    border-color: #5DB0A4 !important;
}

.cards-container .no-products {
    grid-column: 1 / -1;
}

.col_main_prodect .cards-container.wish_list {
    grid-template-columns: repeat(4, 1fr) !important;
}


@media(max-width:991px) {
    .col_main_prodect .cards-container.wish_list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.loyalty-points-card {
    background: #5ab1a8;
    border-radius: 10px;
    border: none
}

body {
    direction: rtl !important;
    font-family: 'CAREEM', sans-serif;
}

/* ========== Search Results Styles ========== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.search-container {
    position: relative;
}

.search-results-box {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-results-box::-webkit-scrollbar {
    width: 6px;
}

.search-results-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results-box::-webkit-scrollbar-thumb {
    background: #5DB0A4;
    border-radius: 10px;
}

.search-results-content {
    padding: 20px;
}

.search-section {
    margin-bottom: 25px;
}

.search-section:last-child {
    margin-bottom: 0;
}

.search-section-header {
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #5DB0A4;
}

.search-section-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products List (Vertical) */
.search-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.search-product-item:hover {
    background: #e9ecef;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(93, 176, 164, 0.15);
}

[dir="rtl"] .search-product-item:hover {
    transform: translateX(5px);
}

.search-product-item span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.search-product-icon {
    width: 20px;
    height: 20px;
    color: #5DB0A4;
    flex-shrink: 0;
}

/* Grid Items (Categories, Brands) */
.search-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.search-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.search-grid-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(93, 176, 164, 0.2);
}

.search-grid-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.search-grid-item:hover img {
    border-color: #5DB0A4;
}

.search-grid-item span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.search-no-results p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Loader Styles */
.search-loader {
    display: inline-block;
    color: #5DB0A4;
}

.short .cart_button_fixed img {
    width: 80px !important;
    height: 80px !important;
}

.short .price-container {
    padding-bottom: 14px !important;
}

.short .decripton p a {
    height: 40px;
}

.short .decripton {
    padding: 0 !important;
}

.short .main_lin_pro {
    padding: 0 !important;
}

.slick-track {
    margin: 0 !important;
}

.order-tracking-timeline {
    padding: 20px 0;
}

.order-tracking-timeline .position-relative {
    padding-top: 30px;
}

.progress-line {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e9ecef;
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 45px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    z-index: 2;
    transition: width 0.5s ease;
}

.tracking-step {
    position: relative;
    z-index: 3;
    text-align: center;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tracking-step.completed .step-circle {
    background-color: #28a745;
    color: #fff;
    border-color: #fff;
}

.tracking-step.current .step-circle {
    background-color: #007bff;
    color: #fff;
    border-color: #fff;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.step-label strong {
    font-size: 14px;
    color: #495057;
}

.tracking-step.completed .step-label strong {
    color: #28a745;
}

.tracking-step.current .step-label strong {
    color: #007bff;
}

.step-label small {
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .step-label strong {
        font-size: 11px;
    }

    .step-label small {
        font-size: 10px;
    }

    .progress-line,
    .progress-line-fill {
        top: 45px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-results-box {
        max-height: 400px;
    }

    .search-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .search-grid-item {
        padding: 10px 8px;
    }

    .search-grid-item img {
        width: 50px;
        height: 50px;
    }

    .search-grid-item span {
        font-size: 12px;
    }
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float {
    right: 30px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.4));
    transition: all 0.3s ease;
}

.whatsapp-float:hover img {
    filter: drop-shadow(0 6px 12px rgba(18, 140, 126, 0.5));
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .whatsapp-float {
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}



.share-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

.share-modal-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
}

.share-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.share-modal-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.share-close {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

.share-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f0f0f0;
    text-decoration: none;
    transition: 0.3s;
}

.share-btn svg {
    width: 26px;
    height: 26px;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn i {
    font-size: 26px;
}

.share-btn.facebook i {
    color: #3b5998;
}

.share-btn.twitter i {
    color: #1da1f2;
}

.share-btn.whatsapp i {
    color: #25d366;
}

.share-btn.telegram i {
    color: #0088cc;
}

.share-btn.copy i {
    color: #6c757d;
}

.modal-backdrop {
    z-index: 999999 !important;
}

.modal {
    z-index: 9999999 !important;
}



@media(min-width:1600px) {
    .order-card-content {
        gap: 3rem !important;
    }
}

.order-card-content {
    display: grid;
    grid-template-columns: 100px 0fr 0fr 0fr 0fr;
    align-items: center;
    gap: 1rem;
}

.order-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100px;
    height: 100px;
}

.order-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.order-card:hover .order-image {
    transform: scale(1.1);
}

.order-info {
    min-width: 200px;
}

.order-reference {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.order-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-date svg {
    width: 16px;
    height: 16px;
}

.order-total-container {
    text-align: center;
    min-width: 120px;
}

.order-total-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.order-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

/* Status Badge */
.status-badge-wrapper {
    text-align: center;
    min-width: 120px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 100px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .tab_order {
        display: none !important;
    }

    .orders-title {
        font-size: 1.20rem;
        padding: 0 20px;
    }

    .order-card {
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .order-reference {
        font-size: 15px;
    }

    .order-date {
        font-size: 11px;
    }

    .order-card-content {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .order-image-container {
        width: 80px;
        height: 80px;
    }

    .order-info {
        grid-column: 2;
    }

    .order-total-container {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 0.5rem;
    }

    .status-badge-wrapper {
        grid-column: 1 / -1;
        text-align: left;
    }

    .action-buttons {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.5rem;
    }

    .btn-action {
        flex: 1;
        min-width: 100px;
    }

    .order-total {
        font-size: 1.1rem;
    }

    .btn-secondary {
        width: 100% !important;
    }
}

.footer-two-columns {
    display: contents;
}





.thumbnail-item {
    cursor: pointer !important;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    border-radius: 8px;
    display: block;
    overflow: hidden;
    position: relative;
}

.thumbnail-item:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.thumbnail-item.active {
    opacity: 1 !important;
    border-color: #007bff !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.thumbnail-slider .slick-slide {
    padding: 0 5px;
}

.thumbnail-slider {
    cursor: pointer;
}

.slide-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    cursor: zoom-in;
    width: 100%;
    height: auto;
}

.slide-item.zoomed {
    cursor: move !important;
}

.slide-item.zoomed img {
    transform: scale(2.5) !important;
}

.slide-item img {
    transition: transform 0.1s ease-out;
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transform-origin: center center;
}

.thumbnail-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    pointer-events: none;
}

.slide-item.zoomed {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.main-slider .slick-list,
.main-slider .slick-track {
    cursor: zoom-in;
}

.main-slider .slick-current .slide-item.zoomed~*,
.main-slider .slick-current.zoomed {
    cursor: move !important;
}


.main_link_list {
    display: contents;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.subscription-container {
    order: 1;
}

.social-icons {
    order: 2;
}

@media (max-width: 991px) {
    .main_link_list {
        display: flex !important;
    }

    .footer .footer-section ul {
        padding-top: 10px !important;
    }

    .footer-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .social-icons {
        order: -1;
        margin-bottom: 20px;
    }

    .subscription-container {
        order: 0;
        width: 100%;
        padding: 0 20px;
    }

    .footer .description {
        text-align: center !important;
    }
}


.order-card {
    margin-bottom: 10px;
}

.order-card .row {
    margin-left: 0;
    margin-right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.order-card .row>div {
    padding-top: 10px;
    padding-bottom: 10px;
}

.order-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-reference {
    font-weight: 600;
    font-size: 14px;
}

.order-date {
    font-size: 12px;
    margin: 0;
}

.order-date svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}


@media (max-width: 991px) {
    .main_slider_row_detels .grid_main_slider_detels_main {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .main_slider_row_detels .slick-list {
        padding-right: 0 !important;
    }

    .main_slider_row_detels {
        padding: 20px 0;
    }

    .main_slider_row_detels .slider-container {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .main_slider_row_detels .main-slider {
        margin-bottom: 15px;
    }

    .main_slider_row_detels .main-slider .slide-item {
        height: 350px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
    }

    .main_slider_row_detels .main-slider .slide-item img {
        max-height: 330px;
        max-width: 100%;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
        margin: 0 auto;
    }

    .main_slider_row_detels .d-flex.align-items-center.justify-content-center.position-relative {
        padding: 0 10px;
        margin-top: 15px;
    }

    .main_slider_row_detels .navigation-container {
        width: 100%;
    }

    .main_slider_row_detels .thumbnail-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .main_slider_row_detels .thumbnail-slider {
        display: flex;
        gap: 8px;
    }

    .main_slider_row_detels .thumbnail-slider .thumbnail-item {
        height: 70px !important;
        width: 70px !important;
        min-width: 70px;
        border: 2px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .main_slider_row_detels .thumbnail-slider .thumbnail-item.active {
        border-color: #ff6b35;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
        transform: scale(1.05);
    }

    .main_slider_row_detels .thumbnail-slider .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ========== Navigation Buttons ========== */
    .main_slider_row_detels .nav-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        padding: 10px !important;
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        transition: all 0.3s ease;
    }

    .main_slider_row_detels .nav-btn:active {
        transform: scale(0.95);
        background: #f5f5f5;
    }

    .main_slider_row_detels .nav-btn img {
        width: 38px !important;
        height: 38px !important;
        object-fit: contain;
    }

    .main_slider_row_detels .prev-btn,
    .next-btn {
        flex-shrink: 0;
    }

    /* ========== Action Buttons (Heart & Share) ========== */
    .main_slider_row_detels .action-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin: 15px 0;
        padding: 0 15px;
    }

    .main_slider_row_detels .action-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #e5e5e5;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .main_slider_row_detels .action-btn:active {
        transform: scale(0.95);
    }

    .main_slider_row_detels .share-container {
        position: relative;
    }

    .main_slider_row_detels .share-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 10px;
        display: flex;
        gap: 10px;
        z-index: 100;
    }

    .main_slider_row_detels .share-option {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
    }

    /* ========== Product Info Section ========== */
    .main_slider_row_detels .col_slider_titel {
        padding: 0 15px;
    }

    .main_slider_row_detels .main_lin_star {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }

    .main_slider_row_detels .main_title_star_lin_slider h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .main_slider_row_detels .main_pric_star {
        margin-bottom: 20px;
    }

    .main_slider_row_detels .main_pric_star h4 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .main_slider_row_detels .main_pric_star h5 {
        font-size: 16px;
    }

    /* ========== Product Details Grid ========== */
    .main_slider_row_detels .main_lin_footer_main {
        margin-bottom: 20px;
    }


    .main_slider_row_detels .main_lin_label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

    .main_slider_row_detels .main_lin_label p {
        margin-bottom: 0 !important;
    }

    /* ========== Quantity Controls ========== */
    .main_slider_row_detels .main_btn_slider {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .main_slider_row_detels .qty-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 12px;
    }

    .main_slider_row_detels .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: white;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .main_slider_row_detels .qty-btn:active {
        transform: scale(0.95);
        background: #f0f0f0;
    }

    .main_slider_row_detels .qty-display {
        font-size: 20px;
        font-weight: 600;
        min-width: 40px;
        text-align: center;
    }

    /* ========== Add to Cart & Buy Now Buttons ========== */
    .main_slider_row_detels .product-add-and-buy-section {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .main_slider_row_detels .add_cart_btn,
    .buy_now_btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 52px;
    }

    .main_slider_row_detels .add_cart_btn img {
        width: 20px !important;
        height: 20px;
    }

    /* ========== Bundle Products ========== */
    .main_slider_row_detels .row_slider_detels {
        margin: 20px 0;
    }

    .main_slider_row_detels .row_slider_detels .col-md-4 {
        width: 100%;
        padding: 0 8px;
        margin-bottom: 15px;
    }

    .main_slider_row_detels .offer_main {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
        margin: 15px 0;
    }

    .main_slider_row_detels .main-slider .slide-item {
        cursor: default !important;
    }

    .main_slider_row_detels .main-slider .slide-item.zoomed img {
        transform: none !important;
    }
}

@media (max-width: 480px) {

    .main_slider_row_detels .main-slider .slide-item {
        height: 280px !important;
    }

    .main_slider_row_detels .main-slider .slide-item img {
        max-height: 260px;
    }

    .main_slider_row_detels .thumbnail-slider .thumbnail-item {
        height: 80px !important;
        width: 85px !important;
        min-width: 60px;
    }

    .main_slider_row_detels .nav-btn {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px;
    }

    .main_slider_row_detels .nav-btn img {
        width: 36px !important;
        height: 36px !important;
    }

    .main_slider_row_detels .action-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .main_slider_row_detels .main_title_star_lin_slider h2 {
        font-size: 20px;
    }

    .main_slider_row_detels .main_pric_star h4 {
        font-size: 24px;
    }

    .main_slider_row_detels .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .main_slider_row_detels .qty-display {
        font-size: 18px;
        min-width: 35px;
    }

    .main_slider_row_detels .add_cart_btn,
    .buy_now_btn {
        padding: 12px 16px !important;
        font-size: 15px !important;
        min-height: 48px;
    }
}

@media (max-width: 375px) {

    .main_slider_row_detels .thumbnail-slider .thumbnail-item {
        height: 55px !important;
        width: 55px !important;
        min-width: 55px;
    }

    .main_slider_row_detels .main_title_star_lin_slider h2 {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .logo_col {
        flex: 0 0 17%;
        max-width: 17%;
    }

    .search_col {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .icon_col {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .icon_col .d-flex {
        flex-wrap: nowrap;
        gap: 0.75rem !important;
    }

    .icon_col .icon-wrapper img,
    .icon_col .header-cart-icon img,
    .icon_col .topbar-link-wrapper img {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1200px) {
    .logo_col {
        flex: 0 0 18%;
        max-width: 18%;
    }

    .search_col {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .icon_col {
        flex: 0 0 24%;
        max-width: 24%;
    }

    .icon_col .d-flex {
        gap: 1rem !important;
    }

    .icon_col .icon-wrapper img,
    .icon_col .header-cart-icon img,
    .icon_col .topbar-link-wrapper img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767px) {
    .header-top .row {
        flex-wrap: wrap;
    }

    .logo_col {
        order: 1;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .icon_col {
        order: 2;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .search_col {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .icon_col .d-flex {
        gap: 0.5rem !important;
    }
}
