/* ===== Poz Etiket - Kurumsal Web Sitesi (Logo: #e94b1c + siyah) ===== */
:root {
    --color-primary: #e94b1c;
    --color-primary-light: #f06b42;
    --color-primary-dark: #c93d12;
    --color-accent: #e94b1c;
    --color-dark: #0a0a0a;
    --color-text: #1a1a1a;
    --color-text-muted: #525252;
    --color-bg: #fafafa;
    --color-white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow: 0 4px 20px rgba(233, 75, 28, 0.08);
    --shadow-hover: 0 8px 30px rgba(233, 75, 28, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(233, 75, 28, 0.08);
}

/* Üst bar */
.header-top {
    background: linear-gradient(90deg, var(--color-dark) 0%, #1a1a1a 100%);
    padding: 0.5rem 0;
}

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

.header-top-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Üst bar butonları */
.header-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-accent);
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-top-btn i {
    font-size: 0.9rem;
}

.header-top-btn:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.header-top-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.header-top-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* WhatsApp butonu - yeşil vurgu */
.header-top-btn-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--color-white) !important;
}

.header-top-btn-whatsapp:hover {
    background: #20bd5a !important;
    border-color: #20bd5a !important;
    color: var(--color-white) !important;
}

/* Telefon butonu - mavi vurgu */
.header-top-btn-phone {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    color: var(--color-white) !important;
}

.header-top-btn-phone:hover {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: var(--color-white) !important;
}

/* Üst bar iletişim (sol - telefon, e-posta) */
.header-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.header-top-link i {
    font-size: 0.9rem;
    opacity: 0.95;
}

.header-top-link:hover {
    color: var(--color-accent);
}

/* Ana navigasyon - kurumsal mega menü */
.main-nav {
    padding: 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(233, 75, 28, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    gap: 2rem;
    min-height: 72px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    display: block;
    height: 58px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
}

/* Ana menü başlıkları - tam görünür, kurumsal */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    flex-shrink: 0;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.85rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
    min-height: 40px;
    box-sizing: border-box;
}

.nav-menu > li > a i {
    font-size: 1rem;
    color: var(--color-primary);
    opacity: 0.85;
    transition: color var(--transition), transform var(--transition);
}

.nav-menu > li > a:hover {
    color: var(--color-primary);
    background: rgba(233, 75, 28, 0.08);
    box-shadow: 0 2px 8px rgba(233, 75, 28, 0.06);
}

.nav-menu > li > a:hover i {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.08);
}

/* Menü link alt çizgi - hover */
.nav-menu > li:not(.nav-cta) > a::after {
    content: '';
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.5rem;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-menu > li:not(.nav-cta) > a:hover::after {
    transform: scaleX(1);
}

/* Nav CTA butonu */
.nav-cta {
    margin-left: 0.5rem;
}

.btn-nav {
    padding: 0.6rem 1.35rem !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%) !important;
    color: var(--color-white) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 12px rgba(233, 75, 28, 0.3) !important;
}

.btn-nav i {
    color: inherit !important;
    opacity: 1 !important;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%) !important;
    color: var(--color-white) !important;
    box-shadow: 0 4px 18px rgba(233, 75, 28, 0.4) !important;
    transform: translateY(-1px);
}

.nav-cta > a::after {
    display: none !important;
}

/* Mobil menü kapatma - masaüstünde gizle */
.nav-close-li {
    display: none;
}

/* Mega menü - Ürünlerimiz (header içinde, nav dışında - header bitiminde açılır) */
.nav-item-has-mega > a::after {
    display: none !important;
}

.nav-link-mega .nav-arrow {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.8;
    transition: transform var(--transition);
}

.site-header.mega-open .nav-link-mega .nav-arrow {
    transform: rotate(180deg);
}

/* Mega menü konumu: header'ın tam bitişi (top: 100% = header altı) */
/* Mobilde menü içinde açılacak mega içeriği masaüstünde gizle */
.mega-menu-inline {
    display: none !important;
}

/* Mega menü paneli - kurumsal, tam genişlik */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    min-width: 100%;
    margin-left: 0;
    transform: translateY(-4px);
    background: var(--color-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--color-primary);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 199;
}

.mega-menu.mega-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 0;
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.mega-menu-col {
    min-width: 0;
    padding: 0 1.25rem;
    border-left: 1px solid rgba(233, 75, 28, 0.18);
}

.mega-menu-col:first-child {
    border-left: none;
    padding-left: 0;
    padding-right: 1.25rem;
}

.mega-menu-col:last-child {
    padding-right: 0;
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    height: 2.9em;
    min-height: 2.9em;
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(233, 75, 28, 0.15);
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    letter-spacing: 0.01em;
    word-break: break-word;
    box-sizing: border-box;
}

