﻿/* === Genel Reset & Typography (yalnizca yeni profesyonel bilesenler icin guvenli) === */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

:root {
    --brand: #188fde;
    --brand-dark: #0f6fb5;
    --ink: #1c1f26;
    --muted: #6b7280;
    --line: #ececf0;
    --wa: #25D366;
    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-head: 'Poppins', 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: #374151;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

a { color: var(--brand); }

/* === Container === */
.pcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== TOP BAR ===================== */
.top-bar {
    background: var(--ink);
    color: #e7e9ee;
    font-size: 13px;
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
}
.top-bar__list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-bar__list li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.top-bar__list i { color: var(--brand); font-size: 13px; }
.top-bar__phone {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff !important; text-decoration: none; font-weight: 600;
}
.top-bar__phone i { color: var(--brand); }
.top-bar__phone:hover { color: #fff; }
@media (max-width: 880px) {
    .top-bar__list { display: none; }
    .top-bar__inner { justify-content: center; min-height: 36px; }
}

/* ===================== HEADER ===================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}
.site-logo { display: inline-flex; flex-shrink: 0; }
.site-logo img { height: 52px; width: auto; display: block; }

.main-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.main-nav a {
    position: relative;
    color: #2b2f38;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    transition: color .2s;
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--brand);
    transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.main-nav a:hover { color: var(--brand); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--ink);
}
.header-phone__ico {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #e8f4fc; color: var(--brand); font-size: 15px;
}
.header-phone__txt { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone__txt small { font-size: 11px; color: var(--muted); font-weight: 500; }
.header-phone__txt strong { font-size: 16px; font-weight: 700; font-family: var(--font-head); }

.header-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wa); color: #fff !important;
    padding: 11px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
    text-decoration: none; transition: background .2s ease, transform .1s;
}
.header-wa i { font-size: 17px; }
.header-wa:hover { background: #1ebe5b; }
.header-wa:active { transform: translateY(1px); }

.menu-toggle {
    display: none;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    width: 44px; height: 44px; font-size: 1.25rem; color: var(--ink); cursor: pointer;
}

/* ===================== MOBILE NAV ===================== */
.nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 1100;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-nav {
    position: fixed; top: 0; right: 0; height: 100%; width: 300px; max-width: 84vw;
    background: #fff; z-index: 1200;
    transform: translateX(100%); transition: transform .28s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
    display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.mobile-nav__head img { height: 38px; width: auto; }
.mobile-nav .close-btn {
    background: #f5f5f7; border: none; border-radius: 8px;
    width: 38px; height: 38px; font-size: 1.2rem; color: var(--ink); cursor: pointer;
}
.mobile-nav ul { list-style: none; padding: 12px 12px; margin: 0; flex: 1; }
.mobile-nav li { margin: 0; }
.mobile-nav ul a {
    display: block; padding: 13px 14px; border-radius: 10px;
    text-decoration: none; color: #2b2f38; font-weight: 600; font-size: 15px;
    transition: background .15s, color .15s;
}
.mobile-nav ul a:hover { background: #e8f4fc; color: var(--brand); }
.mobile-nav__wa {
    margin: 0 16px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--wa); color: #fff !important; padding: 13px; border-radius: 10px;
    font-weight: 700; text-decoration: none;
}
.mobile-nav__wa:hover { background: #1ebe5b; }

/* ===================== BENEFIT BAR ===================== */
.benefit-bar {
    background: #f3f8fc;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.benefit-bar ul {
    display: flex; flex-wrap: wrap; list-style: none;
    justify-content: space-between; align-items: center; margin: 0; padding: 0;
}
.benefit-bar li {
    flex: 1 1 25%; text-align: center; font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 8px 0;
}
.benefit-bar li i { margin-right: 8px; color: var(--brand); }

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--ink);
    color: #c4c8d2;
    font-size: 14.5px;
    margin-top: 10px;
}
.footer-trust { background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-trust__inner {
    display: flex; flex-wrap: wrap; gap: 18px; padding-top: 26px; padding-bottom: 26px;
}
.footer-trust__item { flex: 1 1 220px; display: flex; align-items: center; gap: 13px; }
.footer-trust__ico {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(24,143,222,.16); color: #5bb4ec; font-size: 18px;
}
.footer-trust__item strong { display: block; color: #fff; font-size: 14.5px; font-family: var(--font-head); }
.footer-trust__item span { color: #9aa0ad; font-size: 12.5px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 34px;
    padding: 48px 0 40px;
}
.footer-col--brand p { color: #9aa0ad; line-height: 1.7; margin: 14px 0 18px; font-size: 13.5px; }
.footer-logo { height: 42px; width: auto; background: #fff; padding: 9px 16px; border-radius: 10px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.07); color: #c4c8d2; font-size: 15px;
    text-decoration: none; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--brand); color: #fff; }

.footer-heading {
    color: #fff; font-family: var(--font-head); font-size: 16px; font-weight: 700;
    margin: 0 0 16px; position: relative; padding-bottom: 12px;
}
.footer-heading::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 30px; height: 3px; background: var(--brand); border-radius: 2px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li + li { margin-top: 11px; }
.footer-col ul a { color: #b6bcc8; text-decoration: none; transition: color .18s, padding-left .18s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: #b6bcc8; }
.footer-contact li + li { margin-top: 11px; }
.footer-contact i { color: var(--brand); margin-top: 4px; width: 16px; text-align: center; }
.footer-contact a { color: #b6bcc8; text-decoration: none; }
.footer-contact a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: #b6bcc7; font-size: 13px; }
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--brand); }
.footer-note { display: inline-flex; align-items: center; gap: 7px; }
.footer-note i { color: #41c97a; }

/* ===================== RESPONSIVE (header/footer) ===================== */
@media (max-width: 991px) {
    .main-nav { display: none; }
    .header-phone { display: none; }
    .header-wa span { display: none; }
    .header-wa { padding: 11px 14px; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .benefit-bar li { flex: 1 1 50%; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 36px 0 30px; }
    .benefit-bar li { flex: 1 1 100%; }
    .footer-bottom__inner { justify-content: center; text-align: center; }
}
/* Grid Container */
.cp-product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0px 10px 0px;
}

/* Her bir ürün kartı */
.cp-product-card {
    padding: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .cp-product-card {
        width: 33.3333%;
    }
}

/* Link ve içerik ortalaması */
.cp-product-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Görsel kutusu: 4:3 oran */
.cp-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 900/1200 = %75 */
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 6px;
}

    /* Görsel ayarları */
    .cp-image-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Başlık */
.cp-product-title {
    margin: 10px 0 6px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
}

/* Fiyat */
.cp-product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #188fde;
    text-align: center;
}
/* === Makale İçeriği (Article Styling) === */
#makale {
    max-width: 1200px; /* Satır uzunluğunu ideal seviyede tutar */
    margin: 40px auto; /* Ortalar ve üst-alt boşluk verir */
    padding: 0 15px; /* Kenarlarda nefeslik */
    font-size: 1rem; /* OKU kolaylığı için temel boyut */
    line-height: 1.8; /* Satır yüksekliği */
    color: #333; /* Yumuşak siyah tonu */
}

    /* Başlıklar */
    #makale h1,
    #makale h2,
    #makale h3,
    #makale h4 {
        margin: 2em 0 0.5em;
        font-weight: 600;
        line-height: 1.3;
        color: #111;
    }

    #makale h1 {
        font-size: 2.25rem;
    }

    #makale h2 {
        font-size: 1.75rem;
    }

    #makale h3 {
        font-size: 1.5rem;
    }

    #makale h4 {
        font-size: 1.25rem;
    }

    /* Paragraflar */
    #makale p {
        margin-bottom: 1.25em;
    }

    /* Vurgu (bold) ve italik */
    #makale strong,
    #makale b {
        font-weight: 600;
    }

    #makale em,
    #makale i {
        font-style: italic;
    }

    /* Listeler */
    #makale ul,
    #makale ol {
        margin: 1em 0 1em 1.5em;
    }

    #makale li {
        margin-bottom: 0.5em;
    }

    /* Bağlantılar */
    #makale a {
        color: #188fde;
        text-decoration: underline;
        transition: color .2s;
    }

        #makale a:hover {
            color: #0f6fb5;
        }

    /* Alıntılar */
    #makale blockquote {
        margin: 1.5em 0;
        padding: 0.75em 1em;
        border-left: 4px solid #188fde;
        background: #eef6fc;
        color: #444;
    }

    /* Kod parçacıkları */
    #makale pre,
    #makale code {
        font-family: Menlo, Consolas, monospace;
        background: #f5f5f5;
        padding: 0.25em 0.5em;
        border-radius: 4px;
    }

    /* Tablolar */
    #makale table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5em 0;
    }

    #makale th,
    #makale td {
        border: 1px solid #ddd;
        padding: 0.75em 1em;
        text-align: left;
    }

    #makale th {
        background: #f2f2f2;
        font-weight: 600;
    }

