/* ============================================================
   Kobiadam - WooCommerce Özel Stiller
   ============================================================ */

/* Shop Toolbar */
.shop-toolbar {
    padding: 10px 16px;
    background: var(--kobiadam-white, #fff);
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: var(--kobiadam-radius, 8px);
}

.shop-toolbar .woocommerce-result-count {
    margin: 0;
    font-size: 13px;
    color: var(--kobiadam-gray);
}

.shop-toolbar .woocommerce-ordering select {
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: var(--kobiadam-radius-sm, 4px);
    padding: 6px 12px;
    font-size: 13px;
    color: var(--kobiadam-dark);
    background: var(--kobiadam-light);
}

/* ============================================================
   MAĞAZA / KATEGORİ SAYFALARI
   ============================================================ */
.shop-sidebar,
.kobiadam-shop-sidebar {
    background: var(--kobiadam-white, #fff);
    border-radius: var(--kobiadam-radius-lg, 16px);
    box-shadow: var(--kobiadam-shadow);
    overflow: hidden;
    border: 1px solid var(--kobiadam-border);
}

.shop-sidebar .sidebar-title,
.kobiadam-shop-sidebar .sidebar-title {
    background: var(--kobiadam-primary);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-sidebar .category-list,
.kobiadam-shop-sidebar .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar .category-list li,
.kobiadam-shop-sidebar .category-list li {
    border-bottom: 1px solid var(--kobiadam-border);
}

.shop-sidebar .category-list li:last-child,
.kobiadam-shop-sidebar .category-list li:last-child {
    border-bottom: none;
}

.shop-sidebar .category-list li a,
.kobiadam-shop-sidebar .category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #334155;
    font-size: 14px;
    transition: var(--kobiadam-transition);
    text-decoration: none;
    gap: 8px;
}

.kobiadam-shop-sidebar .category-list li a .cat-name-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.kobiadam-shop-sidebar .category-list li a .cat-icon {
    font-size: 20px;
    color: var(--kobiadam-gray, #64748b);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.kobiadam-shop-sidebar .category-list li a .cat-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-sidebar .category-list li a:hover,
.shop-sidebar .category-list li.active a,
.kobiadam-shop-sidebar .category-list li a:hover,
.kobiadam-shop-sidebar .category-list li.active a {
    background: var(--kobiadam-light, #f8fafc);
    color: var(--kobiadam-primary);
    padding-left: 24px;
}

.shop-sidebar .category-list li a:hover .cat-icon,
.kobiadam-shop-sidebar .category-list li a:hover .cat-icon,
.shop-sidebar .category-list li.active a .cat-icon,
.kobiadam-shop-sidebar .category-list li.active a .cat-icon {
    color: var(--kobiadam-primary);
}

.shop-sidebar .category-list li.active a,
.kobiadam-shop-sidebar .category-list li.active a {
    font-weight: 600;
    border-left: 3px solid var(--kobiadam-primary);
}

.shop-sidebar .category-list .cat-count,
.kobiadam-shop-sidebar .category-list .cat-count {
    background: rgba(26, 86, 219, 0.08);
    color: var(--kobiadam-primary);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
}

/* Mobil filtre butonu */
.mobile-filter-btn {
    display: none;
}

/* Mağaza başlık */
.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.shop-header h1 {
    font-size: 1.5rem;
    margin: 0;
}

.shop-header .result-count {
    color: var(--kobiadam-gray);
    font-size: 13px;
}

.shop-header .woocommerce-ordering select {
    border: 1px solid var(--kobiadam-border);
    padding: 8px 12px;
    border-radius: var(--kobiadam-radius);
    font-size: 13px;
    color: #334155;
}

/* ============================================================
   ÜRÜN KARTI (Archive)
   ============================================================ */
.kobiadam-product-card {
    background: var(--kobiadam-white, #fff);
    border-radius: var(--kobiadam-radius-lg, 12px);
    overflow: hidden;
    box-shadow: var(--kobiadam-shadow);
    transition: var(--kobiadam-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--kobiadam-border);
    position: relative;
    cursor: pointer;
}

.kobiadam-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kobiadam-shadow-lg);
    border-color: rgba(26, 86, 219, 0.12);
}

.kobiadam-product-card .product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--kobiadam-light, #f8fafc);
}

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

.kobiadam-product-card .product-card-image .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.kobiadam-product-card:hover .product-card-image .product-card-img {
    transform: scale(1.08);
}

.kobiadam-product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    z-index: 3;
}

.badge-premium   { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.badge-onepage   { background: linear-gradient(135deg, var(--kobiadam-primary), var(--kobiadam-secondary)); }
.badge-new       { background: linear-gradient(135deg, var(--kobiadam-success, #10b981), #059669); }
.badge-language  { background: linear-gradient(135deg, var(--kobiadam-accent, #f59e0b), #d97706); }
.badge-default   { background: var(--kobiadam-gray, #64748b); }

.kobiadam-product-card .product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 40%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding-bottom: 20px;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.kobiadam-product-card:hover .product-card-overlay {
    opacity: 1;
    pointer-events: auto;
}

.kobiadam-product-card .product-card-overlay .overlay-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.kobiadam-product-card:hover .product-card-overlay .overlay-btn {
    transform: translateY(0);
}

.kobiadam-product-card .product-card-overlay .overlay-btn .material-symbols-outlined {
    font-size: 16px;
}

.kobiadam-product-card .product-card-body {
    padding: 16px 16px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kobiadam-product-card .product-card-code {
    font-size: 11px;
    color: var(--kobiadam-gray);
    margin-bottom: 4px;
    display: block;
}

.kobiadam-product-card .product-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kobiadam-product-card .product-card-title a {
    color: var(--kobiadam-dark);
}

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

/* Stretched link - tüm kart tıklanabilir */
.kobiadam-product-card .product-card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.kobiadam-product-card .product-card-overlay,
.kobiadam-product-card .product-card-buy,
.kobiadam-product-card .product-badge {
    position: relative;
    z-index: 2;
}

.kobiadam-product-card .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--kobiadam-border);
    margin-top: auto;
    gap: 8px;
}

.kobiadam-product-card .product-card-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    line-height: 1.2;
}

.kobiadam-product-card .product-card-price del {
    font-size: 12px;
    color: var(--kobiadam-gray-light, #94a3b8);
    font-weight: 400;
    display: block;
}

.kobiadam-product-card .product-card-price ins {
    text-decoration: none;
}

.kobiadam-product-card .product-card-buy {
    background: var(--kobiadam-primary);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--kobiadam-radius, 8px);
    font-size: 12px;
    font-weight: 600;
    transition: var(--kobiadam-transition);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.kobiadam-product-card .product-card-buy:hover {
    background: var(--kobiadam-primary-dark, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
    color: #fff;
}

.kobiadam-product-card .product-card-buy .material-symbols-outlined {
    font-size: 16px;
}

.kobiadam-product-card .product-card-buy.added::after {
    content: 'check';
    font-family: 'Material Symbols Outlined';
}

.kobiadam-product-card .product-card-buy.loading {
    opacity: 0.7;
}

/* Ürün Grid Filtreleme Animasyonu */
.product-grid-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-grid-item.product-hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.product-grid-item.product-visible {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

/* ============================================================
   TEK ÜRÜN SAYFASI
   ============================================================ */
.single-product-section {
    padding: 40px 0;
}

/* Galeri */
.product-gallery-wrapper {
    position: relative;
}

.product-main-image-link {
    display: block;
    border-radius: var(--kobiadam-radius-lg, 16px);
    overflow: hidden;
    transition: var(--kobiadam-transition);
}

.product-main-image-link:hover .product-main-image {
    transform: scale(1.02);
}

.product-detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-demo-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
    transition: all .25s ease;
}

.product-demo-overlay:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.45);
    transform: translateY(-2px);
}

.product-main-image {
    width: 100%;
    border-radius: var(--kobiadam-radius-lg, 16px);
}

.product-gallery-thumbs {
    margin-top: 12px;
}

.gallery-thumb {
    width: 100%;
    border-radius: var(--kobiadam-radius-sm, 6px);
    border: 2px solid var(--kobiadam-border);
    cursor: pointer;
    transition: var(--kobiadam-transition);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.cursor-pointer {
    cursor: pointer;
}

.gallery-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.gallery-badge-overlay .product-badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Ürün Bilgi */
.product-info-box {
    background: var(--kobiadam-white, #fff);
    border: 1px solid var(--kobiadam-border);
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.price-guarantee {
    display: none;
}

.product-info-box .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--kobiadam-dark);
}

.product-short-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--kobiadam-gray);
    margin-bottom: 16px;
}

/* Fiyat + Ürün Kodu Satırı */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: var(--kobiadam-light, #f8fafc);
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-price-row .product-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    line-height: 1;
}

.product-price-row .product-price-amount del {
    font-size: 14px;
    color: var(--kobiadam-gray-light, #94a3b8);
    font-weight: 400;
}

.product-price-row .product-price-amount ins {
    text-decoration: none;
}

.product-code-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--kobiadam-gray);
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid var(--kobiadam-border);
}

.product-code-tag .material-symbols-outlined {
    font-size: 14px;
}

/* Güvence Rozetleri */
.product-trust-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--kobiadam-gray);
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--kobiadam-light, #f8fafc);
    border: 1px solid var(--kobiadam-border);
}

.trust-badge .material-symbols-outlined {
    font-size: 15px;
    color: var(--kobiadam-success, #10b981);
}

/* Alt Aksiyonlar (Favori, Paylaş) */
.product-bottom-actions {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--kobiadam-border);
    flex-wrap: wrap;
}

/* Demo Önizleme Butonları */
.product-demo-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--kobiadam-border);
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all .2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-demo .material-symbols-outlined {
    font-size: 22px;
}

.btn-demo-site {
    background: var(--kobiadam-primary);
    color: #fff;
    border-color: var(--kobiadam-primary);
}

.btn-demo-site:hover {
    background: var(--kobiadam-primary-dark, #1e40af);
    border-color: var(--kobiadam-primary-dark, #1e40af);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

.btn-demo-admin {
    background: transparent;
    color: var(--kobiadam-secondary, #1e3a5f);
    border-color: var(--kobiadam-secondary, #1e3a5f);
}

.btn-demo-admin:hover {
    background: var(--kobiadam-secondary, #1e3a5f);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--kobiadam-gray);
    background: none;
    border: 1px solid var(--kobiadam-border);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-action:hover {
    color: var(--kobiadam-primary);
    border-color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.04);
}

.btn-action .material-symbols-outlined {
    font-size: 16px;
}

/* Ürün Özellikleri Section (minimal pills) */
.product-features-section {
    background: #fff;
    border: 1px solid var(--kobiadam-border);
    border-radius: 20px;
    padding: 24px 28px;
}

.features-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.features-section-header .material-symbols-outlined {
    font-size: 22px;
    color: var(--kobiadam-primary);
}

.features-section-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin: 0;
}

.product-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--kobiadam-dark);
    background: var(--kobiadam-light, #f8fafc);
    border: 1px solid var(--kobiadam-border);
    padding: 6px 14px;
    border-radius: 50px;
    transition: all .2s;
}

.feature-pill:hover {
    border-color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.04);
    color: var(--kobiadam-primary);
}

.feature-pill .material-symbols-outlined {
    font-size: 16px;
    color: var(--kobiadam-primary);
}

/* Ürün Özellikleri Grid - Renkli Kare Kutucuklar */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 70px;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-box-icon {
    font-size: 22px !important;
    line-height: 1;
}

.feature-box-label {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
}

/* Renkli kutucuk renkleri - aktif özellikler */
.feature-box.active {
    color: #fff;
}

.feature-box.active:nth-child(12n+1)  { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.feature-box.active:nth-child(12n+2)  { background: linear-gradient(135deg, #10b981, #059669); }
.feature-box.active:nth-child(12n+3)  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.feature-box.active:nth-child(12n+4)  { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-box.active:nth-child(12n+5)  { background: linear-gradient(135deg, #ef4444, #dc2626); }
.feature-box.active:nth-child(12n+6)  { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.feature-box.active:nth-child(12n+7)  { background: linear-gradient(135deg, #ec4899, #db2777); }
.feature-box.active:nth-child(12n+8)  { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.feature-box.active:nth-child(12n+9)  { background: linear-gradient(135deg, #f97316, #ea580c); }
.feature-box.active:nth-child(12n+10) { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.feature-box.active:nth-child(12n+11) { background: linear-gradient(135deg, #84cc16, #65a30d); }
.feature-box.active:nth-child(12n+12) { background: linear-gradient(135deg, #a855f7, #9333ea); }

.feature-box.active .feature-box-icon {
    color: #fff;
}

.feature-box.active .feature-box-label {
    color: rgba(255, 255, 255, 0.95);
}

/* Pasif özellikler */
.feature-box.inactive {
    background: var(--kobiadam-light);
    color: var(--kobiadam-gray-light, #94a3b8);
    opacity: 0.5;
}

.feature-box.inactive .feature-box-icon {
    color: var(--kobiadam-gray-light);
}

.feature-box.inactive .feature-box-label {
    text-decoration: line-through;
}

.product-actions-row {
    display: flex;
    gap: 8px;
}

.product-buy-action {
    margin-top: 4px;
}

/* Demo butonu */
.demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--kobiadam-primary);
    color: #fff;
    border: none;
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--kobiadam-transition);
    text-decoration: none;
}

.demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
    color: #fff;
}

/* Aksiyon butonları */
.product-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.product-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px;
}

.product-actions .wish-btn {
    color: var(--kobiadam-danger);
    border-color: var(--kobiadam-danger);
}

.product-actions .wish-btn:hover {
    background: var(--kobiadam-danger);
    color: #fff;
}

/* Sepete ekle (WooCommerce) */
.single_add_to_cart_button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: var(--kobiadam-accent) !important;
    border: none !important;
    border-radius: var(--kobiadam-radius) !important;
    color: #fff !important;
    letter-spacing: 0.02em;
    transition: var(--kobiadam-transition) !important;
}

.single_add_to_cart_button:hover {
    background: var(--kobiadam-accent-hover, #cf6d17) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.quantity .qty {
    width: 80px;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
}

/* ============================================================
   ÜRÜN TABLERİ
   ============================================================ */
.kobiadam-product-tabs {
    margin-top: 0;
}

.product-tabs-section {
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 20px;
    padding: 28px;
    margin-top: 3rem;
}

.kobiadam-product-tabs .product-tabs-nav {
    background: var(--kobiadam-light);
    border-radius: var(--kobiadam-radius-lg) var(--kobiadam-radius-lg) 0 0;
    padding: 4px;
}

.kobiadam-product-tabs .nav-tabs {
    border-bottom: none;
    gap: 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.kobiadam-product-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
}

.kobiadam-product-tabs .nav-tabs .nav-link {
    border: none;
    color: var(--kobiadam-gray);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: var(--kobiadam-radius);
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.kobiadam-product-tabs .nav-tabs .nav-link .tab-icon {
    font-size: 18px;
}

.kobiadam-product-tabs .nav-tabs .nav-link:hover {
    color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.06);
}

.kobiadam-product-tabs .nav-tabs .nav-link.active {
    color: var(--kobiadam-primary);
    background: var(--kobiadam-white);
    box-shadow: var(--kobiadam-shadow);
}

.kobiadam-product-tabs .nav-tabs .nav-link.active .tab-icon {
    color: var(--kobiadam-primary);
}

.kobiadam-product-tabs .tab-content {
    padding: 30px;
    background: var(--kobiadam-white);
    border: 1px solid var(--kobiadam-border);
    border-top: none;
    border-radius: 0 0 var(--kobiadam-radius-lg) var(--kobiadam-radius-lg);
}

.kobiadam-product-tabs .tab-pane {
    font-size: 14px;
    line-height: 1.8;
    color: #334155;
}

.kobiadam-product-tabs .tab-pane h2,
.kobiadam-product-tabs .tab-pane h3,
.kobiadam-product-tabs .tab-pane h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.kobiadam-product-tabs .tab-pane h2:first-child,
.kobiadam-product-tabs .tab-pane h3:first-child,
.kobiadam-product-tabs .tab-pane h4:first-child {
    margin-top: 0;
}

.kobiadam-product-tabs .tab-pane ul,
.kobiadam-product-tabs .tab-pane ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.kobiadam-product-tabs .tab-pane img {
    border-radius: var(--kobiadam-radius);
    max-width: 100%;
}

/* Taksit Tablosu */
.installment-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.installment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--kobiadam-radius);
    overflow: hidden;
    border: 1px solid var(--kobiadam-border);
}

.installment-table thead th {
    background: var(--kobiadam-dark);
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    border: none;
}

.installment-table thead th:first-child {
    text-align: left;
}

.installment-table tbody td {
    padding: 12px 16px;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid var(--kobiadam-border);
    vertical-align: middle;
}

.installment-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--kobiadam-dark);
}

.installment-table tbody tr:last-child td {
    border-bottom: none;
}

.installment-table tbody tr:hover {
    background: rgba(26, 86, 219, 0.03);
}

.installment-table tbody tr:nth-child(even) {
    background: var(--kobiadam-light);
}

.installment-table tbody tr:nth-child(even):hover {
    background: rgba(26, 86, 219, 0.05);
}

.bank-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.installment-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(230, 126, 34, 0.06);
    border-radius: var(--kobiadam-radius);
    border-left: 3px solid var(--kobiadam-accent);
    font-size: 12px;
    color: var(--kobiadam-gray);
}

/* Tab: Admin panel ekran görüntüleri */
.admin-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.admin-screenshots img {
    border-radius: var(--kobiadam-radius);
    border: 1px solid var(--kobiadam-border);
    cursor: pointer;
    transition: var(--kobiadam-transition);
}

.admin-screenshots img:hover {
    transform: scale(1.03);
    box-shadow: var(--kobiadam-shadow);
}

/* Tab: Ürün SSS */
.product-faq .accordion-item {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius) !important;
    margin-bottom: 10px;
}

.product-faq .accordion-button {
    font-weight: 600;
    font-size: 14px;
}

.product-faq .accordion-button:not(.collapsed) {
    background: var(--kobiadam-light);
    color: var(--kobiadam-primary);
    box-shadow: none;
}

/* Tab: Ödeme yöntemleri */
.payment-methods-info img {
    max-height: 40px;
    margin: 5px;
}

/* ============================================================
   DİĞER ÜRÜNLER (Related Products)
   ============================================================ */
.related-products-section {
    padding: 40px;
    margin-top: 3rem;
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 20px;
}

/* WooCommerce default related section */
.related-products-section section.related.products {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Hide WooCommerce default h2 (we have our own header) */
.related-products-section section.related.products > h2 {
    display: none !important;
}

.related-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.related-products-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-products-header h2 .material-symbols-outlined {
    font-size: 28px;
    color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.08);
    padding: 8px;
    border-radius: 10px;
}

.related-products-header p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin: 4px 0 0;
}

.related-see-all {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    border-radius: 8px;
}

.related-see-all .material-symbols-outlined {
    font-size: 18px;
    transition: transform .2s;
}

.related-see-all:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* Related products card override — image full width, no constrained box */
.related-products-section .kobiadam-product-card {
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.related-products-section .kobiadam-product-card:hover {
    border-color: rgba(26, 86, 219, 0.2);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.1);
    transform: translateY(-4px);
}

.related-products-section .kobiadam-product-card .product-card-image {
    aspect-ratio: 16/10;
    background: #fff;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.related-products-section .kobiadam-product-card .product-card-image .product-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ============================================================
   ÜRÜN DETAY — DOMAIN & HOSTİNG ALANLARI
   ============================================================ */
.product-extras-section {
    background: var(--kobiadam-light, #f8f9fa);
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 12px;
    padding: 16px 20px;
}

.product-extras-section .extras-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin-bottom: 12px;
}

.product-extras-section .extras-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

.domain-input-group label {
    color: var(--kobiadam-dark);
}

.domain-input-group .input-group-text {
    background: var(--kobiadam-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--kobiadam-primary);
    border-radius: 8px 0 0 8px;
}

.domain-input-group .form-control {
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    border-color: var(--kobiadam-border);
}

.domain-input-group .form-control:focus {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.hosting-option-group {
    margin-top: 8px;
}

.hosting-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    font-size: 14px;
    font-weight: 500;
}

.hosting-check-label:hover {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}

.hosting-check-label .form-check-input:checked ~ span {
    color: var(--kobiadam-primary);
}

/* ============================================================
   ÜRÜN DETAY — EK HİZMETLER (ADD-ONS)
   ============================================================ */
.product-addons-section {
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 20px;
    padding: 28px;
}

.addons-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.addons-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--kobiadam-primary), var(--kobiadam-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.addons-header-icon .material-symbols-outlined {
    color: #fff;
    font-size: 24px;
}

.addons-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin: 0 0 4px;
}

.addons-header p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin: 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.addon-card {
    position: relative;
    cursor: pointer;
    display: flex;
}

.addon-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-card-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--kobiadam-light, #f8f9fa);
    border: 2px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color .25s, box-shadow .25s, background .25s;
    width: 100%;
    min-height: 72px;
}

.addon-card:hover .addon-card-inner {
    border-color: rgba(26, 86, 219, 0.3);
    box-shadow: 0 2px 12px rgba(26, 86, 219, 0.08);
}

.addon-checkbox:checked ~ .addon-card-inner {
    border-color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.04);
    box-shadow: 0 2px 16px rgba(26, 86, 219, 0.12);
}

.addon-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(26, 86, 219, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.addon-checkbox:checked ~ .addon-card-inner .addon-icon {
    background: var(--kobiadam-primary);
}

.addon-icon .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
    transition: color .25s;
}

.addon-checkbox:checked ~ .addon-card-inner .addon-icon .material-symbols-outlined {
    color: #fff;
}

.addon-info {
    flex: 1;
    min-width: 0;
}

.addon-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--kobiadam-dark);
}

.addon-info small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    color: var(--kobiadam-gray);
    margin-top: 2px;
    line-height: 1.3;
}

.addon-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    white-space: nowrap;
}

.addon-check-indicator {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity .25s, transform .25s;
}

.addon-check-indicator .material-symbols-outlined {
    font-size: 22px;
    color: var(--kobiadam-primary);
}

.addon-checkbox:checked ~ .addon-card-inner .addon-check-indicator {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   ÜRÜN DETAY — CTA BÖLÜMü
   ============================================================ */
.product-cta-section {
    margin-top: 3rem;
}

.product-cta-inner {
    position: relative;
    background: linear-gradient(135deg, var(--kobiadam-secondary) 0%, var(--kobiadam-primary) 100%);
    border-radius: 20px;
    padding: 40px 48px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(26, 86, 219, 0.2);
}

.product-cta-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.product-cta-content {
    position: relative;
    z-index: 1;
}

.product-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.product-cta-badge .material-symbols-outlined {
    font-size: 16px;
}

.product-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.product-cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 540px;
}

.product-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.product-cta-buttons .btn-hero-primary {
    background: #fff;
    color: var(--kobiadam-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
}

.product-cta-buttons .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--kobiadam-primary);
}

.product-cta-buttons .btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, border-color .2s;
}

.product-cta-buttons .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* WhatsApp butonları — yeşil */
.btn-whatsapp,
.archive-cta-actions .btn-hero-outline,
.product-cta-buttons .btn-hero-outline {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600;
}

.btn-whatsapp:hover,
.archive-cta-actions .btn-hero-outline:hover,
.product-cta-buttons .btn-hero-outline:hover {
    background: #1fb855 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

.product-cta-buttons .btn .material-symbols-outlined {
    font-size: 20px;
}

/* ============================================================
   SEPET SAYFASI
   ============================================================ */
.woocommerce-cart .woocommerce table.shop_table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--kobiadam-radius);
    overflow: hidden;
    box-shadow: var(--kobiadam-shadow);
    border: none;
    width: 100%;
    table-layout: fixed;
}

.woocommerce-cart .woocommerce table.shop_table th {
    background: var(--kobiadam-light);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.woocommerce-cart .woocommerce table.shop_table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--kobiadam-border);
    vertical-align: middle;
    font-size: 14px;
}

.woocommerce-cart .woocommerce table.shop_table td.product-thumbnail img {
    width: 80px;
    border-radius: 4px;
}

.woocommerce-cart .woocommerce table.shop_table td.product-name a {
    font-weight: 600;
    color: var(--kobiadam-dark);
}

.woocommerce-cart .woocommerce table.shop_table td.product-name a:hover {
    color: var(--kobiadam-primary);
}

.woocommerce-cart .cart_totals {
    background: #fff;
    border-radius: var(--kobiadam-radius);
    box-shadow: var(--kobiadam-shadow);
    padding: 20px;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.woocommerce a.remove {
    color: var(--kobiadam-danger) !important;
    font-size: 20px;
}

/* Sepet sayfasındaki remove butonu için WC default override */
.woocommerce-cart-form a.remove.cart-item-remove::before {
    display: none !important;
    content: none !important;
}

.woocommerce .button,
.woocommerce button.button {
    background-color: var(--kobiadam-primary) !important;
    color: #fff !important;
    border-radius: var(--kobiadam-radius) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: var(--kobiadam-transition) !important;
    border: none !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background-color: var(--kobiadam-secondary) !important;
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
    background-color: var(--kobiadam-accent) !important;
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
    background-color: #d97706 !important;
}

/* ============================================================
   ÖDEME SAYFASI
   ============================================================ */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.woocommerce-checkout .form-row {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.woocommerce-checkout .form-row-wide {
    flex: 1 1 100%;
}

.woocommerce-checkout .input-text,
.woocommerce-checkout select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus {
    border-color: var(--kobiadam-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.woocommerce-checkout #order_review {
    background: #fff;
    padding: 25px;
    border-radius: var(--kobiadam-radius);
    box-shadow: var(--kobiadam-shadow);
}

.woocommerce-checkout #payment {
    background: var(--kobiadam-light) !important;
    border-radius: var(--kobiadam-radius) !important;
    padding: 20px !important;
}

.woocommerce-checkout #place_order {
    width: 100%;
    padding: 16px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   HESABIM SAYFASI
   ============================================================ */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: var(--kobiadam-radius);
    box-shadow: var(--kobiadam-shadow);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
    color: #334155;
    font-size: 14px;
    border-bottom: 1px solid var(--kobiadam-border);
    transition: var(--kobiadam-transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--kobiadam-light);
    color: var(--kobiadam-primary);
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #fff;
    border-radius: var(--kobiadam-radius);
    box-shadow: var(--kobiadam-shadow);
    padding: 25px;
}

/* ============================================================
   WOO BİLDİRİMLER
   ============================================================ */
.woocommerce-message {
    border-top-color: var(--kobiadam-success) !important;
    background: #f0fdf4;
    padding: 15px 20px !important;
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
}

.woocommerce-error {
    border-top-color: var(--kobiadam-danger) !important;
    background: #fef2f2;
    padding: 15px 20px !important;
    border-radius: var(--kobiadam-radius);
}

.woocommerce-info {
    border-top-color: var(--kobiadam-primary) !important;
    background: #eff6ff;
    padding: 15px 20px !important;
    border-radius: var(--kobiadam-radius);
}

.woocommerce-message::before {
    color: var(--kobiadam-success) !important;
}

.woocommerce-error::before {
    color: var(--kobiadam-danger) !important;
}

.woocommerce-info::before {
    color: var(--kobiadam-primary) !important;
}

/* ============================================================
   ÜRÜN FİLTRE
   ============================================================ */
.shop-filter-offcanvas {
    max-width: 300px;
}

.shop-filter-offcanvas .offcanvas-header {
    background: var(--kobiadam-primary);
    color: #fff;
}

.shop-filter-offcanvas .btn-close {
    filter: brightness(0) invert(1);
}

/* ============================================================
   MİNİ SEPET DROPDOWN
   ============================================================ */
.mini-cart-dropdown {
    min-width: 300px;
    padding: 0;
    border: none;
    box-shadow: var(--kobiadam-shadow-lg);
    border-radius: var(--kobiadam-radius);
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.mini-cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--kobiadam-border);
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.mini-cart-item .item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-dark);
}

.mini-cart-item .item-price {
    font-size: 13px;
    color: var(--kobiadam-primary);
}

.mini-cart-total {
    padding: 15px;
    background: var(--kobiadam-light);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.mini-cart-buttons {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.mini-cart-buttons .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px;
}

/* ============================================================
   DEVAM EDEN ALIŞVERİŞ
   ============================================================ */
.woocommerce .return-to-shop .button,
.kobiadam-continue-shopping {
    background: var(--kobiadam-light) !important;
    color: var(--kobiadam-primary) !important;
    border: 1px solid var(--kobiadam-border) !important;
}

.woocommerce .return-to-shop .button:hover,
.kobiadam-continue-shopping:hover {
    background: var(--kobiadam-primary) !important;
    color: #fff !important;
}


/* ============================================================
   WOO ÜRÜN GRID FALLBACK (ul.products)
   ============================================================ */
ul.products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

ul.products > li {
    list-style: none;
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
}

@media (max-width: 991.98px) {
    ul.products > li {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    ul.products > li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Row.products (custom loop-start) */
.row.products {
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}


/* ============================================================
   ÜRÜN DETAY SAYFA - BUTON DÜZELTMELERİ
   ============================================================ */
.product-info-box .btn {
    font-size: 13px;
    white-space: nowrap;
}

.product-buy-action {
    margin-bottom: 0;
}

.product-buy-action .single_add_to_cart_button {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--kobiadam-accent, #f59e0b), var(--kobiadam-accent-hover, #d97706)) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--kobiadam-transition) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.product-buy-action .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45) !important;
}

.product-buy-action .quantity {
    display: none;
}


/* ============================================================
   ÜRÜN DETAY - GÖRSEL TIKLANMA
   ============================================================ */
.product-gallery-wrapper {
    position: relative;
    cursor: pointer;
}

.product-main-image {
    width: 100%;
    border-radius: var(--kobiadam-radius-lg, 16px);
    box-shadow: var(--kobiadam-shadow);
    transition: transform 0.4s ease;
}

.product-gallery-wrapper:hover .product-main-image {
    transform: scale(1.02);
}


/* ============================================================
   ÜRÜN DETAY - TAB İÇERİĞİ TİPOGRAFİ
   ============================================================ */
.kobiadam-product-tabs .tab-pane h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--kobiadam-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    border-bottom: 2px solid var(--kobiadam-border);
    padding-bottom: 0.5rem;
}

.kobiadam-product-tabs .tab-pane h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.35;
    position: relative;
    padding-left: 14px;
}

.kobiadam-product-tabs .tab-pane h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(to bottom, var(--kobiadam-primary), var(--kobiadam-accent));
}

.kobiadam-product-tabs .tab-pane h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.kobiadam-product-tabs .tab-pane h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kobiadam-dark-light, #1e293b);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.kobiadam-product-tabs .tab-pane h5,
.kobiadam-product-tabs .tab-pane h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--kobiadam-gray);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.kobiadam-product-tabs .tab-pane p {
    font-size: 14px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 1rem;
}

.kobiadam-product-tabs .tab-pane ul,
.kobiadam-product-tabs .tab-pane ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.kobiadam-product-tabs .tab-pane li {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0.35rem;
}

.kobiadam-product-tabs .tab-pane ul li::marker {
    color: var(--kobiadam-primary);
}

.kobiadam-product-tabs .tab-pane ol li::marker {
    color: var(--kobiadam-primary);
    font-weight: 600;
}

.kobiadam-product-tabs .tab-pane img {
    max-width: 100%;
    height: auto;
    border-radius: var(--kobiadam-radius);
    margin: 1rem 0;
    box-shadow: var(--kobiadam-shadow-xs);
}

.kobiadam-product-tabs .tab-pane blockquote {
    border-left: 4px solid var(--kobiadam-primary);
    background: var(--kobiadam-light, #f8fafc);
    padding: 16px 20px;
    margin: 1rem 0;
    border-radius: 0 var(--kobiadam-radius-sm) var(--kobiadam-radius-sm) 0;
    font-style: italic;
    color: #475569;
}

.kobiadam-product-tabs .tab-pane pre,
.kobiadam-product-tabs .tab-pane code {
    background: var(--kobiadam-dark);
    color: #e2e8f0;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    border-radius: var(--kobiadam-radius-sm);
}

.kobiadam-product-tabs .tab-pane code {
    padding: 2px 6px;
    font-size: 13px;
}

.kobiadam-product-tabs .tab-pane pre {
    padding: 16px;
    overflow-x: auto;
    margin: 1rem 0;
}

.kobiadam-product-tabs .tab-pane table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 14px;
}

.kobiadam-product-tabs .tab-pane table th {
    background: var(--kobiadam-light, #f8fafc);
    font-weight: 600;
    padding: 10px 14px;
    border: 1px solid var(--kobiadam-border);
    text-align: left;
}

.kobiadam-product-tabs .tab-pane table td {
    padding: 10px 14px;
    border: 1px solid var(--kobiadam-border);
}

.kobiadam-product-tabs .tab-pane table tr:hover td {
    background: rgba(37, 99, 235, 0.02);
}

.kobiadam-product-tabs .tab-pane a {
    color: var(--kobiadam-primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kobiadam-product-tabs .tab-pane a:hover {
    color: var(--kobiadam-primary-dark, #1d4ed8);
}

.kobiadam-product-tabs .tab-pane hr {
    border: none;
    border-top: 1px solid var(--kobiadam-border);
    margin: 1.5rem 0;
}

/* Tab pane first heading - no top margin */
.kobiadam-product-tabs .tab-pane > h1:first-child,
.kobiadam-product-tabs .tab-pane > h2:first-child,
.kobiadam-product-tabs .tab-pane > h3:first-child,
.kobiadam-product-tabs .tab-pane > h4:first-child {
    margin-top: 0;
}


/* ============================================================
   MÜŞTERİ PANELİ - HESABIM SAYFASI
   ============================================================ */
.kobiadam-my-account {
    padding: 10px 0;
}

/* Sidebar */
.account-sidebar {
    background: var(--kobiadam-white);
    border-radius: var(--kobiadam-radius-lg);
    box-shadow: var(--kobiadam-shadow);
    overflow: hidden;
    border: 1px solid var(--kobiadam-border);
    position: sticky;
    top: 100px;
}

.account-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, var(--kobiadam-secondary), var(--kobiadam-dark));
    color: #fff;
}

.account-user-card .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.account-user-card .user-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.account-user-card .user-email {
    font-size: 12px;
    opacity: 0.7;
}

/* Nav */
.account-nav {
    display: flex;
    flex-direction: column;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    border-bottom: 1px solid var(--kobiadam-border);
    transition: var(--kobiadam-transition);
    text-decoration: none;
}

.account-nav-link:hover {
    background: var(--kobiadam-light);
    color: var(--kobiadam-primary);
    padding-left: 24px;
}

.account-nav-link.active {
    background: rgba(26, 86, 219, 0.06);
    color: var(--kobiadam-primary);
    font-weight: 600;
    border-left: 3px solid var(--kobiadam-primary);
}

.account-nav-link .material-symbols-outlined {
    font-size: 20px;
}

.account-nav-link .nav-arrow {
    margin-left: auto;
    font-size: 16px;
    opacity: 0.4;
}

.account-nav-link.active .nav-arrow {
    opacity: 1;
    color: var(--kobiadam-primary);
}

.account-nav-link.nav-logout {
    color: var(--kobiadam-danger);
    border-bottom: none;
}

.account-nav-link.nav-logout:hover {
    background: #fef2f2;
}

/* İçerik */
.account-content {
    background: var(--kobiadam-white);
    border-radius: var(--kobiadam-radius-lg);
    box-shadow: var(--kobiadam-shadow);
    padding: 28px;
    border: 1px solid var(--kobiadam-border);
    min-height: 400px;
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-welcome {
    background: linear-gradient(135deg, rgba(26,86,219,0.06) 0%, rgba(30,58,95,0.04) 100%);
    border-radius: var(--kobiadam-radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(26,86,219,0.1);
}

.dashboard-welcome h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--kobiadam-dark);
}

.dashboard-welcome p {
    font-size: 13px;
    color: var(--kobiadam-gray);
    margin: 0;
}

/* Stat Cards */
.dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: var(--kobiadam-radius);
    border: 1px solid var(--kobiadam-border);
    background: var(--kobiadam-white);
    transition: var(--kobiadam-transition);
}

.dashboard-stat-card:hover {
    box-shadow: var(--kobiadam-shadow-md);
    transform: translateY(-2px);
}

.dashboard-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-stat-card .stat-icon .material-symbols-outlined {
    font-size: 24px;
    color: #fff;
}

.stat-orders .stat-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.stat-spent .stat-icon { background: linear-gradient(135deg, #10b981, #059669); }
.stat-tickets .stat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--kobiadam-dark);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--kobiadam-gray);
}

/* Quick Actions */
.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--kobiadam-white);
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    text-decoration: none;
    color: var(--kobiadam-dark);
    font-size: 12px;
    font-weight: 600;
    transition: var(--kobiadam-transition);
    text-align: center;
}