.mega-menu-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.mega-menu-title a:hover {
    color: var(--color-primary-dark, #c94f1a);
}

.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-list li {
    margin-bottom: 0.35rem;
}

.mega-menu-list li:last-child {
    margin-bottom: 0;
}

.mega-menu-list a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-menu-list a:hover {
    color: var(--color-primary);
    padding-left: 0.25rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(233, 75, 28, 0.08);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: rgba(233, 75, 28, 0.12);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sağ üst: mobilde arama + hamburger grubu */
.nav-right-actions {
    display: none;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .nav-right-actions {
        display: flex;
    }
    .nav-search-btn-mobile {
        display: inline-flex;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: var(--radius);
        background: rgba(233, 75, 28, 0.08);
        color: var(--color-primary);
        font-size: 1.1rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .nav-search-btn-mobile:hover {
        background: rgba(233, 75, 28, 0.15);
    }
    .nav-menu .nav-search-li {
        display: none;
    }
}
@media (min-width: 769px) {
    .nav-right-actions {
        display: none;
    }
}

/* Arama butonu (menü yanı - sadece masaüstü) */
.nav-search-li {
    margin-left: 0.25rem;
}
.nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(233, 75, 28, 0.08);
    color: var(--color-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-search-btn:hover {
    background: rgba(233, 75, 28, 0.15);
    color: var(--color-primary);
}
.nav-search-btn .nav-search-btn-text {
    display: none;
}
@media (min-width: 769px) {
    .nav-search-btn:not(.nav-search-btn-mobile) {
        width: auto;
        padding: 0.5rem 0.85rem;
        font-weight: 600;
        color: var(--color-text);
    }
    .nav-search-btn:not(.nav-search-btn-mobile) .nav-search-btn-text {
        display: inline;
        font-size: 0.9rem;
    }
    .nav-search-btn:hover {
        color: var(--color-primary);
        background: rgba(233, 75, 28, 0.08);
    }
}

/* ----- Hero Slider ----- */
.hero-slider {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(233, 75, 28, 0.4) 100%);
    z-index: 0;
}

.hero-slide-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 4rem 1.25rem;
}

.hero-slide-inner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide-inner h1 span {
    color: var(--color-accent);
}

.hero-slide-inner .hero-lead {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.hero-slide-inner .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider noktaları - sağda, kare, 01 02 03 */
.hero-dots {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-dot {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
}

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

.btn-outline:hover {
    background: rgba(233, 75, 28, 0.08);
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

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

/* ----- Ürün kategorileri strip (slider altı) ----- */
.category-strip {
    background: #f5f5f0;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.category-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: stretch;
}

.category-strip-item {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}

.category-strip-item:hover {
    background: rgba(233, 75, 28, 0.06);
}

.category-strip-item .category-strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.category-strip-item:not(.active) .category-strip-icon {
    border-color: rgba(233, 75, 28, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
}

.category-strip-item.active .category-strip-icon {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.category-strip-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.category-strip-item:not(.active) {
    color: var(--color-text);
}

.category-strip-item:not(.active) .category-strip-title {
    color: var(--color-dark);
}

.category-strip-desc {
    font-size: 0.75rem;
    line-height: 1.35;
}

.category-strip-item:not(.active) .category-strip-desc {
    color: var(--color-text-muted);
}

.category-strip-item.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.category-strip-item.active .category-strip-title,
.category-strip-item.active .category-strip-desc {
    color: var(--color-white);
}

.category-strip-item.active:hover {
    background: var(--color-primary-dark);
}

/* ----- Bölüm ortak ----- */
.section {
    padding: 4.5rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-dark);
}

.section-intro {
    margin-top: 0.5rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Ürün kategorileri ve alt ürünler ----- */
.product-categories {
    background: var(--color-white);
}

.product-categories .container {
    max-width: 1320px;
}

/* Her ana kategori tek satır, alt kategoriler aynı satırda (alt alta sıralı bloklar) */
.category-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(233, 75, 28, 0.1);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(233, 75, 28, 0.2);
}

.category-card-header {
    flex-shrink: 0;
    width: 220px;
    min-height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.category-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.category-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Kategori boşken: logo + güzel boş durum */
.category-card-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card--empty .category-card-header {
    width: 220px;
}

.category-card-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(233, 75, 28, 0.04) 0%, rgba(233, 75, 28, 0.02) 100%);
    border-left: 1px solid rgba(233, 75, 28, 0.08);
}

.category-card-empty-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 360px;
    line-height: 1.5;
}

.category-card-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card-items {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.category-card-subgroup {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(233, 75, 28, 0.12);
}

.category-card-subgroup:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.category-card-subtitle {
    width: 100%;
    flex-basis: 100%;
    margin: 0 0 0.35rem 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0.95;
}

.category-card-subgroup .category-card-item {
    width: 120px;
    min-width: 100px;
}

.category-card-item {
    display: flex;
    flex-direction: column;
    width: 120px;
    min-width: 100px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(233, 75, 28, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.category-card-item:hover {
    border-color: rgba(233, 75, 28, 0.25);
    box-shadow: 0 4px 12px rgba(233, 75, 28, 0.1);
}

.category-card-item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--color-bg);
    overflow: hidden;
}

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

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

.category-card-item-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 75, 28, 0.08) 0%, rgba(233, 75, 28, 0.04) 100%);
}

.category-card-item-img.no-img::after {
    content: '';
    width: 32px;
    height: 32px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e94b1c' viewBox='0 0 24 24'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
}

.category-card-item-img.category-card-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 75, 28, 0.08) 0%, rgba(233, 75, 28, 0.04) 100%);
}

