/* ============================================================
 * SOFTWARE only
 * Kaynak: Yedek (yeniden adlandirilmis / birlestirilmis)
 * Kural: bu dosya yalnizca bu kategori alanina aittir
 * ============================================================ */

/* --- source: css/softwares-page.css --- */
/**
 * CoreV2 â€” Yazılımlar sayfası (profesyonel vitrin)
 */
.sw-page,
.sw-card,
.sw-sidebar-panel {
    --sw-primary: var(--CoreV2-primary, var(--main-color, var(--cv2-primary)));
    --sw-primary-rgb: var(--cv2-primary-rgb);
    --sw-bg: var(--CoreV2-bg, var(--cv2-surface-page, #f8fafc));
    --sw-card-bg: var(--CoreV2-card-bg, #ffffff);
    --sw-border: var(--CoreV2-border, rgba(var(--cv2-primary-rgb), 0.08));
    --sw-text: var(--CoreV2-text-primary, #0f172a);
    --sw-muted: var(--CoreV2-text-secondary, #64748b);
    --sw-body: var(--CoreV2-text-primary, #334155);
    --sw-success: var(--cv2-success);
    --sw-t: 0.2s ease;
    --sw-r-xs: 4px;
    --sw-r-sm: 6px;
    --sw-r-md: 8px;
    --sw-r-lg: 12px;
}
.sw-page {
    max-width: var(--CoreV2-container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}
.sw-main {
    min-width: 0;
    width: 100%;
}
#sw-results {
    width: 100%;
    min-width: 0;
}
.sw-sidebar {
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 200;
}
.sw-sidebar-panel {
    background: var(--sw-card-bg, var(--cv2-surface-card, #ffffff));
    border: 1px solid rgba(var(--sw-primary-rgb), 0.1);
    border-radius: var(--cv2-radius-card, 14px);
    padding: 1.35rem 1.5rem;
}
.sw-sidebar-panel.is-centered {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
[data-theme="dark"] .sw-sidebar-panel {
    background: #1e293b;
    border-color: rgba(var(--sw-primary-rgb), 0.14);
}
.sw-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--sw-border);
}
.sw-panel-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--sw-r-sm);
    background: rgba(var(--sw-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-primary);
    font-size: 15px;
}
.sw-panel-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--sw-text);
    margin: 0;
}
.sw-field {
    margin-bottom: 0.9rem;
}
.sw-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sw-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sw-input,
.sw-select,
.sw-cat-dropdown-btn {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-r-md);
    background: var(--sw-card-bg);
    color: var(--sw-text);
    font-size: 0.875rem;
    box-sizing: border-box;
    transition: border-color var(--sw-t);
}
.sw-input:focus,
.sw-select:focus,
.sw-cat-dropdown-btn.open {
    outline: none;
    border-color: var(--sw-primary);
}
.sw-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
    padding-right: 2.25rem;
}
.sw-input-wrap {
    position: relative;
}
.sw-input-wrap .sw-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sw-muted);
    font-size: 15px;
    pointer-events: none;
}
.sw-input-wrap .sw-input {
    padding-left: 2.35rem;
}
.sw-search-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--sw-r-md);
    background: var(--sw-primary);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter var(--sw-t), transform var(--sw-t);
}
.sw-search-btn:hover {
    filter: brightness(1.06);
}
.sw-price-inputs {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.sw-price-inputs .sw-input {
    text-align: center;
    flex: 1;
}
.sw-price-sep {
    color: var(--sw-muted);
    font-size: 12px;
}
/* Featured sidebar */
.sw-featured-preview {
    display: block;
    border-radius: var(--sw-r-lg);
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    border: 1px solid var(--sw-border);
    position: relative;
}
.sw-featured-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.sw-featured-preview:hover img {
    transform: scale(1.03);
}
.sw-featured-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--cv2-primary-rgb), 0.82) 0%, transparent 55%);
}
.sw-featured-preview-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    z-index: 2;
    max-width: calc(100% - 16px);
}
.sw-featured-preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.1rem;
    z-index: 2;
}
.sw-featured-preview-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.sw-featured-preview-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    line-height: 1.4;
}
.sw-featured-preview-price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}
.sw-featured-preview-price-wrap .sw-feat-discount {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    background: var(--sw-primary);
    border-radius: 4px;
    line-height: 1.2;
}
.sw-featured-preview-price-wrap .sw-feat-price-old {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: line-through;
}
.sw-featured-preview-price {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0,  0, 0.45);
    padding: 3px 8px;
    border-radius: 6px;
    line-height: 1.2;
}
.sw-featured-preview-price-wrap .sw-price-free {
    color: var(--cv2-success);
    background: rgba(0, 0, 0, 0.35);
}
.sw-feat-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 0.75rem;
}
.sw-feat-item {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    border-radius: var(--sw-r-md);
    border: 1px solid var(--sw-border);
    background: var(--sw-card-bg);
    cursor: pointer;
    transition: border-color var(--sw-t), background var(--sw-t);
}
.sw-feat-item:hover,
.sw-feat-item.active {
    border-color: rgba(var(--sw-primary-rgb), 0.35);
    background: rgba(var(--sw-primary-rgb), 0.05);
}
.sw-feat-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--sw-r-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.sw-feat-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sw-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sw-feat-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sw-primary);
}
/* Toolbar */
.sw-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1.1rem;
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-r-lg);
}
.sw-count {
    font-size: 0.875rem;
    color: var(--sw-muted);
}
.sw-count strong {
    color: var(--sw-text);
}
.sw-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.sw-sort-btn,
.sw-view-btn {
    border-radius: var(--sw-r-md);
    border: 1px solid var(--sw-border);
    background: var(--sw-card-bg);
    color: var(--sw-body);
    font-size: 0.82rem;
    transition: all var(--sw-t);
}
.sw-sort-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.85rem;
    min-width: 140px;
    justify-content: space-between;
    cursor: pointer;
}
.sw-sort-btn:hover,
.sw-sort-btn.open {
    border-color: var(--sw-primary);
    color: var(--sw-primary);
}
.sw-sort-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-r-md);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}
.sw-sort-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.sw-sort-opt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
    cursor: pointer;
}
.sw-sort-opt:hover {
    background: rgba(var(--sw-primary-rgb), 0.06);
}
.sw-sort-opt.selected {
    color: var(--sw-primary);
    font-weight: 600;
}
.sw-view-btns {
    display: flex;
    gap: 3px;
}
.sw-view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.sw-view-btn.active,
.sw-view-btn:hover {
    background: var(--sw-primary);
    border-color: var(--sw-primary);
    color: #ffffff;
}
.sw-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.sw-chip {
    padding: 0.35rem 0.85rem;
    border-radius: var(--sw-r-md);
    border: 1px solid var(--sw-border);
    background: var(--sw-card-bg);
    color: var(--sw-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--sw-t);
}
.sw-chip:hover {
    border-color: var(--sw-primary);
    color: var(--sw-primary);
}
.sw-chip.active {
    background: var(--sw-primary);
    border-color: var(--sw-primary);
    color: #ffffff;
}
/* Product grid & cards â€” CoreV2 şekil sistemi (köşe kavis + gövde çentiği) */
.sw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    width: 100%;
}
.sw-grid.view-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sw-grid.view-list {
    grid-template-columns: 1fr;
}
.sw-grid.view-list .sw-card {
    flex-direction: row;
}
.sw-grid.view-list .sw-card-img {
    width: 280px;
    flex-shrink: 0;
    height: auto;
    min-height: 200px;
}
.sw-grid.view-list .sw-card-img img {
    height: 100%;
    min-height: 200px;
}
.sw-grid.view-list .sw-card-body {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: var(--cv2-radius-card-inner, 18px);
}
@keyframes swFadeIn {
    to { opacity: 1; }
}
.sw-page .sw-card {
    background: var(--sw-card-bg, var(--cv2-surface-card, #ffffff));
    border: 1px solid rgba(var(--sw-primary-rgb), 0.1);
    border-radius: var(--cv2-radius-card, 20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, border-color var(--sw-t), opacity 0.4s ease-out;
    opacity: 1;
    width: 100%;
    max-width: 100%;
}
@media (prefers-reduced-motion: no-preference) {
    .sw-page .sw-card {
        animation: swFadeIn 0.4s ease-out forwards;
    }
}
.sw-page .sw-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--sw-primary-rgb), 0.35);
}
.sw-page .sw-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.sw-page .sw-card-img > a {
    display: block;
    height: 100%;
}
.sw-page .sw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.sw-page .sw-card:hover .sw-card-img img {
    transform: scale(1.06);
}
.sw-page .sw-card-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    z-index: 3;
    max-width: calc(100% - 20px);
}
.sw-page .sw-tag,
.sw-page .sw-featured-preview-tags .sw-tag {
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    backdrop-filter: blur(6px);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sw-page .sw-tag-1 {
    background: rgba(var(--cv2-primary-rgb), 0.55);
}
.sw-page .sw-tag-2 {
    background: rgba(var(--sw-primary-rgb), 0.55);
}
.sw-page .sw-featured-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    text-align: center;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}
.sw-page .sw-featured-badge i {
    font-size: 11px;
}
.sw-page .sw-price-block {
    position: absolute;
    bottom: 42px;
    left: 14px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    max-width: calc(100% - 28px);
    pointer-events: none;
}
.sw-page .sw-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color-1-gradient, var(--sw-primary));
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 4px 11px;
    border-radius: var(--cv2-radius-btn, 18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.sw-page .sw-price-overlay {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--cv2-radius-input, 12px);
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-variant-numeric: tabular-nums;
}
.sw-page .sw-price-old {
    text-decoration: line-through;
    font-size: 15px;
    opacity: 0.75;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.sw-page .sw-price-cur {
    font-weight: 700;
    white-space: nowrap;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
}
.sw-page .sw-price-current,
.ws-carousel-inner .sw-price-current {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.sw-page .sw-price-free {
    color: var(--cv2-success);
    font-weight: 700;
}
.sw-page .sw-card-body {
    padding: 18px 18px 16px;
    margin-top: -24px;
    position: relative;
    background: var(--sw-card-bg);
    border-top-left-radius: var(--cv2-radius-card-inner, 20px);
    border-top-right-radius: var(--cv2-radius-card-inner, 20px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}
/* Şekil çentiği â€” sağ üst köşe */
.sw-page .sw-card-body::before {
    content: "";
    position: absolute;
    right: -22px;
    top: -24px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    box-shadow: none;
    pointer-events: none;
}
.sw-page .sw-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sw-text);
    line-height: 1.4;
    margin: 0 0 6px;
    text-decoration: none;
    display: block;
}
.sw-page .sw-card-title:hover {
    color: var(--sw-primary);
}
.sw-page .sw-card-desc {
    font-size: 0.82rem;
    color: var(--sw-muted);
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sw-page .sw-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.sw-page .sw-card-actions .ws-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--cv2-radius-btn, 10px);
    min-height: 38px;
    text-decoration: none;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}