.quick-action-card:hover {
    border-color: var(--kobiadam-primary);
    color: var(--kobiadam-primary);
    box-shadow: var(--kobiadam-shadow-md);
    transform: translateY(-2px);
}

.quick-action-card .material-symbols-outlined {
    font-size: 28px;
    color: var(--kobiadam-primary);
}

/* Dashboard Section */
.dashboard-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    background: var(--kobiadam-white);
    overflow: hidden;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.section-title-row h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: var(--kobiadam-dark);
}

.section-title-row h4 .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

.view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.view-all-link .material-symbols-outlined {
    font-size: 16px;
}

/* Dashboard Orders Table */
.dashboard-orders-table {
    overflow-x: auto;
}

.dashboard-orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-orders-table th {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--kobiadam-gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--kobiadam-light);
}

.dashboard-orders-table td {
    padding: 12px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--kobiadam-border);
    vertical-align: middle;
}

.dashboard-orders-table tr:last-child td {
    border-bottom: none;
}

/* Order Status Badge */
.order-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.order-status-badge-lg {
    padding: 6px 14px;
    font-size: 13px;
}

/* ============================================================
   SİPARİŞLERİM SAYFASI
   ============================================================ */
.kobiadam-orders-page {}

.orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.orders-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin: 0;
}

.orders-header h3 .material-symbols-outlined {
    color: var(--kobiadam-primary);
}

