@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Cormorant is loaded via Google Fonts - no local font files needed */


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

/* Prevent image flash and ensure smooth loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: none;
}

/* Ensure images load smoothly */
.hero-img,
.workshop-img,
.experience-img,
.topics-img,
.venue-img,
.schedule-img,
.qa-img,
.price-img {
    opacity: 1;
    transition: transform 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    line-height: 1.6;
    color: #393939;
    background-color: #fff;
}

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

.text-container {
    padding: 0% 15% 0% 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #c78665;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    font-family: "Mulish", sans-serif;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.4px;
}

a {
    color: #c78665;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a06b4a;
}

.justified {
    text-align: justify;
}

/* Header Styles */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo-img {
    margin: 0 auto;
    height: 90px;
    width: auto;
}

.nav {
    flex: 2;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s 
ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c78665;
    background-color: rgba(199, 134, 101, 0.1);
}

.search-toggle {
    background: none;
    border: none;
    color: #c78665;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-toggle:hover {
    background-color: rgba(199, 134, 101, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #c78665;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1001;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    display: block;
    padding: 1rem;
    color: #c78665;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link:hover {
    color: #c78665;
    background-color: rgba(199, 134, 101, 0.1);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-input {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.search-submit {
    background: none;
    border: none;
    color: #c78665;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Main Content */
.main {
    /* margin-top: 88px; */
}

/* Hero Section */
.hero {
    /* height: 100vh; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.hero-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-home {
    --hero-image: url('/assets/img/banner-1080-1350.jpg');
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(20, 20, 20, 0.25) 45%, rgba(20, 20, 20, 0.05) 70%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #f5f1ee;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(199, 134, 101, 0.25), transparent 55%);
    pointer-events: none;
}

.hero-home .hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 0 2rem;
}

.hero-home .hero-kicker {
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-size: 0.8rem;
    color: rgba(245, 241, 238, 0.8);
    margin-bottom: 1.5rem;
}

.hero-home .hero-title {
    font-size: 3.6rem;
    color: #fdf9f6;
    margin-bottom: 1.5rem;
}

.hero-home .hero-description {
    font-family: "Mulish", sans-serif;
    font-size: 1.15rem;
    color: rgba(245, 241, 238, 0.9);
    margin-bottom: 2.5rem;
}

.hero-home .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-home .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: #c78665;
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 30px rgba(39, 29, 21, 0.35);
}

.hero-home .hero-cta:hover {
    background: #b0714f;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(39, 29, 21, 0.4);
}

.hero-home .hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 241, 238, 0.6);
    color: #fdf9f6;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-home .hero-link:hover {
    border-color: #fdf9f6;
    color: #ffffff;
}

/* Section Styles */
section {
    padding: 6rem 0;
    min-height: 80vh;
}

.section-header {
    text-align: center;
    /* margin-bottom: 3rem; */
}

.section-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    margin: 20px auto;
}

.section-title {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    font-size: 27px;
    font-style: italic;
    font-weight: 500;
    color: #c78665;
    /* margin-bottom: 2rem; */
}

/* Workshop Section */
.workshop {
    background-color: #f8f9fa;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}


.location {
    text-align: center;
}

.workshop-img,
.experience-img,
.topics-img,
.venue-img,
.schedule-img,
.qa-img,
.price-img {
    width: 640px;
    height: 800px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Experience Section */
.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}


/* Topics Section */
.topics {
    background-color: #fff;
}

.topics.content-align-right {
    background-color: #f8f9fa;
}


.topics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}

.workshop-list-items .container + .container {
    margin-top: 3rem;
}

/* Venue Section */
.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}

/* Schedule Section */
.schedule {
    background-color: #f8f9fa;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}

.schedule-days {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-day {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-day h5 {
    color: #c78665;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.schedule-day p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Q&A Section */
.qa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}

.qa-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qa-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qa-item h4 {
    color: #c78665;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Price Section */
.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 70vh;
}

/* Content alignment helpers */
.content-align-right .workshop-content,
.content-align-right .experience-content,
.content-align-right .venue-content,
.content-align-right .schedule-content,
.content-align-right .price-content,
.content-align-right .topics-content {
    direction: ltr;
}

.content-align-right .workshop-content,
.content-align-right .experience-content,
.content-align-right .venue-content,
.content-align-right .schedule-content,
.content-align-right .topics-content {
    flex-direction: row-reverse;
}

.content-align-right .price-content {
    grid-auto-flow: dense;
}

.content-align-right .price-text {
    order: 2;
}

.content-align-right .price-image {
    order: 1;
}

.content-align-center .workshop-content,
.content-align-center .experience-content,
.content-align-center .venue-content,
.content-align-center .schedule-content,
.content-align-center .price-content,
.content-align-center .topics-content {
    text-align: center;
    align-items: center;
}

.content-align-center .workshop-content,
.content-align-center .experience-content,
.content-align-center .venue-content,
.content-align-center .schedule-content,
.content-align-center .topics-content {
    flex-direction: column;
}

.content-align-center .price-content {
    grid-template-columns: 1fr;
    min-height: auto;
}

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

.price-text h3 {
    color: #414141;
    margin-bottom: 1rem;
    font-size: 19px;
    text-transform: uppercase;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-subtitle {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #9a7b66;
    margin-bottom: 0.5rem;
}

.contact-description {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #5d5d5d;
}

.contact .section-title {
    text-align: center;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e5e6e3;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-label {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #393939;
}

.form-input,
.form-textarea {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d6d9dc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #c78665;
    box-shadow: 0 0 0 3px rgba(199, 134, 101, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    background-color: #c78665;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    min-width: 220px;
}

.submit-btn:hover {
    background-color: #a06b4a;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    text-align: center;
}

.form-message--success {
    background-color: #eaf6ef;
    color: #1e6b3c;
    border: 1px solid #cfe9d9;
}

.form-message--error {
    background-color: #fdeceb;
    color: #a62821;
    border: 1px solid #f5c5c2;
}

/* Footer */
.footer {
    padding-top: 60px;
    background: #ffffff;
    color: #393939;
}

.footer-top {
    padding: 1rem 0;
}

.footer-subtitle {
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #9a7b66;
    margin-bottom: 0.5rem;
}

.footer-heading {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #1f1f1f;
    margin: 0;
}

.footer-middle {
    padding: 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-column {
    flex: 0 0 220px;
    max-width: 220px;
}

.footer-column:last-child {
    margin-left: auto;
    text-align: right;
}

.footer-column-title {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #c78665;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #393939;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

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

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.95rem;
    color: #8a8a8a;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        flex: none;
    }
    
    .workshop-content,
    .experience-content,
    .topics-content,
    .venue-content,
    .schedule-content,
    .qa-content,
    .price-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 60vh;
    }

    .topics-content .topics-image {
        order: 1;
    }

    .topics-content .topics-text {
        order: 2;
    }
    
    .text-container {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1 1 auto;
        max-width: 100%;
        text-align: left;
    }

    .footer-column:last-child {
        margin-left: 0;
        text-align: left;
    }

    .footer-top {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .hero {
        height: 70vh;
        padding: 2rem 1rem;
    }

    .hero-home {
        min-height: 80vh;
    }

    .hero-home .hero-title {
        font-size: 2.6rem;
    }

    .hero-home .hero-description {
        font-size: 1rem;
    }
    
    .hero-img {
        max-width: 90%;
        max-height: 90%;
    }
    
    .workshop-img,
    .experience-img,
    .topics-img,
    .venue-img,
    .schedule-img,
    .qa-img,
    .price-img {
        width: 100%;
        height: 500px;
        max-width: 500px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 60vh;
        padding: 1rem;
    }

    .hero-home {
        min-height: 70vh;
    }

    .hero-home .hero-kicker {
        letter-spacing: 0.25rem;
    }

    .hero-home .hero-title {
        font-size: 2.1rem;
    }

    .hero-home .hero-description {
        font-size: 0.98rem;
    }
    
    .hero-img {
        max-width: 95%;
        max-height: 95%;
    }
    
    .workshop-img,
    .experience-img,
    .topics-img,
    .venue-img,
    .schedule-img,
    .qa-img,
    .price-img {
        width: 100%;
        height: 400px;
        max-width: 400px;
        object-fit: cover;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .text-container {
        padding: 1.5rem 0.5rem;
    }
    
    .social-link {
        margin: 0 0.5rem;
    }
}

/* Notification styles for dynamic notifications */
.notification {
    font-family: 'Cormorant', 'Josefin Slab', serif;
    font-weight: 500;
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .workshop-img,
    .experience-img,
    .topics-img,
    .venue-img,
    .schedule-img,
    .qa-img,
    .price-img {
        transition: transform 0.3s ease;
    }
    
    .workshop-img:hover,
    .experience-img:hover,
    .topics-img:hover,
    .venue-img:hover,
    .schedule-img:hover,
    .qa-img:hover,
    .price-img:hover {
        transform: scale(1.02);
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group input:valid,
.form-group textarea:valid {
    border-color: #d6d9dc;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #c78665;
    outline-offset: 2px;
}

/* ========================================
   COOKIE CONSENT BANNER & MODAL
   ======================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

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

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-title {
    font-size: 1.25rem;
    color: #393939;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-consent-text {
    font-size: 0.875rem;
    color: #5d5d5d;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.cookie-consent-text a {
    color: #c78665;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #a86d52;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Cormorant', 'Josefin Slab', serif;
}

.cookie-consent-btn--primary {
    background: #c78665;
    color: #ffffff;
}

.cookie-consent-btn--primary:hover {
    background: #a86d52;
    transform: translateY(-1px);
}

.cookie-consent-btn--secondary {
    background: #ffffff;
    color: #393939;
    border: 2px solid #ddd;
}

.cookie-consent-btn--secondary:hover {
    border-color: #393939;
}

.cookie-consent-btn--text {
    background: transparent;
    color: #5d5d5d;
    padding: 0.75rem 1rem;
}

.cookie-consent-btn--text:hover {
    color: #393939;
}

.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.cookie-consent-modal.cookie-consent-modal--visible {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-modal-content {
    background: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.cookie-consent-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-modal-title {
    font-size: 1.5rem;
    color: #393939;
    margin: 0;
    font-weight: 600;
}

.cookie-consent-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5d5d5d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cookie-consent-modal-close:hover {
    background: #f5f5f5;
    color: #393939;
}

.cookie-consent-modal-body {
    padding: 1.5rem;
}

.cookie-consent-description {
    font-size: 0.875rem;
    color: #5d5d5d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-category {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

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

.cookie-category-title {
    font-weight: 600;
    color: #393939;
    font-size: 1rem;
    margin: 0;
}

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

.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: 24px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #c78665;
}

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

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

.cookie-category-description {
    font-size: 0.813rem;
    color: #5d5d5d;
    line-height: 1.5;
}

.cookie-consent-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {

    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   COOKIE POLICY PAGE
   ======================================== */

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-title {
    font-size: 2.5rem;
    color: #c78665;
    margin-bottom: 0.5rem;
}

.policy-date {
    color: #5d5d5d;
    font-size: 0.875rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    color: #393939;
    margin-bottom: 1rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    color: #393939;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: #5d5d5d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: #5d5d5d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #c78665;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #c78665;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.cookie-table td {
    color: #5d5d5d;
    font-size: 0.875rem;
}

.manage-cookies-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #c78665;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.manage-cookies-btn:hover {
    background: #a86d52;
}
