/* ========================================
   HTS Kontrplak - Main Stylesheet
   Colors: #0c2419 (dark green), #96aa47 (yellow-green)
   ======================================== */

:root {
    --color-primary: #0c2419;
    --color-accent: #96aa47;
    --color-accent-light: #b0c46a;
    --color-accent-dark: #7a8f3a;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9f5;
    --color-bg-dark: #0c2419;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-text-muted: #b2bec3;
    --color-border: #e8ede3;
    --color-shadow: rgba(12, 36, 25, 0.08);
    --color-shadow-lg: rgba(12, 36, 25, 0.15);

    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1200px;
    --header-height: 72px;
    --header-top-height: 34px;
    --sticky-top-gap: 32px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --focus-ring-color: var(--color-accent-dark);
    --focus-ring-width: 2px;
    --focus-ring-offset: 2px;
}

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

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

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

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* Focus visible (keyboard accessibility) */
:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-close:focus-visible,
.related-carousel-btn:focus-visible,
.whatsapp-float:focus-visible,
.product-card-link:focus-visible,
.breadcrumb a:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
}

.btn-primary:focus-visible,
.btn-whatsapp:focus-visible,
.nav-menu a.nav-cta:focus-visible {
    outline-color: var(--color-white);
    outline-offset: 3px;
}

.hero .btn-outline:focus-visible {
    outline-color: var(--color-white);
}

.section-dark a:focus-visible,
.footer-grid a:focus-visible {
    outline-color: var(--color-accent-light);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius);
    font-weight: 600;
}

.skip-link:focus-visible {
    top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(150, 170, 71, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Section Utilities */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--color-accent-light);
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 20px var(--color-shadow);
}

