/* =========================================================
   ALAP
========================================================= */

:root {
    --blue: #0866c6;
    --blue-dark: #064b96;
    --blue-light: #eaf4ff;

    --navy: #0c2340;
    --text: #182436;
    --muted: #64748b;

    --background: #f7f9fc;
    --white: #ffffff;

    --green: #2f9e44;
    --green-light: #edf9ef;

    --border: #e5eaf1;

    --shadow:
        0 15px 40px rgba(16, 42, 67, 0.09);

    --shadow-small:
        0 6px 20px rgba(16, 42, 67, 0.08);

    --radius: 18px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        'Poppins',
        sans-serif;

    background:
        var(--background);

    color:
        var(--text);

    line-height: 1.6;
}


button,
input,
textarea {
    font-family: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    border: 0;
}


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


img {
    display: block;
    max-width: 100%;
}


.section-container {
    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;
}



/* =========================================================
   NAVIGÁCIÓ
========================================================= */

.main-nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 76px;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid rgba(229, 234, 241, 0.8);

    z-index: 1000;
}


.nav-container {
    width:
        min(1240px, calc(100% - 48px));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-logo {
    width: 47px;
    height: 47px;

    border-radius: 50%;

    object-fit: cover;
}


.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-text strong {
    font-size: 20px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--navy);
}


.brand-text span {
    margin-top: 6px;

    font-size: 10px;

    letter-spacing: 5px;

    text-transform: uppercase;

    color: var(--blue);
}


.nav-menu {
    display: flex;

    align-items: center;

    gap: 32px;

    list-style: none;

    margin: 0;

    padding: 0;
}


.nav-menu a {
    position: relative;

    font-size: 14px;

    font-weight: 600;

    color: #344054;

    transition: 0.25s;
}


.nav-menu a:hover,
.nav-menu .business-nav-link {
    color: var(--blue);
}


.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 0;

    height: 2px;

    background: var(--blue);

    transition: 0.25s;
}


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


.nav-cta {
    background: var(--blue);

    color: white;

    padding: 11px 20px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(8, 102, 198, 0.22);

    transition: 0.25s;
}


.nav-cta:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}



/* =========================================================
   MOBIL MENÜ GOMB
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    cursor: pointer;

    padding: 8px;
}


.menu-toggle span {
    display: block;

    height: 2px;

    margin: 6px 0;

    background: var(--navy);

    border-radius: 10px;
}



/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 100vh;

    padding-top: 76px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-background {
    position: absolute;

    inset: 0;
}


.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;
}


.mobile-hero {
    display: none;
}


/* csak enyhe sötétítés,
   hogy a kép továbbra is teljesen érvényesüljön */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 45, 0.58) 0%,
            rgba(8, 25, 45, 0.36) 42%,
            rgba(8, 25, 45, 0.16) 70%,
            rgba(8, 25, 45, 0.08) 100%
        );
}


.hero-container {
    position: relative;

    z-index: 5;

    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}


/* =========================================================
   HERO BAL OLDAL
========================================================= */

.hero-content {
    width: min(620px, 60%);
}


.hero-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #a8d5ff;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.hero-content h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.06;

    letter-spacing: -2px;

    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.22);
}


.hero-subtitle {
    margin-top: 15px;

    color: white;

    font-size:
        clamp(22px, 2.4vw, 34px);

    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -0.5px;

    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.25);
}


.hero-subtitle span {
    display: block;

    font-weight: 600;
}


.hero-location {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 26px;

    color: white;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.hero-location:hover {
    color: white;

    text-decoration: none;

    transform: translateX(3px);

    opacity: 0.9;
}


.location-icon {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    display: inline-block;

    overflow: hidden;

    color: transparent;

    background: #54a9ff;

    box-shadow:
        0 0 0 5px rgba(84, 169, 255, 0.18);
}



/* =========================================================
   HERO GOMBOK
========================================================= */

.hero-actions {
    display: flex;

    gap: 13px;

    margin-top: 30px;
}


.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.primary-btn {
    background: var(--blue);

    color: white;

    box-shadow:
        0 9px 25px rgba(0, 72, 160, 0.3);
}


.primary-btn:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


.secondary-btn {
    background:
        rgba(255, 255, 255, 0.94);

    color: var(--navy);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.14);
}


