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

:root {
    --black: #0d0d0d;
    --gray: #2a2a2a;
    --light: #f5f5f0;
    --accent: #c41e3a;
    --white: #fff;
    --logo: #004DA2;
    --body:#f5f5f5;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--body);
    color: var(--black);
}

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

/* Header */
.header {
    background: rgb(255, 255, 255);
    color: black;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    justify-self: start;
}

.logo img {
    height: 25px;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
    justify-self: center;
}

.nav a {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--black);
}

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

.lang {
    justify-self: end;
    font-size: 0.85rem;
    opacity: 0.8;
}

.nav-backdrop {
    display: none;
}

/* Burger - masaüstünde gizli */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    color: var(--logo);
    cursor: pointer;
    z-index: 110;
    transition: transform 0.2s;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

.header.is-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header.is-open .burger span:nth-child(2) {
    opacity: 0;
}

.header.is-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    min-height: 75vh;
    background: var(--gray) url('/img/Banner.png') center / cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badges a {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.hero-badges a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-content {
    max-width: 640px;
    width: 100%;
}

/* Lastik arama - categories hemen üstünde, ekteki tasarım */
.ebat-filtre-wrap {
    background: #fffdfd;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ebat-filtre-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    border-bottom:1px solid var(--logo);
    padding:10px;
}

.ebat-field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

/* Mevsim - ikon butonlar */
.ebat-mevsim {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ebat-mevsim-icons {
    display: flex;
    gap: 1rem;
}

.ebat-mevsim-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.ebat-mevsim-btn:hover {
    color: rgba(0, 0, 0, 0.9);
}

.ebat-mevsim-btn.is-selected {
    color: var(--black);
}

.ebat-mevsim-btn .ebat-mevsim-icon {
    opacity: 0.7;
}

.ebat-mevsim-btn:hover .ebat-mevsim-icon,
.ebat-mevsim-btn.is-selected .ebat-mevsim-icon {
    opacity: 1;
}

.ebat-mevsim-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
}

.ebat-mevsim-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.2;
}

/* Dropdown alanları - underline stil */
.ebat-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
   
}

.ebat-select-wrap {
    position: relative;
    width: 100%;
}

.ebat-select-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.ebat-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    color: var(--black);
    opacity: 0.65;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 1.75rem 0.4rem 0;
    min-width: 0;
    min-height: 2.25rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.ebat-select:hover,
.ebat-select:focus {
    outline: none;
    
}

.ebat-select option {
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    
}

/* Placeholder "SEÇ" - açılan menüde soluk görünsün */
.ebat-select option[value=""] {
    color: rgba(0, 0, 0, 0.45);
    
}

/* Ara butonu -*/
.ebat-btn-wrap {
    margin-left: auto;
   
}

.ebat-ara-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #004DA2;
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.ebat-ara-btn:hover {
    background: #053b74;
}

/* UrunAraEbat sonuç sayfası - profesyonel tasarım */
.urun-ara-ebat-hero {
    background: linear-gradient(135deg, var(--gray) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 2rem 2rem 2.5rem;
}

.urun-ara-ebat-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.urun-ara-ebat-breadcrumb {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.urun-ara-ebat-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

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

.urun-ara-ebat-breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.urun-ara-ebat-hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.urun-ara-ebat-filtre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.urun-ara-ebat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.urun-ara-ebat-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.urun-ara-ebat-sayac {
    font-size: 1rem;
    color: var(--gray);
}

.urun-ara-ebat-sayac strong {
    color: var(--logo);
}

.urun-ara-ebat-yeni-ara {
    font-size: 0.9rem;
    color: var(--logo);
    font-weight: 500;
}

.urun-ara-ebat-yeni-ara:hover {
    text-decoration: underline;
}

.urun-ara-ebat-tablo-wrap .detay-tablo {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.urun-ara-ebat-tablo-wrap .detay-tablo thead th {
    text-align: left !important;
}

/* Boş sonuç kartı */
.urun-ara-ebat-bos-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 480px;
    margin: 0 auto;
}

.urun-ara-ebat-bos-icon {
    color: #ccc;
    margin-bottom: 1rem;
}

.urun-ara-ebat-bos-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.urun-ara-ebat-bos-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.urun-ara-ebat-bos-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.urun-ara-ebat-btn {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.urun-ara-ebat-btn-primary {
    background: var(--logo);
    color: var(--white);
}

.urun-ara-ebat-btn-primary:hover {
    background: #053b74;
}

.urun-ara-ebat-btn-secondary {
    background: transparent;
    color: var(--logo);
    border: 2px solid var(--logo);
}

.urun-ara-ebat-btn-secondary:hover {
    background: rgba(0, 77, 162, 0.08);
}

.card-ebat {
    font-size: 0.85rem;
    color: #666;
    margin: 0.25rem 0 0.5rem;
}

/* Tire categories bar */
.categories {
    background:(var(--body));
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #eeeeee8b;
}

.categories a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray);
}

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

.categories a.category-link.is-active {
    color: var(--logo);
    border-bottom: 2px solid var(--logo);
}

/* Sayfa içi link (Ürün Grupları) tıklandığında hedef bölüm header altında kalmaması için */
#urunlerimiz {
    scroll-margin-top: 5rem;
}

