/**
 * Inlayer Upsell Styles
 */

.pc-inlayer-upsell {
    margin: 24px 0;
    padding: 20px;
    background: #FDFAF5;
    border: 1px solid #E5E8E0;
    border-radius: 12px;
}

.pc-inlayer-upsell__header {
    margin-bottom: 16px;
}

.pc-inlayer-upsell__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #2D5A3D;
    margin: 0;
}

.pc-inlayer-upsell__title svg {
    color: #2D5A3D;
    flex-shrink: 0;
}

.pc-inlayer-upsell__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product image in upsell */
.pc-inlayer-upsell__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.pc-inlayer-upsell__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product name */
.pc-inlayer-upsell__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a3a1a;
    margin-bottom: 4px;
}

.pc-inlayer-upsell__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.pc-inlayer-upsell__size {
    font-size: 14px;
    font-weight: 500;
    color: #5C5347;
}

.pc-inlayer-upsell__price {
    font-size: 18px;
    font-weight: 700;
    color: #2D5A3D;
}

.pc-inlayer-upsell__instructions {
    font-size: 14px;
    color: #5C5347;
    line-height: 1.6;
}

.pc-inlayer-upsell__instructions p {
    margin: 4px 0;
}

.pc-inlayer-upsell__button {
    width: 100%;
    padding: 14px 24px;
    background: #2D5A3D;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pc-inlayer-upsell__button:hover {
    background: #3d7a52;
}

.pc-inlayer-upsell--no-match {
    background: #fff9e6;
    border-color: #ffd700;
}

.pc-inlayer-upsell--no-match .pc-inlayer-upsell__content p {
    color: #856404;
    margin: 0;
}

