/**
 * ShowStreamz Merch Drops Styles
 */

.showstreamz-merch-drop-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: slideInUp 0.4s ease;
}

.showstreamz-merch-drop-overlay.hidden {
    display: none;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.merch-drop-content {
    padding: 20px;
    position: relative;
}

.merch-drop-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.merch-drop-close:hover {
    color: #000;
}

.merch-drop-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.merch-drop-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.merch-drop-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.merch-drop-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.merch-drop-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.merch-drop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .showstreamz-merch-drop-overlay {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .merch-drop-content {
        padding: 15px;
    }

    .merch-drop-title {
        font-size: 18px;
    }

    .merch-drop-price {
        font-size: 20px;
    }
}