.secondary-btn:hover {
    background: white;

    transform: translateY(-2px);
}



/* =========================================================
   HERO LOGÓ
========================================================= */

.hero-logo {
    width: 260px;
    height: 260px;

    flex:
        0 0 260px;

    perspective: 1000px;
}


.flip-container {
    perspective: 1000px;
}


.flip-card {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition:
        transform 0.65s ease;
}


.flip-container:hover .flip-card {
    transform:
        rotateY(180deg);
}


.flip-front,
.flip-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    backface-visibility: hidden;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.28);
}


.flip-front {
    background: white;

    display: flex;

    align-items: center;

    justify-content: center;
}


.flip-front img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.flip-back {
    transform:
        rotateY(180deg);

    background:
        linear-gradient(
            145deg,
            #0b6bc4,
            #06477f
        );

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 32px;
}


.flip-back a {
    color: white;

    text-decoration: none;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.flip-back strong {
    font-size: 20px;
}


.flip-back span {
    font-size: 13px;

    opacity: 0.85;
}


.flip-address {
    margin-top: 24px;

    padding-top: 18px;

    width: 100%;

    border-top:
        1px solid rgba(255, 255, 255, 0.22);

    font-size: 12px;

    line-height: 1.65;

    opacity: 0.9;
}



/* =========================================================
   HERO MOBIL
========================================================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: 100vh;

        padding-top: 68px;

        align-items: center;
    }


    .desktop-hero {
        display: none;
    }


    .mobile-hero {
        display: block;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 25, 45, 0.17) 0%,
                rgba(7, 25, 45, 0.28) 36%,
                rgba(7, 25, 45, 0.78) 75%,
                rgba(7, 25, 45, 0.94) 100%
            );
    }


    .hero-container {
        width:
            calc(100% - 32px);

        min-height:
            calc(100vh - 68px);

        padding:
            48px 0 36px;

        flex-direction: column-reverse;

        justify-content: flex-end;

        gap: 34px;
    }


    .hero-content {
        width: 100%;

        text-align: center;
    }


    .hero-eyebrow {
        color: #a9d7ff;

        margin-bottom: 9px;
    }


    .hero-content h1 {
        font-size:
            clamp(34px, 10vw, 45px);

        letter-spacing: -1.4px;
    }


    .hero-subtitle {
        font-size:
            clamp(19px, 6vw, 27px);

        margin-top: 10px;
    }


    .hero-location {
        margin-top: 20px;
    }


    .hero-actions {
        flex-direction: column;

        margin-top: 25px;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
    }


    .hero-logo {
        width: 165px;
        height: 165px;

        flex:
            0 0 165px;
    }


    .flip-back {
        padding: 20px;
    }


    .flip-back strong {
        font-size: 16px;
    }


    .flip-back span,
    .flip-address {
        font-size: 10px;
    }


    .flip-address {
        margin-top: 13px;

        padding-top: 10px;
    }

}
/* =========================================================
   SZEKCIÓ FEJLÉC
========================================================= */

.section-heading {
    text-align: center;

    max-width: 700px;

    margin:
        0 auto 32px;
}


.section-label {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--blue);
}


.section-heading h2,
.about-content h2,
.contact-card h2,
.business-card h2 {
    margin: 0;

    color: var(--navy);

    font-size:
        clamp(28px, 3vw, 38px);

    line-height: 1.2;

    letter-spacing: -1px;
}


.section-heading p {
    color: var(--muted);

    margin:
        10px 0 0;

    font-size: 14px;
}



/* =========================================================
   TERMÉKEK
========================================================= */

.products-section {
    padding:
        80px 0 90px;

    background: white;
}


.filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 16px;
}


.sub-filters {
    margin-top: 0;

    margin-bottom: 35px;
}


.filter-btn {
    padding:
        9px 20px;

    border-radius: 100px;

    background: #f1f4f8;

    color: #475467;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s;
}


.filter-btn:hover {
    background: #dcecff;

    color: var(--blue);
}


.filter-btn.active {
    background: var(--blue);

    color: white;

    box-shadow:
        0 6px 15px rgba(8, 102, 198, 0.2);
}


.products-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 35px;
}


