/* Daily Sale Slider Modern Styles */
.daily-sale-slider {
    --slider-bg: #fff;
    --item-radius: 16px;
    --item-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    --item-gap: 1rem;
    --title-color: #222;
    --price-color: #e53935;
    --old-price-color: #888;
    --discount-bg: #e53935;
    --discount-color: #fff;
    --button-bg: #0073aa;
    --button-color: #fff;
    background: var(--slider-bg);
    border-radius: var(--item-radius);
    padding: 1.5rem;
    box-shadow: var(--item-shadow);
    overflow: hidden;
}

.daily-sale-slider .slider-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--title-color);
    margin-bottom: 1rem;
    text-align: right;
}

.daily-sale-slider .slider-track {
    display: flex;
    gap: var(--item-gap);
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.daily-sale-slider .slider-item {
    min-width: 180px;
    background: #f9f9f9;
    border-radius: var(--item-radius);
    border: 1px solid #eee;
    padding: 1rem;
    text-align: center;
    position: relative;
    flex: 0 0 auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s;
}

.daily-sale-slider .slider-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.daily-sale-slider .slider-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
}

.daily-sale-slider .slider-product-title {
    font-size: 1rem;
    margin: 0.5rem 0 0.3rem 0;
    min-height: 2.2em;
    color: #222;
    line-height: 1.3;
}

.daily-sale-slider .slider-price {
    color: var(--price-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1em;
}

.daily-sale-slider .slider-price .old-price {
    text-decoration: line-through;
    color: var(--old-price-color);
    font-size: 0.95em;
    margin-left: 8px;
}

.daily-sale-slider .discount-badge {
    background: var(--discount-bg);
    color: var(--discount-color);
    border-radius: 8px;
    padding: 0.2em 0.7em;
    font-size: 0.95em;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.daily-sale-slider .cw-countdown {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 0.2em;
    direction: ltr;
}

.daily-sale-slider .number-block {
    background: #222;
    color: #fff;
    border-radius: 6px;
    padding: 0.2em 0.6em;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 2px;
    min-width: 2ch;
    display: inline-block;
}

.daily-sale-slider .number-seperator {
    color: #222;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 2px;
}

.daily-sale-slider .slider-buy-btn.button {
    margin-top: 0.7rem;
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-color);
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
}

.daily-sale-slider .slider-buy-btn.button:hover {
    background: #005c8a;
}

/* Brand Name Styles */
.cw-brand-name {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
    text-align: right;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .cw-brand-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 600px) {
    .cw-brand-name {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 600px) {
    .daily-sale-slider {
        padding: 0.7rem;
    }

    .daily-sale-slider .slider-item {
        min-width: 140px;
        padding: 0.7rem;
    }

    .daily-sale-slider .slider-title {
        font-size: 1.1rem;
    }
}

.cw-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
}

.cw-brand-logo-wrapper,
.cw-brand-extra {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cw-brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

@media (max-width: 600px) {

    .cw-brand-logo-wrapper,
    .cw-brand-extra {
        width: 50px !important;
        height: 25px !important;
    }
}