/* ====================================================================
   BMPremiumHome - Központi stíluslap
   
   Színpaletta: Krém alap + meleg barna akcentusok
   Tipográfia:  Cormorant Garamond (display) + Inter (body)
   ==================================================================== */

/* ====================================================================
   1. CSS VÁLTOZÓK (Design Tokens)
   ==================================================================== */
:root {
    /* Színek - alap paletta */
    --color-cream:       #FAF7F2;  /* fő háttér */
    --color-cream-soft:  #F4EFE6;  /* világos akcentus */
    --color-cream-warm:  #EAE0CF;  /* mélyebb krém */
    --color-stone:       #DDD3C2;  /* keret/elválasztó */

    /* Színek - barna paletta */
    --color-caramel:     #C48E60;  /* fő akcentus */
    --color-caramel-dark:#A77952;  /* hover */
    --color-bronze:      #8B6240;  /* mélyebb akcentus */
    --color-walnut:      #5D3F2A;  /* sötét barna */

    /* Színek - sötét */
    --color-coffee:      #2C2420;  /* fő szöveg / sötét */
    --color-charcoal:    #3A3A3A;
    --color-graphite:    #555555;
    --color-mist:        #888888;

    /* Színek - fehér / fekete */
    --color-white:       #FFFFFF;
    --color-off-white:   #FBFAF7;

    /* Funkcionális */
    --color-success:     #4A6B3A;
    --color-error:       #B85450;
    --color-warning:     #D4A04C;

    /* Tipográfia */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Méretek */
    --container-max:   1280px;
    --container-narrow: 960px;
    --section-padding-y:  clamp(60px, 10vw, 120px);
    --section-padding-x:  clamp(20px, 4vw, 40px);
    
    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Árnyékok */
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 8px 24px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 20px 50px rgba(44, 36, 32, 0.12);
    --shadow-xl: 0 30px 80px rgba(44, 36, 32, 0.18);
    
    /* Animációk */
    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
    --duration:   0.4s;
}

/* ====================================================================
   2. RESET / BASE
   ==================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-coffee);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-caramel);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

a:hover {
    color: var(--color-caramel-dark);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ====================================================================
   3. TIPOGRÁFIA
   ==================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-coffee);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
}

.overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-caramel);
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--color-graphite);
    font-weight: 300;
}

.text-accent {
    color: var(--color-caramel);
}

.text-italic {
    font-style: italic;
}

/* ====================================================================
   4. LAYOUT - Container & Section
   ==================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.section {
    padding: var(--section-padding-y) 0;
    position: relative;
}

.section-cream {
    background-color: var(--color-cream);
}

.section-cream-soft {
    background-color: var(--color-cream-soft);
}

.section-dark {
    background-color: var(--color-coffee);
    color: var(--color-cream);
}

.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4 {
    color: var(--color-cream);
}

.section-dark .lead {
    color: var(--color-cream-warm);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-header.left {
    text-align: left;
    margin: 0 0 4rem;
}

/* Dekoratív cím elválasztó */
.divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-caramel);
    margin: 1.5rem auto;
}

.divider-left {
    margin: 1.5rem 0;
}

/* ====================================================================
   5. GOMBOK
   ==================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-caramel);
    color: var(--color-white);
    border-color: var(--color-caramel);
}

.btn-primary:hover {
    background-color: var(--color-caramel-dark);
    border-color: var(--color-caramel-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-coffee);
    border-color: var(--color-coffee);
}

.btn-secondary:hover {
    background-color: var(--color-coffee);
    color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-light {
    background-color: transparent;
    color: var(--color-cream);
    border-color: var(--color-cream);
}

.btn-light:hover {
    background-color: var(--color-cream);
    color: var(--color-coffee);
}

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1rem;
}

.btn .arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--duration) var(--ease-out);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ====================================================================
   6. HEADER / NAVIGÁCIÓ
   ==================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
}

.site-header.scrolled {
    background-color: rgba(250, 247, 242, 0.97);
    border-bottom-color: var(--color-stone);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--section-padding-x);
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 2rem;
}

/* Logo középre, nagyobb méretben */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 56px;
    width: auto;
    transition: height 0.3s var(--ease-out);
}

.site-header.scrolled .site-logo img {
    height: 48px;
}

/* Asztali navigáció */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-coffee);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-caramel);
    transition: width var(--duration) var(--ease-out);
}

.main-nav-list a:hover::after,
.main-nav-list a.active::after {
    width: 100%;
}

.main-nav-list a:hover,
.main-nav-list a.active {
    color: var(--color-caramel);
}