/* Responsive Başlık ve Metin */
@media (max-width: 768px) {
    #makale {
        padding: 0 10px;
    }

        #makale h1 {
            font-size: 1.75rem;
        }

        #makale h2 {
            font-size: 1.5rem;
        }

        #makale h3 {
            font-size: 1.25rem;
        }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 10000;
    transition: background .2s;
}

    .whatsapp-float:hover {
        background: #1ebe5b;
    }
/* === Ürün Detay (pdp = Product Detail Page) === */
.pdp-product-detail {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin: 40px 0;
}

/* Resim bölümü */
.pdp-product-image {
    flex: 1 1 50%;
}

    .pdp-product-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* Bilgi & CTA bölümü */
.pdp-product-info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

/* Başlık */
.pdp-product-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #222;
}

/* Fiyat bloğu */
.pdp-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px; /* Eskiden 12px’di, bunu 6px yaptık */
}

.pdp-old-price {
    margin-right: 4px;
}

.pdp-current-price {
    font-size: 2rem;
    font-weight: bold;
    color: #188fde;
}

/* Butonlar */
.pdp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.pdp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, transform .1s;
}

    .pdp-btn i {
        font-size: 1.25rem;
    }

.pdp-btn-order {
    background: #188fde;
    color: #fff;
}

    .pdp-btn-order:hover {
        background: #0f6fb5;
        transform: translateY(-2px);
    }