.category-card-item-img.category-card-item-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
    opacity: 0.9;
}

.category-card-item:hover .category-card-item-img.category-card-item-icon i {
    opacity: 1;
    color: var(--color-primary);
}

.category-card-item-name {
    display: block;
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    line-height: 1.25;
    transition: color var(--transition);
}

.category-card-item:hover .category-card-item-name {
    color: var(--color-primary);
}

.category-card-view-all {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    margin: 0 1.25rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid rgba(233, 75, 28, 0.3);
    border-radius: var(--radius);
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card-view-all:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(233, 75, 28, 0.25);
}

.category-card-view-all i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.category-card-view-all:hover i {
    transform: translateX(3px);
}

/* ----- Ürünler ----- */
.products {
    background: var(--color-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    text-decoration: none;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card *,
.category-product-card * {
    text-decoration: none;
}

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

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ----- Ürün detay sayfası ----- */
.product-detail-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--color-primary);
    opacity: 0.8;
}

.breadcrumb-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.breadcrumb-item-current {
    color: var(--color-dark);
    font-weight: 600;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.product-detail-gallery {
    position: sticky;
    top: 6rem;
}

.product-detail-main-image-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(233, 75, 28, 0.1);
    margin-bottom: 0.75rem;
    aspect-ratio: 4 / 3;
}

.product-detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-detail-no-image {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(233, 75, 28, 0.06) 0%, rgba(233, 75, 28, 0.02) 100%);
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.product-detail-no-image i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.product-detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-content: flex-start;
}

.product-detail-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.product-detail-thumb:hover,
.product-detail-thumb.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

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

.product-detail-info {
    padding-top: 0.25rem;
}

.product-detail-category {
    margin: 0 0 0.5rem 0;
    font-size: 0.8125rem;
}

.product-detail-category a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--transition);
}

.product-detail-category a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 0 0 1rem 0;
}

.product-detail-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 140px;
}

/* Ürün detay WhatsApp butonu - her zaman yeşil, okunaklı */
.product-detail-btn-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.product-detail-btn-whatsapp:hover {
    background: #20bd5a !important;
    border-color: #20bd5a !important;
    color: #fff !important;
}

/* Ürün detay Ara butonu - her zaman mavi, okunaklı */
.product-detail-btn-phone {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    color: #fff !important;
}

.product-detail-btn-phone:hover {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #fff !important;
}

.product-detail-body {
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 75, 28, 0.12);
}

.product-detail-body-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
}

.product-detail-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
}

.product-detail-content p {
    margin: 0 0 1rem 0;
}

.product-detail-content p:last-child {
    margin-bottom: 0;
}

.product-detail-content ul,
.product-detail-content ol {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.product-detail-404 {
    text-align: center;
    padding: 3rem 1rem;
}

.product-detail-404 h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-detail-404 .btn {
    margin-top: 1rem;
}

/* ----- Kategori sayfası ----- */
/* ----- Ürünler sayfası (sidebar + liste) ----- */
.products-page-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.container-wide {
    max-width: 1280px;
}

.products-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 6rem;
}

