/* WordPress Shop Mail Plugin - Default Styles */

.wsmp-item {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wsmp-item.wsmp-style-default {
    max-width: 500px;
}

.wsmp-item.wsmp-style-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.wsmp-sale-badge {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.wsmp-item-image {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 3px;
    max-width: 100%;
}

.wsmp-item-image img {
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wsmp-item-image:hover img {
    transform: scale(1.05);
}

.wsmp-item-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.wsmp-categories {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wsmp-category {
    display: inline-block;
    background-color: #e8e8e8;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.wsmp-item-description {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.wsmp-price {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #27ae60;
}

.wsmp-price del {
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.wsmp-price ins {
    text-decoration: none;
}

.wsmp-item-link {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.wsmp-item-link:hover {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.wsmp-item-link:active {
    transform: translateY(0);
}

.wsmp-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
    margin: 10px 0;
}

/* Responsive design */
@media (max-width: 600px) {
    .wsmp-item {
        padding: 10px;
    }

    .wsmp-item-title {
        font-size: 16px;
    }

    .wsmp-price {
        font-size: 14px;
    }

    .wsmp-item-link {
        padding: 8px 16px;
        font-size: 14px;
    }

    .wsmp-item.wsmp-style-minimal {
        flex-direction: column;
        align-items: flex-start;
    }
}
