/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --color-black: #000000;
    --color-dark: #111111;
    --color-white: #ffffff;
    --color-off-white: #f5f7f5;
    
    /* Greens */
    --color-green-light: #e6f7eb;
    --color-green-primary: #008060; /* Shopify brand green */
    --color-green-vivid: #00e08b;
    --color-green-dark: #004c3f;

    --font-primary: 'Faktum', Helvetica, Arial, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); margin-bottom: 1rem; }
p { font-size: 1.125rem; margin-bottom: 1.5rem; color: #444; }

.center { text-align: center; }

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-green-primary);
    color: var(--color-white);
    border: 2px solid var(--color-green-primary);
}

.btn-primary:hover {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 0.5rem 1.5rem;
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.transparent {
    background-color: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
    max-width: none;
    margin-left: 5.625rem;
    margin-right: 5.625rem;
}

.navbar.transparent .nav-container {
    height: 100px;
}

.logo-link {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    z-index: 20;
    transition: opacity 0.3s;
}

.logo-link img {
    height: 50px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.navbar.transparent .logo-link img {
    filter: brightness(0) invert(1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-green-primary);
}

.mobile-menu-header {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 15rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    transition: color 0.3s;
    color: var(--color-dark);
}

.navbar.transparent .nav-links a:not(.btn) {
    color: var(--color-white);
}

.nav-links a:not(.btn):hover {
    color: var(--color-green-primary);
}

.navbar.transparent .nav-links a:not(.btn):hover {
    color: var(--color-green-vivid);
}

.nav-cta {
    display: inline-block;
    text-decoration: none;
    border: 1px solid currentColor;
    border-radius: 50px;
    padding: 0.5rem 1.35rem !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-cta:hover {
    background-color: var(--color-green-primary);
    border-color: var(--color-green-primary) !important;
    color: var(--color-white) !important;
}

.navbar.transparent .nav-cta:hover {
    background-color: var(--color-white);
    color: var(--color-black) !important;
}

.hero-cta .nav-cta {
    padding: 0.65rem 3rem;
    font-size: 15px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    color: var(--color-white);
    padding: 10rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url(img/background.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero::before {
    content: var(--background-overlay, '');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13014d7d;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: none;
    margin-left: 5.625rem;
    margin-right: 5.625rem;
}

.hero-content .pre-title {
    color: #79ad7d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 50px;
}

.hero-subtitle {
    color: #b3c7c3;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Dynamic Device Frames */
.device-frame {
    position: relative;
    margin: 0 auto;
    background: #99e5b1;
    transition: all 0.5s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    z-index: 10;
}

.device-frame .device-screen {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* TOP: iPhone 14 Pro style (Dynamic Island) */
.device-frame.top {
    border-radius: 40px;
    width: 350px;
    padding: 14px;
    border: 4px solid #4a4d55;
}
.device-frame.top .device-screen {
    border-radius: 28px;
}

/* MIDDLE: iPhone X style (Notch) */
.device-frame.middle {
    border-radius: 36px;
    width: 350px;
    padding: 14px;
    border: 2px solid #4a4d55;
}
.device-frame.middle .device-screen {
    border-radius: 24px;
}

/* LOWCOST: Basic Android (Thick bezels) */
.device-frame.lowcost {
    border-radius: 20px;
    width: 350px;
    padding: 30px 10px;
    background: #99e5b1;
    border: 2px solid #4a4d55;
}
.device-frame.lowcost .device-screen {
    border-radius: 4px;
}

/* OBSOLETE: Old Smartphone (Massive bezels + button) */
.device-frame.obsolete {
    border-radius: 30px;
    width: 350px;
    padding: 60px 15px;
    background: #e6e6e6;
    border: 4px solid #ccc;
    box-shadow: inset 0 0 0 2px #ddd, 0 30px 60px rgba(0,0,0,0.3);
}
.device-frame.obsolete .device-screen {
    border-radius: 2px;
    border: 2px solid #333;
}
.device-frame.obsolete::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
}
.device-frame.obsolete::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #ccc;
    border-radius: 10px;
}

/* Product Demo Wrapper */
.product-demo-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    background: var(--color-white);
    overflow: hidden;
}

.live-detection-box {
    position: absolute;
    top: 30%;
    left: 0px;
    transform: translateY(-50%);
    width: 400px;
    background: rgb(0 76 147);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
    z-index: 50;
}

.ld-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.ld-body {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

.text-green {
    color: var(--color-green-vivid);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.product-card {
    background: var(--color-white);
    color: var(--color-dark);
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f4f4f4;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    transition: opacity 0.5s ease;
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-variants {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.variant-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.variant-color.orange { background: #d97746; }
.variant-color.white { background: #fdfdfd; }

.product-add-btn {
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-add-btn:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* =========================================
   WHY USE SECTION
========================================= */
.why-use {
    background-color: var(--color-off-white);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1rem; /* rounded-2xl approximation */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08); /* ring-0 ring-black/20 equivalent */
    text-align: left;
    display: flex;
    flex-direction: column;
}

.stat-box .stat-number.text-green {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-green-primary); /* text-sea-green */
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label.block {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: block;
    background-color: #00806033;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 15px;
}

.stat-box .stat-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-green-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box.dark .stat-number {
    color: var(--color-green-vivid);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 500;
}

/* =========================================
   FEATURES SECTION
========================================= */
.features {
    background-color: var(--color-white);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--color-green-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--color-white);
    border-color: var(--color-green-primary);
    box-shadow: 0 10px 30px rgba(0,128,96,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green-primary);
    margin-bottom: 1.5rem;
    font-family: monospace;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* =========================================
   SUPPORT SECTION
========================================= */
.support {
    background-color: var(--color-black);
    color: var(--color-white);
}

.support h2 { color: var(--color-white); }
.support p { color: #aaa; }

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    color: var(--color-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green-primary);
    background-color: var(--color-white);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #888;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-green-vivid);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE & MOBILE
========================================= */
.menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .nav-container {
        margin-left: 2rem;
        margin-right: 2rem;
    }
    
    .hero-container {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .hero-container,
    .why-container,
    .support-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .nav-container {
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    h1, .hero-title {
        font-size: 2rem !important;
    }
    h2 {
        font-size: 2rem !important;
    }
    .hero-subtitle {
        color: #b3c7c3;
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.4;
    }
    
    .section {
        padding: 3rem 0;
    }

    .why-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .nav-cta {
        padding: 0.65rem 3rem;
        font-size: 12px;
        text-align: center;
    }

    /* Hero Image & Device Frames Mobile Fix */
    .hero-image {
        display: block;
        margin-top: 2rem;
    }
    
    .live-detection-box {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.85) !important;
        width: 95% !important;
        max-width: 360px !important;
        margin-top: 0 !important;
        padding: 1.25rem;
        box-sizing: border-box;
        z-index: 100;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    
    #demo-info-box {
        top: 15% !important;
    }
    
    #demo-desc-box {
        top: 40% !important;
        margin-top: 0 !important;
    }
    
    .ld-body {
        font-size: 14px;
    }

    .device-frame.top,
    .device-frame.middle,
    .device-frame.lowcost,
    .device-frame.obsolete {
        width: 100%;
        max-width: 350px;
        box-sizing: border-box;
    }

    .product-demo-wrapper {
        width: 100%;
        max-width: 320px;
    }
    
    /* Hamburger Menu */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 100;
        color: var(--color-dark);
        transition: color 0.3s;
    }
    .navbar.transparent .menu-toggle {
        color: var(--color-white);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 5px;
        margin: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .mobile-menu-header img {
        height: 35px;
        width: auto;
    }
    .close-menu {
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--color-dark);
        line-height: 1;
        padding: 0.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.btn) {
        font-size: 1.1rem;
        padding: 0.25rem 0;
        color: var(--color-dark) !important;
    }

    /* Cookie Banner on Mobile */
    .cookie-banner {
        right: 15px;
        left: 15px;
        bottom: 15px;
        max-width: none;
        width: auto;
    }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
    padding-top: 10rem;
    min-height: 80vh;
    background-color: var(--color-off-white);
}

.faq-container {
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

details {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

details summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    list-style: none; /* Hide default arrow */
    position: relative;
    transition: var(--transition);
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-green-primary);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
}

details summary:hover {
    color: var(--color-green-primary);
}

details .faq-answer {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #555;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 1.5rem;
}


/* Slogan Section */
.slogan-section {
    position: relative;
    color: var(--color-white);
    padding: 6rem 0;
    background-image: url(img/background.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13014d7d;
    z-index: -1;
}


.stat-box {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Support Section */
.support {
    position: relative;
    color: var(--color-white);
    background-image: url(img/background.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13014d7d;
    z-index: -1;
}


/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   COOKIE BANNER
========================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    max-width: 450px;
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-dark);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--color-green-primary);
    text-decoration: underline;
}

.cookie-content .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        padding: 1.5rem;
    }
    .cookie-content button {
        width: 100%;
    }
}


.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-green-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: var(--color-green-vivid);
    transform: translateX(4px);
}


/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-dropdown {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 60px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.lang-dropdown a {
    color: var(--color-dark) !important;
    padding: 10px 15px !important;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 0 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
    color: var(--color-green-primary) !important;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

@media (max-width: 992px) {
    .lang-switcher {
        margin: 1rem 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .lang-dropdown {
        display: flex;
        position: relative;
        box-shadow: none;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        background: transparent;
    }
    .lang-switcher:hover .lang-dropdown {
        display: flex;
    }
    .lang-btn {
        display: none;
    }
    .lang-dropdown a {
        color: inherit !important;
        padding: 8px 12px !important;
    }
}

.navbar.transparent .lang-btn {
    color: var(--color-white);
}

.navbar.transparent .lang-btn:hover {
    color: var(--color-green-vivid);
}