.product {
    transition:
        opacity 0.3s,
        transform 0.3s;
}


.product.hide {
    display: none;
}


.product.show {
    display: flex;
}


.product-card {
    min-width: 0;

    flex-direction: column;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        var(--shadow-small);

    transition: 0.3s;
}


.product-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}


.product-image-wrap {
    height: 190px;

    padding: 15px;

    background:
        linear-gradient(
            145deg,
            #f7fbff,
            #eef5fb
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.product-img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    cursor: pointer;

    transition:
        transform 0.35s;
}


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


.product-body {
    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 20px;

    text-align: center;
}


.product-type {
    color: var(--blue);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    font-weight: 700;
}


.product-body h3 {
    margin:
        6px 0 6px;

    color: var(--navy);

    font-size: 17px;
}


.product-body p {
    margin:
        0 0 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


.product-button {
    margin-top: auto;

    padding:
        8px 20px;

    border:
        1px solid var(--blue);

    border-radius: 7px;

    background: white;

    color: var(--blue);

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s;
}


.product-button:hover {
    background: var(--blue);

    color: white;
}



/* =========================================================
   TÖRTÉNETÜNK
========================================================= */

.about-section {
    padding:
        90px 0;

    background:
        linear-gradient(
            135deg,
            #f5f9fe,
            #ffffff
        );
}


.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-content p {
    color: #526175;

    font-size: 14px;

    line-height: 1.8;

    margin:
        18px 0 0;
}


.about-image-card {
    position: relative;

    min-height: 350px;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dceeff,
            #f7fbff
        );

    box-shadow:
        var(--shadow);

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-image-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        rgba(8, 102, 198, 0.08);

    top: -130px;
    right: -80px;
}


.about-water-decoration {
    position: absolute;

    top: 25px;
    left: 25px;

    display: flex;

    flex-direction: column;

    color: var(--blue);
}


.about-water-decoration span {
    font-size: 50px;

    font-weight: 700;

    line-height: 1;
}


.about-water-decoration small {
    font-weight: 600;
}


.about-logo-box {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: white;

    padding: 30px;

    box-shadow:
        var(--shadow);

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-logo-box img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}



/* =========================================================
   KAPCSOLAT + CÉGEKNEK
========================================================= */

.contact-business-section {
    padding:
        85px 0;

    background: white;
}


.contact-business-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 28px;
}


.contact-card,
.business-card {
    border-radius: 22px;

    padding: 40px;

    min-width: 0;
}


.contact-card {
    background:
        linear-gradient(
            135deg,
            #edf6ff,
            #f8fbff
        );
}


.business-card {
    background:
        linear-gradient(
            135deg,
            #edf9ef,
            #f8fdf8
        );
}


.contact-list {
    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-top: 30px;
}


.contact-item {
    display: flex;

    gap: 16px;

    align-items: flex-start;
}


.contact-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue);

    color: white;

    font-size: 18px;
}


.contact-item strong {
    display: block;

    color: var(--navy);

    font-size: 14px;
}


.contact-item a,
.contact-item span {
    display: block;

    color: #536174;

    font-size: 13px;
}


.text-action {
    margin-top: 3px;

    padding: 0;

    background: transparent;

    color: var(--blue);

    font-size: 12px;

    text-decoration: none;

    cursor: pointer;
}


.text-action:hover {
    color: var(--blue-dark);
}


.mobile-email-button {
    display: none !important;
}


.opening-hours span {
    margin-top: 2px;
}


.closed {
    color: #dc2626;
}


.green-label {
    color: var(--green);
}


.business-card > p {
    margin:
        18px 0;

    color: #526175;

    font-size: 14px;
}


.business-benefits {
    list-style: none;

    padding: 0;

    margin:
        24px 0;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.business-benefits li {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #435266;

    font-size: 13px;
}


.business-benefits li span {
    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: var(--green);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;
}


.business-button {
    width: 100%;

    min-height: 46px;

    border-radius: 8px;

    background: var(--green);

    color: white;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s;
}


.business-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(47, 158, 68, 0.22);
}



/* =========================================================
   AJÁNLATKÉRŐ FORM
========================================================= */

