/* =============================================
   Sözleşme Hazırlayıcı - Hepsiburada Tarzı
   ============================================= */

/* Reset - sadece box-sizing */
.wcc-page *,
.wcc-page *::before,
.wcc-page *::after {
    box-sizing: border-box;
}

.wcc-page {
    display: flex;
    gap: 20px;
    min-height: 640px;
    background: transparent;
    overflow: visible;
    font-family: inherit;
    line-height: 1.65;
    color: #333;
    border: none;
    border-radius: 0;
}

/* ========================================
   SIDEBAR
   ======================================== */
.wcc-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.wcc-sidebar-header {
    padding: 22px 20px 18px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.wcc-sidebar-header svg { display: none; }

.wcc-sidebar-header span {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

/* Sidebar Navigation */
.wcc-sidebar-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}

.wcc-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    text-decoration: none !important;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    border-left: 3px solid transparent;
    position: relative;
}

.wcc-nav-item:hover {
    background: #f0f0f0;
    color: #333;
}

/* Aktif item - turuncu sol border (Hepsiburada tarzı) */
.wcc-nav-active {
    background: #fff !important;
    color: #ff6000 !important;
    font-weight: 600 !important;
    border-left-color: #ff6000 !important;
}

/* İkon kutusu */
.wcc-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ededed;
    border-radius: 8px;
    flex-shrink: 0;
    color: #888;
    transition: all 0.15s;
}

.wcc-nav-active .wcc-nav-icon {
    background: #fff3eb;
    color: #ff6000;
}

.wcc-nav-item:hover .wcc-nav-icon {
    background: #e8e8e8;
}

.wcc-nav-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* Sidebar Footer - Firma bilgileri */
.wcc-sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.wcc-company-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wcc-company-info strong {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.wcc-company-info span {
    font-size: 11px;
    color: #999;
}

/* ========================================
   CONTENT AREA
   ======================================== */
.wcc-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

/* Header */
.wcc-content-header {
    padding: 32px 36px 28px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

/* Header üst satır: badge + meta */
.wcc-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wcc-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff6000;
    background: #fff7ed;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #ffedd5;
    line-height: 1;
    white-space: nowrap;
}

.wcc-header-badge svg {
    color: #ff6000;
}

/* Başlık */
.wcc-content-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-transform: none !important;
    letter-spacing: -0.025em !important;
    line-height: 1.25 !important;
}

/* Meta bilgileri */
.wcc-content-meta {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 12px;
    color: #888;
}

.wcc-content-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #777;
}

.wcc-content-meta span svg {
    color: #bbb;
    flex-shrink: 0;
}

.wcc-meta-dot {
    width: 3px;
    height: 3px;
    background: #d4d4d4;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 10px;
}

.wcc-meta-sep {
    display: none;
}

/* Content Body */
.wcc-content-body {
    flex: 1;
    padding: 32px 36px;
    transition: opacity 0.2s;
}

/* Headings */
.wcc-content-body h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 32px 0 14px !important;
    padding: 0 0 10px !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: none !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.wcc-content-body h2:first-child {
    margin-top: 0 !important;
}

.wcc-content-body h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 20px 0 10px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* Paragraphs */
.wcc-content-body p {
    font-size: 13.5px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.75;
}

/* Lists */
.wcc-content-body ul,
.wcc-content-body ol {
    margin: 0 0 18px 20px;
    font-size: 13.5px;
    color: #555;
    padding-left: 0;
}

.wcc-content-body li {
    margin-bottom: 8px;
    line-height: 1.65;
    padding-left: 4px;
}

.wcc-content-body ul li::marker {
    color: #ff6000;
}

.wcc-content-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.wcc-content-body a {
    color: #ff6000;
    text-decoration: none;
    transition: color 0.15s;
}

.wcc-content-body a:hover {
    color: #e55500;
    text-decoration: underline;
}

/* Tables */
.wcc-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 13px;
    border: 1px solid #e8e8e8;
}

.wcc-content-body th,
.wcc-content-body td {
    padding: 11px 16px;
    border: 1px solid #e8e8e8;
    text-align: left;
}

.wcc-content-body th {
    background: #fafafa;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.wcc-content-body td {
    color: #555;
}

