/* 出張相談対応セクション */
.visit-service-section {
    margin-top: 2rem;
}

.visit-service-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.visit-service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.visit-service-icon {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 1;
}

.visit-service-content {
    flex: 1;
    z-index: 1;
}

.visit-service-title {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.outlet-visit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.outlet-visit-badge i {
    color: #fbbf24;
}

.visit-service-description {
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .visit-service-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .visit-service-icon {
        font-size: 2rem;
    }
}

/* 商品一覧セクション */
.lender-products-section {
    margin-top: 3rem;
}

.lender-products-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-item.product-main {
    border: 2px solid #ff6b35;
    background: linear-gradient(to right, #fff9f7, white);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-name a {
    color: #333;
    text-decoration: none;
}

.product-name a:hover {
    color: #ff6b35;
}

.main-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ff6b35;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-actions {
        margin-top: 1rem;
    }
}