/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #8b7d6b;
    background-color: #fefefe;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f6 100%);
    color: #8b7d6b;
    padding: 2rem 0;
    box-shadow: 0 1px 3px rgba(139, 125, 107, 0.08);
    border-bottom: 1px solid rgba(232, 227, 223, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a69585;
}

#lang-select {
    padding: 12px 20px;
    border: 1px solid rgba(232, 227, 223, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #8b7d6b;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

#lang-select:hover {
    border-color: #d4cfc7;
    box-shadow: 0 4px 20px rgba(139, 125, 107, 0.12);
    transform: translateY(-1px);
}

#lang-select:focus {
    outline: none;
    border-color: #8b7d6b;
    box-shadow: 0 0 0 3px rgba(139, 125, 107, 0.1);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f6 50%, #f7f5f3 100%);
    color: #8b7d6b;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 125, 107, 0.03) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 50%, #c4b5a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    color: #a69585;
    font-weight: 450;
    line-height: 1.6;
}

/* Upload section */
.upload-section {
    padding: 8rem 0;
    background: #ffffff;
}

.upload-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 
        0 32px 64px rgba(139, 125, 107, 0.08),
        0 8px 32px rgba(139, 125, 107, 0.04);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(232, 227, 223, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.upload-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b7d6b, #a69585, #c4b5a0);
}

.upload-card h2 {
    color: #8b7d6b;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.price {
    font-size: 1.5rem;
    color: #8b7d6b;
    font-weight: 700;
    margin: 1.5rem 0 3rem 0;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f7f5f3 0%, #faf8f6 100%);
    border-radius: 16px;
    display: inline-block;
    border: 1px solid rgba(232, 227, 223, 0.8);
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.06);
}

/* Upload area */
.upload-area {
    border: 2px dashed rgba(212, 207, 199, 0.8);
    border-radius: 24px;
    padding: 4rem;
    margin: 3rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(135deg, #fafafa 0%, #f7f5f3 100%);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 125, 107, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.upload-area:hover::before {
    opacity: 1;
}

.upload-area:hover {
    border-color: #8b7d6b;
    background: linear-gradient(135deg, #f9f7f5 0%, #f7f5f3 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(139, 125, 107, 0.12);
}

.upload-area.dragover {
    border-color: #8b7d6b;
    background: linear-gradient(135deg, #f7f5f3 0%, #f9f7f5 100%);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 125, 107, 0.15);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.upload-area:hover .upload-icon {
    opacity: 1;
    transform: scale(1.1);
}

.upload-placeholder p {
    color: #a69585;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.upload-placeholder p:last-child {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

.file-preview {
    position: relative;
    display: inline-block;
}

.file-preview img {
    max-width: 400px;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(139, 125, 107, 0.12);
    border: 1px solid rgba(232, 227, 223, 0.8);
    transition: all 0.3s ease;
}

.file-preview:hover img {
    transform: scale(1.02);
    box-shadow: 0 24px 64px rgba(139, 125, 107, 0.16);
}

.remove-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #8b7d6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(139, 125, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.remove-btn:hover {
    background: #756852;
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.4);
}

/* Generate button */
.generate-btn {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.25);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generate-btn:hover::before {
    opacity: 1;
}

.generate-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #756852 0%, #8b7d6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(139, 125, 107, 0.35);
}

.generate-btn:disabled {
    background: linear-gradient(135deg, #d4cfc7 0%, #e8e3df 100%);
    color: #a69585;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* How it works section */
.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f6 0%, #f7f5f3 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #8b7d6b;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 227, 223, 0.6);
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.06);
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(139, 125, 107, 0.12);
    border-color: rgba(139, 125, 107, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.2);
}

.step h3 {
    font-size: 1.5rem;
    color: #8b7d6b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #a69585;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 450;
}

/* About section */
.about {
    padding: 8rem 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #8b7d6b;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.about p {
    text-align: center;
    font-size: 1.3rem;
    color: #a69585;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 450;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 125, 107, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 32px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 32px 80px rgba(139, 125, 107, 0.15);
    border: 1px solid rgba(232, 227, 223, 0.8);
    backdrop-filter: blur(20px);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close {
    color: #a69585;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #8b7d6b;
    background: rgba(139, 125, 107, 0.1);
}

.spinner {
    border: 4px solid rgba(247, 245, 243, 0.3);
    border-top: 4px solid #8b7d6b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 3rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#generated-image {
    max-width: 100%;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: 0 16px 48px rgba(139, 125, 107, 0.12);
    border: 1px solid rgba(232, 227, 223, 0.8);
}

.download-btn {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.2);
}

.download-btn:hover {
    background: linear-gradient(135deg, #756852 0%, #8b7d6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(139, 125, 107, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    margin-top: 0;
}

footer p {
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 450;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Legal pages */
.legal-content {
    padding: 4rem 0;
    background: #ffffff;
}

.legal-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(139, 125, 107, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(232, 227, 223, 0.6);
    backdrop-filter: blur(10px);
}

.legal-card h1 {
    color: #8b7d6b;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
}

.legal-text {
    color: #a69585;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 450;
}

.legal-text h3 {
    color: #8b7d6b;
    margin: 3rem 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
}

.legal-text strong {
    color: #8b7d6b;
    font-weight: 600;
}

.legal-text a {
    color: #a69585;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #8b7d6b;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .upload-card {
        padding: 2.5rem;
        margin: 0 1rem;
        border-radius: 24px;
    }

    .upload-area {
        padding: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-image {
        height: 55px;
        max-width: 200px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
        border-radius: 24px;
    }

    .example-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .example-arrow {
        transform: rotate(90deg);
    }

    .examples h2 {
        font-size: 2.5rem;
    }

    .examples-subtitle {
        font-size: 1.1rem;
    }

    .example-image img {
        height: 150px;
    }

    .legal-card {
        padding: 2.5rem;
        margin: 0 1rem;
        border-radius: 24px;
    }

    .legal-card h1 {
        font-size: 2.5rem;
    }

    .legal-text {
        font-size: 1rem;
    }
}

/* Disclaimer notice */
.disclaimer-notice {
    background: linear-gradient(135deg, #faf8f6 0%, #f7f5f3 100%);
    border: 1px solid rgba(232, 227, 223, 0.8);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    box-shadow: 0 8px 32px rgba(139, 125, 107, 0.06);
}

.disclaimer-notice p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #8b7d6b;
    line-height: 1.7;
    font-weight: 450;
}

.disclaimer-notice strong {
    color: #8b7d6b;
    font-weight: 600;
}

.disclaimer-notice a {
    color: #a69585;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disclaimer-notice a:hover {
    color: #8b7d6b;
}

/* Examples section */
.examples {
    padding: 8rem 0;
    background: linear-gradient(135deg, #faf8f6 0%, #f7f5f3 100%);
}

.examples h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8b7d6b;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.examples-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #a69585;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 450;
    line-height: 1.6;
}

.example-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.example-item {
    flex: 1;
    max-width: 320px;
}

.example-image {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 16px 48px rgba(139, 125, 107, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 227, 223, 0.6);
    backdrop-filter: blur(10px);
}

.example-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(139, 125, 107, 0.12);
}

.example-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(232, 227, 223, 0.8);
}

.example-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(139, 125, 107, 0.2);
}