.wcc-content-body tr:hover td {
    background: #fefefe;
}

/* Content Footer */
.wcc-content-footer {
    padding: 18px 36px;
    border-top: 1px solid #f0f0f0;
    background: #fcfcfc;
}

.wcc-footer-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

.wcc-footer-info svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #ccc;
}

.wcc-footer-info a {
    color: #ff6000;
    text-decoration: none;
}

.wcc-footer-info a:hover {
    text-decoration: underline;
}

/* ========================================
   MOBİL TOGGLE
   ======================================== */
/* Toggle - div tabanlı (button çakışmasını engeller) */
.wcc-mobile-toggle[class] {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
    margin: 0;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    text-transform: none;
    letter-spacing: -0.01em;
    -webkit-appearance: none;
    appearance: none;
    min-height: 52px;
}

.wcc-mobile-toggle[class] .wcc-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wcc-mobile-toggle[class] .wcc-toggle-arrow {
    color: #999;
    transition: transform 0.2s;
}

.wcc-mobile-toggle[class]:active {
    background: #f5f5f5;
}

.wcc-mobile-toggle[class]:focus {
    outline: none;
    box-shadow: none;
}

/* Overlay */
.wcc-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.wcc-overlay-show {
    display: block;
    opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET (901px - 768px)
   ======================================== */
@media (max-width: 900px) {
    .wcc-page { gap: 14px; }
    .wcc-sidebar { width: 220px; }
    .wcc-nav-item { padding: 10px 16px; font-size: 12px; }
    .wcc-nav-icon { width: 28px; height: 28px; }
    .wcc-content-body { padding: 24px; }
    .wcc-content-header { padding: 22px 24px 18px; }
    .wcc-content-footer { padding: 14px 24px; }
}

/* ========================================
   RESPONSIVE - MOBİL (768px ve altı)
   ======================================== */
@media (max-width: 768px) {
    /* Ana layout - tek sütun */
    .wcc-page {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    /* Toggle görünür */
    .wcc-mobile-toggle[class] {
        display: flex !important;
    }

    /* Content - tam genişlik, border temizle */
    .wcc-content {
        border-radius: 0;
        border: none;
        border-top: 1px solid #e8e8e8;
    }

    /* Sidebar - sol taraftan slide-in */
    .wcc-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 85vw;
        max-width: 320px;
        z-index: 10002;
        background: #fff;
        border: none;
        border-radius: 0;
        box-shadow: 4px 0 30px rgba(0,0,0,0.15);
        transform: translateX(-105%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-self: auto;
        position: fixed;
    }

    .wcc-sidebar-open {
        transform: translateX(0);
    }

    /* Sidebar header - mobilde */
    .wcc-sidebar-header {
        padding: 20px;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Sidebar nav - mobilde scroll */
    .wcc-sidebar-nav {
        padding: 8px 0;
        overflow-y: auto;
    }

    .wcc-nav-item {
        padding: 12px 20px;
        font-size: 14px;
        border-left-width: 3px;
    }

    .wcc-nav-icon {
        width: 36px;
        height: 36px;
    }

    .wcc-nav-label {
        white-space: normal;
        line-height: 1.3;
    }

    /* Content header */
    .wcc-content-header {
        padding: 20px;
        background: #fff;
        text-align: left;
    }

    .wcc-header-top {
        margin-bottom: 10px;
        display: flex;
        justify-content: flex-start;
    }

    .wcc-content-title {
        font-size: 18px !important;
        margin: 0 0 12px !important;
        text-align: left !important;
    }

    .wcc-content-meta {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .wcc-meta-dot { display: none; }

    /* Content body */
    .wcc-content-body {
        padding: 24px 20px;
    }

    .wcc-content-body h2 {
        font-size: 15px !important;
        margin: 28px 0 12px !important;
    }

    .wcc-content-body p,
    .wcc-content-body li {
        font-size: 13.5px;
    }

    .wcc-content-body table { font-size: 12px; }
    .wcc-content-body th,
    .wcc-content-body td { padding: 10px 12px; }

    .wcc-content-footer { padding: 16px 20px; }
}

/* ========================================
   RESPONSIVE - KÜÇÜK MOBİL (480px ve altı)
   ======================================== */
@media (max-width: 480px) {
    .wcc-sidebar {
        width: 90vw;
        max-width: 300px;
    }

    .wcc-content-header { padding: 16px; }
    .wcc-content-title { font-size: 16px !important; }
    .wcc-content-meta span { font-size: 11px; }

    .wcc-content-body { padding: 20px 16px; }
    .wcc-content-body p, .wcc-content-body li { font-size: 13px; }
    .wcc-content-body h2 { font-size: 14px !important; }

    .wcc-content-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wcc-content-footer { padding: 14px 16px; }
}

/* ========================================
   GÜVENLI ALIŞVERİŞ - ÖZEL BİLEŞENLER
   ======================================== */

/* Hero Box */
.wcc-hero-box {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-bottom: 28px;
}

.wcc-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(22,163,74,0.12);
}

.wcc-hero-icon svg {
    display: block;
}

/* Feature Grid */
.wcc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0 28px;
}

.wcc-feature-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px 18px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wcc-feature-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.wcc-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.wcc-feature-icon svg {
    display: block;
    flex-shrink: 0;
}

.wcc-feature-card h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    border: none !important;
}

.wcc-feature-card p {
    font-size: 12.5px !important;
    color: #777 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

/* Info Box */
.wcc-info-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 10px;
    margin: 18px 0;
}

.wcc-info-green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.wcc-info-blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.wcc-info-icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcc-info-icon svg {
    display: block;
}

.wcc-info-box strong {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.wcc-info-box p {
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.6 !important;
}

/* Checklist */
.wcc-checklist {
    margin: 16px 0 24px;
}

.wcc-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13.5px;
    color: #444;
}

.wcc-check-item:last-child { border-bottom: none; }

.wcc-check-item svg {
    flex-shrink: 0;
    display: block;
}

/* Steps Visual */
.wcc-steps-visual {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 20px 0 28px;
}

.wcc-step-card {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.wcc-step-num {
    width: 36px;
    height: 36px;
    background: #ff6000;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.wcc-step-card h3 {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    border: none !important;
}

.wcc-step-card p {
    font-size: 12px !important;
    color: #888 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.wcc-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    flex-shrink: 0;
    color: #ccc;
}

.wcc-step-arrow svg {
    display: block;
}

/* Badges Row */
.wcc-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0 28px;
}

.wcc-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.wcc-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcc-badge-icon-img { background: #f5f5f5; }
.wcc-badge-icon-img img { object-fit: contain; display: block; }
.wcc-badge-icon-green { background: #f0fdf4; }
.wcc-badge-icon-blue { background: #eff6ff; }
.wcc-badge-icon-pink { background: #fdf2f8; }

.wcc-badge-item > span:last-child {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.wcc-badge-item small {
    color: #999;
    font-weight: 400;
    font-size: 11px;
}

/* Responsive - bileşenler */
@media (max-width: 768px) {
    .wcc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wcc-steps-visual {
        flex-direction: column;
        gap: 0;
    }

    .wcc-step-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
        justify-content: center;
    }

    .wcc-step-card {
        padding: 20px 16px;
    }

    .wcc-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .wcc-hero-box { padding: 24px 16px; }
}

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

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

    .wcc-feature-card { padding: 16px 14px; }
    .wcc-badge-item { padding: 12px; }
}

/* ========================================
   HUB SAYFASI - Yasal Bilgiler
   ======================================== */
.wcc-hub {
    font-family: inherit;
    color: #333;
    line-height: 1.5;
}

.wcc-hub * { box-sizing: border-box; }

/* ---- Hero ---- */
.wcc-hub-hero {
    text-align: center;
    padding: 56px 24px 48px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 20px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

/* Dekoratif daireler */
.wcc-hub-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -120px;
    right: -60px;
}

.wcc-hub-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    bottom: -80px;
    left: -40px;
}

.wcc-hub-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    letter-spacing: -0.03em !important;
    position: relative;
    z-index: 1;
}

.wcc-hub-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

/* Arama */
.wcc-hub-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    z-index: 1;
}

.wcc-hub-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 2;
}