/* Header jobb oldal: nyelvváltó + telefon + CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    opacity: 0.5;
    transition: opacity var(--duration) var(--ease-out);
    display: inline-block;
}

.lang-flag:hover, .lang-flag.active {
    opacity: 1;
}

.lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-coffee);
}

.header-phone svg {
    width: 16px;
    height: 16px;
    color: var(--color-caramel);
}

/* Mobile menü gomb */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-coffee);
    transition: all 0.3s var(--ease-out);
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====================================================================
   7. HERO SZEKCIÓ (Főoldal)
   ==================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background-color: var(--color-cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(196, 142, 96, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 75% 70%, rgba(139, 98, 64, 0.3) 0%, transparent 50%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--section-padding-x);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s var(--ease-out);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--color-coffee);
}

.hero-title .accent {
    font-style: italic;
    color: var(--color-caramel);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-graphite);
    margin-bottom: 2.5rem;
    max-width: 560px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    animation: fadeUp 1.2s var(--ease-out) 0.2s backwards;
}

.hero-visual-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid var(--color-caramel);
    border-radius: var(--radius-lg);
    z-index: 0;
    transform: rotate(2deg);
}

.hero-visual-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Hero badge - 13+ év */
.hero-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 2;
    background-color: var(--color-coffee);
    color: var(--color-cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero-badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-caramel);
    font-weight: 400;
}

.hero-badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--color-cream-warm);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 4%;
    text-align: left;
    color: var(--color-graphite);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 5;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--color-caramel), transparent);
    margin: 0.5rem 0 0 0.5rem;
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

/* Mobilon és tableten elrejtjük, mert ott ütközhet a hero badge-el */
@media (max-width: 1200px) {
    .hero-scroll { display: none; }
}

/* ====================================================================
   8. INTRO SZEKCIÓ
   ==================================================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--color-graphite);
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
    aspect-ratio: 1/1.1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--color-caramel);
    border-radius: var(--radius-md);
    z-index: 0;
}

/* ====================================================================
   9. SZOLGÁLTATÁSOK KÁRTYÁK
   ==================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-cream);
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-caramel);
}

.service-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(44, 36, 32, 0.4));
    pointer-events: none;
}

.service-card-number {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-cream);
    font-weight: 500;
    letter-spacing: 0.1em;
    background: rgba(44, 36, 32, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.service-card-body {
    padding: 2rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-coffee);
    font-weight: 500;
}

.service-card-text {
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-caramel);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    align-self: flex-start;
}

.service-card-link svg {
    transition: transform var(--duration) var(--ease-out);
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* ====================================================================
   10. WHY US (4 oszlop)
   ==================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 1rem;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--color-caramel);
}

.why-item h4 {
    margin-bottom: 0.75rem;
    color: var(--color-coffee);
}

.why-item p {
    color: var(--color-graphite);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* A sötét háttéren (Why-us szekció a section-dark-on belül) világosra váltunk */
.section-dark .why-item h4 {
    color: var(--color-cream);
}

.section-dark .why-item p {
    color: var(--color-cream-warm);
    opacity: 0.85;
}

/* ====================================================================
   11. ABOUT (Bagonyi Mária)
   ==================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-portrait {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 420px;
    margin: 0 auto;
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-portrait::before,
.about-portrait::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-caramel);
    pointer-events: none;
}

.about-portrait::before {
    inset: -15px;
    opacity: 0.4;
}

.about-portrait::after {
    inset: -30px;
    opacity: 0.2;
}

.about-role {
    color: var(--color-caramel);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.about-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.4;
    color: var(--color-coffee);
    font-style: italic;
    padding: 1.5rem 0 2rem;
    border-left: 2px solid var(--color-caramel);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--color-graphite);
    line-height: 1.8;
}

/* ====================================================================
   12. VÉLEMÉNYEK
   ==================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--color-cream);
    border: 1px solid var(--color-stone);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--duration) var(--ease-out);
}

.review-card:hover {
    border-color: var(--color-caramel);
    box-shadow: var(--shadow-md);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-caramel);
    opacity: 0.25;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--color-caramel);
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-coffee);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-stone);
}

.review-name {
    font-weight: 600;
    color: var(--color-coffee);
}

.review-role {
    font-size: 0.875rem;
    color: var(--color-graphite);
}

/* ====================================================================
   13. BLOG / REFERENCIA KÁRTYÁK
   ==================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-stone);
    transition: all var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-caramel);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--color-mist);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-coffee);
    font-weight: 500;
}

.blog-card-title a {
    color: inherit;
}

.blog-card-title a:hover {
    color: var(--color-caramel);
}

.blog-card-excerpt {
    color: var(--color-graphite);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    align-self: flex-start;
    font-size: 0.85rem;
    color: var(--color-caramel);
    font-weight: 500;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Egyedi blog poszt oldal */