.header-top {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 6px 0;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tagline {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    color: var(--color-accent-light);
}

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lang-dropdown {
    position: relative;
    flex-shrink: 0;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 32px;
    padding: 4px 10px 4px 6px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.lang-dropdown-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.lang-dropdown-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.lang-dropdown-code {
    font-weight: 700;
}

.lang-dropdown-label {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-dropdown-arrow {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform var(--transition), margin-top var(--transition);
    opacity: 0.85;
}

.lang-dropdown.is-open .lang-dropdown-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1200;
    min-width: 188px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 14px 36px var(--color-shadow-lg);
}

.lang-dropdown-menu[hidden] {
    display: none;
}

.lang-dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: calc(var(--radius) - 2px);
    color: var(--color-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.lang-dropdown-option-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.lang-dropdown-option-label {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
}

.lang-dropdown-option-code {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.lang-dropdown-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

.lang-dropdown-option:hover,
.lang-dropdown-option.is-focused {
    background: rgba(150, 170, 71, 0.12);
    color: var(--color-primary);
}

.lang-dropdown-option.is-selected {
    background: rgba(12, 36, 25, 0.06);
}

.lang-dropdown-option.is-selected.is-focused,
.lang-dropdown-option.is-selected:hover {
    background: rgba(150, 170, 71, 0.16);
}

.lang-dropdown-option.is-selected .lang-dropdown-option-code {
    color: var(--color-accent-dark);
}

/* Ana navigasyon — logo yanı */
.lang-dropdown--nav .lang-dropdown-trigger {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.lang-dropdown--nav .lang-dropdown-trigger:hover {
    border-color: var(--color-accent);
    background: var(--color-white);
}

.lang-dropdown--nav.is-open .lang-dropdown-trigger,
.lang-dropdown--nav .lang-dropdown-trigger:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(150, 170, 71, 0.15);
    background: var(--color-white);
}

.lang-dropdown--nav .lang-dropdown-arrow {
    border-color: var(--color-accent-dark);
}

.lang-dropdown--nav .lang-dropdown-menu {
    left: 0;
    right: auto;
}

/* Mobil çekmece (yedek) */
.lang-dropdown--drawer {
    width: 100%;
}

.lang-dropdown--drawer .lang-dropdown-trigger {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.95rem;
}

.lang-dropdown--drawer .lang-dropdown-trigger:hover {
    border-color: var(--color-accent);
}

.lang-dropdown--drawer.is-open .lang-dropdown-trigger,
.lang-dropdown--drawer .lang-dropdown-trigger:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(150, 170, 71, 0.15);
}

.lang-dropdown--drawer .lang-dropdown-arrow {
    border-color: var(--color-accent-dark);
    width: 9px;
    height: 9px;
}

.lang-dropdown--drawer .lang-dropdown-menu {
    left: 0;
    right: 0;
    min-width: 0;
    top: auto;
    bottom: calc(100% + 6px);
}

.nav-drawer-lang {
    display: none;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.header-contact a:hover {
    color: var(--color-accent-light);
}

.main-nav {
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.logo-text small {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile-only elements hidden on desktop */
.nav-overlay,
.nav-toggle,
.nav-close,
.nav-drawer-header,
.nav-drawer-contact {
    display: none;
}

/* Desktop: drawer is inline nav */
.nav-drawer {
    display: block;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent-dark);
    background: rgba(150, 170, 71, 0.1);
}

.nav-menu a.nav-cta {
    background: var(--color-accent);
    color: var(--color-white);
    margin-left: 8px;
}

.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta.active {
    background: var(--color-accent-dark);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius);
    transition: background var(--transition);
    position: relative;
    z-index: 1002;
}

.nav-toggle:hover {
    background: rgba(150, 170, 71, 0.1);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: var(--color-primary);
    color: var(--color-white);
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(150, 170, 71, 0.2);
    border: 1px solid rgba(150, 170, 71, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    --hero-btn-primary-bg: var(--color-accent);
    --hero-btn-primary-border: var(--color-accent);
    --hero-btn-primary-text: var(--color-white);
    --hero-btn-primary-hover-bg: var(--color-accent-dark);
    --hero-btn-secondary-border: #ffffff;
    --hero-btn-secondary-text: var(--color-white);
    --hero-btn-secondary-hover-bg: var(--color-white);
    --hero-btn-secondary-hover-text: var(--color-primary);
}

.hero-actions .btn-primary {
    background: var(--hero-btn-primary-bg);
    border-color: var(--hero-btn-primary-border);
    color: var(--hero-btn-primary-text);
}

.hero-actions .btn-primary:hover {
    background: var(--hero-btn-primary-hover-bg);
    border-color: var(--hero-btn-primary-hover-bg);
    color: var(--hero-btn-primary-text);
}

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

.hero-actions .btn-outline:hover {
    background: var(--hero-btn-secondary-hover-bg);
    color: var(--hero-btn-secondary-hover-text);
    border-color: var(--hero-btn-secondary-hover-bg);
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow);
    border-color: var(--color-accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 170, 71, 0.12);
    border-radius: 12px;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 320px));
    gap: 28px;
    justify-content: center;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    width: 100%;
    max-width: 320px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow);
}

.products-grid-page {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
}

.products-grid-home {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
}

.products-grid-page .product-card,
.products-grid-home .product-card {
    max-width: none;
    min-width: 0;
}

.products-grid-page .product-card-link,
.products-grid-home .product-card-link {
    display: block;
    width: 100%;
}

.products-grid-page .product-image,
.products-grid-home .product-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
    background: var(--color-white);
}

.products-grid-page .product-image img,
.products-grid-home .product-image img,
.products-grid-page .product-image picture,
.products-grid-home .product-image picture {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: unset;
    display: block;
}

.products-grid-related .product-card-link {
    display: block;
    width: 100%;
}

.products-grid-related .product-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
    background: var(--color-white);
}

.products-grid-related .product-image img,
.products-grid-related .product-image picture {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: unset;
    display: block;
}

.related-products-header {
    margin-bottom: 32px;
}

