    html,
    body {
        margin: 0;
        padding: 0;
        background: #ffffff;
        font-family: 'Poppins', sans-serif;
        color: #111111;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    a {
        text-decoration: none;
    }

    .section-hero {
        width: 100%;
        background: #ffffff;
    }

    .hero-square-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-square {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        min-width: 0;
    }

    .hero-video-col {
        background: #d9d9d9;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-video-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.10);
        pointer-events: none;
    }

    .hero-text-col {
        background: #e2e0dd;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 10px;
    }

    .hero-slogan-wrap {
        width: 100%;
        max-width: 620px;
        text-align: center;
        animation: zoomInHero 1s ease forwards;
        transform: scale(0.88);
        opacity: 0;
    }

    .hero-eyebrow {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #5c5c5c;
    }

    .hero-title {
        margin: 0;
        font-size: 80px;
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: #B59DB8;
    }

    @keyframes zoomInHero {
        0% {
            transform: scale(0.88);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .section-products {
        padding: 110px 0px 90px 0px;
        background: #ffffff;
    }

    .section-title {
        margin: 0 0 14px 0;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        max-width: 720px;
        color: #666666;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .product-scroll-wrap {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 12px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .product-scroll-wrap::-webkit-scrollbar {
        height: 8px;
    }

    .product-scroll-wrap::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 999px;
    }

    .product-scroll-wrap::-webkit-scrollbar-thumb {
        background: #d7d7d7;
        border-radius: 999px;
    }

    .product-card {
        flex: 0 0 auto;
        width: 350px;
        border-radius: 28px;
        background: #ffffff;
        border: 1px solid #ececec;
        overflow: hidden;
    }

    .product-image-box {
        aspect-ratio: 2 / 3;
        overflow: hidden;
        background: #f7f7f7;
    }

    .product-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .product-card-body {
        padding: 22px;
    }

    .product-name {
        font-size: 1.08rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .product-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 22px;
        border-radius: 999px;
        border: 1px solid #333333;
        color: #333333;
        font-weight: 600;
        transition: all 0.25s ease;
    }

    .product-btn:hover {
        background: #ffffff;
        color: #111111;
        transform: translateY(-1px);
    }

    .section-banner {
        min-height: 100vh;
        position: relative;
        background: url('orgonak.jpg') center center / cover no-repeat;
    }

    .section-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.28);
    }

    .section-content {
        position: relative;
        z-index: 2;
    }

    .section-text {
        padding: 100px 0 80px;
        background: #ffffff;
    }

    .text-box {
        max-width: 1100px;
        margin: 0 auto;
        text-align: left;
    }

    .text-box h2 {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 26px;
        letter-spacing: -0.02em;
    }

    .text-box h3 {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 26px;
        letter-spacing: -0.02em;
        color: #e2e0dd;
    }

    .text-box p {
        font-size: 1.08rem;
        line-height: 1.95;
        color: #555555;
        margin-bottom: 0;
    }

    .site-footer {
        padding: 34px 20px 46px;
        text-align: center;
        border-top: 1px solid #eeeeee;
        background: #ffffff;
    }

    .footer-placeholder {
        min-height: 28px;
    }

    @media (min-width: 1600px) {
        .hero-title {
            font-size: 60px;
        }
    }

    @media (max-width: 1400px) {
        .hero-text-col {
            padding: 28px 14px;
        }

        .hero-title {
            font-size: 40px;
        }
    }

    @media (max-width: 1200px) {
        .hero-title {
            font-size: 35px;
        }
    }

    @media (max-width: 650px) {
        .hero-square-wrap {
            grid-template-columns: 1fr;
        }

        .hero-square {
            width: 100%;
            aspect-ratio: 1 / 1;
        }

        .hero-text-col {
            padding: 28px 14px;
        }

        .hero-title {
            font-size: 30px;
        }

        .product-card {
            width: 320px;
        }

        .section-products,
        .section-text {
            padding-top: 90px;
            padding-bottom: 70px;
        }
    }

    .section-gallery {
        padding: 0px 0px 110px 0;
        background: #ffffff;
    }

    .inner-gallery {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .grid-4-1x1 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    .gallery-card {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 28px;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card_one {
        background: url("img/artw21.jpg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card_two {
        background: url("img/artw21.jpg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card_three {
        background: url("img/artw21.jpg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card_four {
        background: url("img/artw21.jpg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .gallery-card img {
        width: 70%;
        height: 70%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.06);
    }

    .gallery-cta {
        position: absolute;
        bottom: 18px;
        left: 18px;
        right: 18px;
    }

    .gallery-btn {
        display: inline-block;
        padding: 10px 28px;
        border: 1px solid #333;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        color: #333;
        backdrop-filter: blur(6px);
        transition: all 0.25s ease;
    }

    .gallery-btn:hover {
        background: #ffffff;
        transform: translateY(-2px);
    }

    @media (max-width: 991px) {
        .grid-4-1x1 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 520px) {
        .grid-4-1x1 {
            grid-template-columns: 1fr;
        }
    }
/* 2.video line */
    .section-split {
        width: 100%;
        background: #ffffff;
    }

    .split-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .split-box {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        min-width: 0;
    }

    .split-video video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .split-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.15);
    }

    .split-text {
    background: #f4f2ef;
    display: flex;
    align-items: center;      /* függőleges közép */
    justify-content: center;  /* vízszintes közép */
    padding: 50px;
}

    .split-content {
        max-width: 520px;
    }

    .split-eyebrow {
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #777;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 16px;
    }

    .split-title {
        font-size: clamp(2rem, 3vw, 3.2rem);
        font-weight: 900;
        line-height: 1.1;
        color: #CBCBBD;
        margin-bottom: 20px;
    }

    .split-desc {
        font-size: 22px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 30px;
    }

  .split-btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    border: 3px solid #C9806F;
    font-size: 40px;
    font-weight: 800;
    color: #C9806F;
    transition: all 0.25s ease;

    animation: subtleShake 3.5s ease-in-out infinite;
}

/* finom shake */
@keyframes subtleShake {
    0%, 90%, 100% {
        transform: translateX(0) rotate(0);
    }

    92% {
        transform: translateX(-2px) rotate(-1deg);
    }

    94% {
        transform: translateX(2px) rotate(1deg);
    }

    96% {
        transform: translateX(-1px) rotate(-0.5deg);
    }

    98% {
        transform: translateX(1px) rotate(0.5deg);
    }
}

    .split-btn:hover {
          border: 3px solid #333;
          color: #333;
        transform: translateY(-2px);
    }
@media (max-width: 1100px) {
   .split-btn {
        font-size: 25px;
    }
}
@media (max-width: 1100px) {
   .split-btn {
        font-size: 20px;
    }
}
@media (max-width: 650px) {
    .split-wrap {
        grid-template-columns: 1fr;
    }

    .split-box {
        width: 100%;
    }

    .split-text {
        padding: 32px 20px;
    }

    .split-desc {
        font-size: 18px;
        line-height: 1.7;
    }
      .split-btn {
        font-size: 30px;
    }
}
/* modal */
    .daily-mood-modal {
        border: 0;
        border-radius: 28px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    }

    .daily-mood-modal .modal-header {
        position: relative;
        padding-right: 72px;
    }

    .custom-close {
        position: absolute;
        top: 20px;
        right: 20px;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        cursor: pointer;
        z-index: 10;
    }

    .custom-close img {
        width: 32px;
        height: 32px;
        opacity: 0.7;
        transition: all 0.2s ease;
    }

    .custom-close:hover img {
        opacity: 1;
        transform: scale(1.1);
    }

    .daily-mood-box {
        background: #ffffff;
        border-radius: 22px;
        padding: 10px 12px;
        min-height: 180px;
    }

    .daily-mood-text {
        min-height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        line-height: 1.8;
        font-weight: 600;
        color: #4a3c45;
        text-align: center;
    }

    .daily-mood-refresh-btn,
    .daily-mood-close-btn {
        min-height: 48px;
        padding: 12px 20px;
        border-radius: 999px;
        font-weight: 600;
        border: 1px solid #d9c8d4;
        background: #ffffff;
        color: #333333;
        transition: all 0.25s ease;
    }

    .daily-mood-refresh-btn:hover,
    .daily-mood-close-btn:hover {
        transform: translateY(-1px);
        background: #faf6f9;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .custom-input {
        width: 100%;
        border-radius: 16px;
        border: 1px solid #e3d6de;
        padding: 18px 20px;
        font-size: 0.95rem;
        background: #ffffff;
        transition: all 0.2s ease;
        box-shadow: none;
    }

    .custom-input:focus {
        border-color: #c6aec9;
        box-shadow: 0 0 0 2px rgba(198, 174, 201, 0.15);
        outline: none;
    }

    textarea.custom-input {
        resize: none;
        min-height: 220px;
    }

    .send-btn {
        min-height: 48px;
        padding: 12px 22px;
        border-radius: 999px;
        font-weight: 600;
        border: none;
        background: #c6aec9;
        color: #ffffff;
        transition: all 0.25s ease;
    }

    .send-btn:hover {
        transform: translateY(-1px);
        background: #b69aba;
    }

    @media (max-width: 575.98px) {
        .daily-mood-text {
            min-height: 150px;
            font-size: 1.05rem;
        }

        .daily-mood-box {
            padding: 16px;
            min-height: 150px;
        }

        .custom-input {
            padding: 16px 18px;
        }

        textarea.custom-input {
            min-height: 280px;
        }

        .custom-close {
            top: 16px;
            right: 16px;
        }

        .custom-close img {
            width: 28px;
            height: 28px;
        }
    }
/* shop cta */
.bottom-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 6000;
    padding: 12px 16px;
    background: transparent;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.bottom-cta-btn {
    pointer-events: auto;
    display: block;
    width: 100%;
    max-width: 600px;

    text-align: center;
    padding: 10px 24px;
    border: 3px solid #333;
    border-radius: 999px;
    background: white;
    color: #333;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.05em;

    transition: all 0.25s ease;

    animation: softSlide 4s ease-in-out infinite;
}

@keyframes softSlide {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(6px);
    }
}
    @media (max-width: 1200px) {
.bottom-cta-btn {
    font-size: 25px;
}
    }
        @media (max-width: 600px) {
.bottom-cta-btn {
    font-size: 22px;
      max-width: 500px;
}
    }
.bottom-cta-btn:hover {
    background: white;
    transform: translateY(-2px);
}
/* footer */
/* ====== 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: white;
    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: white;
    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-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
}

.footer-modal.active {
    display: block;
}

.footer-modal-bg {
    position: absolute;
    inset: 0;
    background: white;
}

.footer-modal-box {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: white;
    color: #333333;
}

.footer-modal-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 86px 22px 42px;
    box-sizing: border-box;
}

.footer-modal-box h2 {
    margin: 0 0 22px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
}

.footer-modal-content {
    max-width: 1100px;
}

.footer-modal-content p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}
.footer-modal-content ul,li {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}
.footer-links a {
    cursor: pointer;
}

.close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #333;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.close:hover {
    background: rgba(255,255,255,0.14);
}

#aszf-content,
#adatkezeles-content {
    min-height: 120px;
}

@media (max-width: 768px) {
    .footer-modal-inner {
        padding: 78px 18px 32px;
    }

    .footer-modal-box h2 {
        font-size: 26px;
    }

    .footer-modal-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}
/* info modals */
/* ===== GS FULLSCREEN INFO MODALS ===== */
.gs-info-open-btn {
    border: 1px solid #333;
    background: transparent;
}

.gs-info-open-btn:focus {
    outline: none;
    box-shadow: none;
}

.gs-fullscreen-modal .modal-dialog {
    margin: 0;
}
.gs-fullscreen-modal {
    z-index: 8000 !important;
}

.gs-fullscreen-modal .modal-dialog {
    margin: 0;
    z-index: auto;
}

.gs-fullscreen-modal .modal-content {
    min-height: 100vh;
}
.modal-backdrop {
    z-index: 7990 !important;
}
.gs-fullscreen-content {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.gs-fullscreen-header {
    position: relative;
    padding: 28px 24px 12px;
    align-items: center;
}

.gs-fullscreen-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
}

.gs-fullscreen-close {
    border: 0;
    background: #ffffff;
    color: #111111;
    font-size: 42px;
    line-height: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.gs-fullscreen-close:hover {
    transform: scale(1.06);
}

.gs-fullscreen-body {
    padding: 12px 24px 24px;
    overflow-y: auto;
}

.gs-fullscreen-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.gs-fullscreen-lead {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 28px;
}

.gs-fullscreen-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #222222;
    margin-bottom: 20px;
}

.gs-fullscreen-footer {
    padding: 8 15px 15px 15px;
}

.gs-fullscreen-action-btn {
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #333333;
    background: #ffffff;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.gs-fullscreen-action-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

@media (max-width: 768px) {
    .gs-fullscreen-header {
        padding: 22px 18px 10px;
    }

    .gs-fullscreen-body {
        padding: 10px 18px 20px;
    }

    .gs-fullscreen-footer {
        padding: 0 18px 22px;
    }

    .gs-fullscreen-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .gs-fullscreen-close {
        width: 48px;
        height: 48px;
        font-size: 34px;
    }
}
/* CLOSE GOMB – GS FULLSCREEN */
.gs-fullscreen-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;

    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 10;
}

.gs-fullscreen-close-btn img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.gs-fullscreen-close-btn:hover img {
    opacity: 1;
    transform: scale(1.08);
}
/* cookie */
/* COOKIE BAR */
.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cookie-bar.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-bar-text {
    font-size: 14px;
    line-height: 1.6;
    color: #111111;
}

.cookie-bar-text a {
    color: #111111;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-btn-outline {
    background: #ffffff;
    color: #111111;
    border: 1px solid #111111;
}

.cookie-btn-outline:hover {
    background: #111111;
    color: #ffffff;
}

.cookie-btn-solid {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.cookie-btn-solid:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

/* COOKIE OVERLAY */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cookie-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cookie-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-bar-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        width: 100%;
    }
}
/* made by */
.footer-madeby {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.madeby-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.madeby-link:hover {
    color: #ffffff;
    text-decoration: underline;
}