/* ==========================================
   LITTLE MONKS SAFARIS
   PREMIUM LUXURY TRAVEL DESIGN
   PART 1
========================================== */


/* =========================
GLOBAL RESET
========================= */


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    background: #050807;

    color: #f8f3e7;

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

    overflow-x: hidden;

}



img {

    width: 100%;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}



ul {

    list-style: none;

}



:root {


    --black: #050807;

    --dark-green: #062e1b;

    --green: #0b5a34;

    --gold: #c9a227;

    --light-gold: #e4c766;

    --cream: #f8f3e7;

    --text-light: #d9d9d9;


    --glass:

        rgba(255, 255, 255, 0.08);



    --border:

        rgba(201, 162, 39, .35);



}





/* =========================
LOADER
========================= */


.page-loader {


    position: fixed;

    inset: 0;

    background:

        radial-gradient(circle at center,
            #123b25,
            #050807);


    display: flex;

    justify-content: center;

    align-items: center;


    z-index: 99999;


}



.loader-inner {

    text-align: center;

}



.loader-inner h1 {


    font-family:
        'Playfair Display',
        serif;


    text-transform:
        uppercase;


    font-size:
        clamp(2rem, 5vw, 4rem);


    letter-spacing:
        3px;


}



.loader-inner p {


    color:
        var(--gold);


    margin-top: 20px;


    letter-spacing:
        3px;


}




.loader-line {


    height: 2px;

    width: 220px;

    background:
        rgba(255, 255, 255, .2);

    margin: 30px auto;

    overflow: hidden;


}



.loader-line span {


    display: block;

    height: 100%;

    width: 0;


    background:
        var(--gold);


    animation:
        load 2.5s forwards;


}



@keyframes load {


    to {

        width: 100%;

    }

}









/* =========================
NAVBAR
========================= */



.header {


    position: fixed;

    width: 100%;

    top: 0;

    z-index: 5000;

    transition: .5s;


}




.navbar {


    width: 90%;

    max-width: 1300px;

    margin: auto;


    display: flex;

    align-items: center;

    justify-content: space-between;


    padding: 30px 0;


}



.logo {


    font-family:
        'Playfair Display',
        serif;


    font-size: 2rem;

    letter-spacing: 1px;


}



.logo span {


    color:
        var(--gold);


}



.nav-links {


    display: flex;

    gap: 40px;


}



.nav-links a {


    font-size: .9rem;

    position: relative;


}



.nav-links a::after {


    content: "";

    position: absolute;

    bottom: -8px;

    left: 0;

    width: 0;

    height: 2px;

    background:
        var(--gold);


    transition: .4s;


}



.nav-links a:hover::after {


    width: 100%;


}





.nav-btn,
.dashboard-btn {

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

    padding: 13px 30px;

    border-radius: 50px;

    transition: .4s;

}



.nav-btn:hover {


    background:
        var(--gold);


    color: #000;


}



.menu-btn {


    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 2rem;


}








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

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 0 8%;

    overflow: hidden;

}

.hero-slideshow {

    position: absolute;

    inset: 0;

    z-index: 0;

}

.slide {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1);

    transition: opacity 2s ease;

    animation: kenburns 14s linear infinite;

}

.slide.active {

    opacity: 1;

}

@keyframes kenburns {

    0% {

        transform: scale(1);

    }

    100% {

        transform: scale(1.15);

    }

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,

            rgba(0, 0, 0, .78),

            rgba(0, 0, 0, .35),

            rgba(0, 0, 0, .55));

    z-index: 1;

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}

.hero h1 {

    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6.5rem);

    line-height: 1.05;

    text-shadow: 0 6px 25px rgba(0, 0, 0, .45);

}

.hero-content p {

    margin-top: 30px;

    max-width: 620px;

    color: #ececec;

    line-height: 1.9;

    text-shadow: 0 2px 15px rgba(0, 0, 0, .45);

}

.hero-actions {

    display: flex;

    gap: 25px;

    margin-top: 45px;

}

.scroll-indicator {

    position: absolute;

    bottom: 40px;

    left: 8%;

    z-index: 3;

    color: white;

}