.related-products-carousel {
    position: relative;
}

.related-carousel-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
    box-shadow: 0 4px 16px rgba(12, 36, 25, 0.08);
    z-index: 2;
}

.related-carousel-btn:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.related-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .related-products.is-scrollable .related-carousel-btn {
        display: inline-flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .related-products.is-scrollable .related-carousel-prev {
        left: 4px;
    }

    .related-products.is-scrollable .related-carousel-next {
        right: 4px;
    }

    .related-products .products-grid-related {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px 4px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        justify-content: flex-start;
        touch-action: pan-x;
        cursor: grab;
    }

    .related-products .products-grid-related.is-dragging {
        scroll-snap-type: none;
        scroll-behavior: auto;
        cursor: grabbing;
        user-select: none;
    }

    .related-products .products-grid-related.is-dragging .product-card-link {
        pointer-events: none;
    }

    .related-products .products-grid-related::-webkit-scrollbar {
        display: none;
    }

    .related-products .products-grid-related .product-card {
        flex: 0 0 calc((100vw - 36px) * 2 / 3);
        max-width: none;
        min-width: 0;
        scroll-snap-align: start;
    }

    .related-products .products-grid-related .product-card:hover {
        transform: none;
    }
}

@media (max-width: 560px) {
    .products-grid-page,
    .products-grid-home {
        grid-template-columns: 1fr;
    }
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.product-image picture,
.product-detail-visual picture,
.about-visual picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-kontrplak {
    background: linear-gradient(135deg, #c4a574 0%, #a8895a 50%, #8b7348 100%);
}

.product-plywood {
    background: linear-gradient(135deg, #6b8f71 0%, #4a6b52 50%, #2d4a38 100%);
}

.product-plywood-wiremesh {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 12px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 12px
        ),
        linear-gradient(135deg, #5a7a6e 0%, #3d5c50 50%, #2a4038 100%);
}

.product-plywood-hexa {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        linear-gradient(135deg, #4d7268 0%, #3a5a52 50%, #284038 100%);
    background-size: 24px 24px, 100% 100%;
}

.product-cam {
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 50%, #b8864f 100%);
}

.product-ladin {
    background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 50%, #c4b498 100%);
}

.product-kayin {
    background: linear-gradient(135deg, #c9956a 0%, #b8845a 50%, #a6734a 100%);
}

.product-mese {
    background: linear-gradient(135deg, #8b6914 0%, #7a5c12 50%, #6b4f10 100%);
}

.product-body {
    padding: 24px;
}

.product-body h3 {
    margin-bottom: 8px;
}

.product-body p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.product-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent-dark);
}

.product-link:hover {
    color: var(--color-primary);
}

/* Product Detail Pages */
.product-detail {
    padding: 60px 0;
}

.product-detail-alt {
    background: var(--color-bg-alt);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.product-detail-reverse {
    direction: rtl;
}

.product-detail-reverse > * {
    direction: ltr;
}

.product-detail-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    line-height: 0;
}

.product-detail-visual img,
.product-detail-visual picture {
    width: 100%;
    height: auto;
    display: block;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge-premium {
    background: var(--color-primary);
}

.product-detail-content h2 {
    margin-bottom: 16px;
}

.product-specs {
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
}

.product-detail-alt .product-specs {
    background: var(--color-white);
}

.product-specs li {
    padding: 4px 0;
    font-size: 0.95rem;
}

.product-uses {
    margin: 20px 0 28px;
}

.product-uses h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-uses ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-uses li {
    padding: 4px 14px;
    background: rgba(150, 170, 71, 0.12);
    color: var(--color-accent-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.quality-item {
    text-align: center;
    padding: 32px 24px;
}

.quality-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 12px;
    opacity: 0.6;
}

.quality-item h3 {
    margin-bottom: 8px;
}

.quality-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ========================================
   USAGE AREAS
   ======================================== */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px var(--color-shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.usage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--color-shadow);
    border-color: var(--color-accent);
}

.usage-card-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(150, 170, 71, 0.18) 0%, rgba(12, 36, 25, 0.06) 100%);
    border-radius: 18px;
    color: var(--color-accent-dark);
    margin-bottom: 16px;
}

.usage-card-icon .icon {
    flex-shrink: 0;
}

.usage-card h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .usage-card {
        padding: 24px 16px;
    }

    .usage-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 380px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AUDIENCE
   ======================================== */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.audience-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.audience-list li svg {
    color: var(--color-accent-light);
    flex-shrink: 0;
}

/* ========================================
   CTA
   ======================================== */
.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-primary), #1a3d2e);
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.cta-box h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

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

/* ========================================
   404 ERROR PAGE
   ======================================== */
.error-page {
    min-height: calc(100dvh - 72px);
    padding: 72px 0 64px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.error-page > .container {
    width: 100%;
}

.error-page-hero {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.1;
    margin: 0 0 -0.35em;
    user-select: none;
}

.error-page-hero h1 {
    margin-bottom: 14px;
}

.error-page-desc {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 520px;
}

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

.error-quick-links h2 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}

.error-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 96px;
    padding: 16px 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.error-link-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    color: var(--color-primary);
}

.error-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(12, 36, 25, 0.06);
    color: var(--color-primary);
}