.products-sidebar-inner {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(233, 75, 28, 0.1);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.products-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.products-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.products-sidebar-item {
    margin-bottom: 0.25rem;
}

.products-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.products-sidebar-link:hover {
    background: rgba(233, 75, 28, 0.08);
    color: var(--color-primary);
}

.products-sidebar-link.active {
    background: rgba(233, 75, 28, 0.12);
    color: var(--color-primary);
    font-weight: 600;
}

.products-sidebar-link i {
    font-size: 1rem;
    opacity: 0.9;
}

.products-sidebar-sublist {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(233, 75, 28, 0.15);
}

.products-sidebar-sublist li {
    margin-bottom: 0.15rem;
}

.products-sidebar-sublink {
    display: block;
    padding: 0.35rem 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.products-sidebar-sublink:hover {
    color: var(--color-primary);
    background: rgba(233, 75, 28, 0.06);
}

.products-sidebar-sublink.active {
    color: var(--color-primary);
    font-weight: 600;
}

.products-main {
    min-width: 0;
}

.products-page-header {
    margin-bottom: 1.75rem;
}

.products-page-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.35rem 0;
}

.products-page-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.products-page-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.products-page-empty p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.products-page-empty .btn {
    margin-top: 0.5rem;
}

.category-product-card-cat {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.25rem;
    padding: 0 1.25rem;
}

@media (max-width: 992px) {
    .products-page-layout {
        grid-template-columns: 1fr;
        /* Mobilde önce ürünler, sonra kategoriler görünsün */
        grid-template-areas: "products-main" "products-sidebar";
    }

    .products-main {
        grid-area: products-main;
    }

    .products-sidebar {
        grid-area: products-sidebar;
        position: static;
    }

    .products-sidebar-inner {
        padding: 1rem;
    }
}

.category-page-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.category-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.category-page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-page-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.category-page-logo img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.category-page-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.category-page-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category-product-card {
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(233, 75, 28, 0.08);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-product-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.category-product-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: var(--color-white);
    border-radius: 6px;
    text-decoration: none;
}

.category-product-card-badge:hover {
    color: var(--color-primary-light);
}

.category-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(233, 75, 28, 0.2);
}

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

.category-product-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--color-bg);
    overflow: hidden;
}

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

.category-product-card:hover .category-product-card-img img {
    transform: scale(1.03);
}

.category-product-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 75, 28, 0.06) 0%, rgba(233, 75, 28, 0.02) 100%);
    color: var(--color-primary);
    font-size: 2.5rem;
    opacity: 0.7;
}

.category-product-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    padding: 1rem 1.25rem 0.25rem;
    line-height: 1.3;
}

.category-product-card-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0 1.25rem;
    line-height: 1.5;
    flex: 1;
}

.category-product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition);
}

.category-product-card-link i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.category-product-card:hover .category-product-card-link i {
    transform: translateX(3px);
}

.category-products-group {
    margin-bottom: 2.5rem;
}

.category-products-group:last-child {
    margin-bottom: 0;
}

.category-products-group-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(233, 75, 28, 0.15);
}

.category-products-group-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.category-products-group-title a:hover {
    color: var(--color-primary);
}

.category-page-empty {
    max-width: 520px;
    margin: 0 auto 3rem;
    padding: 2.5rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(233, 75, 28, 0.08);
    text-align: center;
}

.category-page-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-page-empty-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.category-page-empty-logo img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.category-page-empty-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.35;
}

.category-page-empty-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.category-page-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-page-empty .btn + .btn {
    margin-left: 0.75rem;
}

@media (max-width: 480px) {
    .category-page-empty .btn + .btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.category-page-404 {
    text-align: center;
    padding: 3rem 1rem;
}

.category-page-404 p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.category-page-empty .btn,
.category-page-404 .btn {
    margin-top: 0.5rem;
}

.category-page-404 h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ----- 404 sayfa bulunamadı ----- */
.error-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f5f7fa 100%);
}

.error-page .breadcrumb {
    margin-bottom: 1.5rem;
}

.error-page-inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.error-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.error-page-code {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.9;
}

.error-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.error-page-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.error-page-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-page-actions .error-page-btn {
    border: none;
    color: var(--color-white);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.error-page-actions .error-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.error-page-btn-anasayfa {
    background: var(--color-primary);
}

.error-page-btn-anasayfa:hover {
    background: var(--color-primary-light);
}

.error-page-btn-urunler {
    background: var(--color-dark);
}

.error-page-btn-urunler:hover {
    background: #2a2a2a;
}

.error-page-btn-iletisim {
    background: #0d6e5a;
}

.error-page-btn-iletisim:hover {
    background: #0a5a4a;
}

.error-page-visual {
    padding-top: 1rem;
    border-top: 1px solid rgba(233, 75, 28, 0.12);
}

.error-page-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.85;
}

@media (max-width: 480px) {
    .error-page-actions {
        flex-direction: column;
    }
    .error-page-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.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;
}