.business-form-container {
    max-height: 0;

    opacity: 0;

    overflow: hidden;

    transition:
        max-height 0.5s ease,
        opacity 0.35s ease,
        margin 0.35s ease;

    margin-top: 0;
}


.business-form-container.open {
    max-height: 600px;

    opacity: 1;

    margin-top: 25px;
}


.offer-form,
.email-form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.offer-form input,
.offer-form textarea,
.email-form input,
.email-form textarea {
    width: 100%;

    border:
        1px solid #d8e1eb;

    border-radius: 9px;

    background: white;

    padding:
        12px 14px;

    color: var(--text);

    outline: none;

    font-size: 13px;
}


.offer-form input:focus,
.offer-form textarea:focus,
.email-form input:focus,
.email-form textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(8, 102, 198, 0.08);
}


.offer-form textarea,
.email-form textarea {
    min-height: 110px;

    resize: vertical;
}


.offer-form button {
    min-height: 44px;

    border-radius: 8px;

    background: var(--green);

    color: white;

    font-weight: 600;

    cursor: pointer;
}



/* =========================================================
   MODALOK
========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(6, 23, 45, 0.76);

    backdrop-filter:
        blur(6px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;
}


.modal-overlay.hidden {
    display: none;
}


.product-modal {
    position: relative;

    width:
        min(850px, 100%);

    max-height: 85vh;

    overflow: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: white;

    border-radius: 20px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3);
}


.product-modal-image {
    min-height: 430px;

    background: #f3f7fb;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.product-modal-image img {
    max-width: 100%;
    max-height: 370px;

    object-fit: contain;
}


.product-modal-content {
    padding:
        55px 35px 35px;

    display: flex;

    align-items: center;
}


.product-modal-content h3 {
    color: var(--navy);

    font-size: 24px;

    margin:
        0 0 20px;
}


.modal-close {
    position: absolute;

    top: 15px;
    right: 17px;

    z-index: 10;

    width: 37px;
    height: 37px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.95);

    color: var(--navy);

    font-size: 24px;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        var(--shadow-small);
}


.modal-highlight {
    background: #f1f6fc;

    padding: 15px;

    border-radius: 10px;

    text-align: center;
}


.modal-action-button {
    background: var(--blue);

    color: white;

    padding:
        9px 16px;

    border-radius: 7px;

    cursor: pointer;
}


.wine-modal,
.email-modal {
    position: relative;

    width:
        min(500px, 100%);

    max-height: 85vh;

    overflow-y: auto;

    background: white;

    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3);
}


.wine-modal h2,
.email-modal h2 {
    color: var(--navy);

    margin:
        0 0 25px;
}


.wine-price-group {
    margin-top: 20px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);
}


.wine-price-group h3 {
    color: var(--blue);

    margin:
        0 0 12px;
}


.wine-price-group p {
    display: flex;

    justify-content: space-between;

    margin:
        5px 0;

    font-size: 14px;
}


.wine-price-group small {
    display: block;

    margin-top: 10px;

    color: var(--muted);
}


.email-form button {
    min-height: 45px;

    border-radius: 8px;

    background: var(--blue);

    color: white;

    font-weight: 600;

    cursor: pointer;
}



/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding:
        55px 0 20px;

    background:
        linear-gradient(
            135deg,
            #082c57,
            #061d38
        );

    color: #d6e2ef;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1.2fr 1fr;

    gap: 55px;

    padding-bottom: 40px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 15px;
}


.footer-brand img {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    object-fit: cover;
}


.footer-brand div {
    display: flex;

    flex-direction: column;
}


.footer-brand strong {
    color: white;

    text-transform: uppercase;

    font-size: 25px;

    letter-spacing: 2px;
}


.footer-brand span {
    color: #75b8ff;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 5px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}


.footer-column h4 {
    color: white;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 0.7px;

    margin:
        0 0 8px;
}


.footer-column a,
.footer-column span {
    color: #b8c9dc;

    font-size: 12px;

    transition: 0.2s;
}


.footer-column a:hover {
    color: white;
}


.footer-bottom {
    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    text-align: center;

    color: #90a7c0;

    font-size: 11px;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

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


    .nav-menu {
        gap: 20px;
    }


    .nav-cta {
        display: none;
    }


    .about-grid {
        gap: 45px;
    }


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

}



/* =========================================================
   MOBIL
========================================================= */