.scroll-indicator span {

    display: block;

    width: 1px;

    height: 50px;

    margin-bottom: 10px;

    background: var(--gold);

}


/* =========================
GENERAL SECTIONS
========================= */


.section {


    padding:

        120px 8%;


}




.section-title {


    text-align: center;

    max-width: 800px;

    margin: 0 auto 80px;


}



.section-title span {


    color:
        var(--gold);


    letter-spacing: 4px;


    font-size: .8rem;


}



.section-title h2 {


    margin-top: 20px;


    font-family:
        'Playfair Display',
        serif;


    font-size:
        clamp(2.3rem, 5vw, 4rem);


}



.section-title p {


    color: #bbb;

    margin-top: 20px;

    line-height: 1.8;


}

/* ==========================================
   PART 2
   CONTENT SECTIONS
========================================== */


/* =========================
ABOUT SECTION
========================= */


.about-container {


    display: grid;

    grid-template-columns:

        1fr 1fr;

    gap: 70px;

    align-items: center;


}



.about-image {


    position: relative;

    overflow: hidden;

    border-radius: 25px;


}



.about-image::after {


    content: "";

    position: absolute;

    inset: 20px;

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

    border-radius: 20px;


}



.about-image img {


    height: 600px;

    object-fit: cover;

    transition: 1s;


}



.about-image:hover img {


    transform: scale(1.08);


}



.about-text h3 {


    font-family:
        'Playfair Display',
        serif;


    font-size: 2.5rem;

    margin-bottom: 30px;


}



.about-text p {


    color: #cfcfcf;

    line-height: 2;

    margin-bottom: 25px;


}



.text-btn {


    color: var(--gold);

    letter-spacing: 2px;


}









/* =========================
STATISTICS
========================= */



.statistics {


    padding:

        60px 8%;


    background:

        linear-gradient(90deg,

            #07140d,

            #050807);


}



.stats-container {


    display: grid;


    grid-template-columns:

        repeat(4, 1fr);


    gap: 30px;


}



.stat-card {


    text-align: center;

    padding: 40px;


    background:

        rgba(255, 255, 255, .05);


    backdrop-filter: blur(15px);


    border:

        1px solid var(--border);


    border-radius: 20px;


    transition: .5s;


}



.stat-card:hover {


    transform:

        translateY(-12px);


}



.stat-card h2 {


    font-family:

        'Playfair Display',
        serif;


    color:

        var(--gold);


    font-size: 3.5rem;


}



.stat-card p {


    margin-top: 10px;

    color: #ccc;


}









/* =========================
SERVICES
========================= */



.services-grid {


    display: grid;


    grid-template-columns:

        repeat(3, 1fr);


    gap: 35px;


}





.service-card {


    background: #0a0d0b;


    border-radius: 25px;


    overflow: hidden;


    border:

        1px solid rgba(255, 255, 255, .08);


    transition: .6s;


}




.service-card:hover {


    transform:

        translateY(-15px);


    border-color:

        var(--gold);


}



.service-image {


    height: 280px;

    overflow: hidden;


}



.service-image img {


    height: 100%;

    object-fit: cover;


    transition: 1s;


}



.service-card:hover img {


    transform:

        scale(1.12);


}




.service-content {


    padding: 35px;


}



.service-content h3 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 1.8rem;


    margin-bottom: 15px;


}



.service-content p {


    color: #bbb;

    line-height: 1.8;


    margin-bottom: 25px;


}



.service-content a {


    color:

        var(--gold);


}









/* =========================
SAFARI PACKAGES
========================= */


.packages-grid {


    display: grid;


    grid-template-columns:

        repeat(3, 1fr);


    gap: 35px;


}





.package-card {


    height: 520px;


    position: relative;


    overflow: hidden;


    border-radius: 25px;


}



.package-card img {


    height: 100%;

    object-fit: cover;


    transition: 1s;


}




.package-card:hover img {


    transform:

        scale(1.15);


}



.package-overlay {


    position: absolute;


    inset: 0;


    display: flex;

    flex-direction: column;

    justify-content: flex-end;


    padding: 40px;


    background:

        linear-gradient(transparent,

            rgba(0, 0, 0, .85));


}



