/* Norden Theme - Genel Stiller */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249, 213, 193, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(208, 232, 228, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: relative;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

.site-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 14px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #f9d5c1 20%, #f9d5c1 80%, transparent);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.main-navigation a::after {
    content: '○';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(0);
    color: #f9d5c1;
    font-size: 6px;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.main-navigation a:hover::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.main-navigation a:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.main-navigation a.active,
.main-navigation .current-menu-item>a,
.main-navigation .current-page-ancestor>a {
    color: #1a1a1a;
    font-weight: 700;
}

.main-navigation a.active::before,
.main-navigation .current-menu-item>a::before,
.main-navigation .current-page-ancestor>a::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.main-navigation a.active::after,
.main-navigation .current-menu-item>a::after,
.main-navigation .current-page-ancestor>a::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-icon:hover {
    color: #ff9800;
    transform: scale(1.1);
}

/* Sepet İkonu Özel Stilleri */
.header-icon.cart-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
}

.header-icon.cart-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-icon.cart-icon:hover svg {
    transform: scale(1.15);
}

/* Sepet Badge - Modern ve Şık */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    border-radius: 12px;
    min-width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
    border: 2px solid white;
    animation: pulse 2s infinite;
    line-height: 1;
    letter-spacing: -0.3px;
}

.cart-badge:not(:empty) {
    display: flex;
}

/* Badge Pulse Animasyonu */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
    }

    50% {
        box-shadow: 0 2px 12px rgba(255, 152, 0, 0.6), 0 0 0 4px rgba(255, 152, 0, 0.1);
    }
}

/* Sepet ikonu hover efekti */
.header-icon.cart-icon:hover .cart-badge {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 152, 0, 0.5);
}

/* Sepet ikonu için özel hover rengi */
.header-icon.cart-icon:hover {
    color: #ff6b35;
}

.header-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.95) 0%, rgba(240, 242, 245, 0.95) 100%);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(208, 232, 228, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.footer-logo {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 180px;
    margin-bottom: 30px;
    object-fit: contain;
    object-position: left;
    display: block;
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-contact-icon {
    width: 48px;
    height: 48px;
    background: #4caf50;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.footer-contact-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.footer-contact-content {
    flex-grow: 1;
}

.footer-contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-contact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}

.footer-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-value a:hover {
    color: #4caf50;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #4caf50;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #4caf50;
}

.footer-powered {
    font-size: 0.85rem !important;
    color: #999 !important;
}

.footer-powered a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-powered a:hover {
    color: #4caf50;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: absolute;
    top: 18px;
    right: 40px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Menü Paneli - Glassmorphism */
.mobile-menu-overlay .mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    padding: 90px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-navigation {
    transform: translateX(0);
}

/* Kapatma butonu - Glassmorphism */
.mobile-menu-close {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-close {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.mobile-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-navigation a {
    display: block;
    padding: 15px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-navigation a:hover,
.mobile-navigation a.active {
    color: #4caf50;
}

.mobile-navigation a.active {
    font-weight: 700;
    position: relative;
}

.mobile-navigation a.active::after {
    content: '●';
    position: absolute;
    right: 0;
    font-size: 8px;
    color: #4caf50;
}

.mobile-menu-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 18px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        top: 18px;
        right: 20px;
    }

    .main-navigation {
        display: none;
    }

    .header-icons {
        display: none;
    }

    .mobile-menu-overlay {
        /* Mobil'de görünür ama gizli başlar */
        display: block;
    }

    .mobile-menu-close {
        /* Mobil'de görünür */
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        max-width: 150px;
        max-height: 45px;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }

    .mobile-menu-icons {
        display: none;
    }
}

/* WooCommerce Fiyat Gösterimleri - +KDV Ekleme */
.woocommerce .price,
.woocommerce-page .price,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    position: relative;
}

.woocommerce .price::after,
.woocommerce-page .price::after,
.woocommerce ul.products li.product .price::after,
.woocommerce-page ul.products li.product .price::after {
    content: ' +KDV';
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
    margin-left: 3px;
}

/* Fiyat içindeki span'lar için özel durum (zaten +KDV varsa tekrar ekleme) */
.woocommerce .price .price-vat::after,
.woocommerce-page .price .price-vat::after,
.woocommerce .price .price-cart-vat::after,
.woocommerce-page .price .price-cart-vat::after {
    content: '';
}

/* Responsive */
@media (max-width: 1024px) {
    .main-navigation ul {
        gap: 0;
    }

    .main-navigation a {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header .container {
        flex-wrap: nowrap;
        padding: 12px 15px;
        justify-content: space-between;
    }

    .site-logo {
        height: 28px;
    }

    .header-right {
        display: none;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        top: 0;
        right: 0;
    }

    /* Typography adjustments */
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
    }

    /* Product Cards */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card {
        padding: 15px !important;
    }

    .product-card-image {
        margin-bottom: 12px !important;
    }

    /* Tables - Make scrollable */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table-detailed {
        min-width: 600px;
    }

    /* Spacing adjustments */
    section {
        padding: 40px 0 !important;
    }

    .seo-content-section {
        padding: 40px 0 !important;
    }

    /* Grid layouts */
    .categories-grid,
    .blog-grid,
    .comparison-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .site-header .container {
        padding: 10px 12px;
    }

    .site-logo {
        height: 24px;
    }

    /* Single column for very small screens */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Typography for very small screens */
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Reduce spacing further */
    section {
        padding: 30px 0 !important;
    }

    .seo-content-section {
        padding: 30px 0 !important;
    }
}

/* Legal / Static Pages Styles */
.legal-page {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.legal-header p {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.legal-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    font-weight: 300;
}

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.info-box {
    background: rgba(249, 213, 193, 0.1);
    border-left: 4px solid #f9d5c1;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.info-box p {
    margin-bottom: 0;
    color: #555;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.back-link:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateX(-4px);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.2s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.faq-answer a {
    color: #f9d5c1;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(249, 213, 193, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9d5c1;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #f9d5c1;
}

.warning-box {
    background: rgba(255, 243, 224, 0.5);
    border-left: 4px solid #ff9800;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.warning-box p {
    margin-bottom: 0;
}

.warning-box ul {
    margin-top: 15px;
}

/* Cookie Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table thead {
    background: rgba(249, 213, 193, 0.15);
}

.cookie-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 0.95rem;
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }

    .legal-container {
        padding: 0 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 12px 15px;
    }
}