/* ----- Hizmetler ----- */
.services {
    background: var(--color-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ----- İletişim ----- */
.contact {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.form-row select {
    cursor: pointer;
    background-color: var(--color-white);
    appearance: auto;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ----- İletişim sayfası ----- */
.contact-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f8fafc 100%);
}

.contact-page .breadcrumb {
    margin-bottom: 1.5rem;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.contact-page-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* İletişim kartları */
.contact-cards {
    margin-bottom: 3rem;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(233, 75, 28, 0.15);
}

.contact-card-static {
    cursor: default;
}

.contact-card-static:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-card-whatsapp:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2), 0 0 0 1px rgba(37, 211, 102, 0.3);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 75, 28, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card-whatsapp .contact-card-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.35rem 0;
}

.contact-card-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.contact-card-action {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.contact-card-whatsapp .contact-card-action {
    color: #25d366;
}

.contact-card-static .contact-card-action {
    display: none;
}

/* Form + Harita */
.contact-form-map-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-section,
.contact-map-section {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-form-title,
.contact-map-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.contact-form-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 1.5rem 0;
}

.contact-form-success.alert-success {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-page-form .form-row {
    margin-bottom: 1.25rem;
}

.contact-page-form .btn-block {
    margin-top: 0.5rem;
}

.contact-map-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #e8ecef;
    min-height: 320px;
    margin-bottom: 1rem;
}

.contact-map-wrap iframe {
    display: block;
    min-height: 320px;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-map-link:hover {
    color: var(--color-primary-dark, #c94f1a);
}

@media (max-width: 768px) {
    .contact-form-map-wrap {
        grid-template-columns: 1fr;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Galeri sayfası ----- */
.gallery-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f8fafc 100%);
}

.gallery-page .breadcrumb {
    margin-bottom: 1.5rem;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.gallery-page-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gallery-empty p {
    margin: 0 0 1rem 0;
    color: var(--color-text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.gallery-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.03);
}

.gallery-item-caption {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
.gallery-lightbox-prev {
    left: 1rem;
}
.gallery-lightbox-next {
    right: 1rem;
}

.gallery-lightbox-content {
    text-align: center;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.gallery-lightbox-title {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-lightbox-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    max-width: 480px;
}

.gallery-lightbox-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gallery-lightbox-product-link:hover {
    color: var(--color-white);
}

.gallery-lightbox-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
}
.gallery-lightbox-thumbs:empty {
    display: none;
}
.gallery-lightbox-thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease, opacity 0.2s ease;
}
.gallery-lightbox-thumb:hover {
    opacity: 0.9;
}
.gallery-lightbox-thumb.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}
.gallery-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-lightbox {
        padding-left: 56px;
        padding-right: 56px;
    }
    .gallery-lightbox-prev {
        left: 0.5rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .gallery-lightbox-next {
        right: 0.5rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .gallery-lightbox-content {
        max-width: 100%;
    }
    .gallery-lightbox-thumb { width: 48px; height: 48px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .gallery-item-img {
        height: 160px;
    }
    .gallery-item-caption {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* ----- Kurumsal sayfa ----- */
.corporate-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f8fafc 100%);
}

.corporate-page .breadcrumb {
    margin-bottom: 1.5rem;
}

.corporate-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.corporate-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.corporate-page-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.corporate-about {
    margin-bottom: 2.5rem;
}

.corporate-about-inner {
    display: block;
}

.corporate-about-inner.corporate-about-has-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.corporate-about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4 / 3;
}

.corporate-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corporate-content {
    max-width: 720px;
    margin: 0 auto;
}

.corporate-about-has-image .corporate-content {
    max-width: none;
    margin: 0;
}

.corporate-section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
}

.corporate-section-title-center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.corporate-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    margin: 0;
}

.corporate-values {
    margin-bottom: 2.5rem;
}

.corporate-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.corporate-value-card {
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.corporate-value-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(233, 75, 28, 0.08);
}

.corporate-value-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 75, 28, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.corporate-value-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.corporate-value-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.corporate-cta {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.corporate-cta-inner {
    max-width: 480px;
    margin: 0 auto;
}

.corporate-cta-text {
    font-size: 1.05rem;
    color: var(--color-text);
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.corporate-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .corporate-values-grid {
        grid-template-columns: 1fr;
    }
    .corporate-about-inner.corporate-about-has-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .corporate-about-image-wrap {
        order: -1;
        max-height: 280px;
        aspect-ratio: 16 / 10;
    }
}

/* ----- Blog / Yazılar ----- */
.blog-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background: var(--color-bg);
}

.blog-page .breadcrumb {
    margin-bottom: 1.5rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.blog-page-header {
    margin-bottom: 2rem;
}

.blog-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.blog-page-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin: 0;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(233, 75, 28, 0.1);
}

.blog-card-image-wrap {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eee;
}

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

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

.blog-card-inner {
    padding: 1.75rem;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.blog-card-category:hover {
    color: var(--color-primary-dark, #c94f1a);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.blog-card-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.blog-card-link:hover {
    color: var(--color-primary-dark, #c94f1a);
    gap: 0.5rem;
}

.blog-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-sidebar {
    position: sticky;
    top: 6rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
}

.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-list li {
    margin-bottom: 0.35rem;
}

.blog-sidebar-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 6px;
    padding-left: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-sidebar-list a:hover,
.blog-sidebar-list a.active {
    color: var(--color-primary);
    background: rgba(233, 75, 28, 0.08);
}

/* Blog tekil sayfa */
.blog-article-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.blog-article {
    max-width: 720px;
    margin: 0 auto;
}

.blog-article .breadcrumb {
    margin-bottom: 1.5rem;
}

.blog-article-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #eee;
}

.blog-article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.blog-article-category:hover {
    color: var(--color-primary-dark, #c94f1a);
}

.blog-article-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.blog-article-date {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Sayfa içeriği – tipografi (prose) */
.page-body.prose,
.prose {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.prose p {
    margin: 0 0 1.25em 0;
}

.prose p:last-child {
    margin-bottom: 0;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 2em 0 0.65em 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 1.75em 0 0.5em 0;
}

.prose h3:first-child { margin-top: 0; }

.prose ul, .prose ol {
    margin: 0 0 1.25em 0;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.35em;
}

.prose blockquote {
    margin: 1.5em 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-primary);
    color: var(--color-text-muted);
    font-style: italic;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.25em 0;
}

.prose a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--color-primary-dark, #c94f1a);
}

.prose hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2em 0;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ----- Promosyon CTA (footer üstü) ----- */
.promo-cta {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c94f1a 50%, #a63d14 100%);
    position: relative;
    overflow: hidden;
}

.promo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.promo-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.promo-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.promo-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.promo-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin: 0 0 1.5rem 0;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: var(--color-primary);
}

/* ----- Footer ----- */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    color: rgba(255, 255, 255, 0.88);
}

.footer-top {
    padding: 3.5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25d366;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.footer-whatsapp:hover {
    background: #20bd5a;
}

.footer-whatsapp i {
    font-size: 1.2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2rem;
}

.footer-copy {
    font-size: 0.8125rem;
    opacity: 0.65;
    margin: 0;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.footer-credit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-primary);
}

.footer-credit-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-credit-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-credit:hover .footer-credit-name {
    color: var(--color-primary-light);
}

/* ----- Sabit iletişim butonları (sağ alt) ----- */
.float-btn {
    position: fixed;
    right: 1.5rem;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn i {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.float-btn-label {
    position: absolute;
    right: 100%;
    margin-right: 0.85rem;
    white-space: nowrap;
    background: var(--color-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.float-btn-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-dark);
}

.float-btn:hover .float-btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* WhatsApp butonu */
.float-btn-whatsapp {
    bottom: 6rem;
    background: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
}

.float-btn-whatsapp:hover {
    background: #20bd5a;
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.15);
}

/* Telefon butonu */
.float-btn-phone {
    bottom: 1.5rem;
    background: #0ea5e9;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4), 0 0 0 0 rgba(14, 165, 233, 0.3);
}

.float-btn-phone:hover {
    background: #0284c7;
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.5), 0 0 0 6px rgba(14, 165, 233, 0.15);
}

/* ----- Teklif modal ----- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 95vh;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background: rgba(233, 75, 28, 0.12);
    color: var(--color-primary);
}

.teklif-modal .modal-header {
    padding: 1.5rem 1.75rem 0;
    text-align: center;
}

.teklif-modal-logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 160px;
    margin: 0 auto 0.75rem;
    object-fit: contain;
}

.teklif-modal .modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.teklif-modal .modal-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.teklif-modal .modal-form {
    padding: 1.25rem 1.75rem 1.5rem;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
}

.teklif-modal .form-row {
    margin-bottom: 0.9rem;
}

.teklif-modal .form-row-full {
    grid-column: 1 / -1;
}

.teklif-modal .form-row label {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.teklif-modal .form-row input,
.teklif-modal .form-row textarea,
.teklif-modal .form-row select {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
}

.teklif-modal .form-row input:focus,
.teklif-modal .form-row textarea:focus,
.teklif-modal .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.teklif-modal .modal-form .btn {
    margin-top: 0.25rem;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
}

.teklif-modal .modal-form .btn i {
    margin-right: 0.5rem;
}

/* Teklif loader overlay (gönderiliyor) */
.teklif-loader-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}
.teklif-loader-overlay.is-open {
    display: flex;
}
.teklif-loader-box {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.teklif-loader-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(233, 75, 28, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: teklif-spin 0.8s linear infinite;
}
@keyframes teklif-spin {
    to { transform: rotate(360deg); }
}
.teklif-loader-text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Teklif sonuç modalı (başarılı / hata) */
.teklif-result-overlay .modal {
    max-width: 360px;
    text-align: center;
    padding: 1.75rem;
}
.teklif-result-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    border-radius: 50%;
}
.teklif-result-icon-success {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.12);
}
.teklif-result-icon-error {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.12);
}
.teklif-result-icon[aria-hidden="true"] {
    display: none;
}
.teklif-result-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}
.teklif-result-message {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}
.teklif-result-modal .btn {
    min-width: 120px;
}