.package-overlay h3 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 2rem;


}



.package-overlay p {


    margin:

        15px 0;


    color: #ddd;


    line-height: 1.7;


}



.package-overlay button {


    width: max-content;


    padding: 12px 25px;


    border-radius: 50px;


    background:

        var(--gold);


    border: none;


}









/* =========================
DESTINATIONS
========================= */



.destination-grid {


    display: grid;


    grid-template-columns:

        repeat(3, 1fr);


    gap: 30px;


}



.destination-card {


    height: 420px;


    position: relative;


    overflow: hidden;


    border-radius: 25px;


}



.destination-card img {


    height: 100%;

    object-fit: cover;


    transition:

        1s;


}



.destination-card:hover img {


    transform:

        scale(1.15);


}



.destination-card::after {


    content: "";


    position: absolute;

    inset: 0;


    background:

        linear-gradient(transparent,

            rgba(0, 0, 0, .8));


}



.destination-card div {


    position: absolute;


    bottom: 30px;

    left: 30px;


    z-index: 2;


}



.destination-card h3 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 2rem;


}



.destination-card p {


    color:

        var(--gold);


    margin-top: 10px;


}

/* ==========================================
   PART 3
   BUSINESS SECTIONS + RESPONSIVENESS
========================================== */


/* =========================
FLEET SECTION
========================= */


.fleet-grid {


    display: grid;

    grid-template-columns:

        repeat(3, 1fr);

    gap: 35px;


}



.vehicle-card {


    background:

        rgba(255, 255, 255, .05);


    border:

        1px solid rgba(255, 255, 255, .1);


    border-radius: 25px;


    overflow: hidden;


    transition: .6s;


}



.vehicle-card:hover {


    transform:

        translateY(-15px);


    border-color:

        var(--gold);


}



.vehicle-image {


    height: 300px;


    overflow: hidden;


}



.vehicle-image img {


    height: 100%;

    object-fit: cover;


    transition: 1s;


}



.vehicle-card:hover img {


    transform:

        scale(1.1);


}



.vehicle-content {


    padding: 35px;


}



.vehicle-content h3 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 2rem;


    margin-bottom: 20px;


}



.vehicle-content li {


    margin: 15px 0;

    color: #ccc;


}



.vehicle-content a {


    display: inline-block;


    margin-top: 20px;


    color:

        var(--gold);


}








/* =========================
WHY CHOOSE US
========================= */



.why-grid {


    display: grid;


    grid-template-columns:

        repeat(4, 1fr);


    gap: 25px;


}




.why-card {


    padding: 40px 25px;


    background:

        rgba(255, 255, 255, .05);


    border-radius: 20px;


    border:

        1px solid var(--border);


    transition: .5s;


}



.why-card:hover {


    transform:

        translateY(-10px);


}



.why-card h3 {


    font-family:

        'Playfair Display',
        serif;


    color:

        var(--gold);


    margin-bottom: 20px;


}



.why-card p {


    color: #ccc;


    line-height: 1.8;


}









/* =========================
TRAVEL PROCESS
========================= */


.process-grid {


    display: grid;


    grid-template-columns:

        repeat(4, 1fr);


    gap: 30px;


}




.process-step {


    text-align: center;


}



.process-step span {


    display: flex;


    width: 80px;

    height: 80px;


    align-items: center;

    justify-content: center;


    margin: auto;


    border-radius: 50%;


    background:

        var(--gold);


    color: #000;


    font-size: 1.5rem;


    font-weight: bold;


}



.process-step h3 {


    margin: 25px 0 15px;


    font-family:

        'Playfair Display',
        serif;


}



.process-step p {


    color: #bbb;


}









/* =========================
TESTIMONIALS
========================= */



.testimonial-grid {


    display: grid;


    grid-template-columns:

        repeat(3, 1fr);


    gap: 30px;


}




.testimonial-card {


    padding: 40px;


    background:

        rgba(255, 255, 255, .05);


    border-radius: 25px;


    border:

        1px solid rgba(255, 255, 255, .1);


}



