/* ========================================
   El Sanatları - Turkish Handicrafts
   Creative Handcraft Journal Style
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Warm, Earthy Palette */
    --color-bg: #FAF7F2;
    --color-bg-alt: #F5EFE6;
    --color-bg-cream: #FFF9F0;
    --color-text: #3D3229;
    --color-text-light: #6B5B4F;
    --color-terracotta: #C45C3E;
    --color-terracotta-dark: #A04830;
    --color-terracotta-light: #E8A090;
    --color-green: #5B7355;
    --color-green-dark: #3E5139;
    --color-green-light: #8FA788;
    --color-gold: #C9A66B;
    --color-border: #D9CFBF;
    --color-white: #FFFFFF;
    --color-overlay: rgba(61, 50, 41, 0.85);
    
    /* Typography */
    --font-heading: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 70px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-organic: 12px 4px 16px 8px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /* Subtle animated background */
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(196, 92, 62, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(91, 115, 85, 0.03) 0%, transparent 50%);
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-terracotta-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-sm);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 207, 191, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
    border-radius: var(--radius-organic);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(196, 92, 62, 0.3);
    transition: var(--transition-medium);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(196, 92, 62, 0.4);
}

.logo:hover {
    color: var(--color-terracotta);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    padding: 0;
    margin: 0;
}

.nav-desktop a {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
    transition: width var(--transition-medium);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-terracotta);
}

/* Burger Menu Button */
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1002;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 3px 0;
    transition: var(--transition-medium);
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

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

.nav-mobile-inner {
    background: var(--color-white);
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: var(--transition-medium);
}

.nav-mobile.active .nav-mobile-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile li {
    margin-bottom: 0;
}

.nav-mobile a {
    display: block;
    padding: var(--space-md);
    color: var(--color-text);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: linear-gradient(90deg, var(--color-bg-alt), transparent);
    color: var(--color-terracotta);
    padding-left: var(--space-lg);
}

.nav-mobile li:last-child a {
    border-bottom: none;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
main {
    flex: 1;
    padding: var(--space-xl) 0;
}

/* Page Header / Hero */
.page-header {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-alt) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: var(--color-terracotta-light);
    opacity: 0.15;
    border-radius: 50%;
    animation: pulse-soft 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: var(--color-green-light);
    opacity: 0.15;
    border-radius: 50%;
    animation: pulse-soft 10s ease-in-out infinite reverse;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-sm);
}

.page-header p {
    position: relative;
    z-index: 1;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Home Hero */
.hero {
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    background: linear-gradient(145deg, var(--color-bg-cream) 0%, var(--color-bg) 50%, var(--color-bg-alt) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-terracotta-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: var(--color-green-light);
    opacity: 0.2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero h1 {
    color: var(--color-terracotta-dark);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(196, 92, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 92, 62, 0.4);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-green);
    border-color: var(--color-green);
}

.btn-secondary:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-text-light);
    color: var(--color-text);
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

/* Irregular Grid - Handcraft Style */
.craft-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.craft-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
    border: 1px solid var(--color-border);
    position: relative;
}

.craft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold), var(--color-green));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.craft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.craft-card:hover::before {
    opacity: 1;
}

.craft-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.craft-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
    pointer-events: none;
}

.craft-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.craft-card:hover .craft-card-image img {
    transform: scale(1.08);
}

.craft-card-content {
    padding: var(--space-lg);
}

.craft-card h3 {
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.craft-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg-cream));
    color: var(--color-green);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

/* Section variations */
.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--color-bg-alt);
    margin: 0 calc(-1 * var(--space-md));
    padding: var(--space-2xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--color-terracotta-light);
    opacity: 0.08;
    border-radius: 50%;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

/* Content Block */
.content-block {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--color-terracotta);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
}

.content-block:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.content-block.green {
    border-left-color: var(--color-green);
}

.content-block.gold {
    border-left-color: var(--color-gold);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--color-bg-cream), var(--color-bg-alt));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
    border: 1px dashed var(--color-border);
}

.info-box h4 {
    color: var(--color-green-dark);
    margin-bottom: var(--space-sm);
}

/* Two Column Layout - FIXED FOR MOBILE */
.two-column {
    display: grid;
    gap: var(--space-xl);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.column-text {
    order: 2;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.column-image {
    order: 1;
    min-width: 0;
}

.column-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-md) 0;
    padding-left: var(--space-xl);
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-gold));
    border-radius: 50%;
}

/* Tips Section */
.tips-grid {
    display: grid;
    gap: var(--space-md);
}

.tip-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.tip-card:hover {
    border-color: var(--color-green-light);
    box-shadow: 0 5px 20px rgba(91, 115, 85, 0.1);
    transform: translateY(-3px);
}