.wcc-hub-search input {
    width: 100%;
    padding: 15px 20px 15px 48px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    outline: none;
    font-family: inherit;
    transition: all 0.2s;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.wcc-hub-search input::placeholder { color: rgba(255,255,255,0.35); }
.wcc-hub-search input:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

/* ---- Kategoriler ---- */
.wcc-hub-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Kategori kartı */
.wcc-hub-cat {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.wcc-hub-cat:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.wcc-hub-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 22px 16px;
}

.wcc-hub-cat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.wcc-hub-cat:hover .wcc-hub-cat-icon {
    transform: scale(1.05);
}

.wcc-hub-cat-icon svg { display: block; }

.wcc-hub-cat-info { flex: 1; min-width: 0; }

.wcc-hub-cat-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 0 2px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.wcc-hub-cat-desc {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
}

/* Sözleşme listesi */
.wcc-hub-cat-list {
    border-top: 1px solid #f0f0f0;
    padding: 4px 0;
}

.wcc-hub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    text-decoration: none !important;
    color: #444 !important;
    transition: all 0.12s;
    border-radius: 0;
    position: relative;
}

.wcc-hub-item:hover {
    background: #f8f9fa;
}

.wcc-hub-item:hover .wcc-hub-item-arrow {
    color: #333;
    transform: translateX(3px);
}