/* Order Cards */
.order-card {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--kobiadam-transition);
    background: var(--kobiadam-white);
}

.order-card:hover {
    box-shadow: var(--kobiadam-shadow-md);
    border-color: rgba(26,86,219,0.15);
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--kobiadam-light);
    padding: 12px 16px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.order-card-number strong {
    font-size: 14px;
    color: var(--kobiadam-dark);
}

.order-date {
    display: block;
    font-size: 12px;
    color: var(--kobiadam-gray);
    margin-top: 2px;
}

.order-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
}

.order-items-preview {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.order-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--kobiadam-border);
}

.order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-more {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: var(--kobiadam-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--kobiadam-gray);
}

.order-card-details {
    flex: 1;
    min-width: 0;
}

.order-item-names {
    font-size: 13px;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    margin-top: 2px;
}

.order-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 14px;
}

.order-card-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.order-card-actions .btn .material-symbols-outlined {
    font-size: 16px;
}

/* Orders pagination */
.orders-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.orders-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--kobiadam-radius-sm);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--kobiadam-border);
    color: #334155;
    text-decoration: none;
    transition: var(--kobiadam-transition);
}

.orders-pagination .page-numbers:hover,
.orders-pagination .page-numbers.current {
    background: var(--kobiadam-primary);
    color: #fff;
    border-color: var(--kobiadam-primary);
}

