/* =========================================
   ŞARKÜTERI - Mobile-First CSS
   Color Palette: Warm Charcoal + Copper
   ========================================= */

/* --- CSS Variables --- */
:root {
    --bg-dark: #1e1e1e;
    --bg-body: #faf7f4;
    --bg-card: #ffffff;
    --bg-section-alt: #f2ebe4;

    --text-primary: #2c2c2c;
    --text-secondary: #6b6259;
    --text-light: #9b9189;
    --text-white: #ffffff;

    --accent: #c8956c;
    --accent-dark: #a87650;
    --accent-light: #e8c9ae;
    --copper: #c8956c;
    --brown-dark: #3d2b1f;
    --brown-medium: #5c3d2e;

    --success: #4caf50;
    --error: #e74c3c;
    --warning: #f39c12;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --header-height: 60px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow {
    max-width: 780px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--text-white);
}

.btn-hero {
    background: var(--accent);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
}
.btn-hero:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,149,108,0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 500;
}
.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 600;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.btn-block {
    display: flex;
    width: 100%;
    margin-top: 12px;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30,30,30,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.desktop-nav {
    display: none;
    gap: 28px;
}

.desktop-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--text-white);
}

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

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-dark);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.open .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 24px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    color: rgba(255,255,255,0.85);
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: rgba(200,149,108,0.15);
    color: var(--accent);
}

.mobile-nav-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.2s;
}

.mobile-contact-link:hover {
    background: rgba(255,255,255,0.05);
}

.whatsapp-link {
    color: #25D366;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--bg-dark) 50%, var(--brown-medium) 100%);
    padding: 80px 16px 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,149,108,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,149,108,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 8s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Sections --- */
.section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--brown-dark), var(--bg-dark));
    padding: 100px 16px 40px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

/* --- Category Grid --- */
.categories-section {
    background: var(--bg-section-alt);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-section-alt);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    background: linear-gradient(135deg, var(--bg-section-alt), #e8ddd0);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.price-unit {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    font-family: var(--font-body);
}

/* --- Product Detail --- */
.product-detail-section {
    padding-top: 80px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-section-alt);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 80px;
    background: linear-gradient(135deg, var(--bg-section-alt), #e8ddd0);
}

