﻿/* ===================================================
   Copt cu Dor — Main CSS
   Design: Amelle-inspired, Global Marketing IT
=================================================== */

/* ---------- RESET & VARIABLES ---------- */
:root {
    --cream:       #F2EFE8;
    --cream-dark:  #E8E4DB;
    --cream-mid:   #DDD9CE;
    --brown:       #5B3A2A;
    --brown-mid:   #8D6B4A;
    --gold:        #8D6B4A;
    --gold-light:  #A89070;
    --sage:        #A7B08A;
    --sage-dark:   #8A9370;
    --text:        #3D2A1E;
    --text-muted:  #7A6455;
    --white:       #ffffff;
    --dark:        #2F1F18;
    --border:      #D8D2C5;
    --font-head:   'Cormorant Garamond', Georgia, serif;
    --font-body:   'Nunito', sans-serif;
    --radius:      12px;
    --shadow:      0 4px 32px rgba(47,31,24,0.10);
    --shadow-lg:   0 12px 60px rgba(47,31,24,0.15);
    --transition:  all 0.3s ease;
    --nav-h:       100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--brown);
    line-height: 1.2;
    font-weight: 500;
}
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }

p { font-size: 18px; color: var(--text); }

.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title { font-family: var(--font-head); color: var(--brown); }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 600px; line-height: 1.8; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--brown);
    color: var(--white);
    border: 2px solid var(--brown);
}
.btn-primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}
.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--brown);
    border: 2px solid var(--white);
}
.btn-light:hover {
    background: transparent;
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--brown);
    border-color: var(--brown);
    transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    min-height: var(--nav-h); height: auto;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: none;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
/* Logo imagine — înălțime fixă în navbar */
.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Logo footer — PNG transparent, culorile originale */
.footer-logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Logo mobil */
.mobile-logo .logo-img {
    height: 56px;
}

.main-nav { display: flex; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    background: #3D2518;
}
.nav-link.nav-contact {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    background: var(--brown);
    color: var(--white);
    border-radius: 50px;
    padding: 8px 22px;
}
.nav-link.nav-contact:hover { background: var(--dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .arrow { font-size: 10px; margin-left: 2px; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 1100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.dropdown li a:hover { background: var(--cream); color: var(--brown); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    justify-content: center;
    z-index: 1600;
    position: relative;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44,26,14,0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--brown);
    font-weight: 600;
}
.mobile-close {
    font-size: 20px;
    color: var(--text-muted);
    padding: 4px 8px;
}

.mobile-nav { padding: 16px 0; flex: 1; }
.mobile-nav ul li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    background: #5B3A2A;
    border-radius: 50px;
    margin: 10px 24px;
    text-align: center;
    border-bottom: none;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a:active,
.mobile-nav ul li a:focus {
    background: #8B6B5A;
    transform: translateX(0);
}
.mobile-nav ul li a:active {
    background: #A07D6A;
    transform: scale(0.98);
}
/* Arrow pe fiecare item mobil */
.mobile-nav ul li a {
    position: relative;
    padding-right: 36px !important;
}
.mobile-nav ul li a::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-nav ul li a:hover::after,
.mobile-nav ul li a:active::after {
    transform: translateY(-50%) translateX(4px);
    opacity: 1;
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 2;
}
.mobile-menu-footer a { color: var(--gold); }

/* ================================================
   HERO — Layout identic Amelle template
================================================ */
.hero {
    position: relative;
    background-color: transparent;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.55) 100%);
}

/* Container text — padding mare sus/jos ca în template */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 120px 0 100px;
    max-width: 820px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* "DIN LINIȘTEA SATULUI" — mic, uppercase, 13px, letter-spacing 3px */
.hero-welcome {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F2EFE8;
    display: block;
    margin-bottom: 20px;
}

/* Titlu mare — Playfair/Cormorant, uppercase, ~68px */
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(44px, 5.8vw, 72px);
    font-weight: 500;
    color: #F2EFE8;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 28px;
}

/* Descriere */
.hero-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(242, 239, 232, 0.75);
    line-height: 1.85;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* CTA butoane — identice ca dimensiune */
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buton primar — auriu ca în template rgb(178,118,71) */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    background: transparent;
    color: #F2EFE8;
    border: 2px solid rgba(242, 239, 232, 0.5);
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}
.btn-hero-primary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #F2EFE8;
    transform: translateY(-2px);
}

/* Buton secundar — outline */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    background: #5b3a2a;
    color: #ffffff;
    border: 2px solid #5b3a2a;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}
.btn-hero-outline:hover {
    background: #4a2e20;
    border-color: #4a2e20;
    transform: translateY(-2px);
}

/* Imagini de jos — 3 imagini orizontale, ca în template */
.hero-bottom-images {
    position: relative;
    z-index: 2;
    padding: 0 0 60px;
}
.hero-imgs-row {
    display: flex;
    gap: 16px;
    align-items: center;
}
.hero-img-sm {
    width: 220px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.hero-img-lg {
    flex: 1;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
}

/* ---------- STATS SECTION ---------- */
.stats-section {
    background: var(--white);
    padding: 72px 0 200px;
    border-top: 1px solid var(--border);
}

/* Rând 1: foto + cifre */
.stats-inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 72px;
}

/* FOTO — fără overflow, conținută în secțiune */
.stats-photo {
    flex-shrink: 0;
    width: 260px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.stats-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
/* Badge pe foto */
.stats-photo-badge {
    position: absolute;
    bottom: 16px;
    right: -12px;
    background: var(--brown);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: var(--shadow);
}
.stats-photo-badge span:first-child { font-size: 20px; }

/* Dreapta: titlu intro + cifre */
.stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 8px;
}
.stats-intro {}
.stats-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--brown);
    margin-top: 8px;
    line-height: 1.2;
}
.stats-title em { font-style: italic; color: var(--gold); }