/* ============================================================
   SİPARİŞ DETAY SAYFASI
   ============================================================ */
.kobiadam-order-detail {}

.order-detail-header {
    margin-bottom: 24px;
}

.order-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--kobiadam-primary);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
}

.order-back-link .material-symbols-outlined {
    font-size: 18px;
}

.order-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.order-detail-title-row h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.order-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--kobiadam-gray);
    margin-top: 4px;
}

.order-detail-date .material-symbols-outlined {
    font-size: 16px;
}

/* Order Section */
.order-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    background: var(--kobiadam-white);
    margin-bottom: 20px;
    overflow: hidden;
}

.order-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.order-section-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

/* Order Items */
.order-items-list {
    padding: 0;
}

.order-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.order-detail-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--kobiadam-border);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 14px;
    margin: 0 0 2px;
}

.order-item-name a {
    color: var(--kobiadam-dark);
    text-decoration: none;
}

.order-item-name a:hover {
    color: var(--kobiadam-primary);
}

.order-item-code {
    font-size: 11px;
    color: var(--kobiadam-gray);
    display: block;
}

.order-item-qty {
    font-size: 12px;
    color: var(--kobiadam-gray);
}

.order-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    flex-shrink: 0;
}

/* Order Totals */
.order-totals-summary {
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-top: 1px solid var(--kobiadam-border);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #334155;
}

