#ilgazi-cookie-consent,
#ilgazi-cookie-modal {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#ilgazi-cookie-consent *,
#ilgazi-cookie-modal * {
    box-sizing: border-box;
}

#ilgazi-cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: none;
}

.icc-card {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 22px;
    border: 1px solid #e8e8e8;
}

.icc-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    line-height: 1.3;
    color: #111111;
    font-weight: 700;
}

.icc-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
}

.icc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.icc-btn {
    border: 0;
    border-radius: 8px;
    padding: 11px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.icc-btn-primary {
    background: #c51532;
    color: #ffffff;
}

.icc-btn-secondary {
    background: #f2f4f7;
    color: #111111;
}

.icc-btn-outline {
    background: #ffffff;
    color: #c51532;
    border: 1px solid #c51532;
}

#ilgazi-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#ilgazi-cookie-modal.icc-open {
    display: flex;
}

.icc-modal-card {
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.icc-modal-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #111111;
}

.icc-modal-desc {
    margin: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
}

.icc-option {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
}

.icc-option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.icc-option-title {
    margin: 0;
    font-size: 16px;
    color: #111111;
    font-weight: 700;
}

.icc-option-text {
    margin: 8px 0 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
}

.icc-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex: 0 0 auto;
}

.icc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.icc-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d0d5dd;
    transition: 0.2s;
    border-radius: 999px;
}

.icc-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

.icc-switch input:checked + .icc-slider {
    background-color: #c51532;
}

.icc-switch input:checked + .icc-slider:before {
    transform: translateX(22px);
}

.icc-switch input:disabled + .icc-slider {
    background-color: #98a2b3;
    cursor: not-allowed;
}

.icc-footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    #ilgazi-cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .icc-card,
    .icc-modal-card {
        padding: 18px;
    }

    .icc-actions,
    .icc-footer-actions {
        flex-direction: column;
    }

    .icc-btn {
        width: 100%;
    }
}