/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #013220;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    display: none;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-banner.active {
    display: block;
}

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

.cookie-consent-content {
    flex: 1;
}

.cookie-consent-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: white;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e0;
}

.cookie-consent-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn.accept-necessary {
    background: #F05922;
    color: white;
}

.cookie-btn.accept-necessary:hover {
  background-color: var(--dark);
  color: var(--white);
}

.cookie-btn.accept-all {
    background: #F05922;
    color: white;
}

.cookie-btn.accept-all:hover {
  background-color: var(--dark);
  color: var(--white);
}

.cookie-btn.accept-customize {
    background: transparent;
    border: 1px solid #cbd5e0;
    color: #cbd5e0;
}

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

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.active {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin: 0;
    color: #1a202c;
}

.close-settings {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #718096;
}

.cookie-settings-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    color: #041418;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: #F05922;
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-category-description {
    font-size: 14px;
    color: #041418;
    margin-bottom: 10px;
}

.cookie-category-list {
    font-size: 12px;
    color: #718096;
    padding-left: 20px;
}

.cookie-settings-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Cookie Preference Badge */
.cookie-preference-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #F05922;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 20px;
}