/* AIKEY-SOFT - Cookies Policy CSS */

/* Sol taraf loş turuncu efekti */
body {
    background: linear-gradient(90deg, rgba(255, 165, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 30%, rgba(0, 0, 0, 0.95) 50%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 200, 100, 0.03) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Cookies Content */
.cookies-content {
    padding: 5rem 0;
    background: white;
}

.cookies-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.cookies-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cookies-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookies-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookies-nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.cookies-nav-link.active {
    background: var(--primary-color);
    color: white;
}

.cookies-main {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cookies-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookies-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookies-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1rem;
}

.cookies-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.cookies-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.cookies-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cookies-text:last-child {
    margin-bottom: 0;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Cookie Type Cards */
.cookie-type-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.cookie-type-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cookie-type-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cookie-type-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Cookies Table */
.cookies-table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.table-row .table-cell {
    color: var(--text-light);
}

.table-row .table-cell:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.table-cell:last-child {
    border-right: none;
}

/* Third Party Cards */
.third-party-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.third-party-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.third-party-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.third-party-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.third-party-links {
    display: flex;
    gap: 1rem;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.external-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.external-link i {
    font-size: 0.8rem;
}

/* Browser Instructions */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.browser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.browser-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.browser-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.browser-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Cookie Consent Box */
.cookie-consent-box {
    background: linear-gradient(135deg, var(--bg-light), #f8f9fa);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    margin: 2rem 0;
}

.cookie-consent-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cookie-consent-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    transition: var(--transition);
}

.cookie-option:hover {
    background: var(--bg-light);
}

.cookie-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-option input[type="checkbox"]:disabled + .checkmark {
    background: var(--border-color);
    border-color: var(--border-color);
    opacity: 0.6;
}

.option-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.cookies-footer {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.cookies-update {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cookies-update strong {
    color: var(--primary-color);
}

.cookies-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cookies-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookies-sidebar {
        position: static;
        order: 2;
    }
    
    .cookies-main {
        order: 1;
    }
    
    .cookies-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .cookies-nav-link {
        flex: 1;
        min-width: 120px;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .cookies-main {
        padding: 2rem;
    }
    
    .cookies-title {
        font-size: 1.5rem;
    }
    
    .cookies-subtitle {
        font-size: 1.2rem;
    }
    
    .cookies-nav {
        flex-direction: column;
    }
    
    .cookies-nav-link {
        flex: none;
        min-width: auto;
        text-align: left;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0.75rem;
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cookies-main {
        padding: 1.5rem;
    }
    
    .cookies-sidebar {
        padding: 1.5rem;
    }
    
    .cookies-title {
        font-size: 1.3rem;
        padding-left: 0.75rem;
    }
    
    .cookies-title::before {
        width: 3px;
        height: 20px;
    }
    
    .cookies-subtitle {
        font-size: 1.1rem;
    }
    
    .cookie-consent-box {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .cookies-footer {
        padding: 1.5rem;
    }
}