.wcc-hub-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    flex-shrink: 0;
    transition: all 0.15s;
}

.wcc-hub-item-icon svg {
    display: block;
    width: 15px;
    height: 15px;
}

.wcc-hub-item:hover .wcc-hub-item-icon {
    background: #111;
    color: #fff;
}

.wcc-hub-item-title {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.wcc-hub-item:hover .wcc-hub-item-title {
    color: #111;
}

.wcc-hub-item-arrow {
    flex-shrink: 0;
    color: #ddd;
    transition: all 0.2s;
}

/* ---- Popüler / Hızlı Erişim ---- */
.wcc-hub-quick {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -18px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.wcc-hub-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    text-decoration: none !important;
    color: #555 !important;
    font-size: 12.5px;
    font-weight: 500;
    transition: all 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    white-space: nowrap;
}

.wcc-hub-quick-item:hover {
    background: #111;
    color: #fff !important;
    border-color: #111;
}

.wcc-hub-quick-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Footer ---- */
.wcc-hub-footer {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.wcc-hub-footer-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #bbb;
}

.wcc-hub-footer-inner svg { color: #ccc; flex-shrink: 0; }

/* ---- Hub Responsive ---- */
@media (max-width: 900px) {
    .wcc-hub-categories { gap: 14px; }
    .wcc-hub-cat-header { padding: 18px 18px 14px; }
    .wcc-hub-item { padding: 12px 18px; }
}

@media (max-width: 768px) {
    .wcc-hub-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wcc-hub-hero {
        padding: 40px 20px 36px;
        border-radius: 14px;
        margin-bottom: 28px;
    }

    .wcc-hub-title { font-size: 24px !important; }
    .wcc-hub-subtitle { font-size: 14px; margin-bottom: 22px; }
    .wcc-hub-search input { padding: 13px 16px 13px 44px; font-size: 14px; }

    .wcc-hub-quick {
        margin-top: -14px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .wcc-hub-quick-item { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
    .wcc-hub-hero {
        padding: 32px 16px 28px;
        border-radius: 0;
        margin-left: -16px;
        margin-right: -16px;
        margin-bottom: 20px;
    }

    .wcc-hub-title { font-size: 22px !important; }
    .wcc-hub-subtitle { font-size: 13px; }

    .wcc-hub-cat { border-radius: 12px; }
    .wcc-hub-cat-header { padding: 16px 16px 12px; gap: 12px; }
    .wcc-hub-cat-icon { width: 40px; height: 40px; min-width: 40px; }
    .wcc-hub-cat-title { font-size: 14px !important; }
    .wcc-hub-item { padding: 11px 16px; gap: 10px; }
    .wcc-hub-item-icon { width: 28px; height: 28px; min-width: 28px; }
    .wcc-hub-item-icon svg { width: 13px; height: 13px; }
    .wcc-hub-item-title { font-size: 13px; }
    .wcc-hub-item-arrow { display: none; }

    .wcc-hub-quick {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px;
        margin-left: -16px;
        margin-right: -16px;
    }
}
