/* 
 * Anadoluvari - Premium Minimalist & Earthy CSS
 * Designed for 100% Google SEO, Accessibility, and Core Web Vitals
 * Author: Senior Frontend Developer
 */

:root {
    /* Anatolian Earthy Color Palette */
    --c-terracotta: #B95A3E;
    /* Warm accent */
    --c-terracotta-dark: #91442D;
    --c-terracotta-light: #DF8063;

    --c-sand: #F7F5F0;
    /* Soft background */
    --c-sand-dark: #EAE6DB;

    --c-stone: #8B8C89;
    /* Neutral / Muted texts */
    --c-stone-light: #D1D2CF;

    --c-olive: #68694B;
    --c-charcoal: #2A2B2A;
    /* Deep rich text */

    /* Global Variables */
    --bg: var(--c-sand);
    --bg-alt: var(--c-sand-dark);
    --text: var(--c-charcoal);
    --text-muted: var(--c-stone);
    --accent: var(--c-terracotta);
    --primary: var(--accent);
    --accent-hover: var(--c-terracotta-dark);
    --accent-glow: rgba(185, 90, 62, 0.4);

    --border: rgba(42, 43, 42, 0.1);
    --border-light: rgba(42, 43, 42, 0.05);

    /* Glassmorphism */
    --glass: rgba(247, 245, 240, 0.75);
    --glass-dark: rgba(42, 43, 42, 0.85);

    /* Typography Setup (Modern & Large) */
    --font-heading: 'Lora', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Premium Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(185, 90, 62, 0.05);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: 0.4s var(--ease-out);

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--c-terracotta-light), var(--c-terracotta));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    --gradient-dark: linear-gradient(to bottom, rgba(42, 43, 42, 0), rgba(42, 43, 42, 0.8));
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    /* SEO & UX */
    font-family: var(--font-body);
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    z-index: 99999;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s var(--ease-out);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid #fff;
    outline-offset: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* =========================================
   LAYOUT & UTILITIES
   ========================================= */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    max-width: 1400px;
    /* Modern wide view */
}

.section {
    padding: 8rem 0;
    position: relative;
    content-visibility: auto;
    /* Google Performance */
    contain-intrinsic-size: 1000px;
}

.section-alt {
    background-color: var(--bg-alt);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm-15-20l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm30-10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5z' fill='%232a2b2a' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.section-alt .container {
    position: relative;
    z-index: 1;
}

/* =========================================
   MUSEUM EDITORIAL COMPONENTS
   ========================================= */

.header-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 2rem 0;
}

.header-pre-editorial {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.header-title-editorial {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.header-desc-editorial {
    font-size: 1.25rem;
    max-width: 600px;
}

.tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 0.4em 1em;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(185, 90, 62, 0.05);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-top: 4px solid var(--accent);
    box-shadow: 0 4px 30px rgba(42, 43, 42, 0.05);
    /* Soft premium shadow */
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20L20 0ZM20 8L8 20L20 32L32 20L20 8ZM20 16L16 20L20 24L24 20L20 16Z' fill='%23B95A3E' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}


.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--accent-glow);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.site-nav a {
    font-weight: 500;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--text);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease-out);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 60%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    min-width: 240px;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-content a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: transparent;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: var(--bg);
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cart,
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.header-cart:hover,
.header-search:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.footer-social-btn {
    transition: var(--transition);
}

