/* --- Cookie Modal (Bottom Bar) --- */
.cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #ffffff;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
     z-index: 1050;
     padding: 16px 0;
     border-top: 1px solid #e6e6e6;
}

.cookie-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 12px;
}

.cookie-text {
     flex: 1;
     color: #333;
     font-size: 14px;
     line-height: 1.5;
     margin: 0;
}

.cookie-actions {
     display: flex;
     align-items: center;
     gap: 10px;
}

/* Buttons */
.cookie-policy-btn {
     border-radius: 6px;
     font-size: 13px;
     padding: 6px 16px;
}

.accept_cookies_btn {
     border-radius: 6px;
     font-size: 13px;
     padding: 6px 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
     .cookie-content {
          flex-direction: column;
          align-items: flex-start;
     }

     .cookie-actions {
          width: 100%;
          justify-content: flex-start;
     }

     .cookie-actions .btn {
          width: 100%;
     }
}