.error-link-label {
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.error-products {
    padding-top: 56px;
    padding-bottom: 56px;
}

.error-cta {
    padding-top: 0;
    padding-bottom: 72px;
}

/* ========================================
   CITY LOCAL SEO PAGES
   ======================================== */
.city-hero {
    position: relative;
    padding: 72px 0 80px;
    color: var(--color-white);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.city-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(12, 36, 25, 0.92) 0%, rgba(12, 36, 25, 0.72) 55%, rgba(12, 36, 25, 0.55) 100%),
        url('../images/hero-bg.webp') center / cover no-repeat;
    z-index: 0;
}

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

.breadcrumb--on-dark a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb--on-dark a:hover {
    color: var(--color-accent-light);
}

.breadcrumb--on-dark li[aria-current="page"] {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb--on-dark li + li::before {
    color: rgba(255, 255, 255, 0.45);
}

.city-hero-content {
    max-width: 720px;
}

.city-hero h1 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.city-hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    max-width: 620px;
}

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

.city-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.city-uses-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.city-use-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.city-use-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.city-use-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.city-process-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.city-process-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.city-process-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.city-process-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.city-process-item p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.city-prose {
    max-width: 820px;
}

.city-prose h2 {
    margin-bottom: 18px;
}

.city-prose p {
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.city-product-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 8px 0 12px;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0 20px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 28px;
    position: relative;
}

.faq-item summary h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-accent-dark);
    font-weight: 700;
}

.faq-item[open] summary h3::after {
    content: '–';
}

.faq-item p {
    margin: 0 0 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.city-final-cta .cta-actions .btn,
.city-mid-cta .cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.city-related-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
}

.city-related-list li {
    min-width: 0;
}

.city-related-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.city-related-list a:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
    background: var(--color-white);
}

@media (max-width: 768px) {
    .city-related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .city-uses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .city-hero {
        padding: 48px 0 56px;
        min-height: 360px;
    }

    .city-uses-grid,
    .city-process-list {
        grid-template-columns: 1fr;
    }

    .city-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .city-hero-actions .btn {
        justify-content: center;
    }
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    padding: 48px 0 40px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--color-text-muted);
}

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

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

.breadcrumb li[aria-current] {
    color: var(--color-accent-dark);
    font-weight: 500;
}

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-slogan {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent-dark);
    font-style: italic;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--color-accent);
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 12px 40px var(--color-shadow);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 170, 71, 0.12);
    border-radius: 50%;
    color: var(--color-accent-dark);
    margin: 0 auto 20px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
}