.order-total-row.discount {
    color: var(--kobiadam-success);
}

.order-total-row.grand-total {
    border-top: 2px solid var(--kobiadam-border);
    padding-top: 10px;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--kobiadam-primary);
}

/* Invoice */
.invoice-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.invoice-header-row .order-section-title {
    padding: 0;
    background: none;
    border: none;
}

.invoice-content {
    padding: 24px;
}

.invoice-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.invoice-company h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--kobiadam-primary);
}

.invoice-info {
    text-align: right;
}

.invoice-number {
    font-size: 14px;
    margin-bottom: 4px;
}

.invoice-customer {
    margin-bottom: 20px;
}

.invoice-customer h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.invoice-table th {
    background: var(--kobiadam-light);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--kobiadam-border);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.invoice-table td {
    padding: 10px 14px;
    font-size: 13px;
    border: 1px solid var(--kobiadam-border);
}

.invoice-table tfoot td {
    font-size: 13px;
}

.invoice-grand-total td {
    background: var(--kobiadam-light);
    font-size: 15px !important;
    color: var(--kobiadam-primary);
}

/* Order Info Cards (sağ kolon) */
.order-info-card {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    background: var(--kobiadam-white);
    padding: 16px;
    margin-bottom: 12px;
}

.order-info-card h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.order-info-card h5 .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-primary);
}

.order-info-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: var(--kobiadam-gray);
}

.order-info-card address {
    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}

.order-info-card .small {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.order-info-card .small .material-symbols-outlined {
    font-size: 14px;
}

/* ============================================================
   GİRİŞ / KAYIT SAYFASI
   ============================================================ */
.kobiadam-auth-page {
    padding: 40px 0 60px;
}

.auth-container {
    box-shadow: var(--kobiadam-shadow-lg);
    border-radius: var(--kobiadam-radius-xl);
    overflow: hidden;
}

.auth-card {
    padding: 36px 32px;
    height: 100%;
}

.auth-login {
    background: var(--kobiadam-white);
}

.auth-register {
    background: var(--kobiadam-light);
    border-left: 1px solid var(--kobiadam-border);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-icon {
    font-size: 40px;
    color: var(--kobiadam-primary);
    display: block;
    margin-bottom: 12px;
}

.auth-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--kobiadam-dark);
}

.auth-card-header p {
    font-size: 13px;
    color: var(--kobiadam-gray);
    margin: 0;
}

.auth-form-group {
    margin-bottom: 18px;
}

.auth-form-group .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    margin-bottom: 6px;
}

.auth-form-group .form-label .material-symbols-outlined {
    font-size: 16px;
    color: var(--kobiadam-primary);
}

.auth-form-group .form-control {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: var(--kobiadam-radius);
    border: 1px solid var(--kobiadam-border);
}

.auth-form-group .form-control:focus {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}

.lost-password-link {
    color: var(--kobiadam-primary);
    font-weight: 500;
}

.auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--kobiadam-radius);
}

.btn-accent {
    background: var(--kobiadam-accent);
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background: var(--kobiadam-accent-hover);
    color: #fff;
}

/* ============================================================
   SEPET SAYFASI (YENİ)
   ============================================================ */
.woocommerce-cart-form {
    width: 100%;
    max-width: 100%;
}

.kobiadam-cart-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* WC default cart_totals & collaterals — theme has custom layout */
.woocommerce-cart .woocommerce > .cart-collaterals,
.woocommerce-cart .entry-content > .cart-collaterals {
    display: none !important;
}

/* Page container overflow fix */
.woocommerce-cart .entry-content {
    overflow-x: hidden;
    max-width: 100%;
}

.cart-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius-lg);
    background: var(--kobiadam-white);
    overflow: hidden;
}

.cart-section-header {
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.cart-section-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.cart-section-header h4 .material-symbols-outlined {
    color: var(--kobiadam-primary);
}

/* Cart Items */
.cart-items-list {
    padding: 0;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--kobiadam-border);
    transition: var(--kobiadam-transition);
}

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

