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

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

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

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

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

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

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

.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: 1200px;
    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, #F15A31 0%, #FCB116 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;
}

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

.hakkimizda-hero-image .hakkimizda-figure-top img {
    width: 100%;
    height: auto;
}

.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: 6rem;
    
}

.hakkimizda-figure {
    margin: 0;
}

.hakkimizda-figure img {
    width: 100%;
    height: auto;
    display: block;
    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;
}

/* Scroll reveal animasyonları - Groundspeed 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;
}

.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-types {
    font-size: 0.8rem;
    color: #666;
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffa908;
}

.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: 120px;
    height: 120px;
    border: 3px solid rgba(239, 124, 0, 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.8rem;
    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 .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;
}

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

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

    .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;
        transition: opacity 0.3s, visibility 0.3s;
    }

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

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

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

/* 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;
    }
}