@media (max-width: 768px) {

    .section-container {
        width:
            calc(100% - 32px);
    }


    /* =====================================================
       NAV
    ===================================================== */

    .main-nav {
        height: 68px;
    }


    .nav-container {
        width:
            calc(100% - 30px);
    }


    .brand-logo {
        width: 42px;
        height: 42px;
    }


    .brand-text strong {
        font-size: 17px;
    }


    .brand-text span {
        font-size: 8px;
    }


    .menu-toggle {
        display: block;
    }


    .nav-menu {
        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: white;

        padding:
            10px 20px 20px;

        box-shadow:
            0 20px 30px rgba(0, 0, 0, 0.1);
    }


    .nav-menu.active {
        display: flex;
    }


    .nav-menu li {
        width: 100%;
    }


    .nav-menu a {
        display: block;

        width: 100%;

        padding:
            13px 5px;
    }


    .nav-menu a::after {
        display: none;
    }



    /* =====================================================
       HERO
    ===================================================== */

    .hero-section {
        min-height: 760px;

        padding-top: 68px;

        align-items: flex-end;
    }


    .desktop-hero {
        display: none;
    }


    .mobile-hero {
        display: block;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 25, 48, 0.06) 0%,
                rgba(5, 25, 48, 0.16) 34%,
                rgba(5, 25, 48, 0.80) 72%,
                rgba(5, 25, 48, 0.96) 100%
            );
    }


    .hero-container {
        width:
            calc(100% - 32px);

        padding-bottom: 46px;
    }


    .hero-content {
        max-width: none;
    }


    .hero-eyebrow {
        color: #9ed0ff;
    }


    .hero-content h1 {
        color: white;

        font-size:
            clamp(34px, 10vw, 44px);

        letter-spacing: -1.4px;
    }


    .hero-subtitle {
        color: white;

        font-size:
            clamp(21px, 6.5vw, 29px);

        line-height: 1.25;
    }


    .hero-subtitle span {
        color: #68b4ff;
    }


    .hero-location {
        color: white;

        text-decoration: none;
    }


    .hero-location:hover {
        color: white;

        text-decoration: none;
    }


    .hero-actions {
        flex-direction: column;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
    }



    /* =====================================================
       TERMÉKEK
    ===================================================== */

    .products-section {
        padding:
            65px 0;
    }


    .section-heading {
        margin-bottom: 25px;
    }


    .section-heading h2 {
        font-size: 30px;
    }


    .filters {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }


    .filters::-webkit-scrollbar {
        display: none;
    }


    .filter-btn {
        flex:
            0 0 auto;
    }


    .products-grid {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .product-image-wrap {
        height: 220px;
    }



    /* =====================================================
       TÖRTÉNETÜNK
    ===================================================== */

    .about-section {
        padding:
            65px 0;
    }


    .about-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .about-content h2 {
        font-size: 30px;
    }


    .about-image-card {
        min-height: 290px;
    }



    /* =====================================================
       KAPCSOLAT + CÉGEKNEK
    ===================================================== */

    .contact-business-section {
        padding:
            60px 0;
    }


    .contact-business-grid {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .contact-card,
    .business-card {
        padding:
            28px 22px;
    }


    .contact-card h2,
    .business-card h2 {
        font-size: 27px;
    }


    .desktop-email-button {
        display: none;
    }


    .mobile-email-button {
        display: block !important;

        color:
            var(--blue) !important;

        text-decoration: none;
    }



    /* =====================================================
       MODAL
    ===================================================== */

    .product-modal {
        grid-template-columns:
            1fr;

        max-height: 90vh;
    }


    .product-modal-image {
        min-height: 280px;

        height: 280px;
    }


    .product-modal-image img {
        max-height: 230px;
    }


    .product-modal-content {
        padding:
            30px 25px;
    }


    .wine-modal,
    .email-modal {
        padding:
            35px 24px;
    }



    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding-top: 45px;
    }


    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 30px;
    }

}

/* =========================================================
   FIX NAVBAR MIATTI SCROLL KORREKCIÓ
========================================================= */
#contact,
#business {
    scroll-margin-top: 100px;
}