/* Shopee Affiliate Widget - Isolated Styles with Reset */
.spttlk-aff-widget-container {
    all: initial !important;
    display: block !important;
    background-color: #fffbf0 !important;
    border: 1px solid #e6d5a8 !important;
    border-radius: 10px !important;
    padding: 15px 8px !important;
    margin: 0px 0 !important;
    font-family: Arial, sans-serif !important;
    box-sizing: border-box !important;
    position: relative !important;
    width: auto !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
}

.spttlk-aff-widget-container *,
.spttlk-aff-widget-container *::before,
.spttlk-aff-widget-container *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

.spttlk-aff-widget-title {
    display: block !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #d4810e !important;
    text-align: center !important;
    margin-bottom: 0px !important;
    text-transform: uppercase !important;
    line-height: 1.5 !important;
}

.spttlk-aff-widget-container p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

.spttlk-aff-widget-container hr {
    border: none !important;
    height: 1px !important;
    background-color: #e6d5a8 !important;
    margin: 10px 0 !important;
}

.spttlk-aff-widget-container br {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.spttlk-aff-widget-slider-wrapper {
    position: relative !important;
    padding: 0 !important;
    display: block !important;
}

.spttlk-aff-widget-slider {
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
}

.spttlk-aff-widget-product {
    display: none !important;
    padding: 0px !important;
    position: relative !important;
    min-height: 120px !important;
    flex-shrink: 0 !important;
}

.spttlk-aff-widget-product.spttlk-aff-widget-active {
    display: flex !important;
    gap: 12px !important;
    flex: 1 !important;
}

.spttlk-aff-widget-product-image {
    flex-shrink: 0 !important;
    width: 120px !important;
    height: 120px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    background-color: #f5f5f5 !important;
    display: block !important;
}

.spttlk-aff-widget-product-image img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 5px !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.spttlk-aff-widget-product-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 10px !important;
}

.spttlk-aff-widget-product-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
    padding: 0 !important;
}

.spttlk-aff-widget-product-price {
    font-size: 14px !important;
    display: block !important;
    line-height: 1.5 !important;
}

.spttlk-aff-widget-label {
    color: #666 !important;
    font-weight: 500 !important;
    margin-right: 5px !important;
    display: inline !important;
}

.spttlk-aff-widget-sale-price {
    color: #ee4d2d !important;
    font-weight: bold !important;
    font-size: 16px !important;
    margin-right: 8px !important;
    display: inline !important;
}

.spttlk-aff-widget-old-price {
    color: #999 !important;
    text-decoration: line-through !important;
    font-size: 13px !important;
    display: inline !important;
}

.spttlk-aff-widget-product-link {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: block !important;
}

.spttlk-aff-widget-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
    flex-wrap: wrap !important;
}

.spttlk-aff-widget-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    border: none !important;
    flex-shrink: 0 !important;
    display: block !important;
    outline: none !important;
}

.spttlk-aff-widget-dot.spttlk-aff-widget-active {
    background: #ee4d2d !important;
    width: 24px !important;
    height: 8px !important;
    border-radius: 4px !important;
}

.spttlk-aff-widget-dot:hover {
    background: #ff6b45 !important;
}

/* Desktop - Hiển thị 2 sản phẩm cùng lúc */
@media (min-width: 601px) {
    .spttlk-aff-widget-slider {
        flex-wrap: nowrap !important;
    }
    
    .spttlk-aff-widget-product.spttlk-aff-widget-active {
        flex: 0 0 calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
    }
    
    .spttlk-aff-widget-product-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .spttlk-aff-widget-product-info {
        justify-content: flex-start !important;
        padding-top: 3px !important;
    }
    
    .spttlk-aff-widget-product-name {
        font-size: 14px !important;
        margin-top: 0 !important;
    }
    
    .spttlk-aff-widget-product-price {
        font-size: 13px !important;
    }
    
    .spttlk-aff-widget-sale-price {
        font-size: 15px !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .spttlk-aff-widget-product {
        flex-direction: column !important;
    }
    
    .spttlk-aff-widget-product-image {
        width: 100% !important;
        padding-top: 100% !important;
        height: 0 !important;
        position: relative !important;
        border-radius: 5px !important;
        overflow: hidden !important;
        background-color: #f5f5f5 !important;
    }
    
    .spttlk-aff-widget-product-image img {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 5px !important;
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Lớp phủ 2 tầng */
    .spttlk-aff-widget-product-image::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: calc(85px + 50px) !important;
        background: linear-gradient(
            to top, 
            rgba(255, 255, 255, 0.85) 0%, 
            rgba(255, 255, 255, 0.85) 85px, 
            rgba(255, 255, 255, 0) calc(85px + 50px)
        ) !important;
        pointer-events: none !important;
        z-index: 1 !important;
        border-radius: 5px !important;
        display: block !important;
    }
    
    .spttlk-aff-widget-product.spttlk-aff-widget-active {
        gap: 0 !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    .spttlk-aff-widget-product-info {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
        padding: 15px !important;
        gap: 8px !important;
        min-height: 85px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }
    
    .spttlk-aff-widget-product-name {
        color: #222 !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }
    
    .spttlk-aff-widget-product-price {
        font-size: 13px !important;
    }
    
    .spttlk-aff-widget-label {
        color: #555 !important;
        font-weight: 600 !important;
    }
    
    .spttlk-aff-widget-sale-price {
        font-size: 15px !important;
    }
    
    .spttlk-aff-widget-container {
        padding: 15px 6px !important;
    }
}

/* Force styles để chống override */
.spttlk-aff-widget-container a {
    text-decoration: none !important;
}

.spttlk-aff-widget-container button {
    background: #ccc !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.spttlk-aff-widget-container img {
    vertical-align: middle !important;
}