/* Cifre — 4 în rând */
.stats-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}
.stat-item { text-align: left; }
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(40px, 4vw, 54px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    display: block;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 10px;
}

/* Rând 2: 4 caracteristici */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 56px;
    align-items: stretch;
}
.feature-card {
    padding: 28px 24px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
    text-align: center;
}
.feature-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
    text-align: center;
}
.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.7;
}

/* ---------- SECTIONS COMMON ---------- */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ---------- PRODUSE SECTION ---------- */
.produse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.category-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.category-card:hover .category-card-img { transform: scale(1.05); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,26,14,0.85) 0%, rgba(44,26,14,0.20) 60%, transparent 100%);
    transition: var(--transition);
}
.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(44,26,14,0.92) 0%, rgba(44,26,14,0.40) 60%, transparent 100%);
}

.category-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px;
    z-index: 2;
}
.category-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 8px;
}
.category-card-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    font-style: italic;
}
.category-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.category-card:hover .category-card-desc { max-height: 60px; }

.category-card-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}
.category-card:hover .category-card-arrow {
    background: var(--gold);
    border-color: var(--gold);
}

/* ---------- ABOUT SECTION ---------- */
.about-section { background: var(--cream-dark); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 48%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 6px solid var(--cream-dark);
    box-shadow: var(--shadow);
}
.about-badge {
    position: absolute;
    top: 24px;
    left: -24px;
    background: var(--brown);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-family: var(--font-head);
    box-shadow: var(--shadow);
}
.about-badge-num { font-size: 36px; font-weight: 600; display: block; line-height: 1; }
.about-badge-text { font-size: 12px; letter-spacing: 1px; opacity: 0.8; }

.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.2; }
.about-text { font-size: 17px; color: var(--text-muted); line-height: 1.9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon-mask {
    display: block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.about-feature-text h5 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 4px;
}
.about-feature-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ---------- ATELIERE SECTION ---------- */
.ateliere-section {
    background: var(--brown);
    position: relative;
    overflow: hidden;
}
.ateliere-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(181,135,78,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.ateliere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ateliere-content {}
.ateliere-label { color: var(--gold-light); }
.ateliere-title { color: var(--white); margin-bottom: 20px; }
.ateliere-desc { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 480px; }
.ateliere-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.ateliere-item { display: flex; align-items: center; gap: 14px; }
.ateliere-item-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.ateliere-item-text { font-size: 16px; color: rgba(255,255,255,0.85); }

.ateliere-image {
    position: relative;
}
.ateliere-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
}
.ateliere-quote {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--gold);
    padding: 24px 28px;
    border-radius: var(--radius);
    max-width: 280px;
    box-shadow: var(--shadow);
}
.ateliere-quote p {
    font-family: var(--font-head);
    font-size: 17px;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}
.ateliere-quote cite {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* ---------- PROIECTE SPECIALE TEASER ---------- */
.proiecte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.proiect-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.proiect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proiect-card-img {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}
.proiect-card-body { padding: 24px; }
.proiect-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.proiect-card-title {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--brown);
    margin-bottom: 10px;
}
.proiect-card-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ---------- TESTIMONIALE ---------- */
.testimoniale-section { background: var(--cream-dark); }
.testimoniale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-head);
    font-size: 80px;
    line-height: 0.8;
    color: var(--gold-light);
    opacity: 0.4;
    position: absolute;
    top: 20px;
    left: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.testimonial-text {
    font-family: var(--font-head);
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--brown); }
.testimonial-loc { font-size: 13px; color: var(--text-muted); }

/* ---------- BLOG SECTION ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 28px; }
.blog-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.blog-card-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.3;
    margin-bottom: 12px;
    transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); }
.blog-card-date { display: flex; align-items: center; gap: 6px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: var(--brown);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}
.cta-banner-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-banner-label { color: var(--gold-light); margin-bottom: 16px; }
.cta-banner-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.cta-banner-desc { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-banner-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark); }
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 80px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.footer-brand {
    text-align: center;
}
.footer-brand-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 249, 245, 0.92);
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 24px; }
.footer-logo .logo-brand {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--white);
    font-weight: 600;
}
.footer-tagline { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px !important;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 0; color: var(--gold); }
.footer-contact-list li, .footer-contact-list li a {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
}
.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ---------- PAGE HERO ---------- */
.page-hero {
    padding-top: var(--nav-h);
    background: var(--brown);
    padding-bottom: 32px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.page-hero.has-bg::before { opacity: 0.35; }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-label { color: var(--gold-light); margin-bottom: 12px; margin-top: 8px; }
.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 6vw, 68px);
    color: var(--white);
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ---------- CATEGORY PAGE ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card { display: flex; flex-direction: column; }
.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.product-card-title {
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1.25;
    color: var(--brown);
    margin-bottom: 8px;
    min-height: calc(2 * 22px * 1.25); /* reserve 2 lines so cards align */
    display: flex;
    align-items: flex-start;
}
.product-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1 1 auto; /* push footer to bottom */
}
@media (max-width: 600px) {
    .product-card-title { min-height: 0; }
}