.pdp-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

    .pdp-btn-whatsapp:hover {
        background: #1ebe5b;
        transform: translateY(-2px);
    }

/* === Mobil Uyumluluk === */
@media (max-width: 768px) {
    .pdp-product-detail {
        flex-direction: column;
        gap: 24px;
    }

    .pdp-product-image,
    .pdp-product-info {
        flex: 1 1 100%;
    }

    .pdp-cta-buttons {
        flex-direction: column;
    }

    .pdp-btn {
        justify-content: center;
        width: 100%;
        padding: 12px;
    }
}

/* === Genel Container Sınıfı Küçük Ekran Farkı === */
@media (max-width: 576px) {
    .custom-container {
        padding: 0 12px;
    }
}
/* === PDP Özellik Kartları (butonların hemen altı) === */
.pdp-product-info .pdp-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.pdp-features__card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

    .pdp-features__card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    }

.pdp-features__icon {
    font-size: 1.5rem;
    color: #188fde;
    margin-bottom: 6px;
}

.pdp-features__label {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: #333;
}

/* Küçük ekran (tek sütun) */
@media (max-width: 576px) {
    .pdp-product-info .pdp-features__grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 16px;
    }

    .pdp-features__card {
        padding: 10px;
    }

    .pdp-features__icon {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .pdp-features__label {
        font-size: .9rem;
    }
}
/* === PDP Order Sayfası Özel === */
.pdp-order-container {
    margin: 40px auto;
    max-width: 700px;
}

/* Ürün Özeti */
.pdp-order-summary {
    text-align: center;
    margin-bottom: 32px;
}

    .pdp-order-summary h1 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

.pdp-order-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.pdp-order-old {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
}

.pdp-order-current {
    color: #188fde;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Form Alanları */
.pdp-order-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
}

    .pdp-order-form h2 {
        margin-bottom: 12px;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .pdp-order-form .note {
        color: #666;
        font-size: .95rem;
        margin-bottom: 20px;
    }

.pdp-group {
    margin-bottom: 16px;
}

/* Flex satır */
.pdp-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.pdp-col {
    flex: 1;
}

/* Input ve textarea */
.pdp-input,
.pdp-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s;
}

    .pdp-input:focus,
    .pdp-textarea:focus {
        border-color: #188fde;
    }

.pdp-textarea {
    resize: vertical;
}

/* Radio list */
.pdp-radio {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .pdp-radio input[type="radio"] {
        margin-right: 8px;
    }

/* Sözleşme onayı */
.pdp-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    margin-bottom: 20px;
}

    .pdp-agree a {
        color: #188fde;
        text-decoration: underline;
    }

