/* 쇼핑몰 가치 어필 섹션 */
.shopping-value-section {
    background: #f8fafc;
    padding: 100px 0;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #111827;
}

.value-message {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #10b981;
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #10b981;
}

.value-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.benefit-item p {
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .value-benefits {
        grid-template-columns: 1fr;
    }
}