/* ---------- ATELIERE PAGE ---------- */
.atelier-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
    transition: var(--transition);
}
.atelier-card:hover { box-shadow: var(--shadow-lg); }
.atelier-card.reverse { direction: rtl; }
.atelier-card.reverse > * { direction: ltr; }
.atelier-card-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    min-height: 320px;
}
.atelier-card-body { padding: 48px; }
.atelier-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.atelier-card-title { font-size: 32px; color: var(--brown); margin-bottom: 16px; }
.atelier-card-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.atelier-card-details { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.atelier-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.atelier-detail svg { color: var(--gold); }

/* ---------- CONTACT PAGE ---------- */
.contact-section {}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contact-info {}
.contact-info-title { margin-bottom: 20px; }
.contact-info-text { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-detail-content {}
.contact-detail-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); display: block; }
.contact-detail-value { font-size: 16px; color: var(--brown); font-weight: 600; }
.contact-detail-value a { color: var(--brown); }
.contact-detail-value a:hover { color: var(--gold); }

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 28px;
    color: var(--brown);
    margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-msg { padding: 14px; border-radius: 8px; font-size: 15px; margin-bottom: 16px; display: none; }
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* ---------- GALERIE PAGE ---------- */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.galerie-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galerie-item:hover img { transform: scale(1.05); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ---------- PAGE CONTENT ---------- */
.page-content { padding: 80px 0; }
.page-content .entry-content {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    max-width: 780px;
}
.page-content .entry-content h2 { margin-top: 40px; margin-bottom: 16px; }
.page-content .entry-content p { margin-bottom: 20px; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-content { padding: 120px 0 60px; }
    .stats-numbers { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { flex-wrap: wrap; gap: 40px; }
    .stats-photo { width: 220px; }
    .features-row { grid-template-columns: 1fr; }
    .about-grid { gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 80px; }
    html { font-size: 16px; }

    .main-nav { display: none; }
    .hamburger { display: flex; }

    /* Hero mobile */
    .hero-content { padding: 80px 0 40px; }
    .hero-title { font-size: 40px; letter-spacing: -0.5px; }
    .hero-desc { font-size: 15px; }
    .btn-hero-primary, .btn-hero-outline { min-width: 0; width: 100%; }
    .hero-cta { flex-direction: column; }
    .hero-imgs-row { gap: 8px; }
    .hero-img-sm { width: 120px; height: 120px; }
    .hero-img-lg { height: 160px; }

    /* Stats mobile */
    .stats-inner { flex-direction: column; gap: 32px; }
    .stats-photo { width: 100%; }
    .stats-photo img { aspect-ratio: 4/3; }
    .stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .features-row { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 20px 18px; }
    .feature-title { font-size: 16px; }
    .feature-desc { font-size: 14px; line-height: 1.6; word-break: break-word; overflow-wrap: break-word; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 40px; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }

    .produse-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .category-card { aspect-ratio: 3/4; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { padding-bottom: 48px; }
    .about-img-accent { right: 0; bottom: 0; }
    .about-badge { left: 16px; top: 16px; }
    .about-features { grid-template-columns: 1fr; }

    .ateliere-grid { grid-template-columns: 1fr; gap: 40px; }
    .ateliere-image { order: -1; }
    .ateliere-quote { left: 16px; right: 16px; bottom: -16px; max-width: 100%; }

    .proiecte-grid { grid-template-columns: 1fr; }
    .testimoniale-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; padding-bottom: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }

    .atelier-card { grid-template-columns: 1fr; }
    .atelier-card.reverse { direction: ltr; }
    .atelier-card-body { padding: 28px; }

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

    .header-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
    .produse-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; justify-content: center; }
    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(91,58,42,0.1);
}
.btn-comanda {
    display: inline-block;
    background: #5B3A2A;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-comanda:hover { background: #7A4E3A; }
.product-price {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #5B3A2A;
}

/* Header badges — EU + Gov Romania */
.header-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.header-badge-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.header-inner {
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    .header-badge-img { height: 45px; }
    .header-badges { gap: 8px; }
}
@media (max-width: 580px) {
    .header-badge-img { height: 36px; }
    .header-badges { gap: 6px; }
}

/* Mobile sub-menu items — same brown style */
.mobile-sub li a {
    font-size: 14px !important;
    padding: 8px 16px !important;
    margin: 4px 32px !important;
    background: #7A6455 !important;
}
.mobile-sub li a:hover { background: #5B3A2A !important; }
.mobile-contact-link {
    background: #3D2518 !important;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(242,239,232,0.12);
    color: #F2EFE8;
    transition: all 0.3s ease;
}
.footer-social-link:hover {
    background: rgba(242,239,232,0.25);
    transform: translateY(-2px);
}

/* ===== MOBILE PRODUCT CARD FIX ===== */
@media (max-width: 768px) {
    /* Product grid — 1 coloana pe mobil */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Product card body — padding redus */
    .product-card-body {
        padding: 18px !important;
    }
    .product-card-title {
        font-size: 19px !important;
    }
    .product-card-desc {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    /* Product card footer — stack vertical, fără chenar urât */
    .product-card-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        border-top: none !important;
        padding-top: 12px !important;
        margin-top: 12px !important;
    }

    /* btn-comanda — full-width, frumos pe mobil */
    .btn-comanda {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 50px !important;
        box-sizing: border-box !important;
    }

    /* Pretul — centrat sub buton */
    .product-price {
        text-align: center !important;
        font-size: 20px !important;
    }
}

/* ===== MOBILE CTA BANNER FIX ===== */
@media (max-width: 768px) {
    .cta-banner {
        padding: 36px 20px !important;
        border-radius: 12px !important;
        margin-top: 40px !important;
    }
    .cta-banner h3 {
        font-size: 24px !important;
    }
    .cta-banner p {
        font-size: 14px !important;
    }
    .cta-banner .btn,
    .cta-banner .btn-light {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
}

/* ===== MOBILE PAGE HERO SPACING ===== */
@media (max-width: 768px) {
    .page-hero {
        min-height: 220px !important;
        padding-bottom: 48px !important;
    }
    .page-hero-title {
        font-size: clamp(26px, 7vw, 36px) !important;
    }
    .breadcrumb {
        font-size: 12px !important;
        flex-wrap: wrap !important;
    }
}

/* ===== MOBILE ABOUT FEATURES FIX ===== */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .about-feature {
        padding: 16px !important;
    }
}

/* ===== HEADER BADGES MOBILE ===== */
@media (max-width: 768px) {
    .header-badges {
        display: flex !important;
        gap: 6px !important;
        margin-left: auto !important;
        margin-right: 8px !important;
        align-items: center !important;
    }
    .header-badge-img.header-badge-ue {
        width: 120px !important;
        height: 90px !important;
    }
    .header-badge-img.header-badge-gov {
        width: 70px !important;
        height: 70px !important;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .header-badges {
        gap: 6px !important;
    }
    .header-badge-img {
        height: 40px !important;
    }
}

/* === Header badges — equal-size bounding box (UE + Gov) === */
.header-badges { align-items: center; }
.header-badge-img {
    height: 60px !important;
    width: 65px !important;
    object-fit: contain !important;
    object-position: center center;
}
@media (max-width: 900px) {
    .header-badge-img { height: 45px !important; width: 100px !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .header-badge-img { height: 40px !important; width: 90px !important; }
}
@media (max-width: 580px) {
    .header-badge-img { height: 70px !important; width: 70px !important; }
}

/* UE badge — wider so the text is readable */
.header-badge-img.header-badge-ue {
    width: 160px !important;
    height: 50px !important;
}
@media (max-width: 900px) {
    .header-badge-img.header-badge-ue { width: 105px !important; height: 40px !important; }
}
@media (max-width: 580px) {
    .header-badge-img.header-badge-ue { width: 120px !important; height: 90px !important; }
}

/* mfe-link-fix */
.about-text a { color: var(--gold,#b5874e); text-decoration: underline; font-weight: 600; position: relative; z-index: 5; pointer-events: auto; }
.about-text a:hover { opacity: .8; }
.about-content { position: relative; z-index: 2; }


/* === FULL-WIDTH COLORED SECTIONS (cream / brown) — span full viewport === */
.hero-strip-section,
.site-footer,
.ateliere-section,
.social-cta-section,
.about-section,
.testimoniale-section,
.section-cream-full,
.section-brown-full,
section[style*="background:var(--cream-dark)"],
section[style*="background: var(--cream-dark)"],
section[style*="background:#5B3A2A"],
section[style*="background: #5B3A2A"],
section[style*="background:#FAF6EE"],
section[style*="background: #FAF6EE"] {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box;
}
html, body { overflow-x: hidden; }

/* spacing between Procesul nostru cards and full-width brown section below */
.proces-grid { margin-bottom: 80px; }
@media (max-width: 768px) { .proces-grid { margin-bottom: 56px; } }

/* about-section background to make full-width visible */
.about-section { background: var(--cream-dark, #EFE6D6); }

/* fix: no empty space below footer */
html, body { margin: 0 !important; padding: 0 !important; }
.site-footer { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.site-footer .footer-bottom { margin-bottom: 0 !important; }


/* ==========================================================================
   MOBILE-ONLY HOMEPAGE POLISH (≤768px and ≤480px)
   Strict rule: nothing here affects desktop or tablet >768px.
   ========================================================================== */
@media (max-width: 768px) {
    /* Container padding tighter on phones */
    .container, .container-wide { padding-left: 18px; padding-right: 18px; }

    /* Section vertical rhythm */
    .section { padding: 48px 0; }
    .section-title { font-size: clamp(26px, 7vw, 34px); line-height: 1.15; }
    .section-label { font-size: 12px; letter-spacing: 1.5px; }

    /* Hero strip slider */
    .hero-strip-section { padding: 48px 0; }
    .hero-strip-prev, .hero-strip-next { width: 36px; height: 36px; }

    /* About section (Povestea noastră) */
    .about-section { padding: 56px 0; }
    .about-img-main, .about-img-accent { border-radius: 12px; }
    .about-badge { padding: 10px 14px; font-size: 12px; }
    .about-badge-num { font-size: 22px; }
    .about-text h2, .about-section h2 { font-size: clamp(28px, 7.2vw, 36px); }
    .about-text p { font-size: 15px; line-height: 1.7; }

    /* Social CTA section (video + text) */
    .social-cta-section { padding: 56px 0; }
    .social-cta-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .social-cta-video-wrap { box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
    .social-cta-title { font-size: clamp(26px, 7vw, 34px); line-height: 1.2; }
    .social-cta-title br { display: none; }
    .social-cta-text { font-size: 15px; line-height: 1.65; }
    .social-cta-links { flex-wrap: wrap; gap: 14px 18px; justify-content: flex-start; }
    .social-cta-links a { font-size: 14px; }
    .social-cta-divider { margin: 18px 0; }

    /* Ateliere / Testimoniale */
    .ateliere-section { padding: 56px 0; }
    .testimoniale-section { padding: 56px 0; }

    /* Recenzii Facebook card */
    .fb-reviews { margin-top: 24px; padding: 18px 16px 22px; border-radius: 14px; }
    .fb-reviews-header { margin-bottom: 16px; padding-bottom: 10px; }
    .fb-reviews-title { font-size: 18px; }
    .fb-reviews-all { font-size: 13px; }
    .fb-rev-item { gap: 12px; }
    .fb-rev-avatar { width: 38px; height: 38px; flex: 0 0 38px; font-size: 15px; }
    .fb-rev-name { font-size: 14.5px; }
    .fb-rev-text { font-size: 14px; line-height: 1.55; }
    .fb-rev-arrow { width: 32px; height: 32px; }
    .fb-rev-prev { left: 6px; }
    .fb-rev-next { right: 6px; }

    /* CTA banner — tighter on phones */
    .cta-banner-content { padding: 0 8px; }
    .cta-banner .btn { width: 100%; }

    /* Footer — column gaps on phones */
    .footer-brand { text-align: center; }
    .footer-brand .footer-social { justify-content: center !important; }
    .footer-brand-title, .footer-tagline { text-align: center !important; }
    .footer-legal { font-size: 12px !important; padding: 18px 16px !important; }

    /* Avoid overflow caused by negative-margin full-width sections */
    section, .section { box-sizing: border-box; }
}

@media (max-width: 480px) {
    .container, .container-wide { padding-left: 14px; padding-right: 14px; }
    .section { padding: 40px 0; }
    .section-title { font-size: clamp(24px, 8vw, 30px); }

    .about-section { padding: 44px 0; }
    .social-cta-section { padding: 44px 0; }
    .social-cta-title { font-size: clamp(22px, 8vw, 28px); }
    .social-cta-text { font-size: 14.5px; }
    .social-cta-links a { font-size: 13.5px; }

    .fb-reviews { padding: 16px 14px 20px; }
    .fb-rev-text { font-size: 13.5px; }

    .hero-strip-prev, .hero-strip-next { width: 32px; height: 32px; }
}


/* === MOBILE FIXES v2 === */
@media (max-width: 768px) {
    /* About section: prevent horizontal overflow from images */
    .about-section { overflow: hidden; }
    .about-images { max-width: 100%; }
    .about-img-main, .about-img-accent { max-width: 100%; height: auto; }

    /* Category cards: tighter padding so labels don't clip */
    .category-card-content { padding: 18px 16px; }
    .category-card-label { font-size: 10px; letter-spacing: 1.8px; margin-bottom: 6px; white-space: nowrap; }
    .category-card-title { font-size: 19px; line-height: 1.2; }
    .category-card-arrow { width: 32px; height: 32px; margin-top: 6px; }

    /* Prevent any full-width section from causing horizontal scroll */
    .hero-strip-section, .ateliere-section, .social-cta-section,
    .about-section, .testimoniale-section, .site-footer { overflow: hidden; }
}


/* === MOBILE: dots smaller on reviews/projects sliders === */
@media (max-width: 768px) {
    .fb-rev-dots { gap: 6px; margin-top: 12px; }
    .fb-rev-dot { width: 6px; height: 6px; }
    .fb-rev-dot.is-active { transform: scale(1.2); }
    .fb-rev-dots:has(.fb-rev-dot:only-child) { display: none; }
    .hero-strip-dots .hero-strip-dot { width: 6px !important; height: 6px !important; }
}


/* === MOBILE: image position fix — show more of subject (bread) === */
@media (max-width: 768px) {
    /* Blog card images */
    .blog-card-img { background-position: center 65% !important; }
    .blog-card-img img { object-position: center 65%; }

    /* Category card background images */
    .category-card-img { background-position: center 70% !important; }

    /* Gallery images */
    .galerie-item img { object-position: center 65%; }
}


/* === MOBILE+TABLET: specific image position fixes for bread images === */
@media (max-width: 1024px) {
    /* paine-feliate.jpg — bread visible from top */
    img[alt="Pâine artizanală Copt cu Dor"],
    img[alt="Sortiment de pâini artizanale"],
    img[alt="Cozonac tradițional"] {
        object-position: center 25% !important;
    }

    /* maia1.jpg — sourdough/maia, subject in upper half */
    img[alt="Maia sălbatică"],
    img[alt="Paste cu sfeclă roșie"] {
        object-position: center 30% !important;
    }

    /* paine-neagra.jpg — black bread, shift up */
    img[alt="Pâine neagră"],
    img[alt="Pâine neagră cu maia"],
    img[alt="Pâine neagră feliată"],
    img[alt="Pâine neagră cu cărbune activ"] {
        object-position: center 30% !important;
    }

    /* Category cards (background-image) — shift focal point up */
    .category-card-img { background-position: center 35% !important; }
}

/* Reduce gap between Produse and Moto+Procesul nostru sections */
#produse { padding-bottom: 10px !important; }
#moto-proces { padding-top: 10px !important; }

/* Reduce gap below Moto+Procesul nostru and above Stats */
#moto-proces { padding-bottom: 30px !important; }
.stats-section { padding-top: 30px !important; }

/* Reduce gap below Moto+Procesul nostru and above Stats */
#moto-proces { padding-bottom: 30px !important; }
.stats-section { padding-top: 30px !important; }

/* Despre Noi: stretch text box to match left column height */
.mihaela-layout-v2 { align-items: stretch !important; }
.mihaela-text { display: flex !important; flex-direction: column !important; height: 100%; }
.mihaela-text-box { flex: 1 1 auto !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
.mihaela-text-cols { flex: 1 1 auto; }
@media (max-width: 900px) {
  .mihaela-layout-v2 { align-items: start !important; }
  .mihaela-text-box { display: block !important; }
}

/* Despre Noi: balance text columns + tighten quote */
.mihaela-text-box { justify-content: flex-start !important; }
.mihaela-text-cols { column-fill: balance !important; flex: 0 0 auto !important; }
.mihaela-text-cols p:last-child { margin-bottom: 0 !important; }
.mihaela-quote-line { margin-top: 18px !important; }

/* Despre Noi: single column natural flow */
.mihaela-text-cols { column-count: 1 !important; column-rule: none !important; column-gap: 0 !important; }
.mihaela-text-cols p { margin-bottom: 14px !important; }

/* Despre Noi: text box hugs content, no extra bottom padding */
.mihaela-layout-v2 { align-items: start !important; }
.mihaela-text { display: block !important; height: auto !important; }
.mihaela-text-box { flex: 0 0 auto !important; display: block !important; }

/* Despre Noi: shorten Mihaela image */
.mihaela-img-wrap img { aspect-ratio: auto !important; height: 514px !important; max-width: 100% !important; width: 100% !important; object-fit: cover !important; }
@media (max-width: 900px) {
  .mihaela-img-wrap img { height: 380px !important; }
}

/* Despre Noi: video element styling */
.mihaela-video-box { padding: 0 !important; background: #1a1a1a !important; aspect-ratio: 16/10; overflow: hidden; position: relative; border-radius: 16px; box-shadow: 0 16px 48px rgba(47,31,24,0.15); }
.mihaela-video-el { width: 100% !important; height: 100% !important; display: block; object-fit: cover; background: #000; }
.mihaela-video-caption { position: absolute; left: 14px; bottom: 12px; background: rgba(0,0,0,0.55); color: #fff; padding: 6px 10px; border-radius: 6px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; pointer-events: none; }

/* Despre Noi: full-width Mihaela section */
.container:has(> .mihaela-layout-v2) { max-width: 100% !important; width: 100% !important; padding-left: 40px !important; padding-right: 40px !important; }
.mihaela-layout-v2 { max-width: 100% !important; gap: 64px !important; }
@media (max-width: 900px) {
  .container:has(> .mihaela-layout-v2) { padding-left: 16px !important; padding-right: 16px !important; }
  .mihaela-layout-v2 { gap: 28px !important; }
}

/* Despre Noi: full width section override */
.mihaela-section-fw { padding-left: 0 !important; padding-right: 0 !important; }
.mihaela-section-fw > .container { max-width: 100% !important; width: 100% !important; padding-left: 40px !important; padding-right: 40px !important; margin: 0 !important; }
@media (max-width: 900px) {
  .mihaela-section-fw > .container { padding-left: 16px !important; padding-right: 16px !important; }
}

/* === Despre Noi: optimizare mobil complet === */
@media (max-width: 900px) {
  .mihaela-layout-v2 { display: block !important; }
  .mihaela-col-left { display: flex !important; flex-direction: column !important; gap: 20px !important; margin-bottom: 28px !important; }
  .mihaela-img-wrap img { height: 360px !important; aspect-ratio: auto !important; border-radius: 14px !important; }
  .mihaela-badge { left: 12px !important; bottom: 12px !important; padding: 10px 14px !important; }
  .mihaela-badge-num { font-size: 22px !important; }
  .mihaela-video-box { aspect-ratio: 16/9 !important; border-radius: 14px !important; }
  .mihaela-video-caption { font-size: 10px !important; padding: 5px 8px !important; }
  .mihaela-text-box { padding: 22px 18px !important; border-radius: 14px !important; }
  .mihaela-text-box h2 { font-size: 26px !important; line-height: 1.2 !important; margin-bottom: 14px !important; }
  .mihaela-text-cols { column-count: 1 !important; }
  .mihaela-text-cols p { font-size: 15px !important; line-height: 1.65 !important; margin-bottom: 12px !important; }
  .mihaela-quote-line { font-size: 14px !important; padding: 12px 14px !important; margin-top: 16px !important; }
  .mihaela-cta-row { margin-top: 18px !important; }
  .mihaela-cta-row .btn,
  .mihaela-cta-row a { display: block !important; width: 100% !important; text-align: center !important; }
}
@media (max-width: 480px) {
  .mihaela-img-wrap img { height: 300px !important; }
  .mihaela-text-box h2 { font-size: 22px !important; }
  .mihaela-text-cols p { font-size: 14.5px !important; }
}

/* Despre Noi: revert full-width, keep default container width */
.mihaela-section-fw { padding-left: inherit !important; padding-right: inherit !important; }
.mihaela-section-fw > .container { max-width: 1200px !important; width: auto !important; padding-left: 20px !important; padding-right: 20px !important; margin-left: auto !important; margin-right: auto !important; }
.mihaela-layout-v2 { max-width: 1200px !important; gap: 48px !important; margin-left: auto !important; margin-right: auto !important; }
@media (max-width: 900px) {
  .mihaela-section-fw > .container { padding-left: 16px !important; padding-right: 16px !important; }
  .mihaela-layout-v2 { gap: 28px !important; }
}

/* Stats section: remove excessive empty bottom space */
.stats-section { padding-bottom: 60px !important; min-height: 0 !important; height: auto !important; }
.stats-section > .container { min-height: 0 !important; height: auto !important; }

/* Despre Noi: reduce padding pe sectiunea valori (Ce ne ghidează) */
.page-template-page-despre-noi .section,
body.page-template-page-despre-noi section.section { padding-top: 50px !important; padding-bottom: 50px !important; }

/* === MOBIL: centrare card valori (iconita + titlu) === */
@media (max-width: 768px) {
  .valoare-card { text-align: center !important; align-items: center !important; }
  .valoare-card > div:first-child { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
  .valoare-card h3 { text-align: center !important; align-self: center !important; }
  .valoare-card p { text-align: center !important; align-self: center !important; }
}

/* === MOBIL: footer centrat === */
@media (max-width: 768px) {
  .site-footer .footer-brand,
  .site-footer .footer-brand * ,
  .site-footer .footer-col,
  .site-footer .footer-col * { text-align: center !important; }
  .site-footer .footer-brand-title,
  .site-footer .footer-tagline { text-align: center !important; }
  .site-footer .footer-social { justify-content: center !important; }
  .site-footer .footer-col h4 { text-align: center !important; }
  .site-footer .footer-col ul { padding-left: 0 !important; }
  .site-footer .footer-col li { justify-content: center !important; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 10px !important; flex-wrap: nowrap !important; }
  .site-footer .footer-contact-list li { flex-wrap: nowrap !important; text-align: left !important; line-height: 1.3 !important; }
  .site-footer .footer-contact-list li svg { margin: 0 !important; align-self: center !important; flex-shrink: 0 !important; display: inline-block !important; vertical-align: middle !important; }
  .site-footer .footer-contact-list li a { display: inline !important; min-height: 0 !important; line-height: 1.3 !important; }
}

/* MOBIL: galerie despre noi - imagini complete (fara crop) */
@media (max-width: 768px) {
  .despre-galerie .galerie-item { aspect-ratio: auto !important; height: auto !important; background: var(--cream); border-radius: 10px; }
  .despre-galerie .galerie-item img { width: 100% !important; height: auto !important; object-fit: contain !important; display: block; }
}

/* MOBIL: centrare carduri proiecte sociale (iconita + titlu + text) */
@media (max-width: 768px) {
  .social-card { text-align: center !important; }
  .social-card-icon { margin-left: auto !important; margin-right: auto !important; }
  .social-card h3, .social-card p { text-align: center !important; }
}

/* Homepage: center 4-benefits block under Produse heading */
.about-features { max-width: 760px !important; margin-left: auto !important; margin-right: auto !important; gap: 14px 24px !important; justify-items: center !important; }
.about-feature { justify-self: center !important; max-width: 320px; }

/* Homepage: align 4-benefits in clean 2x2 grid */
.about-features { justify-items: stretch !important; }
.about-feature { justify-self: stretch !important; max-width: none !important; width: 100% !important; }

/* Homepage: center Produse description */
#produse .section-header .section-desc { text-align: center !important; max-width: 760px !important; margin-left: auto !important; margin-right: auto !important; }

/* === Despre Noi zigzag image override (v10.9) === */
.mh-zz-media img { width: 129% !important; height: 390px !important; object-fit: cover !important; object-position: center !important; display: block !important; }
.mh-zz-row:not(.reverse) .mh-zz-media { overflow: visible; }

/* === Despre Noi video fix (v11.0) — show full video, no crop === */
.mh-zz-row.reverse .mh-zz-media { background:#000; aspect-ratio: 16/9; height:auto !important; }
.mh-zz-row.reverse .mh-zz-media video { width:100% !important; height:100% !important; object-fit: contain !important; background:#000 !important; }

/* === Despre Noi zigzag — text apropiat de media vecină (v11.2) === */
.mh-zz-row { align-items: stretch !important; margin-bottom: 24px !important; }
.mh-zz-row:not(.reverse) .mh-zz-content { align-self: flex-end !important; }
.mh-zz-row.reverse .mh-zz-content { align-self: flex-start !important; }
@media (max-width: 900px) {
  .mh-zz-row:not(.reverse) .mh-zz-content,
  .mh-zz-row.reverse .mh-zz-content { align-self: auto !important; }
}

/* === Despre Noi revert image width 100% (v11.3) === */
.mh-zz-media img { width: 100% !important; }

/* === Despre Noi video size reduce (v11.4) === */
.mh-zz-row.reverse .mh-zz-media { aspect-ratio: 16/10 !important; max-width: 520px !important; width: 100% !important; margin-left: auto !important; }
@media (max-width: 900px) {
  .mh-zz-row.reverse .mh-zz-media { max-width: 100% !important; margin: 0 auto !important; }
}

/* === Despre Noi - elimina fundalul negru de la imagine si video (v11.5) === */
.mh-zz-media { background: transparent !important; }
.mh-zz-row.reverse .mh-zz-media { background: transparent !important; }
.mh-zz-row.reverse .mh-zz-media video { background: transparent !important; object-fit: cover !important; }

/* === Despre Noi - dimensiuni egale poza+video, text aliniat top (v11.6) === */
.mh-zz-row:not(.reverse) .mh-zz-media { max-width: 520px !important; width: 100% !important; margin-right: auto !important; }
.mh-zz-row:not(.reverse) .mh-zz-media img { width: 100% !important; height: 340px !important; object-fit: cover !important; }
.mh-zz-row.reverse .mh-zz-media { aspect-ratio: 16/10 !important; max-width: 520px !important; height: auto !important; }
.mh-zz-row .mh-zz-content { align-self: flex-start !important; padding-top: 8px; }
@media (max-width: 900px) {
  .mh-zz-row:not(.reverse) .mh-zz-media,
  .mh-zz-row.reverse .mh-zz-media { max-width: 100% !important; margin: 0 auto !important; }
  .mh-zz-row:not(.reverse) .mh-zz-media img { height: 320px !important; }
}

/* === Despre Noi - imagine 129%/390px, video 16:9 (v11.7) === */
.mh-zz-row:not(.reverse) .mh-zz-media { max-width: none !important; width: auto !important; overflow: visible !important; }
.mh-zz-row:not(.reverse) .mh-zz-media img { width: 129% !important; height: 390px !important; object-fit: cover !important; object-position: center !important; }
.mh-zz-row.reverse .mh-zz-media { aspect-ratio: 16/9 !important; max-width: 100% !important; width: 100% !important; height: auto !important; margin-left: auto !important; }
@media (max-width: 900px) {
  .mh-zz-row:not(.reverse) .mh-zz-media img { width: 100% !important; height: 320px !important; }
}

/* === Despre Noi - poze normale, nu overflow (v11.8) === */
.mh-zz-row:not(.reverse) .mh-zz-media { max-width: 100% !important; width: 100% !important; overflow: hidden !important; }
.mh-zz-row:not(.reverse) .mh-zz-media img { width: 100% !important; height: 360px !important; object-fit: cover !important; object-position: center !important; }
.mh-zz-row.reverse .mh-zz-media { aspect-ratio: 16/10 !important; max-width: 100% !important; width: 100% !important; height: auto !important; }

/* === Despre Noi - micsoreaza DOAR clipul video (v11.9) === */
.mh-zz-row.reverse .mh-zz-media { max-width: 420px !important; margin-left: auto !important; margin-right: 0 !important; }
@media (max-width: 900px) {
  .mh-zz-row.reverse .mh-zz-media { max-width: 100% !important; margin: 0 auto !important; }
}

/* === Despre Noi - clip mai lung si mai jos (v12.0) === */
.mh-zz-row.reverse .mh-zz-media { max-width: 560px !important; aspect-ratio: 21/9 !important; }
@media (max-width: 900px) {
  .mh-zz-row.reverse .mh-zz-media { max-width: 100% !important; aspect-ratio: 16/9 !important; }
}

/* === Despre Noi - video full vizibil, fara crop (v12.1) === */
.mh-zz-row.reverse .mh-zz-media { max-width: 640px !important; aspect-ratio: 16/9 !important; background: transparent !important; }
.mh-zz-row.reverse .mh-zz-media video { object-fit: contain !important; background: transparent !important; }

/* === Despre Noi - elimina padding alb de deasupra (v12.2) === */
.mihaela-section-zz { padding-top: 0 !important; }

/* === Despre Noi - container video se mulează pe video, fara padding alb (v12.3) === */
.mh-zz-row.reverse .mh-zz-media { aspect-ratio: auto !important; height: auto !important; }
.mh-zz-row.reverse .mh-zz-media video { width: 100% !important; height: auto !important; display: block !important; }

/* === Despre Noi - elimina spatiu alb sub video (align-self start) (v12.4) === */
.mh-zz-row.reverse .mh-zz-media { align-self: flex-start !important; line-height: 0 !important; font-size: 0 !important; }
.mh-zz-row.reverse .mh-zz-media video { vertical-align: top !important; }
.mh-zz-row.reverse .mh-zz-vcap { line-height: 1 !important; font-size: 10px !important; }

/* === Despre Noi - paragrafe compacte fara spatii (v12.6) === */
.mihaela-section-zz .mh-zz-content p { margin: 0 0 6px !important; line-height: 1.55 !important; }
.mihaela-section-zz .mh-zz-content h2 { margin: 0 0 12px !important; }

/* === Despre Noi - poza noua fara background alb (v12.8) === */
.mh-zz-row:not(.reverse) .mh-zz-media { background: transparent !important; box-shadow: 0 16px 44px rgba(47,31,24,0.18) !important; }
.mh-zz-row:not(.reverse) .mh-zz-media img { background: transparent !important; }

/* === Despre Noi - elimina spatiu alb sub imagine (v12.9) === */
.mh-zz-row:not(.reverse) .mh-zz-media { line-height: 0 !important; font-size: 0 !important; align-self: flex-start !important; }
.mh-zz-row:not(.reverse) .mh-zz-media img { vertical-align: top !important; display: block !important; }
.mh-zz-row:not(.reverse) .mh-zz-badge { line-height: 1 !important; font-size: 12px !important; }

/* === Despre Noi - text rand 2 mai sus, aliniat cu video (v13.0) === */
.mh-zz-row.reverse { align-items: flex-start !important; }
.mh-zz-row.reverse .mh-zz-content { align-self: flex-start !important; padding-top: 0 !important; margin-top: -8px !important; }
.mh-zz-row.reverse .mh-zz-content h2 { margin-top: 0 !important; }

/* === Despre Noi - reduce gap intre rand1 si rand2 (v13.1) === */
.mihaela-section-zz .mh-zz-row { margin-bottom: 8px !important; }
.mihaela-section-zz .mh-zz-row.reverse { margin-top: -40px !important; }
@media (max-width: 900px) {
  .mihaela-section-zz .mh-zz-row { margin-bottom: 24px !important; }
  .mihaela-section-zz .mh-zz-row.reverse { margin-top: 0 !important; }
}

/* === Despre Noi - revert negative margin (v13.2) === */
.mihaela-section-zz .mh-zz-row { margin-bottom: 24px !important; }
.mihaela-section-zz .mh-zz-row.reverse { margin-top: 0 !important; }

/* === Despre Noi - sterge padding sus din randul 2 (v13.3) === */
.mihaela-section-zz .mh-zz-row.reverse { padding-top: 0 !important; margin-top: -120px !important; }
.mihaela-section-zz .mh-zz-row.reverse .mh-zz-media { margin-top: 120px !important; }
@media (max-width: 900px) {
  .mihaela-section-zz .mh-zz-row.reverse { margin-top: 0 !important; }
  .mihaela-section-zz .mh-zz-row.reverse .mh-zz-media { margin-top: 0 !important; }
}

/* === Despre Noi - text rand 2 si mai sus (v13.4) === */
.mihaela-section-zz .mh-zz-row.reverse { margin-top: -220px !important; }
.mihaela-section-zz .mh-zz-row.reverse .mh-zz-media { margin-top: 220px !important; }
@media (max-width: 900px) {
  .mihaela-section-zz .mh-zz-row.reverse { margin-top: 0 !important; }
  .mihaela-section-zz .mh-zz-row.reverse .mh-zz-media { margin-top: 0 !important; }
}

/* === Despre Noi - mic spatiu intre text si poza (v13.5) === */
.mihaela-section-zz .mh-zz-row.reverse { margin-top: -170px !important; }
.mihaela-section-zz .mh-zz-row.reverse .mh-zz-media { margin-top: 170px !important; }

/* === Mobile - hero pages: arata partea de jos (paine, maia) (v13.6) === */
@media (max-width: 768px) {
  .page-hero.has-bg::before { background-position: center 75% !important; }
}

/* === Revert hero mobile position (v13.7) === */
@media (max-width: 768px) {
  .page-hero.has-bg::before { background-position: center center !important; }
}

/* === Sigla UE desktop - 160x90 (v13.8) === */
@media (min-width: 769px) {
  .header-badge-img.header-badge-ue { width: 160px !important; height: 90px !important; object-fit: contain !important; }
}