.cart-item:hover {
    background: rgba(26, 86, 219, 0.01);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--kobiadam-border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.cart-item-name a {
    color: var(--kobiadam-dark);
    text-decoration: none;
}

.cart-item-name a:hover {
    color: var(--kobiadam-primary);
}

.cart-item-code {
    font-size: 11px;
    color: var(--kobiadam-gray);
    display: block;
    margin-top: 2px;
}

/* Remove butonu — WC .remove class ile uyumlu */
.cart-item-remove,
.woocommerce-cart-form a.remove.cart-item-remove {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: var(--kobiadam-light) !important;
    color: var(--kobiadam-gray) !important;
    text-decoration: none !important;
    transition: var(--kobiadam-transition) !important;
    flex-shrink: 0;
    font-size: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.cart-item-remove:hover,
.woocommerce-cart-form a.remove.cart-item-remove:hover {
    background: #fef2f2 !important;
    color: var(--kobiadam-danger) !important;
}

.cart-item-remove .material-symbols-outlined {
    font-size: 16px;
    color: inherit;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-quantity .quantity .qty {
    width: 64px;
    padding: 6px 8px;
    text-align: center;
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius-sm);
    font-size: 13px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

/* Cart item data (domain, hosting, addons) */
.cart-item-details dl.variation {
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 12px;
    color: var(--kobiadam-gray);
}

.cart-item-details dl.variation dt {
    font-weight: 600;
    margin: 0;
    float: none;
}

.cart-item-details dl.variation dd {
    margin: 0;
    padding: 0;
    float: none;
}

.cart-item-details dl.variation dd p {
    margin: 0;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--kobiadam-light);
    border-top: 1px solid var(--kobiadam-border);
    gap: 12px;
    flex-wrap: wrap;
}

.cart-coupon {
    display: flex;
    gap: 8px;
}

.cart-coupon .form-control {
    width: 200px;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: var(--kobiadam-radius-sm);
}

.cart-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 8px 16px;
}

.cart-actions .btn .material-symbols-outlined {
    font-size: 16px;
}

/* Cart Totals */
.cart-totals-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius-lg);
    background: var(--kobiadam-white);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.cart-totals-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.cart-totals-title .material-symbols-outlined {
    color: var(--kobiadam-primary);
}

.cart-totals-body {
    padding: 16px 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cart-total-row:last-child {
    border-bottom: none;
}

.cart-total-row.grand-total {
    border-top: 2px solid var(--kobiadam-primary);
    padding-top: 12px;
    margin-top: 8px;
    font-weight: 700;
    font-size: 18px;
}

.grand-total-amount {
    color: var(--kobiadam-primary);
}

.cart-totals-footer {
    padding: 0 20px 16px;
}

.cart-totals-footer .checkout-button {
    width: 100%;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--kobiadam-accent), #d97706) !important;
    border-radius: var(--kobiadam-radius) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cart-totals-footer .checkout-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45) !important;
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--kobiadam-border);
    background: var(--kobiadam-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--kobiadam-gray);
}

.trust-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-success);
}

/* Empty Cart */
.kobiadam-empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon .material-symbols-outlined {
    font-size: 80px;
    color: var(--kobiadam-border);
    margin-bottom: 16px;
}

.kobiadam-empty-cart h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--kobiadam-dark);
}

.kobiadam-empty-cart p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cart-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.empty-cart-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   ÖDEME SAYFASI (YENİ)
   ============================================================ */
.kobiadam-checkout-page {}

.checkout-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius-lg);
    background: var(--kobiadam-white);
    overflow: hidden;
    margin-bottom: 20px;
}

.checkout-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.checkout-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kobiadam-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-step-number .material-symbols-outlined {
    font-size: 18px;
}

.checkout-section-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--kobiadam-dark);
}

.checkout-section-body {
    padding: 20px;
}

.checkout-section-body .woocommerce-billing-fields__field-wrapper,
.checkout-section-body .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.checkout-section-body .form-row {
    flex: 1 1 calc(50% - 14px);
    min-width: 230px;
    margin: 0 !important;
    padding: 0 !important;
}

.checkout-section-body .form-row-wide {
    flex: 1 1 100%;
}

.checkout-section-body label {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    margin-bottom: 4px;
    display: block;
}

.checkout-section-body .input-text,
.checkout-section-body select,
.checkout-section-body textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
    transition: var(--kobiadam-transition);
}

.checkout-section-body .input-text:focus,
.checkout-section-body select:focus,
.checkout-section-body textarea:focus {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    outline: none;
}

/* Checkout Order Review */
.checkout-order-review {
    position: sticky;
    top: 100px;
}

.checkout-order-review .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.checkout-order-review .woocommerce-checkout-review-order-table th,
.checkout-order-review .woocommerce-checkout-review-order-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.checkout-order-review .woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    border-bottom: none;
}

.checkout-order-review #payment {
    border-radius: var(--kobiadam-radius) !important;
    margin-top: 16px;
    padding: 16px !important;
    background: var(--kobiadam-light) !important;
}

.checkout-order-review #place_order {
    width: 100%;
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--kobiadam-accent), #d97706) !important;
    border-radius: var(--kobiadam-radius) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.checkout-order-review #place_order:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45) !important;
}

/* Checkout Trust */
.checkout-trust {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--kobiadam-light);
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--kobiadam-gray);
}

.trust-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--kobiadam-success);
}

/* ============================================================
   SİPARİŞ TAMAMLANDI (THANK YOU)
   ============================================================ */
.kobiadam-thankyou-page {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-status-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--kobiadam-radius-lg);
    margin-bottom: 24px;
}

.thankyou-status-card.status-success {
    background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(5,150,105,0.02));
    border: 1px solid rgba(16,185,129,0.15);
}

.thankyou-status-card.status-failed {
    background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(220,38,38,0.02));
    border: 1px solid rgba(239,68,68,0.15);
}

.thankyou-status-card.status-info {
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(37,99,235,0.02));
    border: 1px solid rgba(59,130,246,0.15);
}

.status-icon .material-symbols-outlined {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
}

.status-success .status-icon .material-symbols-outlined { color: var(--kobiadam-success); }
.status-failed .status-icon .material-symbols-outlined { color: var(--kobiadam-danger); }
.status-info .status-icon .material-symbols-outlined { color: var(--kobiadam-primary); }

.thankyou-status-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--kobiadam-dark);
}

.thankyou-status-card p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin: 0;
}

/* Info Grid */
.thankyou-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.thankyou-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--kobiadam-white);
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
}

.thankyou-info-card .material-symbols-outlined {
    font-size: 24px;
    color: var(--kobiadam-primary);
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 11px;
    color: var(--kobiadam-gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.thankyou-info-card strong {
    font-size: 14px;
    color: var(--kobiadam-dark);
}

/* Thankyou Section */
.thankyou-section {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    background: var(--kobiadam-white);
    overflow: hidden;
}

.thankyou-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 14px 20px;
    background: var(--kobiadam-light);
    border-bottom: 1px solid var(--kobiadam-border);
}

.thankyou-section h4 .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

/* Thankyou Items */
.thankyou-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--kobiadam-border);
}

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

.thankyou-item-image {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--kobiadam-border);
}

.thankyou-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thankyou-item-info {
    flex: 1;
    min-width: 0;
}

.thankyou-item-info h5 {
    font-size: 14px;
    margin: 0;
}

.thankyou-item-price {
    font-weight: 700;
    color: var(--kobiadam-primary);
    flex-shrink: 0;
}

/* Thankyou Totals */
.thankyou-totals {
    padding: 16px 20px;
    background: var(--kobiadam-light);
    border-top: 1px solid var(--kobiadam-border);
}

.thankyou-totals .total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.thankyou-totals .grand-total {
    border-top: 2px solid var(--kobiadam-border);
    padding-top: 10px;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--kobiadam-primary);
}

/* Address Cards */
.thankyou-address-card {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    background: var(--kobiadam-white);
    padding: 16px;
}

.thankyou-address-card h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--kobiadam-border);
}

.thankyou-address-card h5 .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-primary);
}

.thankyou-address-card address {
    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
}

.thankyou-address-card p {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    margin: 4px 0 0;
}

.thankyou-address-card p .material-symbols-outlined {
    font-size: 14px;
    color: var(--kobiadam-gray);
}

/* Thankyou Actions */
.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   DESTEK TALEPLERİ
   ============================================================ */
.kobiadam-tickets-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.kobiadam-tickets-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.kobiadam-tickets-header .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kobiadam-tickets-header .btn .material-symbols-outlined {
    font-size: 18px;
}

/* Empty State */
.kobiadam-empty-state {
    text-align: center;
    padding: 50px 24px;
}

.kobiadam-empty-state .material-symbols-outlined {
    font-size: 64px;
    color: var(--kobiadam-border);
    display: block;
    margin-bottom: 12px;
}

.kobiadam-empty-state h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--kobiadam-dark);
}

.kobiadam-empty-state p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin-bottom: 20px;
}

.kobiadam-empty-state .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Ticket Cards */
.ticket-card {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    padding: 14px 18px;
    margin-bottom: 10px;
    transition: var(--kobiadam-transition);
    background: var(--kobiadam-white);
}

.ticket-card:hover {
    box-shadow: var(--kobiadam-shadow-md);
    border-color: rgba(26,86,219,0.15);
}

.ticket-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ticket-id {
    font-size: 11px;
    color: var(--kobiadam-gray);
    font-weight: 600;
}

.ticket-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    text-decoration: none;
    margin-top: 2px;
}

