/*
Theme Name: Shoptimizer Child
Theme URI: https://yourwebsite.com
Description: Child theme for the Shoptimizer theme
Author: Omar
Author URI: https://yourwebsite.com
Template: shoptimizer
Version: 1.0
Text Domain: shoptimizer-child
*/

/* هنا تبدأ تكتب أي تعديلات CSS */



.coupon-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    max-width: 250px;
    position: relative;
}

.coupon-slider {
    display: flex;
    gap: 5px;
    width: max-content;
    scroll-snap-type: x mandatory;
    padding: 0;
}

/* ✅ كوبون بدون خلفية أو حدود */
.coupon-slider .wt-smart-coupon,
.coupon-slider .wt_sc_single_coupon {
    flex: 0 0 250px;
    width: 250px !important;
    height: 93px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
    scroll-snap-align: start;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}

/* ✅ موبايل */
@media (max-width: 480px) {
    .coupon-slider-wrapper {
        max-width: 380px;
    }

    .coupon-slider .wt-smart-coupon,
    .coupon-slider .wt_sc_single_coupon {
        width: 250px !important;
        height: 85px;
        font-size: 13px;
        padding: 0;
    }
}


/* عند الضغط على الكوبون */
.coupon-slider .wt-smart-coupon:active,
.coupon-slider .wt_sc_single_coupon:active {
    transform: scale(0.66); /* ينضغط شويه */
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}


.coupon-slider .wt-smart-coupon,
.coupon-slider .wt_sc_single_coupon {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}













/* ✅ الوان تطبيق كوبون الخصم*/
.woocommerce-notices-wrapper .woocommerce-message {
    background-color: #00be6f !important; /* خلفية خضراء فاتحة */
    border-left: 5px solid #ffffff !important; /* خط جانبي */
    padding: 12px 15px !important;
    color: #000000 !important; /* لون النص */
    font-weight: bold !important;
    font-size: 15px !important;
    border-radius: 4px !important;
    margin-bottom: 10px !important;
}