.footer-social-btn:hover {
    color: #E1306C;
    /* Instagram Pink/Red */
    transform: translateY(-3px) scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

/* =========================================
   SEARCH FORM
   ========================================= */
.header-search-form {
    position: absolute;
    top: 100%;
    right: 5%;
    width: 320px;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.header-search-form:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-input {
    flex: 1;
    border: none;
    background: var(--bg);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
}

.header-search-submit,
.header-search-close {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.header-search-close {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.header-search-submit {
    color: var(--accent);
}

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100%;
    background: var(--bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-in-out);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.is-open {
    pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav-overlay {
    opacity: 1;
}

.mobile-nav.is-open .mobile-nav-drawer {
    transform: translateX(0);
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.mobile-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-links a {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}

.mobile-nav-links a.active {
    color: var(--accent);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-footer a {
    font-weight: 600;
    color: var(--text-muted);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.site-main {
    padding-top: 90px;
    /* offset header */
}

.hero-slider {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
}

#main-content:focus {
    animation: content-flash 0.8s ease-out;
}

@keyframes content-flash {
    0% {
        box-shadow: inset 0 0 0 4px var(--accent-glow);
    }

    100% {
        box-shadow: inset 0 0 0 0 transparent;
    }
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm-15-20l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm30-10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--glass-dark) 0%, rgba(42, 43, 42, 0.4) 100%);
    z-index: 2;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s var(--ease-out);
}

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.hero-slide-content h2 {
    color: #fff;
}

.hero-slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slide-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-slide-actions .btn-outline:hover {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}

/* Animations for slider content */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .animate-reveal {
    animation: slideUp 0.8s var(--ease-out) forwards;
}

.swiper-slide-active h2.animate-reveal {
    animation-delay: 0.2s;
}

.swiper-slide-active p.animate-reveal {
    animation-delay: 0.4s;
}

.swiper-slide-active .hero-slide-actions.animate-reveal {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Controls */
.hero-swiper-pagination {
    bottom: 2rem !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

.hero-swiper-button {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hero-swiper-button::after {
    font-size: 1.5rem;
}

.hero-swiper-button:hover {
    background: var(--accent);
}

/* =========================================
   FEATURE GRID (Vision)
   ========================================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.feature-card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* =========================================
   EDITORIAL GRID (ABOUT)
   ========================================= */
.section-editorial {
    padding: 10rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm37 2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23B95A3E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 8rem;
    align-items: center;
}

.editorial-image {
    position: relative;
    padding: 2rem 2rem 4rem;
    will-change: transform, opacity;
}

.image-frame {
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    border-radius: 4px;
    overflow: hidden;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 35%);
    pointer-events: none;
    z-index: 2;
}

.editorial-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.image-frame:hover .editorial-img {
    transform: scale(1.05);
}

.frame-border {
    position: absolute;
    inset: -20px;
    border: 1px solid var(--accent);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    transform: translate(40px, 40px);
    backface-visibility: hidden;
}

.image-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5em;
    color: #fff;
    opacity: 0.85;
    writing-mode: vertical-lr;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    z-index: 3;
}

.editorial-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin-bottom: 2.5rem;
}

.article-body-v4 {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 400;
}

.editorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--text);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    transition: var(--transition);
}

.editorial-btn:hover {
    gap: 2.5rem;
    color: var(--accent);
}

/* =========================================
   DISCOVERY GRID (BLOG)
   ========================================= */
.section-discovery {
    padding: 10rem 0;
    background: var(--bg-alt);
}

.discovery-header {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 5rem;
}

.discovery-card {
    position: relative;
}

.card-wrap {
    display: block;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.discovery-card:hover .card-wrap {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(185, 90, 62, 0.1);
}

.card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 2rem;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out);
}

.discovery-card:hover img {
    transform: scale(1.1);
}

.card-date-v4 {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--text);
    color: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.card-date-v4 .day {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.card-date-v4 .month {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.card-title-v4 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.card-meta-v4 {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.meta-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.2em;
}

.meta-reading {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
}

/* =========================================
   BLOG LIST
   ========================================= */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-item-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.blog-item:hover .blog-content h3 {
    color: var(--accent);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 8rem 0;
    background: var(--bg-alt);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--text);
    color: #fff;
    padding-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-grid.has-pages {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.footer-logo {
    color: #fff !important;
}

.footer-logo-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.footer-nav-title {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.contact-card-mini .icon-wrap {
    color: var(--accent);
}

.contact-card-mini .text-wrap span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.contact-card-mini .text-wrap p {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.footer-bottom-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.dev-badge img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.dev-badge:hover img {
    opacity: 1;
}

/* =========================================
   COOKIE CONSENT
   ========================================= */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 2rem 0;
    transition: bottom 0.5s var(--ease-out);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    background: var(--text);
    color: #fff;
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-cookie {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cookie:hover {
    background: var(--accent-hover);
}

/* =========================================
   SCROLL ANIMATIONS (Animate-up)
   ========================================= */
.animate-up {
    opacity: 1;
    transform: translateY(0);
}

.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 1024px) {

    .site-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-slide-content h2 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* =========================================
   SUBPAGES (Banner, Grids, Cards)
   ========================================= */

.page-banner {
    background: var(--text);
    color: #fff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Subtle Anatolian pattern overlay */
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm-15-20l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5zm30-10l5 5-5 5-5-5 5-5zm0 10l5 5-5 5-5-5 5-5z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    animation: bannerFadeIn 1s var(--ease-out) forwards;
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-banner h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb li:not([itemprop]) {
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.content-below-banner {
    padding: 6rem 5%;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grids & Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-link {
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card:hover .card-link {
    color: var(--accent-hover);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
}

/* Article Body */
.article-body {
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

/* =========================================
   ARTICLE CONTENT TYPOGRAPHY
   ========================================= */
.article-content {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text);
}

.article-content p {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.75rem;
    line-height: 1.85;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.article-content h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
.article-content h4 { font-size: 1.35rem; }
.article-content h5 { font-size: 1.2rem; }
.article-content h6 { font-size: 1.1rem; }

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article-content a:hover {
    color: var(--accent-hover);
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    padding-left: 0.25rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-alt);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.article-content blockquote p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.article-content img {
    border-radius: var(--radius);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.article-content figure {
    margin: 2.5rem 0;
}

.article-content figcaption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.article-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
}

.article-content code {
    background: var(--bg-alt);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--c-terracotta-dark);
    font-family: monospace;
}

.article-content pre {
    background: var(--text);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: 0.95rem;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: var(--text);
}

.article-content em,
.article-content i {
    font-style: italic;
}

.article-content mark {
    background: rgba(185, 90, 62, 0.15);
    color: var(--text);
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .article-content {
        font-size: 1rem;
    }
    .article-content p,
    .article-content li {
        font-size: 1rem;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 43, 42, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-info {
    opacity: 1;
}

.gallery-info .title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.gallery-info .cat {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
}

/* References */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.ref-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ref-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.ref-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ref-logo-wrap img {
    max-height: 100%;
    max-width: 150px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.ref-card:hover .ref-logo-wrap img {
    opacity: 1;
    filter: grayscale(0%);
}

.ref-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ref-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: var(--bg-alt, #f9f6f2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
}

.contact-form-grid .form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(185, 90, 62, 0.1);
    color: var(--accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.error-msg,
.success-msg {
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-weight: 600;
}

.error-msg {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fda4af;
}

.success-msg {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}

/* Products */
.product-card-image-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
}

.product-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image-wrap img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.product-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 1rem 0;
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition);
}

.product-card:hover .product-card-cta {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-glow);
    transform: translateY(-2px);
}

/* Social grid in contact */
.contact-social-grid {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
}

.contact-social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 3rem 0 3rem;
    }

    .content-below-banner {
        padding: 4rem 5%;
    }

    .article-body {
        padding: 2rem;
    }
}

/* =========================================
   ADVERTISEMENT SLOTS
   ========================================= */
.ad-container {
    margin: 4rem auto;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 0;
}


.ad-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.ad-content {
    width: 100%;
    max-width: 1200px;
    background: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background-image: radial-gradient(circle at 2px 2px, var(--border) 1px, transparent 0);
    background-size: 24px 24px;
}

.ad-placeholder-premium {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
}

.ad-icon {
    width: 48px;
    height: 48px;
    background: rgba(185, 90, 62, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.ad-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.ad-size {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ad-type {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.7;
}

.ad-rectangle .ad-content {
    min-height: 250px;
}

.ad-feed .ad-content {
    background: linear-gradient(135deg, var(--glass), var(--bg-alt));
    border-style: dashed;
}

.ad-minimal .ad-content {
    min-height: 60px;
    padding: 0.5rem;
}

.ad-minimal .ad-size {
    font-size: 1rem;
    margin-bottom: 0;
    margin-right: 1rem;
}

.ad-minimal .ad-placeholder-premium {
    flex-direction: row;
}

.ad-container:hover .ad-content {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}


/* Content specific ad tweaks */
.article-content .ad-container {
    margin: 3rem 0;
    text-align: left;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .ad-container {
        margin: 2rem auto;
    }

    .ad-content {
        padding: 0.5rem;
        border-radius: var(--radius-sm);
    }
}

/* =========================================
   ANADOLU HAZINELERI (Shop Extras)
   ========================================= */
.featured-item-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-alt), #fff);
    border: 1px solid var(--border-light);
    color: var(--accent);
}

.featured-item-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 80%;
}

.product-description h4 {
    margin: 2rem 0 1rem;
    color: var(--accent);
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.product-description h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.product-description p {
    margin-bottom: 1.5rem;
}

.product-info-box {
    position: sticky;
    top: 120px;
}

.product-detail-wrapper {
    margin-top: 4rem;
}

.success-msg a {
    text-decoration: underline;
    font-weight: 700;
}

/* =========================================
   COMPONENTS: GRIDS & LISTS
   ========================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 4rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.reference-item {
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.reference-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.reference-item img {
    max-height: 60px;
    width: auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.1;
    font-family: var(--font-heading);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text);
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ List */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    transition: transform 0.3s var(--ease-out);
    color: var(--accent);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-item {
    display: block;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}

.blog-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.blog-item h3 {
    font-size: 1.5rem;
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* =========================================
   ARTICLE CONTENT TABLES (Blog & Pages)
   ========================================= */
.article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    background: #fff;
}

.article-content th,
.article-content td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
}

.article-content th {
    background-color: var(--c-terracotta);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:nth-child(even) td {
    background-color: var(--bg-alt);
}

.article-content td {
    color: var(--text);
    font-size: 1.05rem;
}

.article-content tr:hover td {
    background-color: rgba(185, 90, 62, 0.03);
    transition: background-color 0.2s ease;
}

/* Responsive adjustment */
@media (max-width: 850px) {
    .article-content {
        overflow-x: auto;
    }
    
    .article-content table {
        min-width: 600px;
    }
}