.example-label.before {
    background: linear-gradient(135deg, #a69585 0%, #c4b5a0 100%);
}

.example-label.after {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
}

.example-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.arrow {
    font-size: 2.5rem;
    color: #d4cfc7;
    animation: pulse 2s infinite;
}

.ai-text {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(139, 125, 107, 0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.example-disclaimer {
    text-align: center;
    font-size: 1rem;
    color: #a69585;
    font-style: italic;
    margin-top: 3rem;
    font-weight: 450;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 20px 48px rgba(139, 125, 107, 0.15),
        0 8px 24px rgba(139, 125, 107, 0.1);
    max-width: 500px;
    width: calc(100% - 4rem);
    z-index: 1000;
    border: 1px solid rgba(232, 227, 223, 0.8);
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none; /* Hidden by default */
}

.cookie-consent.hidden {
    display: none !important;
}

.cookie-title {
    color: #8b7d6b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cookie-text {
    color: #a69585;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 450;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    flex: 1;
    min-width: 120px;
    letter-spacing: 0.02em;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 125, 107, 0.2);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #756852 0%, #8b7d6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 125, 107, 0.3);
}

.cookie-btn-reject {
    background: linear-gradient(135deg, #f7f5f3 0%, #faf8f6 100%);
    color: #8b7d6b;
    border: 1px solid rgba(232, 227, 223, 0.8);
}

.cookie-btn-reject:hover {
    background: linear-gradient(135deg, #f9f7f5 0%, #f7f5f3 100%);
    border-color: #d4cfc7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 125, 107, 0.1);
}

.cookie-btn-settings {
    background: none;
    color: #a69585;
    text-decoration: underline;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-btn-settings:hover {
    color: #8b7d6b;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 125, 107, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1001;
    padding: 2rem;
    overflow-y: auto;
}

.cookie-settings-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    padding: 3rem;
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid rgba(232, 227, 223, 0.8);
    box-shadow: 0 32px 64px rgba(139, 125, 107, 0.2);
}

.cookie-settings-title {
    color: #8b7d6b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #faf8f6 0%, #f7f5f3 100%);
    border: 1px solid rgba(232, 227, 223, 0.8);
}

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

.cookie-category-title {
    color: #8b7d6b;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-category-description {
    color: #a69585;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 450;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.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: #e8e3df;
    transition: .3s;
    border-radius: 34px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #8b7d6b 0%, #a69585 100%);
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 100px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1.5rem;
    }

    .cookie-settings-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 24px;
    }

    .cookie-settings-title {
        font-size: 1.75rem;
    }

    .cookie-category {
        padding: 1.25rem;
    }
} 