.post-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--color-cream-soft);
}

.post-hero-meta {
    color: var(--color-caramel);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.post-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-coffee);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem var(--section-padding-x);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-coffee);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.9;
    float: left;
    padding: 0.5rem 0.75rem 0 0;
    color: var(--color-caramel);
    font-weight: 500;
}

.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-caramel);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* ====================================================================
   14. GALÉRIA
   ==================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background-color: var(--color-cream-warm);
    position: relative;
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(44, 36, 32, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s var(--ease-out);
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    color: var(--color-cream);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
}

.lightbox-close:hover {
    background: var(--color-caramel);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    font-size: 1.5rem;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-caramel);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-cream);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

/* ====================================================================
   15. KAPCSOLAT / ŰRLAP
   ==================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background-color: var(--color-coffee);
    color: var(--color-cream);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-caramel) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
}

.contact-info-card h3 {
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 142, 96, 0.15);
    border: 1px solid var(--color-caramel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-caramel);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream-warm);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--color-cream);
    font-size: 1rem;
}

.contact-info-value a {
    color: var(--color-cream);
}

.contact-info-value a:hover {
    color: var(--color-caramel);
}

/* Űrlap */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-coffee);
    letter-spacing: 0.05em;
}

.form-label .req {
    color: var(--color-caramel);
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-stone);
    background-color: var(--color-cream);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-coffee);
    transition: all var(--duration) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-caramel);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 142, 96, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-mist);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--color-graphite);
    line-height: 1.5;
}

.form-checkbox input {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--color-caramel);
    cursor: pointer;
    flex-shrink: 0;
}

.form-required-note {
    font-size: 0.75rem;
    color: var(--color-mist);
    font-style: italic;
}

/* Honeypot (rejtett spam-csapda mező) */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
}

/* ====================================================================
   16. CTA SZALAG
   ==================================================================== */
.cta-section {
    background-color: var(--color-coffee);
    color: var(--color-cream);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(196, 142, 96, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(139, 98, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    color: var(--color-cream);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-subtitle {
    color: var(--color-cream-warm);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================================
   17. FOOTER
   ==================================================================== */
.site-footer {
    background-color: #1F1A17;
    color: var(--color-cream-warm);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about-text {
    color: var(--color-cream-warm);
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-cream-warm);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all var(--duration) var(--ease-out);
}

.footer-links a:hover {
    color: var(--color-caramel);
    opacity: 1;
    padding-left: 0.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-cream-warm);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-caramel);
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: var(--color-cream-warm);
}

.footer-contact-item a:hover {
    color: var(--color-caramel);
}

.footer-hours {
    font-size: 0.875rem;
    line-height: 1.9;
    opacity: 0.85;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ====================================================================
   18. SUBPAGE HEADERS (aloldal hero)
   ==================================================================== */
.subpage-hero {
    padding: 160px 0 80px;
    background-color: var(--color-coffee);
    color: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 142, 96, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 98, 64, 0.15) 0%, transparent 50%);
}

.subpage-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.subpage-hero h1 {
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.subpage-hero-subtitle {
    color: var(--color-cream-warm);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}

/* Aloldali video hero */
.video-hero {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 var(--section-padding-x);
    position: relative;
    z-index: 1;
}

.video-hero video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: block;
    background-color: #000;
}

/* Vertikális videó (9:16) */
.video-vertical {
    max-width: 320px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-xl);
}

.video-vertical video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================================================
   19. FEATURE LIST (aloldalakon)
   ==================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-caramel);
    border-top: 1px solid var(--color-stone);
    border-right: 1px solid var(--color-stone);
    border-bottom: 1px solid var(--color-stone);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--duration) var(--ease-out);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-item-icon {
    width: 40px;
    height: 40px;
    color: var(--color-caramel);
    flex-shrink: 0;
}

.feature-item-content h4 {
    margin-bottom: 0.5rem;
    color: var(--color-coffee);
}

