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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: white;
    margin: 0;
    padding: 0px 0px;
    color: #2b2530;
}
img {
    max-width: 100%;
    height: auto;
}
/* FULL-WIDTH HEADER WRAPPER */
/* FULL-WIDTH HEADER WRAPPER */
.header-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* HERO */
.header-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* DESKTOP HERO */
.header-hero {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: url("../img/assets/april.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* MOBIL HERO */
.header-hero-mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 260px;
    background-image: url("../img/assets/april_2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* FELSŐ SÖTÉTÍTŐ OVERLAY */
.header-hero::after,
.header-hero-mobile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.20) 15%,
        rgba(0,0,0,0.08) 30%,
        rgba(0,0,0,0) 55%
    );
    pointer-events: none;
}

/* TABLET / KISEBB DESKTOP */
@media (max-width: 1400px) {
    .header-hero {
        height: 360px;
    }
}

/* MOBIL */
@media (max-width: 550px) {
    .header-hero {
        display: none;
    }

    .header-hero-mobile {
        display: block;
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}
/* KERESÉS gomb – bal felső sarok */
.filter-open-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    background: #fff;
    color: #C18E90;
    border: 1px solid #d0c4b8;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.filter-open-btn:hover { opacity: .9; }

/* TERMÉKEK gomb figyelem animáció */

@keyframes filterPulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }

    40% {
        transform: scale(1.08);
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }

}

.filter-open-btn.attention {
    animation: filterPulse 1.6s ease-in-out 2;
}
/* tooltip */
/* TOOLTIP */

.filter-tooltip{
    position: fixed;
    top: 80px;
    left: 20px;
    background: #ffffff;
    color: #333;
    padding: 10px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-8px);
    transition: all .35s ease;
    pointer-events: none;
    z-index: 1199;
}

.filter-tooltip.show{
    opacity:1;
    transform: translateY(0);
}

/* kis nyíl */

.filter-tooltip::after{
    content:"";
    position:absolute;
    top:-6px;
    left:24px;
    width:12px;
    height:12px;
    background:#fff;
    transform:rotate(45deg);
}
/* KOSÁR gomb – jobb felső sarok */
.cart-open-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: #ffffff;
    color: #C18E90;
    border-radius: 999px;
    padding: 8px 20px;
    border: 1px solid #d0c4b8;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-open-btn:hover { background: #fff5ef; }
.cart-count-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #C18E90;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Szűrő stílusok – modalban használjuk */
.filters .field,
.modal-filters .field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.filters label,
.modal-filters label {
    font-size: 14px;
    font-weight: 600;
    padding-left: 4px;
}
.filters input[type="text"],
.filters select,
.modal-filters input[type="text"],
.modal-filters select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #d0c4b8;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.select-wrap { position: relative; }
.select-wrap select {
    appearance: none;
    padding-right: 36px;
    cursor: pointer;
}
.select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #5a4f4a transparent transparent transparent;
    opacity: 0.7;
}

/* FILTER Modal */
.filter-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1200;
}
.filter-modal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 24px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 1s ease;
    overflow-y: auto;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .filter-modal-content {
        width: 100%;
        max-width: 100%;
    }
}
.filter-modal.show .filter-modal-content {
    transform: translateX(0);
}
.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.filter-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}
.modal-filters .field { margin-bottom: 16px; }
.modal-filters input,
.modal-filters select {
    width: 100%;
    max-width: 100%;
}
.modal-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}
.btn-modal-apply {
    flex: 1;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: #2b2929;
    color: white;
    font-size: 16px;
    font-weight: 600;
}
.btn-modal-reset {
    flex: 1;
    padding: 12px;
    border-radius: 999px;
    border: 1px solid #d8c9bd;
    background: #fff5ef;
    text-align: center;
    text-decoration: none;
    color: #6e5f58;
    font-size: 15px;
    font-weight: 500;
}