/* Mission */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card {
    padding: 40px 36px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

.mission-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--color-text-light);
}

/* Timeline */
.timeline-list {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(150, 170, 71, 0.3);
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 64px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-light);
    text-align: right;
}

.timeline-content h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 170, 71, 0.12);
    border-radius: 12px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-item a {
    color: var(--color-text-light);
}

.contact-item a:hover {
    color: var(--color-accent-dark);
}

/* Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 24px var(--color-shadow);
}

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

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

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(150, 170, 71, 0.15);
}

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

.form-group-recaptcha .g-recaptcha {
    transform-origin: left top;
}

.contact-form .form-group-recaptcha {
    margin-bottom: 20px;
}

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

.form-select {
    position: relative;
}

.form-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: left;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-select-trigger:hover {
    border-color: var(--color-accent);
}

.form-select.is-open .form-select-trigger,
.form-select-trigger:focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: 0;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(150, 170, 71, 0.15);
}

.form-select-trigger.is-placeholder {
    color: var(--color-text-muted);
}

.form-select-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-right: 2px solid var(--color-accent-dark);
    border-bottom: 2px solid var(--color-accent-dark);
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform var(--transition);
}

.form-select.is-open .form-select-arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.form-select-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 5px;
    list-style: none;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px var(--color-shadow);
    max-height: 240px;
    overflow-y: auto;
}

.form-select-menu[hidden] {
    display: none;
}

.form-select-option {
    padding: 9px 14px;
    border-radius: calc(var(--radius) - 2px);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.form-select-option:hover,
.form-select-option.is-focused {
    background: rgba(150, 170, 71, 0.12);
    color: var(--color-primary);
}

.form-select-option.is-selected {
    background: var(--color-primary);
    color: var(--color-white);
}

.form-select-option.is-selected:hover,
.form-select-option.is-selected.is-focused {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Alerts */
/* Alerts */
.contact-form-status:not(:empty) {
    margin-bottom: 20px;
}

.alert {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    align-items: flex-start;
}

.alert-success {
    background: rgba(150, 170, 71, 0.12);
    border: 1px solid var(--color-accent);
    color: var(--color-primary);
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-error ul {
    list-style: disc;
    padding-left: 20px;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card-link:hover .product-link {
    color: var(--color-primary);
}

.product-card-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-dark);
    margin-bottom: 6px;
}

.product-card-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-block {
    padding: 60px 0;
}

.product-category-block-alt {
    background: var(--color-bg-alt);
}

.category-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.category-header h2 {
    margin-bottom: 12px;
}

.category-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin: 0;
}

.product-category-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-dark);
    margin-bottom: 8px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 28px;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--color-white);
    border-color: #25d366;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.product-variants {
    margin: 24px 0;
}

.product-variants h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 12px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-variants-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.product-variants-table th,
.product-variants-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.product-variants-table th {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    font-weight: 600;
}

.product-variants-table tbody tr:hover {
    background: rgba(150, 170, 71, 0.06);
}