/* Geri bildirim */
.pdp-feedback {
    display: block;
    margin-bottom: 12px;
    font-size: .95rem;
}

/* Gönder butonu */
.pdp-btn-submit {
    width: 100%;
    padding: 14px;
    background: #188fde;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

    .pdp-btn-submit:hover {
        background: #0f6fb5;
        transform: translateY(-2px);
    }

/* Mobil (dar ekran) */
@media (max-width: 576px) {
    .pdp-row {
        flex-direction: column;
    }
}

/* === 400 Hata Sayfası === */
.error400-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error400-icon {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.error400-code {
    font-size: 2.5rem;
    color: #188fde;
    margin-bottom: 12px;
    font-weight: 600;
}

.error400-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

    .error400-message a.error400-home {
        color: #188fde;
        text-decoration: none;
        font-weight: 500;
        transition: color .2s;
    }

        .error400-message a.error400-home:hover {
            color: #0f6fb5;
            text-decoration: underline;
        }

/* Mobil uyum */
@media (max-width: 576px) {
    .error400-icon {
        max-width: 150px;
        margin-bottom: 16px;
    }

    .error400-code {
        font-size: 2rem;
    }

    .error400-message {
        font-size: 1rem;
    }
}

/* ===================== ÜRÜN SİPARİŞ SAYFASI (urun.aspx) ===================== */
.hm-order { padding: 34px 0 50px; }
.hm-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.hm-order-product,
.hm-order-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.hm-order-form { scroll-margin-top: 100px; }
.hm-order-img {
    text-align: center;
}
.hm-order-img img { max-width: 100%; height: auto; max-height: 360px; object-fit: contain; }
.hm-order-title { font-size: 22px; font-weight: 700; line-height: 1.3; color: #232323; margin: 18px 0 14px; }
.hm-order-price {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
    padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; margin-bottom: 18px;
}
.hm-order-price-label { font-size: 13px; font-weight: 500; color: #888; }
.hm-order-price-val { font-size: 26px; font-weight: 700; line-height: 1; color: #188fde; }
.eskifiyat { text-decoration: line-through; color: #aaa; font-size: 15px; font-weight: 500; }
.hm-order-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hm-order-wa, .hm-order-scroll {
    flex: 1; min-width: 150px; text-align: center; color: #fff !important;
    font-size: 14px; font-weight: 600; line-height: 1.2; padding: 13px 14px;
    border-radius: 8px; text-decoration: none; transition: background .2s ease;
}
.hm-order-wa { background: #25D366; }
.hm-order-wa:hover { background: #1ebe5b; color: #fff !important; text-decoration: none; }
.hm-order-scroll { background: #188fde; }
.hm-order-scroll:hover { background: #0f6fb5; color: #fff !important; text-decoration: none; }
.hm-order-cta i { margin-right: 6px; }
.hm-order-trust {
    list-style: none; margin: 18px 0 0; padding: 16px 0 0;
    border-top: 1px solid #f0f0f0; display: flex;
}
.hm-order-trust li {
    list-style: none; flex: 1; text-align: center;
    font-size: 12.5px; font-weight: 500; line-height: 1.3; color: #555;
}
.hm-order-trust li + li { border-left: 1px solid #ececec; }
.hm-order-trust i { color: #188fde; margin-right: 6px; }

/* Form */
.hm-order-form-head { margin-bottom: 20px; }
.hm-order-form-head h2 { font-size: 22px; font-weight: 700; line-height: 1.2; color: #232323; margin: 0 0 8px; }
.hm-order-form-head span {
    display: inline-block; font-size: 12px; font-weight: 600; color: #0f6fb5;
    background: #e8f4fc; padding: 6px 13px; border-radius: 50px;
}
.hm-field { margin-bottom: 14px; }
.hm-field-2 { display: flex; gap: 12px; }
.hm-field-2 .hm-input { flex: 1; }
.hm-input {
    width: 100%; box-sizing: border-box; border: 1px solid #e0e0e0 !important;
    border-radius: 8px; padding: 12px 14px; font-size: 14px; line-height: 1.4;
    color: #333; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.hm-input:focus { border: 1px solid #188fde !important; outline: none; box-shadow: 0 0 0 3px rgba(24, 143, 222, .15); }
textarea.hm-input { resize: vertical; min-height: 62px; }
/* Radio listeleri (adet / odeme) - tabloyu duzlestir */
.hm-radiolist, .hm-radiolist tbody, .hm-radiolist tr {
    display: block; width: 100%; border: 0; border-spacing: 0;
}
.hm-radiolist td {
    display: block; border: 1px solid #e6e6e6; border-radius: 8px;
    padding: 11px 14px; margin-bottom: 8px;
    transition: border-color .15s ease, background .15s ease;
}
.hm-radiolist td:hover { border-color: #188fde; background: #e8f4fc; }
.hm-radiolist label { font-size: 13px; font-weight: 500; line-height: 1.4; color: #333; cursor: pointer; vertical-align: middle; }
.hm-radiolist input[type=radio] { margin-right: 9px; vertical-align: middle; accent-color: #188fde; width: 16px; height: 16px; }
.hm-radiolist input[type=radio]:disabled + label { color: #b0b0b0; }
/* secili satir vurgusu (destekleyen tarayicilarda) */
.hm-radiolist td:has(input[type=radio]:checked) {
    border-color: #188fde; background: #eaf5fd; box-shadow: 0 0 0 1px #188fde inset;
}
.hm-radiolist td:has(input[type=radio]:checked) label { color: #0f6fb5; font-weight: 600; }
.hm-agree {
    display: flex; align-items: center; gap: 8px; margin: 8px 0 16px;
    font-size: 13px; line-height: 1.5; color: #666;
}
.hm-agree input[type=checkbox] { accent-color: #188fde; width: 16px; height: 16px; }
.hm-agree a { color: #188fde; text-decoration: underline; cursor: pointer; }
.hm-order-msg { display: block; margin-bottom: 12px; font-size: 14px; font-weight: 600; line-height: 1.4; color: #c8102e; }
.hm-order-submit {
    width: 100%; border: 0; border-radius: 10px; background: #188fde; color: #fff;
    font-size: 17px; font-weight: 700; line-height: 1; padding: 16px; margin-top: 6px;
    cursor: pointer; transition: background .2s ease; box-shadow: 0 8px 22px rgba(24,143,222,.25);
}
.hm-order-submit:hover { background: #0f6fb5; color: #fff; }

/* Bilgi kartlari */
.hm-order-infosec { padding: 6px 0 46px; }
.hm-info-cards { display: flex; flex-wrap: wrap; gap: 18px; }
.hm-info-card {
    flex: 1 1 220px; background: #fff; border: 1px solid #eee; border-radius: 14px;
    padding: 26px 22px; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.hm-info-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%; background: #e8f4fc;
    color: #188fde; font-size: 22px; margin-bottom: 14px;
}
.hm-info-card h3 { font-size: 16px; font-weight: 700; line-height: 1.3; color: #232323; margin: 0 0 8px; }
.hm-info-card p { font-size: 13.5px; line-height: 1.6; color: #666; margin: 0; }

/* Makale / urun icerigi */
.hm-order-article { padding: 0 0 50px; }
.hm-desc { font-size: 14.5px; line-height: 1.7; color: #4a4a4a; }
.hm-desc h2, .hm-desc h3 { color: #232323; line-height: 1.3; }
.hm-desc h2 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.hm-desc h3 {
    position: relative; padding-left: 14px; font-size: 17px; font-weight: 700; margin: 22px 0 9px;
}
.hm-desc h3::before {
    content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 5px;
    border-radius: 3px; background: #188fde;
}
.hm-desc p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.7; color: #555; }
.hm-desc ul, .hm-desc ol { margin: 0 0 14px; padding-left: 22px; color: #555; line-height: 1.7; }
.hm-desc li { margin-bottom: 6px; }
.hm-desc img { max-width: 100%; height: auto; }
.hm-desc table { width: 100%; border-collapse: collapse; margin: 0 0 16px; font-size: 14px; }
.hm-desc th, .hm-desc td { border: 1px solid #e6e6e6; padding: 9px 12px; text-align: left; }
.hm-desc th { background: #f3f8fc; color: var(--ink); font-weight: 700; }
.hm-desc table[style] { height: auto !important; }
.hm-desc table[style] th, .hm-desc table[style] td { width: auto !important; height: auto !important; }
@media (max-width: 600px) {
    .hm-desc { overflow-x: auto; }
    .hm-desc table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Sozlesme pop-up (modal) */
.hm-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; z-index: 100000;
    align-items: center; justify-content: center; padding: 20px;
}
.hm-modal.is-open { display: flex !important; }
.hm-modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.55); }
.hm-modal-box {
    position: relative; z-index: 1; width: 100%; max-width: 720px; max-height: 88vh;
    background: #fff; border-radius: 14px; overflow: hidden;
    display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.35);
    animation: hmModalIn .2s ease;
}
@keyframes hmModalIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: none; } }
.hm-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; background: linear-gradient(90deg, #188fde, #0f6fb5); color: #fff;
}
.hm-modal-head h3 { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.3; color: #fff; }
.hm-modal-close { border: 0; background: transparent; color: #fff; font-size: 28px; line-height: 1; cursor: pointer; padding: 0 4px; }
.hm-modal-body { padding: 20px 22px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.hm-modal-body p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.7; color: #444; }
.hm-modal-body strong { color: #2a2a2a; }
.hm-modal-foot { padding: 14px 20px; border-top: 1px solid #eee; text-align: right; }
.hm-modal-ok {
    border: 0; cursor: pointer; padding: 10px 22px; border-radius: 8px;
    background: #188fde; color: #fff; font-size: 14px; font-weight: 600; transition: background .18s ease;
}
.hm-modal-ok:hover { background: #0f6fb5; }

@media (max-width: 880px) {
    .hm-order-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
    .hm-order { padding: 24px 0 40px; }
    .hm-order-product, .hm-order-form { padding: 18px; }
    .hm-order-title { font-size: 19px; }
    .hm-order-price-val { font-size: 23px; }
    .hm-desc h2 { font-size: 18px; }
    .hm-desc h3 { font-size: 16px; }
}
@media (max-width: 575px) {
    .hm-info-card { flex: 1 1 100%; }
}
@media (max-width: 420px) {
    .hm-field-2 { flex-direction: column; }
}

/* ===================== ORTAK BUTONLAR (teşekkür / hata) ===================== */
.cp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
}
.cp-btn i { font-size: 16px; }
.cp-btn--primary { background: #188fde; color: #fff !important; box-shadow: 0 8px 20px rgba(24,143,222,.25); }
.cp-btn--primary:hover { background: #0f6fb5; color: #fff !important; }
.cp-btn--wa { background: #25D366; color: #fff !important; }
.cp-btn--wa:hover { background: #1ebe5b; color: #fff !important; }
.cp-btn--ghost { background: #fff; color: #333 !important; border: 1px solid #e0e0e0; }
.cp-btn--ghost:hover { border-color: #188fde; color: #188fde !important; }
.cp-btn:active { transform: translateY(1px); }

/* ===================== SİPARİŞ TAMAMLANDI (teşekkür) ===================== */
.cp-thanks { padding: 50px 0 70px; background: linear-gradient(to bottom, #e8f4fc, #fff 55%); }
.cp-thanks-card {
    max-width: 820px; margin: 0 auto; background: #fff;
    border: 1px solid #d9ecf9; border-radius: 20px;
    box-shadow: 0 18px 50px rgba(24,143,222,.08);
    padding: 46px 38px 42px; text-align: center;
}
.cp-thanks-check {
    width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 42px;
    background: linear-gradient(135deg, #188fde, #0f6fb5);
    box-shadow: 0 10px 26px rgba(24,143,222,.4);
    animation: cpPop .5s cubic-bezier(.17,.89,.32,1.28) both;
}
@keyframes cpPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cp-thanks-card h1 { font-size: 28px; font-weight: 800; color: #1f1f1f; margin: 0 0 10px; }
.cp-thanks-sub { font-size: 15px; color: #666; margin: 0 auto 30px; max-width: 560px; line-height: 1.6; }
.cp-thanks-steps {
    display: flex; flex-wrap: wrap; gap: 16px; text-align: center; margin-bottom: 28px;
}
.cp-step {
    flex: 1 1 200px; background: #f3f8fc; border: 1px solid #d9ecf9;
    border-radius: 14px; padding: 22px 16px;
}
.cp-step__ico {
    width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: #188fde; font-size: 20px; box-shadow: 0 4px 12px rgba(24,143,222,.12);
}
.cp-step h3 { font-size: 15px; font-weight: 700; color: #232323; margin: 0 0 6px; }
.cp-step p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }
.cp-thanks-info {
    background: #e8f4fc; border-radius: 12px; padding: 16px 20px; margin-bottom: 26px;
}
.cp-thanks-info p { margin: 0; font-size: 14px; color: #555; line-height: 1.6; }
.cp-thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (max-width: 600px) {
    .cp-thanks-card { padding: 36px 20px 32px; border-radius: 16px; }
    .cp-thanks-card h1 { font-size: 23px; }
}

/* ===================== HATA SAYFALARI ===================== */
.cp-error { padding: 60px 0 80px; }
.cp-error .pcontainer { max-width: 720px; }
.cp-error-card {
    background: #fff; border: 1px solid #d9ecf9; border-radius: 20px;
    box-shadow: 0 18px 50px rgba(24,143,222,.07);
    padding: 54px 34px 46px; text-align: center;
}
.cp-error-code {
    display: block; font-size: 96px; line-height: 1; font-weight: 800; letter-spacing: -2px;
    background: linear-gradient(135deg, #188fde, #5bb4ec);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: #188fde; margin-bottom: 8px;
}
.cp-error-title { font-size: 26px; font-weight: 800; color: #1f1f1f; margin: 0 0 12px; }
.cp-error-sub { font-size: 15px; color: #666; margin: 0 auto 28px; max-width: 520px; line-height: 1.6; }
.cp-error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px; }
.cp-error-links {
    display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center;
    padding-top: 22px; border-top: 1px solid #f0f0f0;
}
.cp-error-links a {
    color: #188fde; text-decoration: none; font-size: 14px; font-weight: 600;
}
.cp-error-links a:hover { text-decoration: underline; }
@media (max-width: 600px) {
    .cp-error-card { padding: 40px 20px 34px; border-radius: 16px; }
    .cp-error-code { font-size: 72px; }
    .cp-error-title { font-size: 22px; }
}

/* ===================== KURUMSAL SAYFALAR (Hakkımızda / İletişim / Yasal) ===================== */
.cp-hero {
    background: linear-gradient(135deg, #e8f4fc 0%, #fff 70%);
    border-bottom: 1px solid var(--line);
    padding: 44px 0 38px;
}
.cp-hero__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cp-hero h1 { font-size: 32px; font-weight: 800; margin: 0 0 10px; }
.cp-hero p { color: var(--muted); font-size: 15.5px; margin: 0; }
.cp-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.cp-breadcrumb a { color: var(--brand); text-decoration: none; }
.cp-breadcrumb a:hover { text-decoration: underline; }

.cp-page { padding: 46px 0 60px; }
.cp-page__inner { max-width: 860px; margin: 0 auto; }
.cp-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 36px 38px; box-shadow: 0 8px 30px rgba(20,24,40,.05);
}
.cp-card h2 {
    font-size: 21px; margin: 26px 0 12px; position: relative; padding-left: 14px;
}
.cp-card h2:first-child { margin-top: 0; }
.cp-card h2::before {
    content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 5px; border-radius: 3px; background: var(--brand);
}
.cp-card h3 { font-size: 17px; margin: 20px 0 8px; }
.cp-card p { margin: 0 0 14px; color: #4b5563; line-height: 1.8; font-size: 15px; }
.cp-card ul, .cp-card ol { margin: 0 0 14px; padding-left: 22px; color: #4b5563; line-height: 1.8; }
.cp-card li { margin-bottom: 6px; }
.cp-card strong { color: var(--ink); }
.cp-card a { color: var(--brand); }
.cp-note {
    background: #f3f8fc; border-left: 4px solid var(--brand); border-radius: 8px;
    padding: 14px 16px; font-size: 13.5px; color: #6b7280; margin: 18px 0 0; font-style: italic;
}

/* İletişim */
.cp-contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: start; }
.cp-contact-cards { display: grid; gap: 16px; }
.cp-contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px;
    box-shadow: 0 6px 20px rgba(20,24,40,.04);
}
.cp-contact-item__ico {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #e8f4fc; color: var(--brand); font-size: 19px;
}
.cp-contact-item h3 { margin: 0 0 4px; font-size: 16px; }
.cp-contact-item p { margin: 0; color: var(--muted); font-size: 14px; }
.cp-contact-item a { color: var(--ink); text-decoration: none; font-weight: 600; }
.cp-contact-item a:hover { color: var(--brand); }
.cp-contact-cta {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
@media (max-width: 768px) {
    .cp-hero h1 { font-size: 26px; }
    .cp-card { padding: 26px 20px; }
    .cp-contact-grid { grid-template-columns: 1fr; }
}