/*
Theme Name: WP Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

.linked-products-wrapper .up-sells h2 { display: none; }
/* Card wrapper */
.single-upsell-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 22px;
    margin: 25px 0;
    border: 1px solid #e5e5e5;
    text-align: center;
}

/* Title */
.single-upsell-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Inner clickable block */
.single-upsell-inner {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    padding: 14px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.25s ease;
}

.single-upsell-inner:hover {
    transform: translateY(-4px);
    border-color: #111;
}

/* Image */
.single-upsell-thumb img {
    width: 90px;
    height: auto;
    border-radius: 10px;
}

/* Name */
.single-upsell-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

/* Price */
.single-upsell-price {
    font-size: 15px;
    color: #666;
}