/* KOSÁR Modal */
.cart-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1500;
}
.cart-modal-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 24px 15px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 1s ease;
    overflow-y: auto;
    overflow-x: hidden;
}
@media (max-width: 500px) {
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
    }
}
.cart-modal.show .cart-modal-content {
    transform: translateX(0);
}
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cart-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

/* Kosár elemek */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-item-form {
    border-radius: 14px;
    border: 0.5px solid #333;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: white;
}
.cart-item-top {
    display: flex;
    gap: 10px;
}
.cart-item-image {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1e6da;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
}
.cart-item-size {
    font-size: 12px;
    color: #8f8179;
}
.cart-item-price {
    font-size: 13px;
    font-weight: 600;
}
.cart-item-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cart-qty-btn{
    -webkit-appearance: none;
    appearance: none;

    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    border-radius: 999px; /* maradjon “kerek” kattintási felület */
    -webkit-tap-highlight-color: transparent;
}

/* ikon méret */
.qty-icon{
    width: 22px;
    height: 22px;
    display: block;
}

/* Mobilon legyen ujjbarát */
@media (max-width: 480px){
    .cart-qty-btn{
        width: 44px;
        height: 44px;
    }
    .qty-icon{
        width: 30px;
        height: 30px;
    }
}

.cart-qty-value {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}
.cart-line-total {
    font-size: 14px;
    font-weight: 600;
}
.cart-remove-btn {
    margin-top: 4px;
    align-self: flex-end;
    border: none;
    background: none;
    color: #c0392b;
    font-size: 12px;
    cursor: pointer;
}

/* Kosár összegzés */
.cart-summary {
    margin-top: 16px;
    border-top: 1px solid #f0e4d8;
    padding-top: 12px;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 8px;
}
.cart-summary-row strong {
    font-size: 16px;
}
.cart-empty {
    font-size: 14px;
    color: #8f8179;
}
.article-box {
    margin: 0px 15px;
}
/* Grid és kártyák */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) { .grid { grid-template-columns: repeat(2,1fr);} }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3,1fr);} }
@media (min-width: 1200px){ .grid { grid-template-columns: repeat(4,1fr);} }

.card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    position: relative;
}
/* ads 
.card-ad {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-ad img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
*/
/* reklám kártya */
.card-ad{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:none;        /* ez szedi le a szürke sávot */
}

/* kép teljes kitöltés */
.card-ad img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
     transition: transform .35s ease;
}
.card-ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}

.card-ad:hover img {
    transform: scale(1.05);
}
/* alulról halványuló overlay */
.card-ad::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:40%;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0) 100%
    );
    pointer-events:none;
}

/* szöveg blokk */
.card-ad-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* cím */
.card-ad-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    text-shadow:0 3px 12px rgba(0,0,0,.6);
}

/* gomb */
.card-ad-btn{
    align-self:flex-start;
    border:0;
    border-radius:999px;
    padding:12px 24px;
    background:#fff;
    color:#333;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
}

.card-ad-btn:hover{
    transform:translateY(-1px);
}

/* modal háttér */
.ad-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

/* sötét háttér */
.ad-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

/* modal doboz */
.ad-modal-box{
    position:relative;
    z-index:2;
    width:100%;
    max-width:620px;
    background:#fff;
    border-radius:22px;
    padding:30px 15px;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

/* bezáró gomb */
.ad-modal-close{
    position:absolute;
    top:16px;
    right:18px;
    border:0;
    background:transparent;
    font-size:28px;
    cursor:pointer;
}

/* modal cím */
#adModalContent h3{
    margin:0 0 16px;
    font-size:34px;
    font-weight:700;
}

/* szöveg */
#adModalContent p{
    margin:0 0 20px;
    font-size:18px;
    line-height:1.5;
}

/* email input */
#adModalContent input[type="name"]{
    width:100%;
    height:56px;
    padding:0 8px;
    border:1px solid #ddd;
    border-radius:14px;
    box-sizing:border-box;
    margin:0 0 16px;
    font-size:18px;      /* nagyobb betű */
}

