/* ===================================
   YemeMDiyenDen - Ana Stil Dosyası
   Tüm sayfalarda kullanılan ortak stiller
   =================================== */

/* CSS Variables */
:root {
    --primary: #FF6B35;
    --secondary: #FF8C69;
    --tertiary: #FFB4A2;
    --dark: #2d2d2d;
    --light: #FFF5F0;
    --accent: #FFE5D9;
    --pink: #FFB4D5;
    --text: #2d2d2d;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C69 50%, #FFB4A2 100%);
    --gradient-alt: linear-gradient(135deg, #FFB4D5 0%, #FF8C69 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: white;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 140, 105, 0.15);
    border-bottom: 3px solid var(--primary);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    padding: 0 2rem;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient);
    transition: width 0.3s;
    border-radius: 2px;
}

nav a:hover {
    color: var(--primary);
    background: rgba(255, 180, 213, 0.2);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 80%;
}

nav a.active {
    color: white;
    background: var(--gradient);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

nav a.active::after {
    display: none;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Categories */
.categories {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #FFF5F0 0%, #FFFFFF 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 140, 105, 0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--tertiary);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 4rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB4D5 50%, #FFF5F0 100%);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-content p {
    color: #666;
    line-height: 1.6;
}

/* Products */
.products {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F0 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 140, 105, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.2);
    border-color: var(--pink);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB4D5 50%, #FFF5F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

/* URL-based image support */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Emoji display (when no img tag) */
.product-image:not(:has(img)) {
    font-size: 6rem;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50%, 50%); }
}

.product-info {
    padding: 2rem;
}

.product-brand {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-weight: 600;
}

.product-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB4D5 100%);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.read-more {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #FFF5F0 0%, #FFE5D9 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.insta-post {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFB4D5 0%, #FF8C69 50%, #FFE5D9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 140, 105, 0.2);
}

.insta-post:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem !important;
    }

    nav {
        padding: 1rem 0;
        position: sticky;
    }

    nav ul {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    nav a {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card,
    .category-card {
        margin: 0 0.5rem;
    }

    .product-info,
    .category-content {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }

    .instagram-media {
        margin: 0 auto !important;
    }

    .categories,
    .products,
    .instagram-section {
        padding: 3rem 1rem;
    }

    footer {
        padding: 3rem 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
        font-size: 1.8rem;
        flex-wrap: wrap;
    }

    .legal-links {
        gap: 1rem;
        font-size: 0.85rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 0.9rem !important;
    }

    nav ul {
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-image {
        height: 150px;
        font-size: 4rem;
    }

    .category-icon {
        font-size: 3rem;
        padding: 1.5rem;
    }

    .read-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .social-links {
        font-size: 1.5rem;
        gap: 1rem;
    }
}

/* ===================================
   Performance & Accessibility Improvements
   =================================== */

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 10px 0;
}

.skip-link:focus {
    top: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #E55A2B;
        --secondary: #E08A1E;
        --text: #000000;
    }
    
    body {
        background: #FFFFFF;
    }
}

/* Dark mode support - KAPALI (tasarım bozulmasın diye) */
@media (prefers-color-scheme: dark) {
    /* Dark mode devre dışı - her zaman light mode */
    body {
        background: var(--light);
        color: var(--text);
    }
}

/* Print styles */
@media print {
    nav,
    footer,
    .scroll-to-top,
    .hamburger-menu,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 2rem;
    }
    
    .product-card,
    .category-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Improved tablet support */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    nav ul {
        gap: 2rem;
    }
    
    .product-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation - Sticky olmaya devam etsin */
@media (max-width: 768px) {
    nav {
        position: sticky;
        top: 0;
        width: 100%;
        background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
    }
    
    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Utility classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Product count badge */
.product-count {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===================================
   URL Preview Hover (Link Preview)
   =================================== */
.url-preview {
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(45, 45, 45, 0.95);
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top-right-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.url-preview.show {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 100%);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    border-top: 3px solid var(--primary);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent.show {
    transform: translateY(0);
}

/* Footer'ın üstünde görünmesi için */
footer {
    position: relative;
    z-index: 1;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

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

.cookie-settings-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-settings-content h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

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

.cookie-category h3 {
    font-size: 1.1rem;
    color: var(--dark);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.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: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gradient);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-settings-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Legal Pages Footer Links */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile responsive for cookie consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-settings-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .legal-links {
        gap: 1rem;
        font-size: 0.85rem;
        flex-direction: column;
    }
    
    .url-preview {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}