.testimonial-card p {


    line-height: 2;

    color: #ddd;


    font-style: italic;


}



.testimonial-card h4 {


    margin-top: 30px;


    color:

        var(--gold);


}








/* =========================
BOOKING
========================= */


.booking {


    background:

        linear-gradient(135deg,

            #07170d,

            #050807);


}



.booking-form {


    max-width: 900px;

    margin: auto;


}



.input-group {


    display: grid;


    grid-template-columns:

        repeat(2, minmax(0, 1fr));


    gap: 25px;

    align-items: start;


}


.phone-group,
.destination-group {


    display: grid;

    grid-template-columns: 170px minmax(0, 1fr);

    gap: 15px;

    align-items: center;


}


.date-field {


    display: flex;

    flex-direction: column;

    gap: 8px;


}


.date-field label {


    font-size: 0.82rem;

    color: #d7d7d7;

    font-weight: 600;


}


.booking-form input,
.booking-form select,
.booking-form textarea {


    width: 100%;


    padding: 18px;


    margin-bottom: 20px;


    background:

        rgba(255, 255, 255, .08);


    border:

        1px solid var(--border);


    color: white;


    border-radius: 12px;


}



.booking-form textarea {


    height: 150px;

    resize: none;


}




.booking-form button {


    border: none;


    cursor: pointer;


}

#bookJourneyBtn {

    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg, #d4af37, #f4d03f);

    color: #111;
    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

#bookJourneyBtn:hover {

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);

}

#bookJourneyBtn:disabled {

    opacity: 0.7;
    cursor: not-allowed;

}








/* =========================
PAYMENT
========================= */


.payment-grid {


    display: grid;


    grid-template-columns:

        repeat(2, 1fr);


    gap: 35px;


}



.payment-card {


    padding: 50px;


    text-align: center;


    border-radius: 25px;


    background:

        rgba(255, 255, 255, .05);


    border:

        1px solid var(--border);


}



.payment-card h3 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 2.5rem;


    color:

        var(--gold);


}



.payment-card p {


    margin: 20px 0;

    color: #ccc;


}



/* =========================
CONTACT
========================= */


.contact-info {


    text-align: center;


    font-size: 1.1rem;


}



.contact-info p {


    margin: 20px;


    color: #ccc;


}








/* =========================
WHATSAPP BUTTON
========================= */


.whatsapp-btn {


    position: fixed;


    bottom: 30px;


    right: 30px;


    padding: 18px 25px;


    border-radius: 50px;


    background: #25D366;


    color: white;


    z-index: 999;


    box-shadow:

        0 10px 30px rgba(0, 0, 0, .4);


}







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


footer {


    padding: 70px 8%;


    text-align: center;


    background: #020303;


}



footer h2 {


    font-family:

        'Playfair Display',
        serif;


    font-size: 3rem;


    color:

        var(--gold);


}



footer p {


    margin-top: 20px;


    color: #aaa;


}









/* =========================
REVEAL ANIMATIONS
========================= */


.reveal {

    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}


.reveal.active {


    opacity: 1;


    transform:

        translateY(0);


}







/* =========================
RESPONSIVE DESIGN
========================= */


@media(max-width:1100px) {


    .services-grid,
    .packages-grid,
    .destination-grid,
    .fleet-grid {


        grid-template-columns:

            repeat(2, 1fr);


    }



    .why-grid {


        grid-template-columns:

            repeat(2, 1fr);


    }



    .process-grid {


        grid-template-columns:

            repeat(2, 1fr);


    }



}



@media(max-width:800px) {



    .nav-links {


        position: absolute;


        top: 90px;


        left: 0;


        width: 100%;


        background: #050807;


        flex-direction: column;


        text-align: center;


        padding: 40px;


        display: none;


    }



    .nav-links.active {


        display: flex;


    }



    .menu-btn {


        display: block;


    }



    .nav-btn {

        display: none;

    }


    .dashboard-btn {

        display: block;

        padding: 10px 18px;

        font-size: .8rem;

    }



    .about-container {


        grid-template-columns: 1fr;


    }



    .services-grid,
    .packages-grid,
    .destination-grid,
    .fleet-grid,
    .payment-grid,
    .testimonial-grid {


        grid-template-columns: 1fr;


    }



    .stats-container {


        grid-template-columns:

            repeat(2, 1fr);


    }



    .input-group {


        grid-template-columns: 1fr;


    }


    .phone-group,
    .destination-group {


        grid-template-columns: 1fr;


    }


}