/* gomb */
#adModalContent button,
.ad-modal-link-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 26px;
    border:0;
    border-radius:999px;
    background:#c9969a;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
}
/* Kiemelt termék érkezéskor */
.highlight-product {
    outline: 3px solid #C18E90;
    box-shadow: 0 0 0 4px rgba(255,150,141,0.35);
}

.badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #C18E90;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    z-index: 2;
}
.badge-size {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    color: #4a3a30;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    z-index: 2;
    white-space: nowrap;
}
.card-image {
    position: relative;
    padding-top: 100%;
    background: #f1e6da;
}
.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
}
.card-meta span {
    font-size: 14px;
    color: #9a8d85;
}
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}
.star {
    font-size: 15px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.star.full { color: #f4b400; }
.star.half { color: #f4b400; opacity: .7; }
.star.empty { color: #d1c5b7; top: -1px; }
.rating-count {
    font-size: 12px;
    color: #9a8d85;
}
.price { font-size: 24px; font-weight: 800; margin-top: 4px; }
.price-sale {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}
.price-old {
    font-size: 22px;
    color: #a3968d;
    text-decoration: line-through;
}
.price-new {
    font-size: 24px;
    font-weight: 800;
    color: #2b2530;
}
.stock {
    font-size: 12px;
    font-weight: 500;
}
.stock.ok { color: #333; }
.stock.low { color: #C18E90; }
.stock.none { color: #C18E90; }

.card-footer {
    padding: 10px 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.details-link {
    font-size: 15px;
    font-weight: 500;
    color: #C18E90;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.details-link:hover { text-decoration: none; }
.cart-add-form { margin: 0; }
.btn-cart {
    padding: 7px 14px;
    border: 1px solid #333;
    border-radius: 999px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.14);
}
.btn-cart:hover { opacity: .92; }

/* Load more */
.load-more-wrap {
    margin-top: 50px;
    text-align: center;
}
.load-more {
    padding: 10px 22px;
    border-radius: 999px;
    background: #C18E90;
    color: white;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}
.load-more:hover { opacity: .9; }
/* To top / bottom */
.scroll-btn {
    position: fixed;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C18E90;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 1150;
    transition: opacity 0.2s, transform 0.2s;
}
.scroll-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.scroll-top { bottom: 140px; }
.scroll-bottom { bottom: 80px; }
/* TERMÉK MODAL (BŐVEBBEN) – két soros elrendezés, nagyobb betűk, négyzet kép */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 1400;
    overflow-y: auto;
}

.product-modal-card {
    position: relative;
    max-width: 980px;
    width: 100%;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(35px);
    opacity: 0;
    transition: all .25s ease;
}

.product-modal.show .product-modal-card {
    transform: translateY(0);
    opacity: 1;
}
.product-modal-top {
    display: flex;
    flex-direction: row;
}
.product-modal-image {
    flex: 0 0 45%;
    background: transparent;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    overflow: hidden;
    border-top-left-radius: 22px;
}

.product-modal-image img,
#pmImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 22px;
}
.product-modal-main {
    flex: 1;
    padding: 26px 30px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-modal-bottom {
    padding: 20px 30px 26px;
    border-top: 1px solid #f0e4d8;
    background: #ffffff;
}
.product-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: white;
    padding: 4px 4px 2px 4px;
    border-radius: 250px;
    cursor: pointer;
}

/* Tipográfia a modalban – MIN 16px */
.pm-category {
    font-size: 16px;
    color: #9a8d85;
}
.pm-name {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2px;
}
.pm-line {
    font-size: 16px;
    color: #6b5d55;
    margin-top: 4px;
}
.pm-line strong {
    font-weight: 600;
    color: #3a302b;
}
.pm-section-title {
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 2px;
}
.pm-text {
    font-size: 16px;
    color: #5c4f48;
    letter-spacing: 1px;
    line-height: 1.8em;
}
.pm-price-wrap {
    margin-top: 10px;
}
.pm-price-old {
    font-size: 24px;
    color: #a3968d;
    text-decoration: line-through;
    margin-right: 8px;
}
.pm-price-new {
    font-size: 24px;
    font-weight: 700;
}
.pm-stock {
    font-size: 16px;
    margin-top: 4px;
}
.pm-footer {
    margin-top: 16px;
}
.btn-cart-full {
    width: 100%;
    padding: 12px 18px;
    font-size: 16px;
}

/* értesítés, ha elfogyott */
.pm-notify {
    font-size: 14px;
    color: #6b5d55;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f0e4d8;
    display: none; /* JS fogja megjeleníteni, ha stockClass === "none" */
}

.pm-notify-text {
    margin-bottom: 8px;
    font-size: 15px;
}

#pmNotifyForm {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

#pmNotifyEmail {
    flex: 1 1 180px;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #d0c4b8;
    font-size: 14px;
}

#pmNotifyBtn {
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #2b2929;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

#pmNotifyBtn:hover {
    opacity: 0.9;
}

.pm-notify-msg {
    font-size: 13px;
}

.pm-notify-msg.success {
    color: #C18E90;
}

.pm-notify-msg.error {
    color: #FF42A1;
}

/* modal reszponzív */
@media (max-width: 800px) {
    .product-modal-card {
        margin: 20px auto;
        max-width: 97%;
    }
    .product-modal-top {
        flex-direction: column;
    }
    .product-modal-image {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 1 / 1;
        padding: 0px;
        border-top-right-radius: 22px; 
    }
    .product-modal-main {
        padding: 20px 18px 25px;
    }
    .product-modal-bottom {
        padding: 14px 18px 20px;
    }
    .pm-name {
        font-size: 22px;
    }
}
/* ====== NAGY FEKETE FOOTER ====== */

.site-footer {
    background: #333;
    color: #ffffff;
    padding: 60px 20px 40px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    color: #C18E90;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 30px;
    display:inline-block;
    animation: newsletterWiggle 6s ease-in-out infinite;
    will-change: transform;
}



.footer-divider {
    height: 1px;
    background: #C18E90;
    max-width: 90%;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* ===== JAVÍTVA: 2 SOROS LINK NAV (GRID) ===== */
.footer-links {
    display: flex;
    flex-direction: column;     /* két sor egymás alatt */
    align-items: center;
    gap: 26px;                  /* a két sor közti távolság */
    margin-bottom: 40px;
}

.footer-links-row{
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* bal - közép - jobb */
    align-items: center;
    width:100%;
    max-width:1300px;
    margin:0 auto;

    /* extra: szebb vertikális ritmus, és ha törne egy hosszú cím */
    column-gap: 24px;
}

/* 1. link balra */
.footer-links-row a:nth-child(1){
    justify-self: start;
    text-align: left;
}

/* 2. link középre (valódi közép) */
.footer-links-row a:nth-child(2){
    justify-self: center;
    text-align: center;
}

/* 3. link jobbra */
.footer-links-row a:nth-child(3){
    justify-self: end;
    text-align: right;
}

.footer-links a {
    font-size: 18px;
     font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    /* extra: ha nagyon hosszú, ne csússzon össze csúnyán */
    display: inline-block;
    white-space: nowrap;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity .25s ease, transform .25s ease;
}

.footer-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.footer-bottom {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: none;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 80px;
}
/* ===== Mobilon egymás alá rendezve (GRID-hez igazítva) ===== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 16px 30px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 18px;
        margin-bottom: 50px;
    }

    .footer-links-row {
        grid-template-columns: 1fr;   /* egy oszlop */
        gap: 16px;
        column-gap: 0;

        justify-items: center;        /* <- EZ KELL: a grid elemek középre */
        text-align: center;           /* <- biztos ami biztos */
    }

.footer-links-row a:nth-child(1),
.footer-links-row a:nth-child(2),
.footer-links-row a:nth-child(3) {
    justify-self: center;
    text-align: center;
    white-space: normal;
}

    .footer-links a {
        font-size: 16px;
        letter-spacing: 0.10em;
        font-weight: bold;
    }
}

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

.footer-divider-spaced {
    margin-top: 18px;
}

.footer-newsletter {
    margin-top: 16px;
    text-align: center;
}

.newsletter-title {
     color: #C18E90;
    font-weight: 900;
    letter-spacing: 0.3px;
}

.newsletter-desc {
    margin-top: 6px;
    color: white;
    line-height: 1.4;
    font-size: 15px;
}


/* ---- Feliratkozva állapot ---- */

.newsletter-status {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-badge {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.25);
    background: #fff;
    font-weight: 900;
    font-size: 13px;
}

.newsletter-email {
    color: #444;
    font-size: 14px;
}

.newsletter-unsub {
    font-weight: 800;
    text-decoration: none;
    color: #C18E90;
}
/* ---- Űrlap ---- */

.newsletter-form {
    margin: 14px auto 0;
    display: grid;
    gap: 12px;
    max-width: 1220px;
}
.form-inner {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 18px;
}
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    text-align: center;
}

.newsletter-form input::placeholder {
    color: #999;
}

/* Checkbox blokk */

.newsletter-consent{
    display:flex;
    align-items:center;          /* kulcs: ne baseline */
    justify-content:center;
    gap:8px;                     /* kisebb távolság */
    max-width:1220px;
    margin:14px auto 0;
    font-size:14px;
    line-height:1.35;
    color:#fff;
    text-align:center;
}

/* checkbox reset + fix méret */
.newsletter-consent input[type="checkbox"]{
    appearance:none;
    -webkit-appearance:none;

    width:20px;
    height:20px;
    border-radius:4px;
    border:2px solid #fff;
    background:#fff;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    flex:0 0 20px;
}

/* pipa */
.newsletter-consent input[type="checkbox"]:checked::after{
    content:"";
    width:6px;
    height:10px;
    border-right:2px solid #111;
    border-bottom:2px solid #111;
    transform:rotate(45deg);
    margin-top:-1px;
}

.newsletter-consent span{
    display:inline-block;
}



/* Gomb */

.newsletter-form button {
    margin: 6px auto 0;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #C18E90;
    background: #C18E90;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
.newsletter-form button:hover {
    background: white;
    color: #C18E90;
}

.newsletter-form button:active {
    transform: scale(0.98);
}

/* shake */
@keyframes shakeInfinite {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(-2px); }
    60%  { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.shake-button {
    animation: shakeInfinite 2.2s infinite ease-in-out;
}
/* share email */
.floating-share {
    position: fixed;
    bottom: 20px;
    right: 12px; 
    width: 44px;
    height: 44px;
    border-radius: 250px;
    cursor: pointer;
    z-index: 1150;
    background-color: #fff;
}
/* magazin */
.magazin-btn {
    position: fixed;
    bottom: 200px;
    right: 12px; 
    width: 44px;
    height: 44px;
    border-radius: 250px;
    cursor: pointer;
    z-index: 1150;
    background-color: #fff;  
}
/* check out btn */
.checkout-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-top:12px;
    padding:14px 16px;
    border-radius:25px;
    border:1px solid #333;
    background:#333;
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;
    text-decoration:none;
    cursor:pointer;
    transition:opacity .12s ease, transform .08s ease;
}
.checkout-btn:hover{opacity:.92;}
.checkout-btn:active{transform:scale(.99);}

.checkout-btn.is-disabled{
    background:#e9e9ed;
    border-color:#d0d0d6;
    color:#777;
    cursor:not-allowed;
    pointer-events:none;
}
/* cart info */
.cart-info-msg{
    margin-bottom:12px;
    padding:10px 14px;
    border-radius:12px;
    background:#fff5ef;
    border:1px solid #f0cfc9;
    font-size:13px;
    color:#6b4f45;
    line-height:1.4;
}
