/* --- style.css --- */

/* Változók - Színpaletta */
:root {
    --bg-color: #f9f7f2;       /* Törtfehér/Krém */
    --text-color: #5d4037;     /* Sötétbarna */
    --accent-color: #d7ccc8;   /* Világosbarna/Bézs */
    --btn-color: #8d6e63;      /* Középbarna */
    --btn-hover: #5d4037;      /* Sötétebb barna */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(93, 64, 55, 0.08);
}

/* Alapbeállítások */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Konténer */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* --- FEJLÉC (Lista oldal) --- */
header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: var(--bg-color);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    color: #8d8d8d;
    max-width: 600px;
    margin: 0 auto;
}

/* --- TERMÉK RÁCS (Lista oldal) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.15);
    border-color: var(--accent-color);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--btn-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

/* --- TERMÉK RÉSZLETEK (Termék oldal) --- */
.product-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-gallery {
    flex: 1 1 400px;
    width: 100%;
}
.product-gallery img {
    object-fit: contain;
    border: 0;
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid var(--accent-color);
}

.thumbnails {
    display: block;
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0.6;
    transition: 0.3s;
}

.thumbnails img:hover, .thumbnails img.active {
    opacity: 1;
    border-color: var(--btn-color);
}

.product-info {
    flex: 1 1 400px;
}

.product-title-large {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.description {
    color: #666;
    margin-bottom: 30px;
}

/* Vissza gomb */
.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--btn-color);
}

.back-link span {
    margin-right: 5px;
    font-size: 1.2rem;
}

/* --- ŰRLAP ELEMEK --- */
.order-form {
    background-color: #faf8f5;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--accent-color);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    background-color: #fff;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--btn-color);
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
    border: none;
}

.btn-primary {
    background-color: var(--btn-color);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin-top: auto;
}

.btn-outline:hover {
    background-color: var(--btn-color);
    color: var(--white);
}

/* Üzenetek */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}
.alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* reCAPTCHA Badge elrejtése (opcionális, ha kiírod a jogi szöveget) */
.grecaptcha-badge { visibility: hidden; }
.recaptcha-legal { font-size: 0.7rem; color: #999; margin-top: 10px; text-align: center; }

/* Lábléc */
footer {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #e0d9c4;
    margin-top: 40px;
}