.tip-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(91, 115, 85, 0.3);
}

.tip-content {
    min-width: 0;
    flex: 1;
}

.tip-content h4 {
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.tip-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ========================================
   PAGE SPECIFIC STYLES
   ======================================== */

/* Seramik Page */
.seramik-section .page-header {
    background: linear-gradient(135deg, #FBE8E4 0%, var(--color-bg-alt) 100%);
}

/* Ahşap Oyma Page */
.ahsap-section .page-header {
    background: linear-gradient(135deg, #E8DDD0 0%, var(--color-bg) 100%);
}

.ahsap-section .content-block {
    border-left-color: #8B6914;
}

/* Takı Page */
.taki-section .page-header {
    background: linear-gradient(135deg, #F0E6D8 0%, #FFF5E6 100%);
}

/* Dokuma Page */
.dokuma-section .page-header {
    background: linear-gradient(135deg, #E5EBE3 0%, var(--color-bg-cream) 100%);
}

/* Atölye Fikirleri */
.atolye-section .page-header {
    background: linear-gradient(135deg, #F5E6D0 0%, #E8E3D8 100%);
}

/* FAQ Page */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--color-terracotta-light);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition-fast);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--color-terracotta);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-terracotta);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

.contact-info {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg-cream));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-terracotta);
    font-size: 1.25rem;
}

.contact-text {
    min-width: 0;
    flex: 1;
}

.contact-text h4 {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.contact-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
    word-break: break-word;
}

/* ========================================
   FORMS
   ======================================== */
.form-container {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    max-width: 600px;
    margin: var(--space-xl) auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group label span {
    color: var(--color-terracotta);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

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

/* FIXED: Checkbox alignment */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--color-terracotta);
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: var(--space-xl);
}

.form-error {
    color: #C45C3E;
    font-size: 0.85rem;
    margin-top: var(--space-xs);
    display: none;
}

.form-control.error {
    border-color: #C45C3E;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--color-text), #2a241e);
    color: var(--color-bg);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold), var(--color-green), var(--color-terracotta));
    background-size: 200% 100%;
    animation: shimmer 8s linear infinite;
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-terracotta-light);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: var(--space-lg);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    border-top: 3px solid var(--color-terracotta);
}

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

.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-banner h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--color-text);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-md);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    transition: transform var(--transition-medium);
    z-index: 3000;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
}

/* ========================================
   SITEMAP PAGE
   ======================================== */
.sitemap-section {
    margin-bottom: var(--space-xl);
}

.sitemap-section h3 {
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: var(--space-sm);
}

.sitemap-list a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    color: var(--color-text);
    transition: var(--transition-fast);
}

.sitemap-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-green);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.sitemap-list a:hover {
    color: var(--color-terracotta);
    padding-left: var(--space-md);
}

.sitemap-list a:hover::before {
    background: var(--color-terracotta);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.legal-content h2 {
    color: var(--color-terracotta);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

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

.legal-content h3 {
    color: var(--color-green-dark);
    margin-top: var(--space-lg);
    font-size: 1.15rem;
}

.legal-content ul {
    color: var(--color-text-light);
}

.legal-date {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile First - Base styles above */

/* Small phones */
@media (max-width: 374px) {
    :root {
        font-size: 14px;
    }
    
    .cookie-buttons .btn {
        min-width: 100%;
    }
}

/* Tablet */
@media (min-width: 640px) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-buttons {
        justify-content: flex-start;
    }
    
    .cookie-buttons .btn {
        flex: 0 0 auto;
        min-width: auto;
    }
    
    .hero {
        padding: var(--space-3xl) var(--space-xl);
    }
    
    .page-header {
        padding: var(--space-2xl) var(--space-xl);
    }
    
    .legal-content {
        padding: var(--space-xl);
    }
}

/* Desktop */
@media (min-width: 992px) {
    :root {
        --header-height: 80px;
    }
    
    .burger-btn {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .craft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Irregular grid effect */
    .craft-grid.irregular .craft-card:nth-child(4) {
        grid-column: span 2;
    }
    
    .two-column {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .column-text {
        order: 1;
    }
    
    .column-image {
        order: 2;
    }
    
    .two-column.reverse .column-text {
        order: 2;
    }
    
    .two-column.reverse .column-image {
        order: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cookie-banner-inner {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .cookie-banner-inner > div:first-child {
        flex: 1;
    }
    
    .cookie-banner h4,
    .cookie-banner p {
        margin-bottom: var(--space-xs);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

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

/* Print Styles */
@media print {
    .header, .footer, .cookie-banner, .burger-btn {
        display: none;
    }
    
    main {
        padding: 0;
    }
    
    .content-block, .craft-card {
        break-inside: avoid;
    }
    
    body {
        background: white;
    }
}