.sw-page .sw-card-actions .ws-button::before {
    display: none;
}
.sw-page .sw-card-actions .ws-button i.hki-stroke {
    display: inline-block;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    font-size: 14px;
    line-height: 1;
    color: inherit;
}
.sw-page .sw-card-actions .ws-button i.hki-stroke::before {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
}
.sw-page .sw-card-actions .ws-button svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.sw-page .sw-card-actions .ws-button-outline-light i.hki-stroke {
    color: var(--sw-primary);
}
.sw-page .sw-card-actions .ws-button-primary i.hki-stroke {
    color: #ffffff;
}
.sw-page .sw-card-actions .ws-button-outline-light {
    background: rgba(var(--sw-primary-rgb), 0.06);
    color: var(--sw-primary);
    border: 1.5px dashed rgba(var(--sw-primary-rgb), 0.38);
}
.sw-page .sw-card-actions .ws-button-outline-light:hover {
    background: rgba(var(--sw-primary-rgb), 0.12);
    transform: translateY(-2px);
}
.sw-page .sw-card-actions .ws-button-primary {
    background: var(--theme-color-1-gradient, var(--sw-primary));
    color: #ffffff;
    border: none;
    outline: none;
}
.sw-page .sw-card-actions .ws-button-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}
/* Kampanya geri sayım â€” kart içi (orijinal tasarım) */
.sw-page .sw-pack-countdown {
    background: linear-gradient(135deg, rgba(var(--sw-primary-rgb), 0.14), rgba(var(--sw-primary-rgb), 0.06));
    border: 1px solid rgba(var(--sw-primary-rgb), 0.22);
    border-radius: var(--cv2-radius-input, 10px);
    padding: 0.55rem 0.75rem;
    margin-bottom: 0.65rem;
}
.sw-page .sw-pack-countdown .countdown-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--sw-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.sw-page .sw-pack-countdown .countdown-title i {
    font-size: 12px;
}
.sw-page .sw-pack-countdown .countdown-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}
.sw-page .sw-pack-countdown .countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--sw-card-bg);
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
    min-width: 30px;
    border: 1px solid rgba(var(--sw-primary-rgb), 0.12);
}
.sw-page .sw-pack-countdown .countdown-num {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--sw-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.sw-page .sw-pack-countdown .countdown-label {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--sw-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.sw-page .sw-pack-countdown .countdown-sep {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--sw-primary);
    line-height: 1;
    padding: 0 0.1rem;
    margin-bottom: 0.75rem;
}
/* Category dropdown */
.sw-cat-wrap {
    position: relative;
}
.sw-cat-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-r-md);
    z-index: 1000;
    max-height: 260px;
    overflow-y: auto;
    padding: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}
.sw-cat-dropdown-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.sw-cat-option {
    padding: 0.55rem 0.75rem;
    border-radius: var(--sw-r-sm);
    cursor: pointer;
    font-size: 0.84rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}
