Web sitemizde farklı amaçlar için çerezler kullanıyoruz. Tercihlerinizi aşağıdan özelleştirebilirsiniz.
color: rgba(255, 255, 255, 0.95);
}
.cookie-btn {
padding: 16px 28px;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
}
.cookie-btn-settings {
background: rgba(255, 255, 255, 0.05);
color: rgba(255, 255, 255, 0.9);
border: 2px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-settings:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.4);
transform: translateY(-2px);
}
.cookie-btn-reject {
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.85);
border: 2px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-reject:hover {
background: rgba(255, 255, 255, 0.12);
color: #ffffff;
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
.cookie-btn-accept {
background: linear-gradient(135deg, #FF4308 0%, #FB8500 100%);
color: #ffffff;
border: 2px solid transparent;
box-shadow: 0 6px 25px rgba(255, 67, 8, 0.4);
}
.cookie-btn-accept:hover {
transform: translateY(-3px);
box-shadow: 0 10px 35px rgba(255, 67, 8, 0.6);
}
.cookie-btn-accept-all {
background: linear-gradient(135deg, #FF4308 0%, #FB8500 100%);
color: #ffffff;
border: 2px solid transparent;
}
.cookie-btn-accept-all:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 67, 8, 0.4);
}
/* Cookie Modal */
.cookie-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.cookie-modal-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.cookie-modal-content {
position: relative;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
border: 2px solid #FF4308;
border-radius: 12px;
max-width: 600px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
animation: modalSlideIn 0.4s ease;
}
@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.cookie-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 25px 30px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-modal-header h2 {
color: #ffffff;
font-size: 24px;
font-weight: 700;
margin: 0;
}
.cookie-modal-close {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.cookie-modal-close:hover {
background: rgba(255, 67, 8, 0.2);
border-color: #FF4308;
transform: rotate(90deg);
}
.cookie-modal-close i {
color: #ffffff;
font-size: 20px;
}
.cookie-modal-body {
padding: 25px 30px;
}
.cookie-modal-intro {
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}
.cookie-category {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 20px;
margin-bottom: 15px;
}
.cookie-category-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 20px;
}
.cookie-category-info {
flex: 1;
}
.cookie-category-info h3 {
color: #FF4308;
font-size: 16px;
font-weight: 600;
margin: 0 0 8px 0;
}
.cookie-category-info p {
color: rgba(255, 255, 255, 0.7);
font-size: 13px;
line-height: 1.5;
margin: 0;
}
.cookie-toggle {
position: relative;
display: flex;
align-items: center;
gap: 10px;
}
.cookie-toggle input[type="checkbox"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}
.cookie-toggle-slider {
position: relative;
width: 50px;
height: 26px;
background: rgba(255, 255, 255, 0.2);
border-radius: 13px;
cursor: pointer;
transition: all 0.3s ease;
}
.cookie-toggle-slider:before {
content: '';
position: absolute;
height: 20px;
width: 20px;
left: 3px;
bottom: 3px;
background: #ffffff;
border-radius: 50%;
transition: all 0.3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
background: linear-gradient(135deg, #FF4308 0%, #FB8500 100%);
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
transform: translateX(24px);
}
.cookie-toggle-disabled {
opacity: 0.6;
}
.cookie-toggle-label {
color: rgba(255, 255, 255, 0.6);
font-size: 12px;
font-weight: 500;
}
.cookie-modal-footer {
display: flex;
gap: 10px;
padding: 25px 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.cookie-consent-fullscreen-modal {
padding: 15px;
}
.cookie-consent-modal-content {
max-width: 100%;
border-radius: 24px;
border-width: 2px;
}
.cookie-consent-modal-header {
padding: 40px 25px 20px;
}
.cookie-icon-ring {
width: 90px;
height: 90px;
}
.cookie-icon-large {
font-size: 56px;
}
.cookie-title-main {
font-size: 26px;
margin-bottom: 12px;
}
.cookie-subtitle {
font-size: 14px;
}
.cookie-consent-modal-body {
padding: 20px 25px;
}
.cookie-consent-modal-actions {
padding: 30px 25px;
gap: 15px;
}
.cookie-btn-hero {
padding: 22px 32px;
font-size: 17px;
letter-spacing: 1px;
}
.btn-hero-icon {
font-size: 24px;
}
.cookie-secondary-actions {
flex-direction: column;
}
.cookie-btn-secondary {
width: 100%;
padding: 14px 20px;
font-size: 14px;
}
/* Background circles smaller on mobile */
.circle-1 {
width: 200px;
height: 200px;
top: -100px;
right: -100px;
}
.circle-2 {
width: 180px;
height: 180px;
bottom: -90px;
left: -90px;
}
.circle-3 {
width: 150px;
height: 150px;
}
/* Detailed Settings Modal */
.cookie-modal-content {
margin: 10px;
}
.cookie-modal-header,
.cookie-modal-body,
.cookie-modal-footer {
padding: 20px;
}
.cookie-modal-footer {
flex-direction: column;
}
.cookie-category-header {
flex-direction: column;
gap: 15px;
}
}
@media (max-width: 480px) {
.cookie-consent-modal-header {
padding: 35px 20px 15px;
}
.cookie-icon-ring {
width: 80px;
height: 80px;
}
.cookie-icon-large {
font-size: 48px;
}
.cookie-title-main {
font-size: 22px;
}
.cookie-subtitle {
font-size: 13px;
}
.cookie-btn-hero {
padding: 20px 28px;
font-size: 16px;
}
}