@media(max-width:500px) {



    .section {


        padding:

            80px 5%;


    }



    .hero {


        padding: 0 5%;


    }



    .hero-actions {


        flex-direction: column;


    }



    .stats-container {


        grid-template-columns: 1fr;


    }



    .hero h1 {


        font-size: 3rem;


    }



    footer h2 {


        font-size: 2rem;


    }


}

.hidden-field {
    display: none;
}

/* ===============================
CONTACT
================================ */

.contact {

    background: linear-gradient(135deg, #07170d, #050807);

    padding-top: 90px;

    padding-bottom: 90px;

}

.contact .section-title {

    text-align: center;

    margin-bottom: 45px;

}

.contact-icons {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 22px;

    padding: 0;

}

.contact-card {

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

    border: 1px solid rgba(201, 162, 39, 0.25);

    border-radius: 18px;

    padding: 28px 18px;

    text-align: center;

    text-decoration: none;

    color: #f8f3e7;

    box-shadow: none;

    transition: .4s ease;

}

.contact-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);

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

}

.contact-card i {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    font-size: 1.45rem;

    color: #fff;

    background: linear-gradient(135deg, #d4af37, #8b6b2f);

    transition: .4s;

}

.contact-card:hover i {

    transform: scale(1.05);

}

.contact-card h3 {

    margin-bottom: 10px;

    font-size: 1.08rem;

    font-weight: 600;

    color: var(--light-gold);

}

.contact-card span {

    display: block;

    font-size: .9rem;

    color: #d9d9d9;

    word-break: break-word;

    line-height: 1.5;

}

/* Tablets */

@media(max-width:768px) {

    .contact-icons {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 0 15px;

    }

    .contact-card {

        padding: 30px 20px;

    }

}

/* Phones */

@media(max-width:480px) {

    .contact-card {

        padding: 25px 18px;

    }

    .contact-card i {

        width: 65px;

        height: 65px;

        font-size: 1.6rem;

    }

    .contact-card h3 {

        font-size: 1.1rem;

    }

    .contact-card span {

        font-size: .9rem;

    }

}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    padding-left: 95px !important;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =================================
   LEGAL / INFORMATION PAGES
================================= */

.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 70px;
}

.page-hero-content {
    max-width: 850px;
    margin: auto;
}

.page-hero-content span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.75;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.page-hero-content p {
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
    opacity: 0.8;
}


/* =================================
   LEGAL CONTENT
================================= */

.legal-page {
    padding: 80px 20px;
}

.legal-container {
    width: min(100%, 900px);
    margin: auto;
}

.legal-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 55px;
    opacity: 0.85;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 1.45rem;
    margin-bottom: 15px;
}

.legal-section p {
    line-height: 1.9;
    margin-bottom: 14px;
    opacity: 0.82;
}

.legal-update {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.footer-links a {
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

    .page-hero {
        min-height: 40vh;
        padding-top: 110px;
    }

    .legal-page {
        padding: 55px 18px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p {
        font-size: 0.95rem;
    }

}

.legal-section ul {
    margin: 15px 0 20px 25px;
    padding: 0;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    opacity: 0.82;
}

/* =========================================
   COOKIE CONSENT
========================================= */

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;

    background: rgba(17, 23, 20, 0.97);
    color: #fff;

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

    padding: 22px 26px;

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

    transform: translateY(130%);
    opacity: 0;
    visibility: hidden;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.cookie-content p {
    max-width: 750px;
    margin: 0;

    font-size: 0.85rem;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.75);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 11px 18px;
    cursor: pointer;

    font-family: inherit;
    font-weight: 600;

    transition: 0.25s ease;
}

.cookie-btn.primary {
    background: #c5a46d;
    color: #111714;
}

.cookie-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 700px) {

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}