.sw-cat-option:hover {
    background: rgba(var(--sw-primary-rgb), 0.07);
}
.sw-cat-option.selected {
    background: var(--sw-primary);
    color: #ffffff;
    font-weight: 600;
}
.sw-cat-count {
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: var(--sw-r-xs);
    background: rgba(var(--sw-primary-rgb), 0.1);
}
.sw-cat-option.selected .sw-cat-count {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}
/* Misc */
.sw-no-result {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--sw-muted);
}
.sw-loader {
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid rgba(var(--sw-primary-rgb), 0.15);
    border-top-color: var(--sw-primary);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    animation: swSpin 0.8s linear infinite;
    z-index: 10;
    display: none;
}
.sw-loader.active {
    display: block;
}
@keyframes swSpin {
    to { transform: translateX(-50%) rotate(360deg); }
}
.sw-main.is-loading .sw-grid {
    opacity: 0.45;
    pointer-events: none;
}
.sw-pagination {
    grid-column: 1 / -1;
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.sw-pagination a,
.sw-pagination strong {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border-radius: var(--sw-r-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--sw-border);
    background: var(--sw-card-bg);
    color: var(--sw-body);
}
.sw-pagination strong {
    background: var(--sw-primary);
    border-color: var(--sw-primary);
    color: #ffffff;
}
.sw-show-more-btn {
    border-radius: var(--sw-r-md);
    padding: 0.65rem 1.75rem;
    font-weight: 600;
}
/* Process / content sections */
.ys-process-section {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--sw-card-bg);
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-r-lg);
}
.ys-process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.ys-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem;
}
.ys-process-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--sw-r-md);
    background: rgba(var(--sw-primary-rgb), 0.1);
    color: var(--sw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ys-process-icon i {
    font-size: 20px;
}
.ys-process-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sw-text);
    margin: 0;
}
.ys-process-connector {
    width: 32px;
    height: 2px;
    background: rgba(var(--sw-primary-rgb), 0.2);
    border-radius: 2px;
}
.ys-process-step.is-active .ys-process-icon {
    background: var(--sw-primary);
    color: #ffffff;
}
.ys-process-step.is-active .ys-process-icon i {
    color: #ffffff;
}
.ys-process-content {
    max-height: 420px;
    overflow-y: auto;
    padding: 0.75rem 1rem;
}
.ys-process-content-inner {
    color: var(--sw-body);
    line-height: 1.75;
    font-size: 1rem;
}
.contentvibox-card {
    border-radius: var(--sw-r-lg);
    border: 1px solid var(--sw-border);
}
.sw-sort-wrap {
    position: relative;
}
.sw-cat-dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
.sw-range-wrap {
    padding: 0 4px;
}
.sw-range-track {
    position: relative;
    height: 6px;
    background: rgba(var(--sw-primary-rgb), 0.12);
    border-radius: var(--sw-r-xs);
    margin: 1rem 0 0.35rem;
}
.sw-range-fill {
    position: absolute;
    height: 6px;
    background: var(--sw-primary);
    border-radius: var(--sw-r-xs);
    top: 0;
}
.sw-range-thumb {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--sw-primary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sw-range-vals {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--sw-muted);
}
.sw-range-vals strong {
    color: var(--sw-primary);
}
.sw-show-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
/* Dark mode: base theme tokens yeterli */
[data-theme="dark"] .sw-page .sw-card-body::before {
    box-shadow: none;
}
[data-theme="dark"] .sw-page .sw-card-title {
    color: #f1f5f9;
}
[data-theme="dark"] .sw-page .sw-card-desc {
    color: #94a3b8;
}
[data-theme="dark"] .sw-page .sw-pack-countdown .countdown-block {
    background: #0f172a;
    border-color: rgba(var(--sw-primary-rgb), 0.2);
}
[data-theme="dark"] .sw-page .sw-card-actions .ws-button-outline-light {
    background: rgba(var(--sw-primary-rgb), 0.1);
    color: var(--cv2-header-glass-bg);
    border-color: rgba(var(--sw-primary-rgb), 0.35);
}
[data-theme="dark"] .sw-toolbar,
[data-theme="dark"] .sw-chip,
[data-theme="dark"] .sw-sort-btn,
[data-theme="dark"] .sw-view-btn {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}
[data-theme="dark"] .sw-input,
[data-theme="dark"] .sw-select,
[data-theme="dark"] .sw-cat-dropdown-btn {
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
/* Responsive */
@media (max-width: 1100px) {
    .sw-grid:not(.view-list) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 960px) {
    .sw-page {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .sw-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .sw-main {
        order: 1;
    }
    .sw-sidebar {
        order: 2;
        margin-top: 1rem;
    }
}
@media (max-width: 640px) {
    .sw-sidebar {
        grid-template-columns: 1fr;
    }
    .sw-grid,
    .sw-grid.view-2 {
        grid-template-columns: 1fr;
    }
    .sw-grid.view-list .sw-card {
        flex-direction: column;
    }
    .sw-grid.view-list .sw-card-img {
        width: 100%;
        min-height: 0;
    }
    .sw-card-desc {
        display: none;
    }
    .sw-grid.view-list .sw-card-desc {
        display: -webkit-box;
    }
    .sw-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .sw-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 400px) {
    .sw-page .sw-card-img { height: 160px; }
    .sw-page .sw-card-body { padding: 0.85rem; }
    .sw-page .sw-card-title { font-size: 0.92rem; }
    .sw-toolbar-right { flex-wrap: wrap; gap: 0.4rem; }
    .sw-view-btn, .sw-sort-btn { padding: 0.45rem 0.6rem; font-size: 0.78rem; }
    .sw-chip { padding: 0.28rem 0.65rem; font-size: 0.75rem; }
}

/* Dark mode iyileştirmeleri */
[data-theme="dark"] .sw-input:focus,
[data-theme="dark"] .sw-select:focus,
[data-theme="dark"] .sw-cat-dropdown-btn.open {
    border-color: var(--sw-primary);
    background: rgba(var(--sw-primary-rgb), 0.08);
}
[data-theme="dark"] .sw-cat-dropdown-menu {
    background: #1e293b;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
[data-theme="dark"] .sw-cat-option:hover {
    background: rgba(var(--sw-primary-rgb), 0.12);
}
[data-theme="dark"] .sw-pagination a {
    background: #1e293b;
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}
[data-theme="dark"] .sw-pagination a:hover {
    border-color: var(--sw-primary);
    color: var(--sw-primary);
}
[data-theme="dark"] .sw-no-result {
    color: #64748b;
}
[data-theme="dark"] .ys-process-section {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .ys-process-content-inner {
    color: #cbd5e1;
}

@media (prefers-reduced-motion: reduce) {
    .sw-page .sw-card { transition: none; animation: none; }
    .sw-featured-preview img { transition: none; }
    .sw-search-btn, .sw-chip, .sw-view-btn, .sw-sort-btn { transition: none; }
}

/* CoreV2 software detail related carousel parity */
.ys-page-wrapper + .ws-main-wrapper .ws-product-carousel-container {
  min-width: 0;
}
.ys-page-wrapper + .ws-main-wrapper .ws-carousel-wrapper,
.ys-page-wrapper + .ws-main-wrapper .ws-product-carousel {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner {
  display: flex;
  width: auto;
  min-width: 0;
  max-width: none;
  gap: 15px;
  transition: transform .6s cubic-bezier(.65, 0, .35, 1);
}
@media (min-width: 1025px) {
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .ws-product-card {
    flex: 0 0 calc((100% - 30px) / 3);
    width: calc((100% - 30px) / 3);
    min-width: 0;
    max-width: none;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .sw-card {
    flex: 0 0 calc((100% - 30px) / 3);
    width: calc((100% - 30px) / 3);
    min-width: 0;
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .ys-page-wrapper + .ws-main-wrapper .ws-product-carousel {
    overflow-x: auto;
    overflow-y: clip;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-product-carousel::-webkit-scrollbar {
    display: none;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner {
    transform: none;
    transition: none;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .ws-product-card {
    scroll-snap-align: start;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .sw-card {
    scroll-snap-align: start;
  }
}
@media (max-width: 768px) {
  .ys-page-wrapper + .ws-main-wrapper .ws-product-carousel-container {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 20px;
    padding: 20px 0;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-header-area {
    display: block;
    padding: 0 20px;
    text-align: center;
    order: 1;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-wrapper {
    display: block;
    order: 2;
    width: 100%;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner {
    padding: 10px 20px;
    gap: 16px;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .ws-product-card {
    width: 85%;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    flex-grow: 0;
    scroll-snap-align: center;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-inner .sw-card {
    width: 85%;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    flex-grow: 0;
    scroll-snap-align: center;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-controls {
    display: none;
  }
  .ys-page-wrapper + .ws-main-wrapper .ws-carousel-pagination {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WS-PRODUCT-CAROUSEL STYLES FOR SOFTWARE DETAIL PAGE
   Ana sayfadaki benzer yazılımlar carousel tasarımı
═══════════════════════════════════════════════════════════════════════════ */

.ws-main-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: var(--CoreV2-container-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.ws-main-wrapper .ws-product-carousel-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
    padding: 25px;
    background: rgba(var(--CoreV2-primary-rgb), 0.08);
    border-radius: var(--cv2-radius-card, 16px);
    align-items: center;
    max-width: var(--CoreV2-container-width);
    margin: 0 auto;
}

.ws-main-wrapper .ws-carousel-header-area { 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-main-wrapper .ws-title-area { text-align: center; }
.ws-main-wrapper .ws-product-carousel { overflow: hidden; }

.ws-main-wrapper .ws-carousel-inner {
    display: flex;
    padding: 10px 0;
    gap: 15px;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.ws-main-wrapper .ws-product-card,
.ws-main-wrapper .ws-carousel-inner .sw-card {
    flex-shrink: 0;
    width: calc((100% - 30px) / 3);
    min-width: 290px;
    background: var(--cv2-surface-card, var(--bg-card, #ffffff));
    border: 1px solid rgba(var(--cv2-primary-rgb), 0.1);
    border-radius: var(--cv2-radius-card, 26px);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease;
    animation: none;
    opacity: 1;
}

@keyframes wsFadeIn { to { opacity: 1; } }

.ws-main-wrapper .ws-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    text-align: center;
    z-index: 4;
}

.ws-main-wrapper .ws-featured-overlay span {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ws-main-wrapper .ws-product-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ws-main-wrapper .ws-tag-item {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--cv2-radius-chip, 20px);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}

.ws-main-wrapper .ws-tag-item.tag--mobile { background: rgba(var(--cv2-primary-rgb),0.47); }
.ws-main-wrapper .ws-tag-item.tag--language { background: rgba(var(--CoreV2-primary-rgb), 0.5); }

.ws-main-wrapper .ws-price-overlay {
    position: absolute;
    bottom: 34px;
    left: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--cv2-radius-input, 12px);
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.1);
}

.ws-main-wrapper .ws-price-old { 
    text-decoration: line-through; 
    font-size: 12px; 
    opacity: 0.7; 
    font-weight: 400; 
}

.ws-main-wrapper .ws-price-free { 
    color: var(--cv2-success); 
    font-weight: 700; 
}

.ws-main-wrapper .ws-product-body {
    padding: 20px 20px 18px;
    margin-top: -28px;
    position: relative;
    background: var(--bg-card, #ffffff);
    border-top-left-radius: var(--cv2-radius-card-inner, 25px);
    border-top-right-radius: var(--cv2-radius-card-inner, 25px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-main-wrapper .ws-product-body::before {
    content: "";
    position: absolute;
    right: -23px;
    top: -27px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.ws-main-wrapper .ws-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 6px;
    display: block;
    transition: color 0.22s ease;
    text-decoration: none;
}

.ws-main-wrapper .ws-product-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ws-main-wrapper .ws-product-actions .ws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: filter .22s ease, transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    transform: none;
    flex-direction: row;
    gap: 7px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--cv2-radius-btn, 24px);
    min-height: 44px;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}

.ws-main-wrapper .ws-product-actions .ws-button:hover {
    transform: translateY(-2px);
}

.ws-main-wrapper .ws-product-actions .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb),.06);
    color: var(--CoreV2-primary,var(--cv2-primary));
    border: 1.5px dashed rgba(var(--cv2-primary-rgb),.4);
}

.ws-main-wrapper .ws-product-actions .ws-button-outline-light:hover {
    background: rgba(var(--cv2-primary-rgb),.14);
    border-color: rgba(var(--cv2-primary-rgb),.55);
}

.ws-main-wrapper .ws-product-actions .ws-button-primary {
    background: var(--theme-color-1-gradient,var(--CoreV2-primary,var(--cv2-primary)));
    color: #ffffff;
    border: none;
    outline: 2px solid rgba(var(--cv2-primary-rgb),.25);
    outline-offset: 3px;
}

.ws-main-wrapper .ws-product-actions .ws-button-primary:hover {
    filter: brightness(1.08);
}

.ws-main-wrapper .ws-carousel-controls {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -22px;
    right: -22px;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.ws-main-wrapper .ws-carousel-btn {
    background: var(--ys-card, #ffffff);
    color: var(--ys-text, #1e293b);
    border: 1px solid var(--ys-border, rgba(var(--cv2-primary-rgb),.12));
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.ws-main-wrapper .ws-carousel-btn:hover { 
    background: var(--CoreV2-primary, var(--cv2-primary));
    color: #ffffff;
    transform: scale(1.1); 
}

.ws-main-wrapper .ws-carousel-btn.disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
    transform: scale(1); 
}

.ws-main-wrapper .ws-carousel-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.ws-main-wrapper .ws-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: var(--ys-muted, #64748b);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border: none;
    padding: 0;
}

.ws-main-wrapper .ws-pagination-dot.active {
    width: 40px;
    opacity: 1;
    background: var(--CoreV2-primary, var(--cv2-primary));
}

.ws-main-wrapper .CoreV2-view-all-container { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.ws-main-wrapper .CoreV2-view-all-container::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, rgba(var(--CoreV2-primary-rgb), 0.3), transparent);
}

.ws-main-wrapper .CoreV2-view-all-container::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(var(--CoreV2-primary-rgb), 0.3), transparent);
}

[data-theme="dark"] .ws-main-wrapper .CoreV2-view-all-container::before {
    background: linear-gradient(to left, rgba(var(--CoreV2-primary-rgb), 0.4), transparent);
}

[data-theme="dark"] .ws-main-wrapper .CoreV2-view-all-container::after {
    background: linear-gradient(to right, rgba(var(--CoreV2-primary-rgb), 0.4), transparent);
}

@media (max-width: 767px) { 
    .ws-main-wrapper .CoreV2-view-all-container { 
        margin-top: 20px; 
        gap: 10px; 
    } 
}

.ws-main-wrapper .CoreV2-view-all-link {
    border-radius: 18px;
    background: var(--cv2-surface-card, #ffffff);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-primary, #212529);
    text-decoration: none;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
    font-size: 12px;
    max-width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
}

.ws-main-wrapper .CoreV2-link-desc { 
    font-size: 12px; 
    color: var(--text-secondary, #64748b); 
    font-weight: var(--fw-body, 400); 
    margin-left: 5px; 
}

.ws-main-wrapper .CoreV2-view-all-link span:first-child { 
    font-weight: var(--fw-bold, 700); 
    color: var(--CoreV2-primary, var(--color-primary)); 
}

[data-theme="dark"] .ws-main-wrapper .CoreV2-view-all-link { 
    background: var(--cv2-surface-card, #171F2E); 
    color: #f1f5f9; 
}

[data-theme="dark"] .ws-main-wrapper .CoreV2-link-desc { 
    color: #f1f5f9; 
}

[data-theme="dark"] .ws-main-wrapper .CoreV2-view-all-link span:first-child { 
    color: var(--CoreV2-primary); 
}

.ws-main-wrapper .CoreV2-view-all-link:hover { 
    transform: translateY(-2px); 
}

.ws-main-wrapper .CoreV2-view-all-link svg { 
    color: var(--CoreV2-primary); 
    transition: transform 0.3s ease; 
}

@keyframes cv2-slide-arrow { 
    0%, 100% { transform: translateX(0); } 
    50% { transform: translateX(3px); } 
}

.ws-main-wrapper .CoreV2-view-all-link:hover svg { 
    animation: cv2-slide-arrow 0.6s ease-in-out; 
}

@media (max-width: 767px) {
    .ws-main-wrapper .CoreV2-view-all-link { 
        padding: 8px 14px; 
        font-size: 11px; 
        gap: 4px; 
    }
    .ws-main-wrapper .CoreV2-link-desc { 
        display: none; 
    }
}

/* Dark Mode */
[data-theme="dark"] .ws-main-wrapper .ws-product-card {
    background: var(--cv2-surface-card, #171F2E);
    border-color: rgba(var(--cv2-primary-rgb),.15);
}

[data-theme="dark"] .ws-main-wrapper .ws-product-body {
    background: #1e293b;
}

[data-theme="dark"] .ws-main-wrapper .ws-product-actions .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb),.1);
    color: rgba(255,255,255,.92);
    border: 1.5px dashed rgba(var(--cv2-primary-rgb),.35);
}

[data-theme="dark"] .ws-main-wrapper .ws-product-actions .ws-button-outline-light:hover {
    background: rgba(var(--cv2-primary-rgb),.2);
    color: #ffffff;
    border-color: rgba(var(--cv2-primary-rgb),.5);
}

/* Responsive */
@media (min-width: 769px) { 
    .ws-main-wrapper .ws-carousel-controls { 
        display: none; 
    } 
}

@media (max-width: 1024px) {
    .ws-main-wrapper .ws-product-carousel-container { 
        grid-template-columns: 200px 1fr; 
    }
    
    .ws-main-wrapper .ws-product-carousel {
        overflow-x: auto;
        overflow-y: clip;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        touch-action: pan-x;
    }
    
    .ws-main-wrapper .ws-product-carousel::-webkit-scrollbar { 
        display: none; 
    }
    
    .ws-main-wrapper .ws-product-carousel.is-drag-scroll { 
        cursor: grabbing; 
        scroll-snap-type: none; 
    }
    
    .ws-main-wrapper .ws-carousel-inner {
        transform: none;
        transition: none;
    }
    
    .ws-main-wrapper .ws-carousel-inner .ws-product-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ws-main-wrapper .ws-product-carousel-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 20px;
        padding: 20px 0;
    }
    
    .ws-main-wrapper .ws-title-area {
        display: block;
        padding: 0 20px;
        text-align: center;
        order: 1;
    }
    
    .ws-main-wrapper .ws-carousel-wrapper {
        display: block;
        order: 2;
        width: 100%;
    }
    
    .ws-main-wrapper .ws-product-carousel {
        overflow-x: auto;
        overflow-y: clip;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        padding: 0;
    }
    
    .ws-main-wrapper .ws-carousel-inner {
        display: flex;
        flex-direction: row;
        padding: 10px 20px;
        gap: 16px;
    }
    
    .ws-main-wrapper .ws-carousel-inner .ws-product-card {
        width: 85%;
        min-width: 280px;
        max-width: 340px;
        scroll-snap-align: center;
        flex-shrink: 0;
        flex-grow: 0;
    }
    
    .ws-main-wrapper .ws-price-overlay {
        bottom: 38px;
        left: 10px;
        gap: 6px;
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .ws-main-wrapper .ws-product-actions {
        gap: 6px;
    }
    
    .ws-main-wrapper .ws-product-actions .ws-button {
        padding: 10px 10px;
        font-size: 12px;
        gap: 5px;
        min-height: 42px;
    }
    
    
    .ws-main-wrapper .ws-carousel-pagination { 
        display: flex; 
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GENELBASLIK STYLES FOR WS-MAIN-WRAPPER SECTION
   Başlık ve rozet stilleri - ANA SAYFA İLE BİREBİR AYNI
═══════════════════════════════════════════════════════════════════════════ */

.ws-main-wrapper .genelbaslik {
    text-align: center;
    margin-bottom: 12px;
    margin-top: 0;
}

.ws-main-wrapper .genelbaslik-rozet-kapsayici {
    margin-bottom: 15px;
    text-align: center;
}

.ws-main-wrapper .genelbaslik-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--CoreV2-primary-rgb), 0.08);
    border: none;
    border-radius: 50px;
    padding: 4px 16px 4px 4px;
    transition: all 0.25s ease;
}

.ws-main-wrapper .genelbaslik-rozet-ikon {
    background: var(--CoreV2-gradient-primary, linear-gradient(135deg, var(--CoreV2-primary, var(--cv2-primary)), color-mix(in srgb, var(--CoreV2-primary, var(--cv2-primary)) 70%, #ffffff)));
    border-radius: 50px;
    padding: 5px 11px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.ws-main-wrapper .genelbaslik-rozet-metin { 
    font-size: 13px; 
    color: var(--CoreV2-primary); 
    letter-spacing: -0.04em; 
    display: inline; 
    font-weight: 500; 
    white-space: nowrap; 
}

.ws-main-wrapper .genelbaslik-ana-baslik {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: var(--ys-text, #1e293b);
    margin: 8px 0 0;
}

.ws-main-wrapper .genelbaslik-vurgu { 
    color: var(--CoreV2-primary); 
}

.ws-main-wrapper .genelbaslik-aciklama {
    font-size: 16px;
    line-height: 1.45;
    color: var(--ys-muted, #64748b);
    width: 100%;
    max-width: 640px;
    margin: 10px auto 0;
}

/* Dark Mode for genelbaslik */
[data-theme="dark"] .ws-main-wrapper .genelbaslik-rozet { 
    background: rgba(var(--CoreV2-primary-rgb),.12); 
    border-color: rgba(var(--CoreV2-primary-rgb),.2); 
}

[data-theme="dark"] .ws-main-wrapper .genelbaslik-rozet-ikon { 
    color: #ffffff; 
}

[data-theme="dark"] .ws-main-wrapper .genelbaslik-rozet-metin { 
    color: var(--CoreV2-primary); 
}

[data-theme="dark"] .ws-main-wrapper .genelbaslik-vurgu { 
    color: var(--CoreV2-primary); 
}

[data-theme="dark"] .ws-main-wrapper .genelbaslik-ana-baslik {
    color: #f1f5f9;
}

[data-theme="dark"] .ws-main-wrapper .genelbaslik-aciklama {
    color: #94a3b8;
}

/* Responsive for genelbaslik */
@media (max-width: 768px) {
    .ws-main-wrapper .genelbaslik-rozet-kapsayici { 
        margin-bottom: 10px; 
    }
    
    .ws-main-wrapper .genelbaslik-ana-baslik { 
        font-size: 20px; 
        margin: 8px 0; 
        line-height: 1.2; 
    }
    
    .ws-main-wrapper .genelbaslik-aciklama { 
        font-size: 14px; 
        margin-top: 8px; 
        padding: 0 12px; 
    }
}

/* ═══════════════════════════════════════════════════════════
   ANA SAYFA CAROUSEL TASARIMI - SOFTWARE DETAIL İÇİN
   ═══════════════════════════════════════════════════════════ */

.ws-main-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 50px;
    width: 100%;
    max-width: var(--CoreV2-container-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.ws-product-carousel-container {
    max-width: var(--CoreV2-container-width);
    margin: 0 auto;
    padding: 25px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
    background: rgba(var(--CoreV2-primary-rgb), 0.08);
    border-radius: var(--cv2-radius-card, 16px);
    align-items: center;
}

.ws-title-area {
    text-align: center;
}

.genelbaslik {
    font-size: 2rem;
    font-weight: var(--heading-weight-lg, 800);
    color: var(--CoreV2-text-primary, #0f172a);
    line-height: 1.2;
    margin: 0;
}

.ws-carousel-wrapper {
    position: relative;
}

.ws-product-carousel {
    overflow: hidden;
    position: relative;
}

.ws-carousel-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 10px 0;
    gap: 15px;
    min-width: 0;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Carousel Card Overrides */
.ws-carousel-inner .sw-card {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: calc((100% - 30px) / 3);
    min-width: 290px;
    background: var(--cv2-surface-card, var(--bg-card, #ffffff));
    border: 1px solid rgba(var(--cv2-primary-rgb), 0.1);
    border-radius: var(--cv2-radius-card, 26px);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease;
    animation: none;
    opacity: 1;
}

.ws-carousel-inner .sw-card:hover {
    transform: translateY(-6px);
}

.ws-carousel-inner .sw-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ws-carousel-inner .sw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-out;
}

.ws-carousel-inner .sw-card:hover .sw-card-img img {
    transform: scale(1.08);
}

.ws-carousel-inner .sw-card-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 3;
}

.ws-carousel-inner .sw-tag {
    padding: 6px 12px;
    border-radius: var(--cv2-radius-btn, 24px);
    font-size: var(--cv2-font-size-button, 12px);
    color: #ffffff;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ws-carousel-inner .sw-tag i {
    font-size: var(--cv2-font-size-button, 13px);
    font-weight: 300;
    -webkit-text-stroke: 0;
    opacity: 0.9;
}

.ws-carousel-inner .sw-tag-1 {
    background: rgba(var(--cv2-primary-rgb),.47);
}

.ws-carousel-inner .sw-tag-2 {
    background: rgba(var(--cv2-primary-rgb),.5);
}

.ws-carousel-inner .sw-featured-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    text-align: center;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.ws-carousel-inner .sw-price-block {
    position: absolute;
    bottom: 44px;
    left: 14px;
    right: auto;
    transform: none;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 7px;
    max-width: calc(100% - 28px);
    width: max-content;
    pointer-events: none;
}

.ws-carousel-inner .sw-price-overlay {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: var(--cv2-radius-input, 12px);
    line-height: 1;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
    font-variant-numeric: tabular-nums;
}

.ws-carousel-inner .sw-price-old {
    text-decoration: line-through;
    font-size: 15px;
    opacity: .75;
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.ws-carousel-inner .sw-price-current {
    white-space: nowrap;
    font-weight: 700;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
}

.ws-carousel-inner .sw-price-free {
    color: var(--cv2-success);
    font-weight: 700;
    font-size: 17px;
    white-space: nowrap;
}

.ws-carousel-inner .sw-discount-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--theme-color-1-gradient,var(--CoreV2-primary,var(--cv2-danger)));
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 12px;
    border-radius: var(--cv2-radius-btn, 24px);
    letter-spacing: -0.02em;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.18);
}

.ws-carousel-inner .sw-card-body {
    padding: 20px 20px 18px;
    margin-top: -28px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-top-left-radius: var(--cv2-radius-card-inner, 25px);
    border-top-right-radius: var(--cv2-radius-card-inner, 25px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-carousel-inner .sw-card-body::before {
    content: "";
    position: absolute;
    right: -23px;
    top: -27px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    box-shadow: inset -23px -23px #f1f5f9;
}

.ws-carousel-inner .sw-card-title {
    font-size: 1rem;
    font-weight: var(--fw-semibold,600);
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 6px;
    display: block;
    transition: color .22s ease;
    text-decoration: none;
}

.ws-carousel-inner .sw-card-title:hover {
    color: var(--CoreV2-primary,var(--cv2-primary));
}

.ws-carousel-inner .sw-card-desc {
    font-size: .82rem;
    color: var(--CoreV2-text-secondary,#64748b);
    line-height: 1.6;
    margin: 6px 0 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ws-carousel-inner .sw-price-area {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.ws-carousel-inner .sw-original-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 13px;
}

.ws-carousel-inner .sw-current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--CoreV2-primary,var(--cv2-primary));
}

.ws-carousel-inner .sw-free-price {
    color: var(--cv2-success);
    font-weight: 700;
    font-size: 1.1rem;
}

.ws-carousel-inner .sw-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ws-carousel-inner .sw-card-actions .ws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: filter .22s ease,transform .22s ease,background .22s ease,border-color .22s ease,color .22s ease;
    transform: none;
    flex-direction: row;
    gap: 7px;
    padding: 11px 14px;
    font-size: var(--cv2-font-size-button, 13px);
    font-weight: 600;
    border-radius: var(--cv2-radius-btn, 24px);
    min-height: 44px;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}

.ws-carousel-inner .sw-card-actions .ws-button::before {
    display: none;
}

.ws-carousel-inner .sw-card-actions .ws-button svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
}

.ws-carousel-inner .sw-card-actions .ws-button:hover {
    transform: translateY(-2px);
}

.ws-carousel-inner .sw-card-actions .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb),.06);
    color: var(--CoreV2-primary,var(--cv2-primary));
    border: 1.5px dashed rgba(var(--cv2-primary-rgb),.4);
}

.ws-carousel-inner .sw-card-actions .ws-button-outline-light:hover,
.ws-carousel-inner .sw-card-actions .ws-button-outline-light:focus,
.ws-carousel-inner .sw-card-actions .ws-button-outline-light:active {
    background: rgba(var(--cv2-primary-rgb),.14);
    color: var(--CoreV2-primary,var(--cv2-primary));
    border-color: rgba(var(--cv2-primary-rgb),.55);
    transform: translateY(-1px);
}

.ws-carousel-inner .sw-card-actions .ws-button-outline-light svg,
.ws-carousel-inner .sw-card-actions .ws-button-outline-light:hover svg,
.ws-carousel-inner .sw-card-actions .ws-button-outline-light:focus svg,
.ws-carousel-inner .sw-card-actions .ws-button-outline-light:active svg {
    color: currentColor;
    stroke: currentColor;
    fill: none;
}

.ws-carousel-inner .sw-card-actions .ws-button-primary {
    background: var(--theme-color-1-gradient,var(--CoreV2-primary,var(--cv2-primary)));
    color: #ffffff;
    border: none;
    outline: 2px solid rgba(var(--cv2-primary-rgb),.25);
    outline-offset: 3px;
}

.ws-carousel-inner .sw-card-actions .ws-button-primary:hover,
.ws-carousel-inner .sw-card-actions .ws-button-primary:focus,
.ws-carousel-inner .sw-card-actions .ws-button-primary:active {
    background: var(--theme-color-1-gradient,var(--CoreV2-primary,var(--cv2-primary)));
    color: #ffffff;
    border: none;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.ws-carousel-inner .sw-card-actions .ws-button-primary svg,
.ws-carousel-inner .sw-card-actions .ws-button-primary:hover svg,
.ws-carousel-inner .sw-card-actions .ws-button-primary:focus svg,
.ws-carousel-inner .sw-card-actions .ws-button-primary:active svg {
    color: #ffffff;
    stroke: #ffffff;
    fill: currentColor;
}

/* Carousel Controls */
.ws-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -22px;
    right: -22px;
    display: none;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.ws-carousel-btn {
    background: var(--carousel-btn-bg, #ffffff);
    color: var(--carousel-btn-color, #0f172a);
    border: 1px solid var(--card-border-color, rgba(var(--cv2-primary-rgb),0.1));
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.ws-carousel-btn:hover {
    background: var(--carousel-btn-hover, #f1f5f9);
    transform: scale(1.1);
}

.ws-carousel-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
}

/* Carousel Pagination */
.ws-carousel-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.ws-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--cv2-radius-btn, 50px);
    background: var(--soft-text, #64748b);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border: none;
    padding: 0;
}

.ws-pagination-dot.active {
    width: 40px;
    opacity: 1;
    background: var(--main-color, var(--cv2-primary));
}

/* Dark Mode */
[data-theme="dark"] .ws-main-wrapper {
    background: transparent;
}

[data-theme="dark"] .genelbaslik {
    color: #f1f5f9;
}

[data-theme="dark"] .ws-carousel-inner .sw-card {
    background: var(--cv2-surface-card, #171F2E);
    border-color: rgba(var(--cv2-primary-rgb),.15);
}

[data-theme="dark"] .ws-carousel-inner .sw-card-body {
    background: #1e293b;
}

[data-theme="dark"] .ws-carousel-inner .sw-card-body::before {
    box-shadow: inset -23px -23px #1e293b;
}

[data-theme="dark"] .ws-carousel-inner .sw-card-title {
    color: #f1f5f9;
}

[data-theme="dark"] .ws-carousel-inner .sw-card-desc {
    color: #94a3b8;
}

[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb),.1);
    color: rgba(255,255,255,.92);
    border: 1.5px dashed rgba(var(--cv2-primary-rgb),.35);
}

[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light:hover,
[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light:focus,
[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light:active {
    background: rgba(var(--cv2-primary-rgb),.2);
    color: #ffffff;
    border-color: rgba(var(--cv2-primary-rgb),.5);
}

[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light svg,
[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light:hover svg,
[data-theme="dark"] .ws-carousel-inner .sw-card-actions .ws-button-outline-light:active svg {
    color: currentColor;
    stroke: currentColor;
}

[data-theme="dark"] .ws-carousel-btn {
    background: #1e293b;
    color: #f1f5f9;
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .ws-carousel-btn:hover {
    background: #334155;
}

/* Responsive */
@media (min-width: 769px) {
    .ws-carousel-controls {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .ws-product-carousel-container {
        grid-template-columns: 200px 1fr;
    }
    
    .ws-product-carousel-container .ws-product-carousel {
        overflow-x: auto;
        overflow-y: clip;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        touch-action: pan-x;
    }
    
    .ws-product-carousel-container .ws-product-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .ws-product-carousel-container .ws-product-carousel.is-drag-scroll {
        cursor: grabbing;
        scroll-snap-type: none;
    }
    
    .ws-product-carousel-container .ws-carousel-inner {
        transform: none;
        transition: none;
    }
    
    .ws-product-carousel-container .ws-carousel-inner .sw-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ws-main-wrapper {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .ws-product-carousel-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 20px;
        padding: 20px 0;
    }
    
    .ws-title-area {
        display: block;
        padding: 0 20px;
        text-align: center;
        order: 1;
    }
    
    .genelbaslik {
        font-size: 1.5rem;
    }
    
    .ws-carousel-wrapper {
        display: block;
        order: 2;
        width: 100%;
    }
    
    .ws-product-carousel {
        overflow-x: auto;
        overflow-y: clip;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        padding: 0;
    }
    
    .ws-product-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .ws-carousel-inner {
        display: flex;
        flex-direction: row;
        padding: 10px 20px;
        gap: 16px;
    }
    
    .ws-carousel-inner .sw-card {
        width: 85%;
        min-width: 280px;
        max-width: 340px;
        scroll-snap-align: center;
        flex-shrink: 0;
        flex-grow: 0;
    }
    
    .ws-carousel-inner .sw-price-block {
        bottom: 38px;
        left: 10px;
        gap: 6px;
        max-width: calc(100% - 20px);
    }
    
    .ws-carousel-inner .sw-price-overlay {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .ws-carousel-controls {
        display: none;
    }
    
    .ws-carousel-pagination {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .genelbaslik {
        font-size: 1.25rem;
    }
    
    .ws-carousel-inner .sw-card {
        width: 90%;
        min-width: 260px;
    }
}

/* ═══════════════════════════════════════════════════════════
   GENELBASLIK SYSTEM - ANA SAYFA STİLLERİ
   ═══════════════════════════════════════════════════════════ */

.genelbaslik-baslik {
  position: relative;
  padding-bottom: 2px;
  margin-bottom: 4px;
}

.genelbaslik-baslik::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(to right, transparent, var(--CoreV2-primary), transparent);
  opacity: 0.28;
}

.genelbaslik-baslik::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 55px;
  background: linear-gradient(90deg, rgba(var(--CoreV2-primary-rgb),0.3) 0%, var(--CoreV2-primary) 50%, rgba(var(--CoreV2-primary-rgb),0.3) 100%);
  border-radius: 3px;
}

/* Dark Mode */
[data-theme="dark"] .genelbaslik-ana-baslik {
  color: #f1f5f9;
}

[data-theme="dark"] .genelbaslik-aciklama {
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .genelbaslik-rozet-kapsayici {
    margin-bottom: 10px;
  }
  
    
    
  .genelbaslik-baslik {
    padding: 0 10px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WS-PRODUCT-CARD STYLES - CAROUSEL İÇİN EKSİK STILLER
   ═══════════════════════════════════════════════════════════ */

.ws-main-wrapper .ws-product-card {
    flex-shrink: 0;
    width: calc((100% - 30px) / 3);
    min-width: 290px;
    background: var(--cv2-surface-card, var(--bg-card, #ffffff));
    border: 1px solid rgba(var(--cv2-primary-rgb), 0.1);
    border-radius: var(--cv2-radius-card, 26px);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease;
}

.ws-main-wrapper .ws-product-card:hover {
    transform: translateY(-6px);
}

.ws-main-wrapper .ws-product-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 3;
}

.ws-main-wrapper .ws-tag-item {
    padding: 6px 12px;
    border-radius: var(--cv2-radius-btn, 24px);
    font-size: var(--cv2-font-size-button, 12px);
    color: #ffffff;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.ws-main-wrapper .ws-tag-item.tag--mobile {
    background: rgba(var(--cv2-primary-rgb),.47);
}

.ws-main-wrapper .ws-tag-item.tag--language {
    background: rgba(var(--cv2-primary-rgb),.5);
}

.ws-main-wrapper .ws-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ws-main-wrapper .ws-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-out;
}

.ws-main-wrapper .ws-product-card:hover .ws-image-container img {
    transform: scale(1.08);
}

.ws-main-wrapper .ws-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    text-align: center;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.ws-main-wrapper .ws-card-bottom {
    padding: 20px 20px 18px;
    margin-top: -28px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-top-left-radius: var(--cv2-radius-card-inner, 25px);
    border-top-right-radius: var(--cv2-radius-card-inner, 25px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ws-main-wrapper .ws-card-bottom::before {
    content: "";
    position: absolute;
    right: -23px;
    top: -27px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    box-shadow: inset -23px -23px #f1f5f9;
}

[data-theme="dark"] .ws-main-wrapper .ws-card-bottom {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .ws-main-wrapper .ws-card-bottom::before {
    box-shadow: inset -23px -23px #0f172a;
}

.ws-main-wrapper .ws-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.ws-main-wrapper .ws-product-title {
    font-size: 1rem;
    font-weight: var(--fw-semibold,600);
    color: var(--CoreV2-text-primary, #0f172a);
    line-height: 1.4;
    display: block;
    margin: 0;
}

[data-theme="dark"] .ws-main-wrapper .ws-product-title {
    color: #f1f5f9;
}

.ws-main-wrapper .ws-product-title:hover {
    color: var(--CoreV2-primary, var(--cv2-primary));
}

.ws-main-wrapper .ws-price-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ws-main-wrapper .ws-original-price {
    font-size: var(--cv2-font-size-button, 13px);
    color: var(--CoreV2-text-secondary, #64748b);
    text-decoration: line-through;
    font-weight: 500;
}

.ws-main-wrapper .ws-current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--CoreV2-primary, var(--cv2-primary));
}

.ws-main-wrapper .ws-free-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cv2-success);
}

.ws-main-wrapper .ws-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.ws-main-wrapper .ws-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: var(--cv2-font-size-button, 13px);
    font-weight: 600;
    border-radius: var(--cv2-radius-btn, 10px);
    min-height: 42px;
    text-decoration: none;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
    border: none;
}

.ws-main-wrapper .ws-button i.hki-stroke {
    display: inline-block;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    font-size: 15px;
    line-height: 1;
    color: inherit;
}

.ws-main-wrapper .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb), 0.06);
    color: var(--CoreV2-primary, var(--cv2-primary));
    border: 1.5px dashed rgba(var(--cv2-primary-rgb), 0.38);
}

.ws-main-wrapper .ws-button-outline-light:hover {
    background: rgba(var(--cv2-primary-rgb), 0.12);
    transform: translateY(-2px);
}

.ws-main-wrapper .ws-button-primary {
    background: var(--theme-color-1-gradient, var(--CoreV2-primary, var(--cv2-primary)));
    color: #ffffff;
}

.ws-main-wrapper .ws-button-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

[data-theme="dark"] .ws-main-wrapper .ws-button-outline-light {
    background: rgba(var(--cv2-primary-rgb), 0.1);
    border-color: rgba(var(--cv2-primary-rgb), 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .ws-main-wrapper .ws-product-card {
        width: calc((100% - 15px) / 2);
        min-width: 260px;
    }
}

@media (max-width: 640px) {
    .ws-main-wrapper .ws-product-card {
        width: 100%;
        min-width: 280px;
    }
    
    .ws-main-wrapper .ws-action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Anasayfa / normal: kartlar YATAY sira (flex row). Eski "display:block" anasayfayi dikey yapiyordu. */
.ws-main-wrapper .ws-carousel-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 15px;
    padding: 10px 0;
    min-width: 0;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Yazılım detay: dis track block; asil flex track .sw-page--detail-carousel */
.ws-main-wrapper .ws-carousel-inner:has(> .sw-page--detail-carousel) {
    display: block;
    overflow: visible;
    padding: 0;
    gap: 0;
}

.ws-main-wrapper .sw-page.sw-page--detail-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    grid-template-columns: unset;
    grid-template-rows: unset;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.ws-main-wrapper .sw-page--detail-carousel > .sw-card {
    flex: 0 0 auto;
    width: calc((100% - 30px) / 3);
    min-width: 290px;
    max-width: 360px;
}

@media (max-width: 1024px) {
    .ws-main-wrapper .sw-page--detail-carousel > .sw-card {
        width: calc((100% - 15px) / 2);
        min-width: 260px;
    }
}

@media (max-width: 640px) {
    .ws-main-wrapper .sw-page--detail-carousel > .sw-card {
        width: 100%;
        min-width: 280px;
    }
}

/* --- source: css/software-features.css --- */

.ys-process-section {
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: var(--cv2-radius-card, 28px);
    position: relative;
    overflow: hidden;
    background-color: var(--CoreV2-bg, var(--cv2-surface-page, #f8fafc));
    border: 1px solid rgba(var(--cv2-primary-rgb), .1);
}
.ys-process-section::after{display:none}
.ys-process-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    max-width: var(--CoreV2-container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ys-process-step {
    flex: 1;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    border-radius: var(--cv2-radius-card, 22px);
    background: var(--CoreV2-card-bg, #ffffff);
    border: 1px solid rgba(var(--cv2-primary-rgb), .1);
    opacity: 0;
    transform: translateY(28px);
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
    position: relative;
    overflow: hidden;
}
.ys-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: var(--CoreV2-primary, var(--cv2-primary));
    opacity: 0;
    transition: opacity .4s ease;
}
.ys-process-step:hover {
    transform: translateY(-7px);
    border-color: rgba(var(--cv2-primary-rgb), .25);
}
.ys-process-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(var(--cv2-primary-rgb), .14),
        rgba(var(--cv2-primary-rgb), .06)
    );
    display: grid;
    place-items: center;
    transition: all .4s ease;
    border: 2px solid rgba(var(--cv2-primary-rgb), .2);
}
.ys-process-icon i {
    font-size: 30px;
    color: var(--CoreV2-primary, var(--cv2-primary));
    transition: all .4s ease;
}
.ys-process-title {
    font-size: .95rem;
    font-weight: var(--fw-bold, 700);
    color: var(--CoreV2-text-primary, #1e293b);
    margin-top: .3rem;
    line-height: 1.4;
}
.ys-process-connector {
    align-self: center;
    width: 100%;
    max-width: 56px;
    height: 2px;
    position: relative;
    background: rgba(var(--cv2-primary-rgb), .12);
    border-radius: var(--cv2-radius-input, 2px);
    opacity: 0;
    transition: opacity .5s ease-in;
    z-index: 1;
}
.ys-process-connector::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        var(--CoreV2-primary, var(--cv2-primary)),
        rgba(var(--cv2-primary-rgb), .5)
    );
    border-radius: var(--cv2-radius-input, 2px);
    transition: width .7s cubic-bezier(.65,0,.35,1);
}
.ys-process-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid rgba(var(--cv2-primary-rgb), .4);
    opacity: 0;
    transition: opacity .3s ease .5s;
}
.ys-process-step.is-active {
    opacity: 1;
    transform: translateY(0);
}
.ys-process-step.is-active::before {
    opacity: 1;
}
.ys-process-step.is-active .ys-process-icon {
    background: linear-gradient(
        135deg,
        rgba(var(--cv2-primary-rgb), .22),
        rgba(var(--cv2-primary-rgb), .1)
    );
    border-color: var(--CoreV2-primary, var(--cv2-primary));
}
.ys-process-step.is-active .ys-process-icon i {
    color: var(--CoreV2-primary, var(--cv2-primary));
    transform: scale(1.12);
}
.ys-process-connector.is-active {
    opacity: 1;
}
.ys-process-connector.is-active::before {
    width: 100%;
}
.ys-process-connector.is-active::after {
    opacity: 1;
}
[data-theme="dark"] .ys-process-section {
    background-color: var(--CoreV2-bg, #0f172a);
    border-color: rgba(var(--cv2-primary-rgb), .15);
}
[data-theme="dark"] .ys-process-step {
    background: var(--CoreV2-card-bg, #1e293b);
    border-color: rgba(var(--cv2-primary-rgb), .15);
}
[data-theme="dark"] .ys-process-step:hover {
    border-color: rgba(var(--cv2-primary-rgb), .35);
}
[data-theme="dark"] .ys-process-title {
    color: var(--CoreV2-text-primary, #f1f5f9);
}
[data-theme="dark"] .ys-process-connector {
    background: rgba(var(--cv2-primary-rgb), .18);
}
@media (max-width: 992px) {
    .ys-process-wrapper {
        flex-wrap: wrap;
        gap: .75rem;
        justify-content: center;
    }
    .ys-process-step {
        flex: 1 1 140px;
        max-width: 180px;
        padding: 1.5rem .75rem 1.25rem;
    }
    .ys-process-connector {
        display: none;
    }
}
@media (max-width: 480px) {
    .ys-process-wrapper {
        gap: .5rem;
    }
    .ys-process-step {
        flex: 1 1 120px;
        max-width: 160px;
        padding: 1.25rem .6rem 1rem;
    }
    .ys-process-icon {
        width: 56px;
        height: 56px;
    }
    .ys-process-icon i {
        font-size: 22px;
    }
    .ys-process-title {
        font-size: .8rem;
    }
}