.feature-item-content p {
    color: var(--color-graphite);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====================================================================
   20. UTILITIES & ANIMÁCIÓK
   ==================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollDown {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50%      { transform: scaleY(0.3); transform-origin: top; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Sikeres üzenet box */
.message-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-stone);
    box-shadow: var(--shadow-md);
}

.message-box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-box-icon.success {
    background-color: rgba(74, 107, 58, 0.1);
    color: var(--color-success);
}

.message-box-icon.error {
    background-color: rgba(184, 84, 80, 0.1);
    color: var(--color-error);
}

.message-box-icon svg {
    width: 40px;
    height: 40px;
}

.message-box h2 {
    margin-bottom: 1rem;
}

.message-box p {
    color: var(--color-graphite);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ====================================================================
   21. RESPONSIVE - TABLET (max 1024px)
   ==================================================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about-quote {
        text-align: left;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ====================================================================
   22. RESPONSIVE - MOBILE (max 768px)
   ==================================================================== */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-cream);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-out);
        gap: 0;
        overflow-y: auto;
    }
    .main-nav.open {
        right: 0;
    }

    .main-nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 2rem;
    }

    .main-nav-list a {
        font-size: 1.1rem;
        font-family: var(--font-display);
        font-weight: 500;
    }

    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        padding-top: 1.5rem;
        border-top: 1px solid var(--color-stone);
    }

    .header-phone {
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(44, 36, 32, 0.4);
        z-index: 999;
    }
    .nav-overlay.open {
        display: block;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .hero-badge {
        bottom: -20px;
        left: -10px;
        padding: 1rem;
    }
    .hero-badge-number {
        font-size: 1.75rem;
    }

    /* Why grid */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Features - mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Section padding */
    .section {
        padding: 60px 0;
    }

    /* Lightbox */
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }

    /* Site logo - mobile */
    .site-logo img {
        height: 44px;
    }
    .site-header.scrolled .site-logo img {
        height: 40px;
    }
    
    .header-inner {
        padding: 0.75rem 1.25rem;
    }

    /* Subpage hero */
    .subpage-hero {
        padding: 120px 0 60px;
    }
    
    /* Footer logo */
    .footer-logo {
        height: 52px;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item {
        aspect-ratio: 1/1;
    }
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    .review-card {
        padding: 1.75rem 1.5rem;
    }
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

/* ====================================================================
   23. FALPANEL TERMÉKKATALÓGUS (csoportosított panel választék)
   ==================================================================== */
.panel-category {
    margin-bottom: 4rem;
}

.panel-category:last-of-type {
    margin-bottom: 2rem;
}

.panel-category-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-coffee);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-stone);
    position: relative;
    font-weight: 500;
}

.panel-category-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 2px;
    background-color: var(--color-caramel);
}

.panel-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.panel-product-card {
    background-color: var(--color-cream);
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.panel-product-card:hover {
    border-color: var(--color-caramel);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Két képet egymás mellett: bal: interior (16:9 = 2x szélesebb), jobb: detail (1:1) 
   - A grid arányát úgy számoltam, hogy 16:9 és 1:1 ugyanolyan magas legyen
   - Tehát ha 1:1 a "h" magas, akkor 16:9 a "h * 16/9" széles
   - Az interior tehát 16/9 ≈ 1.78x szélesebb, mint a detail
*/
.panel-product-images {
    display: grid;
    grid-template-columns: 16fr 9fr; /* interior nagyobb mert 16:9, detail 1:1 */
    gap: 2px;
    background-color: var(--color-stone);
    aspect-ratio: 25 / 9; /* 16+9 : 9 = 25:9 - hogy az interior 16:9 és a detail 1:1 ugyanolyan magas legyen */
}

.panel-product-img-link {
    position: relative;
    overflow: hidden;
    background-color: var(--color-cream-warm);
    cursor: pointer;
    display: block;
}

.panel-product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

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

.panel-product-img-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(44, 36, 32, 0.75);
    color: var(--color-cream);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    pointer-events: none;
    font-weight: 500;
}

.panel-product-code {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-cream-soft);
    border-top: 1px solid var(--color-stone);
}

.panel-product-code-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-graphite);
    font-weight: 500;
}

.panel-product-code-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-caramel);
    letter-spacing: 0.02em;
}

/* Mobilon: a két kép egymás alá kerül, az interior 16:9, a detail 1:1 */
@media (max-width: 600px) {
    .panel-products-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-product-images {
        grid-template-columns: 1fr; /* egy oszlop */
        grid-template-rows: auto auto;
        aspect-ratio: auto; /* töröljük a fix arányt */
    }
    
    .panel-product-interior {
        aspect-ratio: 16 / 9;
    }
    
    .panel-product-detail {
        aspect-ratio: 1 / 1;
        max-height: 280px;
    }
}

/* Print */
@media print {
    .site-header, .site-footer, .lightbox {
        display: none;
    }
}