/* Kategori paneli: aynı anda sadece biri görünür */
.kategori-panel {
    display: none;
}

.kategori-panel.is-visible {
    display: block;
}

.kategori-panel .category-title {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

/* Tire grid */
.section {
    padding: 3rem 2rem;
    max-width: 1350px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}



.about-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.about-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.about-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--logo);
    font-weight: 600;
}

.about-cta {
    text-align: center;
    margin-top: 1rem;
}

/* Hakkımızda sayfası */
.hakkimizda-page {
    padding-top: 1rem;
    background: linear-gradient(-133deg, #004DA2 0%, #d0d0d0 100%);
    min-height: calc(100vh - 120px);
    color: #fff;
    font-family: sans-serif;
}

.hakkimizda-page h1,
.hakkimizda-page h2 {
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hakkimizda-hero-image {
    padding-bottom: 0;
    overflow: hidden;
}

.hakkimizda-hero-image .hakkimizda-figure-top {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hakkimizda-hero-image .hakkimizda-figure-top img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hakkimizda-hero .hakkimizda-intro {
    display: block;
    text-align: center;
}

.hakkimizda-intro-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hakkimizda-intro-text h1 {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    margin-top: 1rem;
}

.hakkimizda-figure {
    margin: 0;
}

.hakkimizda-figure img {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hakkimizda-figure:hover img {
    transform: scale(1.02);
}

.hakkimizda-page .hakkimizda-figure figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hakkimizda-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hakkimizda-split--reverse .hakkimizda-figure {
    order: 2;
}

.hakkimizda-split--reverse .hakkimizda-split-text {
    order: 1;
}

.hakkimizda-split-text h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hakkimizda-page .about-lead {
    font-size: 1.02rem;
    line-height: 2rem;
    letter-spacing: 0.01em;
}

.hakkimizda-full-img img {
    max-width: 100%;
}

.hakkimizda-split-image {
    gap: 0;
    min-height: 400px;
}

.hakkimizda-figure-half {
    overflow: hidden;
    min-height: 400px;
}

.hakkimizda-figure-half img {
 
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hakkimizda-split-text-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.hakkimizda-split-text-centered h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin: 0;
    text-align: center;
}

/* Hakkımızda istatistik kartları */
.hakkimizda-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0 3rem;
}

.hakkimizda-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    text-align: center;
    min-width: 160px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hakkimizda-stat-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.hakkimizda-stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

.hakkimizda-stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Hakkımızda içerik blokları */
.hakkimizda-block {
    margin-bottom: 2.5rem;
}

.hakkimizda-block:last-child {
    margin-bottom: 0;
}

.hakkimizda-block h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.hakkimizda-block p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

@media (max-width: 600px) {
    .hakkimizda-stats {
        gap: 1rem;
        margin: 2rem 0 2.5rem;
    }
    .hakkimizda-stat-card {
        padding: 1.25rem 1.75rem;
        min-width: 130px;
    }
}

/* Scroll reveal animasyonları - Triangle tarzı akıcı geçişler */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.scroll-reveal-left {
    transform: translateX(-48px) translateY(8px);
}

.scroll-reveal-right {
    transform: translateX(48px) translateY(8px);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Hero bölümü - sayfa yüklenince hemen animasyon */
.hero-reveal {
    transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

/* Görsellerde hafif scale efekti reveal sırasında */
.scroll-reveal.hakkimizda-figure {
    transform-origin: center center;
}

.scroll-reveal-left.hakkimizda-figure {
    transform: translateX(-48px) translateY(8px) scale(0.96);
}

.scroll-reveal-right.hakkimizda-figure {
    transform: translateX(48px) translateY(8px) scale(0.96);
}

.scroll-reveal.hakkimizda-figure.is-visible {
    transform: translate(0, 0) scale(1);
}

@media (max-width: 900px) {
    .hakkimizda-hero .hakkimizda-intro,
    .hakkimizda-split {
        grid-template-columns: 1fr;
    }
    .hakkimizda-split--reverse .hakkimizda-figure,
    .hakkimizda-split--reverse .hakkimizda-split-text {
        order: unset;
    }
}

.btn-primary {
    display: inline-block;
    background: var(--logo);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-primary:hover {
    opacity: 0.9;
    color: var(--white);
}

/* İletişim sayfası — iki sütun (sol: bilgi + harita, sağ: form) */
.hero-iletisim {
    min-height: 30vh;
}

.iletisim-page {
    background: var(--white);
}

#iletisim-form {
    scroll-margin-top: 2rem;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.iletisim-sol {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.iletisim-baslik {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.iletisim-aciklama {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--black);
    margin: 0;
}

.iletisim-firma-bilgi {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.iletisim-firma {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin: 0;
}

.iletisim-adres,
.iletisim-tel,
.iletisim-faks {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--black);
    margin: 0;
}

.iletisim-harita {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.iletisim-harita iframe {
    display: block;
    width: 100%;
    height: 300px;
    vertical-align: middle;
}

.iletisim-sag .contact-form {
    max-width: 100%;
    margin-top: 0;
}

.btn-iletisim {
    background: #2563eb;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.btn-iletisim:hover {
    background: #1d4ed8;
    opacity: 1;
}

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

    .iletisim-sol {
        order: 1;
    }

    .iletisim-sag {
        order: 2;
    }

    .iletisim-harita iframe {
        height: 260px;
    }
}

/* İletişim formu */
.contact-form {
    max-width: 560px;
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.form-group-checkbox .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

.form-group-checkbox input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
}

.form-group .required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--logo);
    box-shadow: 0 0 0 2px rgba(239, 124, 0, 0.2);
}

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

.form-actions {
    margin-top: 1.5rem;
}

.text-danger {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

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

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

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

.grid-mevsim-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-mevsim-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.grid-mevsim-label {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.grid-mevsim-label-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 200px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #888;
    overflow: hidden;
}

.card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: darken;
}

.card-body {
    padding: 1.25rem;
}

.card-code {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-mevsim-icon {
    width: 1.1em;
    height: 1.1em;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 0.25em;
}

.card-types {
    font-size: 0.8rem;
    color: #666;
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--logo);
}

.card-link:hover {
    text-decoration: underline;
}

/* Ürün detay sayfası */
.urun-detay {
    padding-bottom: 3rem;
}

.urun-detay-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.urun-detay-sol {
    position: sticky;
    top: 1rem;
}

.urun-detay-desen-adi {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.urun-detay-resim {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urun-detay-resim img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Büyüteç zoom efekti */
.urun-detay-zoom-wrap {
    position: relative;
    cursor: none;
}

.urun-detay-zoom-lens {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(0, 92, 239, 0.8);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.urun-detay-zoom-wrap:hover .urun-detay-zoom-lens {
    display: block;
}

.urun-detay-sag {
    min-height: 200px;
}

.urun-detay-baslik {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.urun-detay-aciklama {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.urun-detay-aciklama--dolu {
    background: linear-gradient(135deg, rgba(231, 231, 226, 0.09) 0%, rgba(231, 231, 226) 100%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.urun-detay-aciklama p {
    margin-bottom: 0.75rem;
}

.urun-detay-tablo-wrap {
    margin-top: 2rem;
}

.urun-detay-tablo-baslik {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.detay-tablo {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.detay-tablo th,
.detay-tablo td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.detay-tablo th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #666;
    background: #f9f9f9;
}

.detay-tablo tbody tr:hover {
    background: #fafafa;
}

.detay-tablo .urun-adi {
    font-weight: 500;
    max-width: 380px;
}

.detay-tablo .urun-adi a {
    color: var(--logo);
    transition: color 0.2s;
}

.detay-tablo .urun-adi a:hover {
    color: #053b74;
    text-decoration: underline;
}

.detay-tablo .arac-tipi-icon {
    font-size: 1.1rem;
}

.detay-icon {
    color: var(--accent);
    text-decoration: none;
}

button.detay-icon {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.detay-icon:hover {
    text-decoration: underline;
}

.detay-icon.muted {
    color: #999;
}

.detay-icon-img {
    height: 1.25em;
    width: auto;
    vertical-align: middle;
}

.detay-icon-svg {
    height: 1.25em;
    width: 1.25em;
    vertical-align: middle;
}

.detay-icon .detay-icon-svg {
    color: inherit;
}

.detay-mevsim-icon {
    height: 1.25em;
    width: auto;
    vertical-align: middle;
}

.detay-por-text {
    font-weight: 600;
    color: var(--black);
}

.urun-detay-back {
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--black);
    padding: 3rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.2fr) minmax(120px, 1fr) minmax(140px, 1fr) minmax(220px, 1.5fr);
    gap: 2.5rem;
    align-items: start;
}

.footer-col {
   /*  display: flex; */
    flex-direction: column;
    gap: 0.5rem;
}

/* Footer logo */
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a5fb4;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.footer-brand-logo:hover {
    color: #1a5fb4;
    opacity: 0.85;
}

.footer-brand-logo .footer-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    height:50px;
}

.logo-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Ebatlar & Desenler */
.footer-ebatlar span,
.footer-ebatlar a,
.footer-desenler span,
.footer-desenler a {
    display: block;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.footer-ebatlar a:hover,
.footer-desenler a:hover {
    color: var(--black);
}

.footer h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.footer-sayfalar a {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.4rem;
}

.footer-sayfalar a:hover {
    color: var(--black);
}

/* LASMAX */
.footer-brand-lasmax {
    margin-bottom: 1rem;
}

.lasmax-logo {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #1a5fb4 0%, #3584e4 50%, #f5c211 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lasmax-slogan {
    display: block;
    font-size: 0.75rem;
    color: #e67e22;
    margin-top: 0.25rem;
}

.footer-iletisim h4 {
    margin-bottom: 0.5rem;
}

.footer-firma,
.footer-adres,
.footer-tel,
.footer-faks {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.footer-adres {
    line-height: 1.6;
}

.footer-tel strong,
.footer-faks strong {
    color: var(--gray);
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-col {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-brand-logo .footer-logo-img {
        max-width: 120px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .header {
        grid-template-columns: 1fr auto auto;
        position: relative;
        z-index: 50;
    }

    .logo {
        justify-self: start;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        /* Kapalıyken tıklamalar sayfaya geçsin (iOS/Safari’de görünmez overlay bazen dokunuşu yutuyordu) */
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .header.is-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 85vw);
        max-width: 100%;
        background: var(--logo);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 100;
        padding: 4.5rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .header.is-open .nav {
        transform: translateX(0);
    }

    .nav a {
        font-size: 1.1rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0.95;
        color: var(--white);
    }

    .nav a:hover {
        opacity: 1;
        padding-left: 0.25rem;
        transition: padding-left 0.2s;
        color: var(--black);
    }

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

    .burger {
        display: flex;
    }

    .lang {
        justify-self: end;
    }

    .hero,
    .hero-kis,
    .hero-garanti,
    .hero-iletisim {
        background-image: url('/img/banner-mobil.jpeg');
        background-size: cover;
        background-position: center;
        min-height: 100dvh;
        min-height: 100px;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-badges a {
        width: 100%;
        text-align: center;
    }

    .ebat-filtre-wrap {
        padding: 1.5rem 1rem;
        position: relative;
        z-index: 1;
    }

    .ebat-filtre-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    /* iOS: 16px altı select odakta zoom + picker sorunlarını azaltır; dokunma alanı */
    .ebat-select-wrap {
        position: relative;
        z-index: 2;
    }

    .ebat-select {
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        padding: 0.5rem 2.25rem 0.5rem 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .ebat-mevsim-btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .ebat-ara-btn {
        touch-action: manipulation;
        min-height: 48px;
    }

    .ebat-mevsim {
        align-items: center;
    }

    .ebat-mevsim-icons {
        justify-content: center;
    }

    .ebat-btn-wrap {
        margin-left: 0;
    }

    .ebat-ara-btn {
        width: 100%;
    }

    .urun-ara-ebat-hero {
        padding: 1.5rem 1rem 2rem;
    }

    .urun-ara-ebat-hero-title {
        font-size: 1.35rem;
    }

    .urun-ara-ebat-bos-card {
        padding: 2rem 1.25rem;
    }

    .urun-ara-ebat-bos-actions {
        flex-direction: column;
    }

    .urun-ara-ebat-bos-actions .urun-ara-ebat-btn {
        width: 100%;
    }

    .urun-ara-ebat-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories {
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

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

    /* Ürün detay sayfası */
    .urun-detay-top {
        grid-template-columns: 1fr;
    }

    .urun-detay-sol {
        position: static;
    }

    .urun-detay-resim {
        max-width: 280px;
    }

    /* Mobil: tablo yerine kart düzeni */
    .table-responsive {
        overflow: visible;
    }

    .detay-tablo thead {
        display: none;
    }

    .detay-tablo tbody tr {
        display: block;
        background: var(--white);
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid #eee;
    }

    .detay-tablo tbody tr:hover {
        background: var(--white);
    }

    .detay-tablo tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
    }

    .detay-tablo tbody td:last-child {
        border-bottom: none;
    }

    .detay-tablo tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #666;
        flex-shrink: 0;
        min-width: 100px;
    }

    .detay-tablo tbody td.urun-adi {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #eee;
        font-weight: 600;
        font-size: 1rem;
    }

    .detay-tablo tbody td.urun-adi::before {
        display: none;
    }

    .detay-tablo tbody td .detay-icon,
    .detay-tablo tbody td .detay-icon-img {
        margin-left: auto;
    }

    /* Mobilde satır içi link / butonların dokunmasını güvenceye al */
    .detay-tablo tbody td a,
    .detay-tablo tbody td button {
        position: relative;
        z-index: 1;
    }
}

/* Etiket Değeri modal */
.etiket-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.etiket-modal[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.etiket-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.etiket-modal-box {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.etiket-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
}

.etiket-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.etiket-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    padding: 0;
}

.etiket-modal-close:hover {
    background: #f0f0f0;
    color: var(--black);
}

.etiket-modal-body {
    padding: 1.25rem;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.etiket-modal-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
}

.etiket-modal-btn-kapat {
    margin: 0 1.25rem 1.25rem;
    padding: 0.6rem 1.5rem;
    background: #e0e0e0;
    border: none;
    border-radius: 4px;
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--black);
}

.etiket-modal-btn-kapat:hover {
    background: #d0d0d0;
}

/* Garanti Şartları sayfası */
.hero-garanti {
    min-height: 30vh;
}

.hero-garanti h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
}

.garanti-page {
    background: var(--white);
}

.garanti-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.garanti-inner {
    max-width: 800px;
    margin: 0 auto;
}

.garanti-inner p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.garanti-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.garanti-inner ul:not(.garanti-liste):not(.garanti-prosedur) {
    margin: 0.5rem 0 1rem 1.5rem;
}

.garanti-inner ul:not(.garanti-liste):not(.garanti-prosedur) li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.garanti-baslik {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--logo);
}

.garanti-liste {
    list-style: disc;
    margin: 0 0 1.5rem 1.5rem;
}

.garanti-liste li {
    margin-bottom: 0.6rem;
    line-height: 1.65;
}

.garanti-prosedur {
    list-style: decimal;
    margin: 0 0 1.5rem 1.5rem;
}

.garanti-prosedur li {
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.garanti-ozet {
    background: #f8f8f5;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.garanti-ozet p {
    margin: 0.5rem 0;
}

.garanti-indir {
    margin-top: 2rem;
    text-align: center;
}

/* Kış Lastiği sayfası */
.hero-kis {
    min-height: 30vh;
}

.hero-kis h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.kis-page .garanti-inner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 1.5rem 0 0.75rem;
}

.kis-avantaj {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.kis-avantaj li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    line-height: 1.65;
}

.kis-avantaj li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--logo);
    font-weight: 700;
    font-size: 1rem;
}

/* Mobilde hero-kis, hero-garanti, hero-iletisim Index ile aynı banner/boyut (30vh override) */
@media (max-width: 768px) {
    .hero-kis,
    .hero-garanti,
    .hero-iletisim {
        background-image: url('/img/banner-mobil.jpeg');
        background-size: cover;
        background-position: center;
        min-height: 100dvh;
        min-height: 100px;
    }
}
