/* 🌱 Low Carbon rejimi */
        body.low-carbon {
            
            color: #ddd !important;
            filter: grayscale(100%);
            transition: none !important;
            animation: none !important;
        }

        /* Şəkil və videoları gizlət */
        body.low-carbon img,
        body.low-carbon video,
        body.low-carbon iframe {
            display: none !important;
        }

        /* Fontları sistem fontlarına dəyiş */
        body.low-carbon * {
            font-family: system-ui, sans-serif !important;
            box-shadow: none !important;
        }

        /* Linklər üçün fərqli rəng */
        body.low-carbon a {
            color: #6ac48c !important;
        }

        /* Animasiyaları blokla */
        * {
            animation-duration: 0s !important;
            transition-duration: 0s !important;
        }

        /* 🌱 Düymə dizaynı */
        .low-carbon-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            padding: 10px 14px;
            border: none;
            border-radius: 10px;
            background: transparent;
            color: white;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }
        
        .low-carbon-btn:hover {
            background: #40916c;
        }
        .low-carbon-btn.active {
            background: #95d5b2;
            color: #000;
        }
        
        .low-carbon-button {
 display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
            color: white;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 14px;
   
    
    transition: background 0.3s, color 0.3s;
}

/* Dark background when in low-carbon mode */
body.low-carbon .low-carbon-button {
 
    color: #fff;
}

/* Label (text) styling */
.toggle-span {
    font-weight: 500;
    user-select: none;
}

/* Switch container */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

/* Hide the checkbox itself */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider (the actual toggle design) */
.switcher {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

/* The toggle circle */
.switcher:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

/* When checked */
input:checked + .switcher {
    background-color: #2d6a4f;
}

input:checked + .switcher:before {
    transform: translateX(24px);
}

/* Optional hover effect */
.switch:hover .switcher {
    box-shadow: 0 0 4px rgba(45, 106, 79, 0.5);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .low-carbon-button {
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 10px;
    }
    .switch {
        width: 42px;
        height: 22px;
    }
    .switcher:before {
        height: 16px;
        width: 16px;
    }
}