.ticket-title:hover {
    color: var(--kobiadam-primary);
}

.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.ticket-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--kobiadam-gray);
}

.ticket-meta .material-symbols-outlined {
    font-size: 14px;
}

.ticket-card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ticket-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.ticket-priority-badge {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* Ticket Detail */
.ticket-detail-header {
    margin-bottom: 20px;
}

.ticket-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--kobiadam-primary);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
}

.ticket-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ticket-detail-title {
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0 0;
}

.ticket-detail-badges {
    display: flex;
    gap: 8px;
}

.ticket-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.ticket-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--kobiadam-gray);
}

.ticket-detail-meta .material-symbols-outlined {
    font-size: 16px;
}

/* Ticket Conversation */
.ticket-conversation {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.ticket-message {
    display: flex;
    gap: 12px;
}

.message-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.message-content {
    flex: 1;
    background: var(--kobiadam-light);
    border-radius: var(--kobiadam-radius);
    padding: 14px 16px;
    border: 1px solid var(--kobiadam-border);
}

.ticket-message-admin .message-content {
    background: rgba(26,86,219,0.04);
    border-color: rgba(26,86,219,0.12);
}

.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}

.message-header strong {
    font-size: 13px;
    color: var(--kobiadam-dark);
}

.admin-badge {
    font-size: 10px;
    background: var(--kobiadam-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 6px;
}

.message-date {
    font-size: 11px;
    color: var(--kobiadam-gray);
}

.message-body {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}

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

/* Reply Form */
.ticket-reply-form {
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    padding: 18px;
    background: var(--kobiadam-white);
}

.ticket-reply-form h5 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
}

.ticket-reply-form h5 .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-primary);
}

.ticket-reply-form .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Closed Notice */
.ticket-closed-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--kobiadam-light);
    border: 1px solid var(--kobiadam-border);
    border-radius: var(--kobiadam-radius);
    font-size: 14px;
    color: var(--kobiadam-gray);
}

.ticket-closed-notice .material-symbols-outlined {
    font-size: 18px;
}

/* ============================================================
   PRINT STYLES (FATURA YAZDIRMA)
   ============================================================ */
@media print {
    body * {
        visibility: hidden;
    }
    #printable-invoice,
    #printable-invoice * {
        visibility: visible;
    }
    #printable-invoice {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

/* ============================================================
   SEPETE EKLENDİ ALERT
   ============================================================ */
.kobiadam-cart-alert {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.kobiadam-cart-alert.active {
    opacity: 1;
    visibility: visible;
}

.cart-alert-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.cart-alert-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

.kobiadam-cart-alert.active .cart-alert-box {
    transform: scale(1) translateY(0);
}

.cart-alert-icon {
    margin-bottom: 16px;
}

.cart-alert-icon .material-symbols-outlined {
    font-size: 56px;
    color: var(--kobiadam-success, #10b981);
}

.cart-alert-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin: 0 0 8px;
}

.cart-alert-box p {
    font-size: 14px;
    color: var(--kobiadam-gray);
    margin: 0 0 24px;
}

.cart-alert-actions {
    display: flex;
    gap: 10px;
}

.btn-alert-continue,
.btn-alert-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.btn-alert-continue {
    background: var(--kobiadam-light, #f8fafc);
    color: var(--kobiadam-dark);
    border: 1px solid var(--kobiadam-border);
}

.btn-alert-continue:hover {
    background: #eef2f7;
    color: var(--kobiadam-dark);
}

.btn-alert-cart {
    background: var(--kobiadam-primary);
    color: #fff;
}

.btn-alert-cart:hover {
    background: var(--kobiadam-primary-dark, #1e40af);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.btn-alert-continue .material-symbols-outlined,
.btn-alert-cart .material-symbols-outlined {
    font-size: 18px;
}

/* Domain & Hosting compact in info-box */
.product-info-box .product-extras-section {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
}

.product-info-box .product-extras-section .extras-title {
    display: none;
}

.product-info-box .domain-input-group {
    margin-bottom: 8px;
}

.product-info-box .hosting-check-label {
    font-size: 13px;
    padding: 8px 12px;
    gap: 6px;
}

.product-info-box .hosting-check-label .material-symbols-outlined {
    font-size: 16px;
    color: var(--kobiadam-primary);
}

/* ===== Cart Alert Close Button ===== */
.cart-alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--kobiadam-light, #f1f5f9);
    color: var(--kobiadam-gray);
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s;
}

.cart-alert-close:hover {
    background: #e2e8f0;
    color: var(--kobiadam-dark);
}

/* ===== Cart Alert with Addons ===== */
.cart-alert-box.has-addons {
    max-width: 520px;
    padding: 32px 28px;
    text-align: left;
}

.cart-alert-box.has-addons .cart-alert-icon {
    text-align: center;
}

.cart-alert-box.has-addons h4 {
    text-align: center;
}

.cart-alert-box.has-addons > p {
    text-align: center;
    margin-bottom: 16px;
}

/* Addons Title */
.cart-alert-addons {
    margin-bottom: 20px;
}

.cart-alert-addons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--kobiadam-secondary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.cart-alert-addons-title .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-accent, #e67e22);
}

/* Addon Items List */
.cart-alert-addons-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 240px;
    overflow-y: auto;
}

.popup-addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    position: relative;
}

.popup-addon-item:hover {
    border-color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.03);
}

.popup-addon-item.selected {
    border-color: var(--kobiadam-primary);
    background: rgba(26, 86, 219, 0.06);
}

.popup-addon-check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.popup-addon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--kobiadam-light, #f1f5f9);
    flex-shrink: 0;
}

.popup-addon-icon .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-primary);
}

.popup-addon-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.popup-addon-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    line-height: 1.3;
}

.popup-addon-info small {
    font-size: 11px;
    color: var(--kobiadam-gray);
    line-height: 1.4;
    margin-top: 1px;
}

.popup-addon-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.popup-addon-price .free {
    color: var(--kobiadam-success, #10b981);
    font-weight: 600;
}

.popup-addon-tick {
    display: flex;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s;
}

.popup-addon-tick .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

.popup-addon-item.selected .popup-addon-tick {
    opacity: 1;
}

/* "Seçilenleri Sepete Ekle" Button */
.btn-alert-add-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: var(--kobiadam-accent, #e67e22);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.btn-alert-add-selected:hover {
    background: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-alert-add-selected .material-symbols-outlined {
    font-size: 18px;
}

.btn-alert-add-selected.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-alert-add-selected.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    margin-left: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Cart Page – Addon Suggestions ===== */
.kobiadam-cart-suggestions {
    margin-top: 32px;
    border: 1.5px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.cart-suggestions-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.cart-suggestions-header > .material-symbols-outlined {
    font-size: 28px;
    color: var(--kobiadam-accent, #e67e22);
}

.cart-suggestions-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kobiadam-dark);
    margin: 0;
}

.cart-suggestions-header p {
    font-size: 13px;
    color: var(--kobiadam-gray);
    margin: 2px 0 0;
}

.cart-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.cart-suggestion-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 12px;
    background: var(--kobiadam-light, #f8fafc);
    transition: all .2s;
}

.cart-suggestion-card:hover {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.08);
}

.cart-suggestion-card.added {
    opacity: 0.5;
    pointer-events: none;
}

.suggestion-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    flex-shrink: 0;
}

.suggestion-card-icon .material-symbols-outlined {
    font-size: 20px;
    color: var(--kobiadam-primary);
}

.suggestion-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.suggestion-card-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--kobiadam-dark);
    line-height: 1.3;
}

.suggestion-card-info small {
    font-size: 11px;
    color: var(--kobiadam-gray);
    line-height: 1.4;
    margin-top: 1px;
}

.suggestion-product-label {
    font-size: 10px;
    color: var(--kobiadam-primary);
    font-weight: 600;
    margin-top: 3px;
    opacity: 0.8;
}

.suggestion-card-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.suggestion-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--kobiadam-primary);
    white-space: nowrap;
}