.product-variants-note {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(150, 170, 71, 0.1);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.product-single .product-detail-grid {
    align-items: start;
}

.product-single .product-detail-visual {
    min-height: auto;
    position: sticky;
    top: calc(var(--header-height) + var(--header-top-height) + var(--sticky-top-gap));
}

.product-lead {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.product-single .product-specs {
    background: var(--color-bg-alt);
}

.product-single .product-uses {
    margin-top: 24px;
}

.footer-category-title {
    margin: 16px 0 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-category-title:first-of-type {
    margin-top: 0;
}

.footer-category-title a {
    color: var(--color-accent-light);
}

.product-single .product-detail-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .product-single .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-single .product-detail-visual {
        position: static;
    }
}

.breadcrumb ol {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-category-block {
        padding: 48px 0;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: none;
    }
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: var(--color-white);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float::before {
        animation: none;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-grid a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-grid a:hover {
    color: var(--color-accent-light);
}

.footer-contact address p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact address svg {
    flex-shrink: 0;
    color: var(--color-accent-light);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: left;
}

.footer-credit-logo {
    display: block;
    width: auto;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .audience-grid,
    .contact-grid,
    .product-detail-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .product-detail-reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header-top {
        display: none;
    }

    .nav-brand {
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

    .lang-dropdown--nav .lang-dropdown-trigger {
        min-height: 30px;
        padding: 3px 8px 3px 5px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hide desktop inline menu layout */
    .nav-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100%;
        height: 100dvh;
        background: var(--color-white);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(12, 36, 25, 0.18);
        overflow: hidden;
    }

    .nav-drawer.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-drawer:not(.open) {
        pointer-events: none;
    }

    /* Overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(12, 36, 25, 0.55);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }

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

    .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px 16px;
        border-bottom: 1px solid var(--color-border);
        flex-shrink: 0;
    }

    .nav-drawer-title {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--color-primary);
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(150, 170, 71, 0.1);
        border: none;
        border-radius: var(--radius);
        cursor: pointer;
        color: var(--color-primary);
        transition: background var(--transition);
    }

    .nav-close:hover {
        background: rgba(150, 170, 71, 0.2);
    }

    /* Drawer menu list */
    .nav-drawer .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 12px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-drawer .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-drawer .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 8px;
    }

    .nav-drawer .nav-menu a {
        display: block;
        width: 100%;
        padding: 16px 12px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-text);
        border-radius: var(--radius);
    }

    .nav-drawer .nav-menu a:hover,
    .nav-drawer .nav-menu a.active {
        color: var(--color-accent-dark);
        background: rgba(150, 170, 71, 0.08);
    }

    .nav-drawer .nav-menu a.nav-cta {
        background: var(--color-accent);
        color: var(--color-white);
        text-align: center;
        padding: 16px;
        margin: 0;
        border-radius: var(--radius);
    }

    .nav-drawer .nav-menu a.nav-cta:hover,
    .nav-drawer .nav-menu a.nav-cta.active {
        background: var(--color-accent-dark);
        color: var(--color-white);
    }

    /* Drawer contact info */
    .nav-drawer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-top: 1px solid var(--color-border);
        background: var(--color-bg-alt);
        flex-shrink: 0;
    }

    .nav-drawer-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.88rem;
        color: var(--color-text-light);
        word-break: break-all;
    }

    .nav-drawer-contact a svg {
        flex-shrink: 0;
        color: var(--color-accent);
    }

    .nav-drawer-contact a:hover {
        color: var(--color-accent-dark);
    }

    /* Hamburger to X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        padding: 60px 0 80px;
        min-height: 480px;
    }

    .logo-img {
        height: 52px;
        max-width: 180px;
    }

    .hero-bg {
        background-position: 70% center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-credit-logo {
        height: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .error-page {
        min-height: calc(100dvh - 64px);
        padding: 48px 0 40px;
    }

    .error-page-hero {
        margin-bottom: 40px;
    }

    .error-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .error-products {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .error-cta {
        padding-bottom: 56px;
    }

    .timeline-list::before {
        left: 40px;
    }

    .timeline-year {
        width: 40px;
        font-size: 0.9rem;
    }

    .timeline-item {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }
}

/* ========================================
   BLOG
   ======================================== */

/* — Liste — */
.blog-list-section {
    padding-top: 48px;
    padding-bottom: 72px;
}

.blog-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-border);
}

.blog-empty p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-grid-related {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    max-width: 960px;
    margin: 0 auto;
}

.blog-related-header {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Kart */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.blog-card-visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-bg-alt);
}

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

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

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-white);
    border-radius: 999px;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 22px 24px 24px;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read {
    margin-top: auto;
    padding-top: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-accent-dark);
    transition: color var(--transition);
}

