:root {
    --primary-color: #4b5320; 
    --accent-color: #d4a373;  
    --bg-color: #f0f2eb;      
    --price-color: #ff4500; /* Новий яскравий колір ціни */
    --text-dark: #2d3436;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; padding: 0; line-height: 1.6; 
    color: var(--text-dark); background-color: var(--bg-color); 
}

.container { max-width: 900px; margin: auto; padding: 20px; }

header { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1000&q=80');
    background-size: cover; background-position: center;
    color: #fff; padding: 60px 20px; text-align: center; 
}

.price-tag { 
    font-size: 38px; color: var(--price-color); font-weight: 900; 
    text-align: center; margin: 25px 0; background: #fff;
    padding: 15px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Слайдер */
.photo-scroller {
    display: flex; overflow-x: auto; gap: 15px; padding: 20px 0;
}
.photo-scroller img {
    flex: 0 0 250px; height: 250px; object-fit: cover; border-radius: 12px;
}

/* Відгуки */
.review-item { 
    background: #fff; padding: 20px; margin-bottom: 15px;
    border-radius: 12px; display: flex; align-items: center; gap: 20px;
}
.review-img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-color); }
.stars { color: #f1c40f; }

/* Форма */
form { background: var(--primary-color); padding: 40px; border-radius: 15px; color: white; }
input { width: 100%; padding: 12px; margin: 10px 0; border-radius: 5px; border: none; box-sizing: border-box; }
button { width: 100%; padding: 18px; background: var(--accent-color); color: #fff; border: none; font-size: 20px; font-weight: bold; cursor: pointer; border-radius: 5px; }

footer { text-align: center; padding: 40px; color: #7f8c8d; }
.footer-links a { color: #7f8c8d; margin: 0 10px; text-decoration: none; font-size: 14px; }