.product-in-pack-container {
    margin: 20px 0;
}

.product-in-pack-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.product-in-pack-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.product-in-pack-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-in-pack-image {
    width: 100px;
    height: 100px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.product-in-pack-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-in-pack-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-in-pack-price {
    font-size: 18px;
    font-weight: 700;
    color: rgb(173, 31, 0);
}

.product-in-pack-link:hover .product-in-pack-name {
    color: #007bff;
}