/* /public/assets/css/style.css */
/* A webshop végleges, egyedi stíluslapja */

/* --- Betűtípusok és Alapok --- */
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, .navbar-brand, .hero-title, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-primary {
    color: #f0ad4e !important; /* Méz arany szín */
}

.btn-primary {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #eea236;
    border-color: #eea236;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Navigációs Sáv --- */
.navbar-brand {
    font-size: 1.8rem;
    color: #383838;
}

.nav-link {
    font-weight: 700;
}

/* --- Hero Szekció --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/uploads/honey-bg2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
}

.hero-text {
    color: white; /* Biztosítja a szöveg olvashatóságát */
}

/* --- Termék Kártya --- */
.product-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.card-title {
    color: #333;
}

/* --- Termék Adatlap --- */
.product-description p {
    line-height: 1.8;
}

.variant-radio + label {
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    margin-bottom: 5px;
    transition: all 0.2s ease-in-out;
}

.variant-radio:checked + label {
    background-color: #f0ad4e;
    color: white;
    border-color: #eea236;
}

/* --- Termék Adatlap Képek --- */
#main-product-image {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}

.product-thumbnails .img-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    opacity: 0.7;
}

.product-thumbnails .img-thumbnail:hover {
    opacity: 1;
    border-color: #f0ad4e;
}

/* --- Szekció Cím --- */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f0ad4e;
}

/* --- Footer --- */
footer a:hover {
    color: #f0ad4e !important;
}
/* --- Lábléc SimplePay Logó Stílusa --- */
.footer-logo-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444; /* Elválasztó vonal */
    text-align: left;
}

.footer-logo-wrapper img {
    max-width: 200px; /* Logó maximális szélessége */
    height: auto;
    opacity: 0.8; /* Kicsit halványítjuk, hogy ne legyen tolakodó */
}