.suggestion-price .free {
    color: var(--kobiadam-success, #10b981);
    font-weight: 600;
}

.btn-add-suggestion {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: var(--kobiadam-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.btn-add-suggestion:hover {
    background: var(--kobiadam-primary-dark, #1e40af);
    transform: translateY(-1px);
}

.btn-add-suggestion .material-symbols-outlined {
    font-size: 16px;
}

.btn-add-suggestion.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-add-suggestion.added {
    background: var(--kobiadam-success, #10b981);
    pointer-events: none;
}

/* ============================================================
   ÜRÜN KATEGORİ — SAYFALAMA (PAGINATION)
   ============================================================ */
.kobiadam-pagination {
    margin-top: 40px;
    padding-top: 28px;
    display: flex;
    justify-content: center;
}

.kobiadam-pagination .woocommerce-pagination {
    text-align: center;
}

.kobiadam-pagination .woocommerce-pagination ul,
.kobiadam-pagination nav.woocommerce-pagination ul {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 10px 16px !important;
    margin: 0 !important;
    border: none !important;
    background: var(--kobiadam-light, #f8f9fa) !important;
    border-radius: 50px !important;
    float: none !important;
}

.kobiadam-pagination .woocommerce-pagination ul li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    float: none !important;
    overflow: visible !important;
}

.kobiadam-pagination .woocommerce-pagination ul li a,
.kobiadam-pagination .woocommerce-pagination ul li span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    color: var(--kobiadam-dark, #1e293b) !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    position: relative;
    line-height: 1 !important;
    box-sizing: border-box !important;
    float: none !important;
}

.kobiadam-pagination .woocommerce-pagination ul li a:hover {
    background: #fff !important;
    color: var(--kobiadam-primary, #2563eb) !important;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15) !important;
    transform: scale(1.1);
}

.kobiadam-pagination .woocommerce-pagination ul li span.current {
    background: var(--kobiadam-primary, #2563eb) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
    cursor: default;
    transform: scale(1.05);
}

.kobiadam-pagination .woocommerce-pagination ul li span.dots {
    background: transparent !important;
    color: var(--kobiadam-gray, #64748b) !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    cursor: default;
    width: 32px !important;
    min-width: 32px !important;
}

.kobiadam-pagination .woocommerce-pagination ul li a.prev,
.kobiadam-pagination .woocommerce-pagination ul li a.next {
    font-size: 20px !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.kobiadam-pagination .woocommerce-pagination ul li a.prev:hover,
.kobiadam-pagination .woocommerce-pagination ul li a.next:hover {
    background: var(--kobiadam-primary, #2563eb) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
}

@media (max-width: 576px) {
    .kobiadam-pagination .woocommerce-pagination ul,
    .kobiadam-pagination nav.woocommerce-pagination ul {
        gap: 5px !important;
        padding: 8px 12px !important;
    }
    .kobiadam-pagination .woocommerce-pagination ul li a,
    .kobiadam-pagination .woocommerce-pagination ul li span {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 13px !important;
    }
}

/* ============================================================
   ARŞİV / KATEGORİ — CTA ALANI
   ============================================================ */
.archive-cta-section {
    margin-top: 40px;
}

.archive-cta-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f4ff 50%, #eef2ff 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.archive-cta-inner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.archive-cta-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--kobiadam-primary, #2563eb), var(--kobiadam-secondary, #1e40af));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.archive-cta-icon .material-symbols-outlined {
    font-size: 28px;
    color: #fff;
}

.archive-cta-content {
    flex: 1;
    min-width: 0;
}

.archive-cta-content h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
}

.archive-cta-content p {
    margin: 0;
    font-size: 14px;
    color: var(--kobiadam-gray, #64748b);
    line-height: 1.5;
}

.archive-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .archive-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .archive-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .archive-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   ÜRÜN DETAY — TAKSİT & YILLIK ÖDEME BİLGİSİ
   ============================================================ */
.product-payment-info {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.payment-info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-info-item:hover {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.payment-installment > .material-symbols-outlined {
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.payment-annual > .material-symbols-outlined {
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.payment-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
    line-height: 1.3;
}

.payment-info-item small {
    display: block;
    font-size: 11px;
    color: var(--kobiadam-gray, #64748b);
    margin-top: 2px;
}

/* ============================================================
   ÜRÜN DETAY — WHATSAPP BİLGİ AL BUTONU
   ============================================================ */
.btn-whatsapp-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.btn-whatsapp-info:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-info svg {
    flex-shrink: 0;
}

/* ============================================================
   ÜRÜN DETAY — MODERN DOMAIN & HOSTİNG
   ============================================================ */
.product-extras-modern {
    background: var(--kobiadam-light, #f8f9fa);
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 14px;
    padding: 20px;
    margin-top: 16px;
}

.extras-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.extras-section-header .material-symbols-outlined {
    font-size: 22px;
    color: var(--kobiadam-primary, #2563eb);
}

.extras-section-header strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
}

.domain-input-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 12px;
    padding: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}

.domain-input-modern:focus-within {
    border-color: var(--kobiadam-primary, #2563eb);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.domain-input-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kobiadam-primary, #2563eb);
    border-radius: 10px 0 0 10px;
    flex-shrink: 0;
}

.domain-input-icon .material-symbols-outlined {
    font-size: 22px;
    color: #fff;
}

.domain-input-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--kobiadam-dark, #1e293b);
    background: transparent;
}

.domain-input-field::placeholder {
    color: var(--kobiadam-gray, #94a3b8);
    font-weight: 400;
}

.domain-input-hint {
    position: absolute;
    right: 14px;
    font-size: 11px;
    color: var(--kobiadam-gray, #94a3b8);
    pointer-events: none;
}

.hosting-option-modern {
    display: block;
    cursor: pointer;
}

.hosting-option-modern .hosting-modern-check {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hosting-option-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s;
}

.hosting-option-modern:hover .hosting-option-inner {
    border-color: var(--kobiadam-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.hosting-modern-check:checked ~ .hosting-option-inner {
    border-color: var(--kobiadam-primary);
    background: rgba(37, 99, 235, 0.02);
}

.hosting-option-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kobiadam-primary, #2563eb), var(--kobiadam-secondary, #1e40af));
    border-radius: 10px;
    flex-shrink: 0;
}

.hosting-option-icon .material-symbols-outlined {
    font-size: 22px;
    color: #fff;
}

.hosting-option-info {
    flex: 1;
    min-width: 0;
}

.hosting-option-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
}

.hosting-option-info small {
    display: block;
    font-size: 12px;
    color: var(--kobiadam-gray, #64748b);
    margin-top: 2px;
}

.hosting-option-price {
    flex-shrink: 0;
}

.hosting-free-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #dcfce7;
    color: #059669;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
}

.hosting-paid-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--kobiadam-primary, #2563eb);
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
}

.hosting-check-indicator {
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
}

.hosting-check-indicator .material-symbols-outlined {
    font-size: 24px;
    color: var(--kobiadam-primary, #2563eb);
}

.hosting-modern-check:checked ~ .hosting-option-inner .hosting-check-indicator {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 576px) {
    .product-payment-info {
        flex-direction: column;
    }
    .domain-input-hint {
        display: none;
    }
}

/* ============================================================
   HESABIM — PAKETLERİM & YENİLEME
   ============================================================ */
.kobiadam-packages-section .packages-header {
    margin-bottom: 24px;
}

.kobiadam-packages-section .packages-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
    margin: 0 0 6px;
}

.kobiadam-packages-section .packages-header h3 .material-symbols-outlined {
    font-size: 24px;
    color: var(--kobiadam-primary, #2563eb);
}

.kobiadam-packages-section .packages-header p {
    font-size: 14px;
    color: var(--kobiadam-gray, #64748b);
    margin: 0;
}

.packages-empty {
    text-align: center;
    padding: 48px 20px;
    background: var(--kobiadam-light, #f8f9fa);
    border-radius: 16px;
    border: 1px dashed var(--kobiadam-border, #e5e7eb);
}

.packages-empty .material-symbols-outlined {
    font-size: 48px;
    color: var(--kobiadam-gray, #94a3b8);
    display: block;
    margin-bottom: 12px;
}

.packages-empty p {
    color: var(--kobiadam-gray, #64748b);
    margin-bottom: 16px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.package-card {
    background: #fff;
    border: 1px solid var(--kobiadam-border, #e5e7eb);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.package-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.package-card.expired {
    border-color: #fca5a5;
    background: #fef2f2;
}

.package-card.expiring-soon {
    border-color: #fcd34d;
    background: #fffbeb;
}

.package-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--kobiadam-border, #e5e7eb);
}

.package-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.package-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--kobiadam-dark, #1e293b);
    margin: 0 0 6px;
    line-height: 1.3;
}

.package-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card-body {
    padding: 16px 20px;
}

.package-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--kobiadam-gray, #64748b);
    margin-bottom: 8px;
}

.package-detail-row .material-symbols-outlined {
    font-size: 18px;
    color: var(--kobiadam-gray, #94a3b8);
}

.package-detail-row strong {
    margin-left: auto;
    color: var(--kobiadam-dark, #1e293b);
}

.package-detail-row .text-warning {
    color: #f59e0b !important;
}

.package-expiry-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
    margin: 10px 0;
}

.package-expiry-warning .material-symbols-outlined {
    font-size: 18px;
    color: #f59e0b;
}

.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--kobiadam-border, #e5e7eb);
    font-size: 13px;
    color: var(--kobiadam-gray, #64748b);
}

.package-price-row strong {
    font-size: 16px;
    color: var(--kobiadam-primary, #2563eb);
}

.package-card-footer {
    display: flex;
    gap: 8px;
    padding: 14px 20px;
    border-top: 1px solid var(--kobiadam-border, #e5e7eb);
    flex-wrap: wrap;
}

.package-renew-form {
    flex: 1;
}

.btn-package-renew {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--kobiadam-primary, #2563eb), var(--kobiadam-secondary, #1e40af));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-package-renew:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-package-renew .material-symbols-outlined {
    font-size: 18px;
}

.btn-package-view,
.btn-package-order {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--kobiadam-gray, #64748b);
    background: var(--kobiadam-light, #f1f5f9);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-package-view:hover,
.btn-package-order:hover {
    color: var(--kobiadam-primary, #2563eb);
    background: rgba(37, 99, 235, 0.08);
}

.btn-package-view .material-symbols-outlined,
.btn-package-order .material-symbols-outlined {
    font-size: 16px;
}

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