/* Arama modalı */
.search-modal-overlay .modal.search-modal {
    max-width: 560px;
    padding: 0;
    overflow: hidden;
}
.search-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}
.search-modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.25rem 0;
}
.search-modal-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem 0;
}
.search-modal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.search-modal-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
}
.search-modal-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
    background: var(--color-white);
}
.search-modal-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(233, 75, 28, 0.12);
}
.search-modal-loading {
    position: absolute;
    right: 1rem;
    color: var(--color-primary);
    font-size: 1rem;
}
.search-modal-loading[aria-hidden="true"] {
    display: none;
}
.search-modal-body {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
}
.search-modal-empty {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 1.5rem 0;
}
.search-modal-results {
    display: none;
}
.search-modal-results.is-visible {
    display: block;
}
.search-modal-results .search-result-group {
    margin-bottom: 1.25rem;
}
.search-modal-results .search-result-group:last-child {
    margin-bottom: 0;
}
.search-modal-results .search-result-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.35rem;
}
.search-modal-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9375rem;
    transition: background 0.15s ease, color 0.15s ease;
    border-radius: 6px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.search-modal-results .search-result-item:hover {
    background: rgba(233, 75, 28, 0.06);
    color: var(--color-primary);
}
.search-modal-results .search-result-item:last-child {
    border-bottom: none;
}
.search-modal-results .search-result-item i {
    color: var(--color-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.search-result-item-name {
    flex: 1;
    font-weight: 500;
}
.search-result-item-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.search-modal-results .search-result-empty-msg {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 1.5rem 0;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .mega-menu-inner {
        padding: 1.25rem 1.5rem;
    }

    .mega-menu-title {
        min-height: auto;
        display: block;
    }

    .mega-menu-list a {
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .category-strip-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .category-strip-item {
        flex: 0 0 auto;
        min-width: 140px;
        max-width: 160px;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .mega-menu-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobil: strip yatay scroll yerine 2 sütun grid – hepsi ekranda, kaydırma yok */
    .category-strip {
        padding: 1.25rem 0;
    }

    .category-strip-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        overflow: visible;
        flex-wrap: unset;
        justify-content: unset;
        padding: 0 2rem;
    }

    .category-strip-item {
        min-width: 0;
        max-width: none;
        padding: 1rem 0.6rem;
    }

    .category-strip-item .category-strip-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .category-strip-title {
        font-size: 0.8125rem;
    }

    .category-strip-desc {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .header-top-inner {
        justify-content: center;
    }

    .logo-img {
        height: 54px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Overlay: menü dışına tıklanınca kapat */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 98;
        transition: opacity var(--transition);
    }

    .nav-overlay.is-open {
        display: block;
    }

    /* Panel içi kapatma butonu - menü açıkken görünür */
    .nav-close-li {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem 1.25rem;
        border-bottom: 2px solid rgba(233, 75, 28, 0.15);
        background: rgba(233, 75, 28, 0.04);
        flex-shrink: 0;
    }

    .nav-close-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        border: none;
        background: var(--color-white);
        color: var(--color-text);
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: var(--radius);
        cursor: pointer;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        transition: background var(--transition), color var(--transition);
    }

    .nav-close-btn:hover {
        background: rgba(233, 75, 28, 0.1);
        color: var(--color-primary);
    }

    .nav-close-btn i {
        font-size: 1.1rem;
    }

    /* ===== Mobil menü paneli - düzenli, ayraçlı ===== */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 2rem 0;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        z-index: 99;
        gap: 0;
        overflow-y: auto;
    }

    /* Menü öğeleri arası ayraç (kapat butonu hariç) */
    .nav-menu > li:not(.nav-close-li) {
        border-bottom: 1px solid rgba(233, 75, 28, 0.1);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-menu > li > a {
        padding: 1rem 1.25rem;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9375rem;
        font-weight: 600;
        min-height: 48px;
        box-sizing: border-box;
    }

    .nav-menu > li > a i {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Teklif Alın - üst ayraç ile ayrılmış blok, ekran içinde */
    .nav-menu > .nav-cta {
        margin-top: 0.5rem;
        padding: 0.5rem 1.25rem 1rem;
        border-top: 2px solid rgba(233, 75, 28, 0.2);
        flex-shrink: 0;
    }

    .nav-menu > .nav-cta .btn-nav {
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.85rem 1rem !important;
        justify-content: center;
        border-radius: var(--radius);
    }

    /* Mobil: dış mega menüyü gizle, sadece menü içindeki inline mega kullan */
    .site-header .mega-menu {
        display: none !important;
    }

    .site-header.mega-open .nav-link-mega .nav-arrow {
        transform: rotate(180deg);
    }

    /* Menü içi mega (Ürünlerimiz alt linkleri) - sadece mobilde, düzenli */
    .mega-menu-inline {
        display: none;
        padding: 0.75rem 1.25rem 1rem;
        margin: 0 0 0 0;
        background: rgba(233, 75, 28, 0.04);
        border-top: 1px solid rgba(233, 75, 28, 0.12);
    }

    .nav-item-has-mega.is-open .mega-menu-inline {
        display: block !important;
    }

    .mega-menu-inline-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .nav-item-has-mega .mega-menu-col {
        border-left: none;
        padding: 0;
        border-top: 1px solid rgba(233, 75, 28, 0.15);
    }

    .nav-item-has-mega .mega-menu-inline-inner .mega-menu-col:first-child {
        border-top: none;
    }

    /* Akordeon: başlık + aç/kapa butonu */
    .nav-item-has-mega .mega-menu-col-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.85rem 0;
        min-height: 44px;
        box-sizing: border-box;
    }

    .nav-item-has-mega .mega-menu-col-header .mega-menu-title {
        flex: 1;
        margin: 0;
        padding: 0;
        border-bottom: none;
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--color-primary);
    }

    .nav-item-has-mega .mega-menu-col-header .mega-menu-title a,
    .nav-item-has-mega .mega-menu-col-header .mega-menu-title span {
        color: inherit;
        text-decoration: none;
    }

    .nav-item-has-mega .mega-menu-col-toggle {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: rgba(233, 75, 28, 0.1);
        color: var(--color-primary);
        border-radius: 8px;
        cursor: pointer;
        transition: background var(--transition), transform var(--transition);
    }

    .nav-item-has-mega .mega-menu-col-toggle i {
        font-size: 0.7rem;
        transition: transform var(--transition);
    }

    .nav-item-has-mega .mega-menu-col.is-open .mega-menu-col-toggle {
        background: rgba(233, 75, 28, 0.18);
    }

    .nav-item-has-mega .mega-menu-col.is-open .mega-menu-col-toggle i {
        transform: rotate(180deg);
    }

    /* Alt liste kapalı varsayılan, açılınca göster */
    .nav-item-has-mega .mega-menu-list-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-has-mega .mega-menu-col.is-open .mega-menu-list-wrap {
        max-height: 400px;
    }

    .nav-item-has-mega .mega-menu-list {
        padding: 0 0 0.75rem 0;
        padding-left: 0;
    }

    .nav-item-has-mega .mega-menu-list li {
        margin-bottom: 0.2rem;
    }

    .nav-item-has-mega .mega-menu-list a {
        font-size: 0.875rem;
        white-space: normal;
        padding: 0.5rem 0;
        color: var(--color-text);
    }

    .nav-item-has-mega .mega-menu-list a:hover {
        color: var(--color-primary);
    }

    .nav-cta {
        margin: 0;
        margin-left: 0;
    }

    .nav-cta .btn-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-menu.is-open {
        right: 0;
    }

    .hero-slides {
        min-height: 480px;
    }

    .hero-dots {
        right: 0.75rem;
    }

    .hero-dot {
        width: 40px;
        height: 40px;
        font-size: 0.8125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-detail-gallery {
        position: static;
    }

    .product-detail-main-image-wrap {
        aspect-ratio: 1;
    }

    .product-detail-thumb {
        width: 56px;
        height: 56px;
    }

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

    .product-detail-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .product-detail-section {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .breadcrumb-list {
        font-size: 0.75rem;
    }

    .category-card {
        flex-direction: column;
    }

    .category-card-header {
        width: 100%;
    }

    .category-card-items {
        padding-bottom: 0.75rem;
    }

    .category-card-view-all {
        align-self: center;
        margin: 0 0 1rem 0;
    }

    .category-card--empty .category-card-header {
        width: 100%;
    }

    .category-card-empty {
        min-height: 100px;
        padding: 1.5rem 1rem;
    }

    .category-card-item {
        width: calc(50% - 0.375rem);
        min-width: unset;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-top {
        padding: 2.5rem 0 2rem;
    }

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

    .teklif-modal .modal-header,
    .teklif-modal .modal-form {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .float-btn {
        right: 1rem;
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }

    .float-btn-whatsapp {
        bottom: 5.25rem;
    }

    .float-btn-phone {
        bottom: 1rem;
    }

    .float-btn-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 480px) {

    .section {
        padding: 3rem 0;
    }
}