.product-category-tag {
    display: inline-block;
    background: var(--bg-section-alt);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-detail-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail-desc p {
    margin-bottom: 12px;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    aspect-ratio: 16/9;
    background: var(--bg-section-alt);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    background: linear-gradient(135deg, var(--bg-section-alt), #e8ddd0);
}

.blog-info {
    padding: 16px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 8px;
    line-height: 1.3;
}

.blog-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

/* Blog Detail */
.blog-detail-section {
    padding-top: 80px;
}

.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/9;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-header {
    margin-bottom: 24px;
}

.blog-detail-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-top: 8px;
}

.blog-detail-content.prose {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.prose h2 { font-family: var(--font-heading); font-size: 1.4rem; margin: 24px 0 12px; color: var(--text-primary); }
.prose h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 20px 0 10px; color: var(--text-primary); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose img { border-radius: var(--radius-md); margin: 16px 0; }

.blog-detail-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* --- About Page --- */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-story h2,
.about-values h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-item .stat-number,
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item .stat-label,
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* About Preview (Homepage) */
.about-preview {
    background: var(--bg-section-alt);
}

.about-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-visual-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.visual-stat {
    text-align: center;
    background: var(--bg-card);
    padding: 20px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-txt {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

/* --- Contact Page --- */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card.whatsapp {
    background: #e8fbe8;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 2px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg-card);
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}

.form-row-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Category Filter --- */
.category-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.2s;
    flex-shrink: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
}

.faq-toggle {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--brown-dark), var(--bg-dark));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.5;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-col p {
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 20px;
    transition: transform 0.2s;
}

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

/* --- WhatsApp FAB --- */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all 0.3s ease;
    animation: fabPulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* --- Alerts --- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE - Tablet & Desktop
   ========================================= */

/* Tablet (≥ 640px) */
@media (min-width: 640px) {
    .container { padding: 0 24px; }

    .category-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(4, 1fr); }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .form-row-2 { flex-direction: row; }

    .product-info h3 { font-size: 15px; }
    .product-desc { font-size: 13px; }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }

    body { font-size: 16px; }

    .hamburger { display: none; }

    .desktop-nav {
        display: flex;
    }

    .category-grid { grid-template-columns: repeat(5, 1fr); }
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }

    .hero { min-height: 90vh; }

    .product-detail {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-detail-image {
        flex: 1;
        max-width: 50%;
    }

    .product-detail-info {
        flex: 1;
        position: sticky;
        top: calc(var(--header-height) + 24px);
    }

    .about-preview-grid {
        flex-direction: row;
        align-items: center;
    }

    .about-preview-content,
    .about-preview-visual {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .page-header {
        padding: 120px 24px 50px;
    }

    .section {
        padding: 80px 0;
    }
}

/* Large Desktop (≥ 1280px) */
@media (min-width: 1280px) {
    .container { padding: 0 32px; }
    .product-grid { gap: 24px; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 480px;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-size: 12px;
    line-height: 1.5;
    animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: var(--accent-dark);
}

@media (min-width: 768px) {
    .cookie-banner {
        right: auto;
        bottom: 20px;
        left: 20px;
    }
}

/* --- Custom 404 Page --- */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 16px 60px;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.error-message {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Header Search --- */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.search-toggle:hover { color: #fff; }

.search-toggle svg {
    display: block;
}

.header-search {
    display: none;
    width: 100%;
    padding: 8px 0 12px;
}

.header-search.active { display: block; }

.header-search-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin-left: auto;
}

.header-search-form input {
    flex: 1;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.header-search-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.header-search-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.header-search-form button {
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.header-search-form button:hover { background: var(--accent-dark); }

/* --- Search Page --- */
.search-form-page {
    display: flex;
    gap: 12px;
    max-width: 600px;
}

.search-form-page input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
}

.search-form-page input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}

/* --- Map Embed --- */
.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-embed iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.08);
}

.pagination a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.pagination span.active,
.pagination .active {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

/* --- Container Narrow --- */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =========================================
   CART (SEPET) STYLES
   ========================================= */

/* --- Cart Icon in Header --- */
.cart-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    padding: 4px;
}

.cart-icon-link:hover {
    color: var(--text-white);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: badgePop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cart-link .cart-badge {
    position: static;
    display: inline-flex;
    margin-left: 6px;
    font-size: 11px;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- Product Card Link (for cards with cart) --- */
.product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.product-card-link:hover .product-image img {
    transform: scale(1.05);
}

/* --- Product Cart Action (inline in cards) --- */
.product-cart-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 14px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.btn-add-cart {
    flex-shrink: 0;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-add-cart:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-add-cart:active {
    transform: scale(0.96);
}

/* --- Quantity Control --- */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-section-alt);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.qty-control-sm {
    flex: 1;
    min-width: 0;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.qty-btn:hover {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.qty-btn:active {
    transform: scale(0.9);
}

.cart-qty-input,
.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-body);
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-unit-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 10px 0 4px;
}

/* --- Product Detail Cart Area --- */
.product-detail-cart {
    background: var(--bg-section-alt);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.product-detail-cart .qty-control {
    margin-bottom: 12px;
    background: white;
}

.product-detail-cart .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.product-detail-cart .cart-qty-input {
    width: 60px;
    font-size: 16px;
    height: 44px;
}

.btn-add-cart-detail {
    font-size: 16px;
    padding: 14px 24px;
    font-weight: 600;
}

/* --- Cart Toast Notification --- */
.cart-toast {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--bg-dark);
    color: white;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast svg {
    color: var(--success);
    flex-shrink: 0;
}

/* =========================================
   CART PAGE
   ========================================= */

.cart-section {
    min-height: 50vh;
}

/* --- Order Success State --- */
.order-success {
    text-align: center;
    padding: 60px 20px;
    animation: successFadeIn 0.6s ease;
}

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

.order-success-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: successBounce 0.8s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.order-success h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.order-success p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.order-success-sub {
    font-size: 18px !important;
    margin-top: 8px !important;
    margin-bottom: 28px !important;
}

.order-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Cart Empty State --- */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.cart-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* --- Cart Layout --- */
.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- Cart Items --- */
.cart-items-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-items-header h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-clear-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--error);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.cart-clear-btn:hover {
    background: rgba(231,76,60,0.06);
    border-color: var(--error);
}

/* --- Cart Item Row --- */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s;
    gap: 12px;
}

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

.cart-item:hover {
    background: rgba(0,0,0,0.01);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-unit {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: rgba(231,76,60,0.08);
    border-color: var(--error);
    color: var(--error);
}

/* --- Order Form --- */
.order-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px 20px;
}

.order-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.required {
    color: var(--error);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.field-error {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
    min-height: 16px;
}

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

.btn-order {
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    gap: 10px;
}

/* --- Desktop Responsive --- */
@media (min-width: 768px) {
    .cart-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .cart-items-wrapper {
        flex: 1.5;
    }

    .order-form-wrapper {
        flex: 1;
        position: sticky;
        top: 80px;
    }

    .cart-toast {
        bottom: 30px;
        right: 30px;
    }

    .product-detail-cart .qty-control {
        max-width: 220px;
    }
}

@media (min-width: 1024px) {
    .cart-items-header h2 {
        font-size: 1.4rem;
    }

    .order-form-wrapper h2 {
        font-size: 1.4rem;
    }
}