.blog-card:hover .blog-card-read {
    color: var(--color-primary);
}

/* — Detay hero — */
.page-hero--compact {
    padding: 32px 0 24px;
}

.blog-detail-hero.page-hero--compact {
    padding-bottom: 20px;
}

.blog-detail-column {
    max-width: 820px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.blog-detail-hero .container {
    display: flex;
    justify-content: center;
}

.blog-detail-hero .breadcrumb ol {
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.blog-detail-hero .breadcrumb li:not([aria-current="page"]) {
    flex-shrink: 0;
}

.blog-detail-hero .breadcrumb li[aria-current="page"] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 14px;
}

.blog-post-category {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
}

.blog-post-date {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.blog-article-title {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    line-height: 1.25;
    margin-bottom: 0;
}

/* — Detay makale — */
.blog-article-section {
    padding: 0 0 40px;
    margin-top: -8px;
}

.blog-article-section .container {
    display: flex;
    justify-content: center;
}

.blog-article {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 40px var(--color-shadow);
    overflow: hidden;
}

.blog-article-cover {
    margin: 0;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.blog-article-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-inner {
    padding: 24px 40px 28px;
    text-align: left;
}

.blog-article-body {
    text-align: left;
}

/* — İçerik tipografisi — */
.blog-article-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text);
    margin: 0 0 1.15em;
}

.blog-article-body p:empty,
.blog-article-body p:has(> br:only-child) {
    display: none;
}

.blog-article-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.75em 0 0.6em;
    line-height: 1.3;
}

.blog-article-body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.5em 0 0.5em;
    line-height: 1.35;
}

.blog-article-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.25em 0 0.45em;
}

.blog-article-body ul,
.blog-article-body ol {
    padding-left: 1.4em;
    margin: 0 0 1.15em;
}

.blog-article-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 0.45em;
    padding-left: 0.25em;
}

.blog-article-body li[data-list="bullet"] {
    list-style-type: disc;
}

.blog-article-body ol:has(li[data-list="bullet"]) {
    list-style-type: disc;
}

.blog-article-body .ql-ui {
    display: none;
}

.blog-article-body blockquote {
    border-left: 3px solid var(--color-accent);
    margin: 1.5em 0;
    padding: 14px 22px;
    background: rgba(150, 170, 71, 0.07);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
}

.blog-article-body blockquote p {
    margin: 0;
}

.blog-article-body strong { font-weight: 700; }
.blog-article-body em     { font-style: italic; }

.blog-article-body a {
    color: var(--color-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article-body a:hover {
    color: var(--color-primary);
}

.blog-article-body pre,
.blog-article-body code {
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 0.88em;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.blog-article-body code {
    padding: 2px 6px;
}

.blog-article-body pre {
    padding: 16px 20px;
    overflow-x: auto;
    margin: 0 0 1.15em;
}

.blog-related-section {
    padding-top: 32px;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    .blog-related-section .blog-grid-related {
        display: flex;
        gap: 16px;
        max-width: none;
        margin: 0 -20px;
        padding: 0 20px 4px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-related-section .blog-grid-related::-webkit-scrollbar {
        display: none;
    }

    .blog-related-section .blog-grid-related .blog-card {
        flex: 0 0 min(300px, 82vw);
        scroll-snap-align: start;
    }
}

/* — Responsive — */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-article-inner {
        padding: 20px 28px 24px;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-section,
    .blog-related-section {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .blog-card-body {
        padding: 18px 20px 22px;
    }

    .page-hero--compact {
        padding: 24px 0 16px;
    }

    .blog-article-section {
        margin-top: 0;
        padding-bottom: 32px;
    }

    .blog-article {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .blog-article-inner {
        padding: 20px 0 24px;
    }

    .blog-article-cover {
        aspect-ratio: 16 / 10;
    }

    .blog-related-section {
        padding-top: 24px;
        padding-bottom: 40px;
    }
}
