/*
 * 724Takipci.com — Unified responsive front-end
 * Applies to every public theme page. Admin panel is not affected.
 */

:root {
    --t724-bg: #f4f6fb;
    --t724-surface: #ffffff;
    --t724-surface-soft: #f8f9fd;
    --t724-text: #0d1733;
    --t724-muted: #69738b;
    --t724-line: rgba(13, 23, 51, .10);
    --t724-line-strong: rgba(13, 23, 51, .16);
    --t724-dark: #0a1023;
    --t724-dark-soft: #121a34;
    --t724-violet: #6d49ff;
    --t724-blue: #2f7bff;
    --t724-cyan: #29d4c3;
    --t724-pink: #ff4d87;
    --t724-success: #14b88a;
    --t724-danger: #e44667;
    --t724-radius-sm: 12px;
    --t724-radius: 18px;
    --t724-radius-lg: 28px;
    --t724-shadow-sm: 0 12px 30px rgba(22, 31, 68, .07);
    --t724-shadow: 0 26px 70px rgba(22, 31, 68, .11);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: clip;
    background: var(--t724-bg);
    color: var(--t724-text);
}

body .wrapper {
    min-height: 100vh;
    overflow: clip;
    background: var(--t724-bg);
}

body main {
    display: block;
    min-height: 48vh;
}

body img,
body svg,
body video,
body iframe {
    max-width: 100%;
}

body a,
body button,
body input,
body textarea,
body select {
    -webkit-tap-highlight-color: transparent;
}

body .container {
    width: min(1240px, calc(100% - 48px));
    max-width: none;
    margin-inline: auto;
}

/* ---------- Header ---------- */
body .top--head-area {
    position: relative;
    z-index: 80;
    background: var(--t724-dark);
    color: rgba(255, 255, 255, .70);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

body .top--head-area .top--head {
    min-height: 38px;
}

body .top--head-area .item {
    min-height: 38px;
    color: rgba(255, 255, 255, .70);
    border-color: rgba(255, 255, 255, .10) !important;
    font-size: 12px;
}

body .top--head-area .item:hover {
    color: #fff;
}

body header,
body header.scrolled {
    position: sticky !important;
    top: 0 !important;
    width: 100%;
    z-index: 70;
    background: rgba(244, 246, 251, .88) !important;
    border: 0;
    border-bottom: 1px solid rgba(13, 23, 51, .075);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body header::before,
body header.scrolled::before {
    display: none !important;
}

body header .header {
    min-height: 76px;
    padding: 12px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body header .header .logo {
    flex: 0 0 auto;
    padding-left: 0;
}

body header .header .logo img {
    display: block;
    width: auto;
    max-width: 176px;
    height: 36px;
    object-fit: contain;
}

body header .navbar {
    min-width: 0;
}

body header .navbar ul {
    gap: 5px;
}

body header .navbar ul li .nav-link {
    position: relative;
    gap: 6px;
    padding: 10px 11px;
    border-radius: 12px;
    color: #303a54;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

body header .navbar ul li .nav-link > i {
    top: 0;
    color: var(--main-color);
    font-size: 18px;
}

body header .navbar ul li .nav-link::before {
    display: none;
}

body header .navbar ul li .nav-link:hover,
body header .navbar ul li.active .nav-link {
    color: var(--t724-violet);
    background: rgba(109, 73, 255, .075);
}

body header .navbar ul li .nav-sub-content {
    top: 70px;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--t724-shadow);
}

body header .navbar ul li .nav-sub-content.show {
    top: 58px;
}

body .navbar-action-area {
    flex: 0 0 auto;
    gap: 10px;
}

body header .butto-login {
    min-height: 44px;
    padding-inline: 17px;
    border-radius: 13px;
    background: var(--t724-dark) !important;
    color: #fff !important;
    box-shadow: none !important;
}

body header .cart {
    display: grid;
    width: 46px;
    height: 46px;
    min-width: 46px;
    place-items: center;
    border: 1px solid var(--t724-line);
    border-radius: 14px;
    background: #fff !important;
    color: var(--t724-dark) !important;
    box-shadow: var(--t724-shadow-sm);
}

body header .cart > i {
    font-size: 20px;
}

body header .cart .counter {
    top: -10px;
    right: -8px;
    min-width: 25px;
    height: 25px;
    padding-inline: 5px;
    border: 2px solid var(--t724-bg);
    background: var(--t724-pink);
    color: #fff;
    font-size: 12px;
}

body .mobile-navbar-button {
    width: 30px;
    height: 22px;
}

body .mobile-navbar-button .line {
    height: 3px;
    background: var(--t724-blue);
}

/* Mobile drawer */
body .menu--control .menu--linear {
    background: rgba(5, 10, 25, .48);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

body .menu--control .control--area {
    width: min(420px, calc(100% - 32px));
    padding: 18px;
    background: #fff;
    border-left: 1px solid var(--t724-line);
    box-shadow: -30px 0 80px rgba(10, 16, 35, .18);
}

body .menu--control .top-side {
    padding: 4px 2px 18px;
    border-bottom: 1px solid var(--t724-line);
}

body .menu--control .top-side .logo img {
    max-width: 170px;
    max-height: 38px;
}

body .menu--control .top-side .close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--t724-surface-soft);
    color: var(--t724-text);
}

body nav.content--navbar ul li.nav-item {
    margin-top: 8px;
    border: 1px solid var(--t724-line);
    border-radius: 14px;
    background: var(--t724-surface-soft);
}

body nav.content--navbar ul li.nav-item .nav-link,
body nav.content--navbar ul li.nav-item > a.nav-link {
    min-height: 56px;
    padding: 10px 12px;
}

body nav.content--navbar ul li.nav-item .nav-link .icon {
    border-radius: 10px;
    background: rgba(109, 73, 255, .10);
    color: var(--t724-violet);
}

body .menu--control .nav-sub-content ul {
    background: transparent;
}

/* ---------- Shared page hero ---------- */
body:not(.home-724) .intro--page {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 64px 0 54px !important;
    background:
        radial-gradient(circle at 15% 18%, rgba(41, 212, 195, .15), transparent 25%),
        radial-gradient(circle at 84% 18%, rgba(255, 77, 135, .13), transparent 27%),
        linear-gradient(135deg, rgba(109, 73, 255, .09), rgba(47, 123, 255, .035));
    clip-path: none !important;
}

body:not(.home-724) .intro--page::before {
    inset: 0;
    opacity: 1;
    background:
        linear-gradient(rgba(13, 23, 51, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 23, 51, .035) 1px, transparent 1px);
    background-size: 42px 42px;
}

body:not(.home-724) .intro--page::after {
    display: none;
}

body:not(.home-724) .intro--page .intro--head,
body:not(.home-724) .intro--page .intro--head.ftx {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    min-width: 0;
    padding: 0 !important;
    text-align: left;
}

body:not(.home-724) .intro--page .intro--head > .icon {
    display: grid !important;
    flex: 0 0 68px;
    width: 68px;
    min-width: 68px;
    height: 68px;
    place-items: center;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--main-color), var(--t724-blue));
    color: #fff;
    font-size: 28px;
    box-shadow: 0 18px 38px color-mix(in srgb, var(--main-color) 24%, transparent);
}

body:not(.home-724) .intro--page .intro--head > .text {
    min-width: 0;
    padding: 0;
    line-height: normal;
}

body:not(.home-724) .intro--page .intro--head > .text::before {
    display: none;
}

body:not(.home-724) .intro--page .intro--head > .text h1 {
    margin: 0;
    color: var(--t724-text);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}

body:not(.home-724) .intro--page .intro--head > .text p {
    max-width: 760px;
    margin: 11px 0 0 !important;
    color: var(--t724-muted);
    font-size: 16px;
    line-height: 1.65;
}

body:not(.home-724) .intro--page .intro--head .count {
    margin-top: 14px;
    border: 1px solid rgba(109, 73, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--t724-violet);
}

body .path-wave::before,
body .path-wave::after,
body .path-wave-up::before,
body .path-wave-up::after {
    pointer-events: none;
}

/* ---------- Shared surfaces, buttons and forms ---------- */
body .card,
body .well,
body .article--area,
body .post-comment-area,
body .add-comment-area {
    border: 1px solid var(--t724-line);
    border-radius: var(--t724-radius);
    background: var(--t724-surface);
    box-shadow: var(--t724-shadow-sm);
}

body .card-header {
    border-bottom: 1px solid var(--t724-line);
    background: transparent;
    color: var(--t724-text);
    font-weight: 800;
}

body .butto,
body .btn {
    border-radius: 13px;
    font-weight: 750;
}

body .butto-main,
body .btn-primary {
    border-color: transparent !important;
    background: linear-gradient(115deg, var(--t724-violet), var(--t724-blue)) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(79, 93, 255, .20);
}

body .butto-main:hover,
body .btn-primary:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(79, 93, 255, .28);
}

body .butto-light,
body .btn-light {
    border: 1px solid var(--t724-line);
    background: #fff;
    color: var(--t724-text);
}

body .form-control,
body .form-select,
body select.form-control,
body textarea.form-control {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--t724-line-strong);
    border-radius: 13px;
    background: #fff;
    color: var(--t724-text);
    box-shadow: none;
}

body .form-control:focus,
body .form-select:focus,
body textarea.form-control:focus {
    border-color: rgba(109, 73, 255, .55);
    box-shadow: 0 0 0 4px rgba(109, 73, 255, .10);
}

body .form-floating > label {
    color: var(--t724-muted);
}

body .formAlertInfo {
    border-radius: 12px;
}

body .title-heading .title,
body .title-heading > span.title {
    color: var(--t724-text);
    letter-spacing: -.025em;
}

body .title-heading p {
    color: var(--t724-muted);
}

body .accordion .item {
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

body .accordion .item .head {
    min-height: 64px;
    padding: 18px 20px;
    color: var(--t724-text);
}

body .accordion .item .body {
    padding-inline: 20px;
    color: var(--t724-muted);
    line-height: 1.7;
}

/* ---------- Platform listing ---------- */
body.page-platform section#platform {
    min-height: auto;
    padding: 48px 0 76px;
}

body.page-platform .platform--area {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}

body.page-platform .platform--item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.page-platform .platform--item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--main-color) 34%, var(--t724-line));
    box-shadow: var(--t724-shadow);
}

body.page-platform .platform--item .service-content {
    min-width: 0;
}

body.page-platform .platform--item .butto-catpi {
    min-width: 0;
    border-radius: 12px;
}

/* ---------- Category / package pages ---------- */
body.page-category .intro--page.ip--category {
    padding-bottom: 56px !important;
}

body.page-category .path-wave.path-wave-up {
    background: var(--t724-bg);
}

body.page-category .service--area,
body.page-category .service--area.active {
    display: grid;
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    transform: none !important;
    margin: 0 !important;
    padding: 44px 0 72px;
}

body.page-category .service--detail {
    position: sticky;
    top: 98px;
    z-index: 5;
    height: fit-content;
    margin: 0;
}

body.page-category .service--detail .poster {
    height: 310px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: linear-gradient(145deg, var(--main-color), var(--t724-dark-soft));
    box-shadow: var(--t724-shadow);
}

body.page-category .service--detail .poster img {
    max-width: calc(100% - 34px);
}

body.page-category .service--detail .poster::after {
    background: linear-gradient(to top, color-mix(in srgb, var(--main-color) 76%, #0a1023), transparent);
}

body.page-category .service--detail .service--features {
    margin-top: 12px;
}

body.page-category .service--detail .service--features ul {
    display: grid;
    gap: 8px;
}

body.page-category .service--detail .service--features ul li {
    margin: 0;
    padding: 11px 12px;
    border: 1px solid var(--t724-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
}

body.page-category .service--detail .service--features ul li span {
    min-width: 0;
    color: var(--t724-muted);
    font-size: 14px;
}

body.page-category .service--base {
    min-width: 0;
}

body.page-category .service--content {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--t724-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-category .service--content .pack--list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body.page-category .service--content .pack--list .pack {
    min-width: 0;
    min-height: 126px;
    padding: 17px 12px;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 16px;
    background: var(--t724-surface-soft);
}

body.page-category .service--content .pack--list .pack:hover,
body.page-category .service--content .pack--list .pack.selected {
    transform: translateY(-2px);
    border-color: var(--main-color);
    background: #fff;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--main-color) 13%, transparent);
}

body.page-category .service--content .pack--list .pack span.amount {
    max-width: 100%;
    font-size: clamp(20px, 2.3vw, 28px);
    overflow-wrap: anywhere;
}

body.page-category .service--content .pack--list .pack span.type,
body.page-category .service--content .pack--list .pack span.price {
    max-width: 100%;
    overflow-wrap: anywhere;
}

body.page-category .service--content .service--bottom {
    position: relative;
    inset: auto;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 16px;
    width: auto;
    margin-top: 18px;
    padding: 15px;
    border: 1px solid var(--t724-line);
    border-radius: 17px;
    background: var(--t724-surface-soft);
    box-shadow: none;
}

body.page-category .service--content .service--bottom.active-bar {
    position: sticky !important;
    left: auto;
    bottom: 14px;
    width: auto;
    flex-direction: row !important;
    border-color: rgba(109, 73, 255, .20);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 50px rgba(22, 31, 68, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.page-category .service--content .selected--pack {
    min-width: 0;
}

body.page-category .service--content .selected--pack .text,
body.page-category .service--content .selected--pack .text > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-category .service--content .pack--action {
    flex: 0 0 auto;
    margin-left: auto;
}

body.page-category .service--content .pack--action .pack--butto,
body.page-category .active-bar .pack--butto {
    min-width: 150px !important;
    min-height: 48px !important;
    height: auto !important;
    padding: 11px 20px !important;
    border-radius: 13px !important;
    font-size: 15px !important;
}

body.page-category .active-bar .iptal-buton {
    min-height: 44px;
    height: auto;
    border: 1px solid var(--t724-line-strong);
    border-radius: 12px;
    background: #fff !important;
    color: var(--t724-text) !important;
}

body.page-category .service--pack_content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.page-category .service--pack_content .pack {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-category .service--pack_content .pack .head {
    padding: 20px;
}

body.page-category .service--pack_content .pack .features {
    padding: 18px;
}

body.page-category .service--pack_content .pack .features ul li {
    align-items: flex-start;
}

body.page-category .service--pack_content .pack .features ul li > span {
    min-width: 0;
    color: var(--t724-muted);
    overflow-wrap: anywhere;
}

body.page-category .service--pack_content .pack .pack--bottom {
    gap: 12px;
    padding: 16px;
    border-top-color: var(--t724-line);
}

body.page-category #faq,
body.page-category #article,
body.page-category .post-comment-area {
    margin-top: 0 !important;
    padding: 56px 0;
}

body.page-category #article .article--area {
    padding: clamp(22px, 4vw, 46px);
}

/* ---------- Checkout / order ---------- */
body .orderArea,
body.page-order,
body.page-payment {
    background: var(--t724-bg);
}

body .loftForm .intro--page,
body .orderArea .intro--page {
    padding-bottom: 42px !important;
}

body .order--step_area {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    align-items: start;
    gap: 22px;
    padding: 44px 0 76px;
}

body .order--first_area,
body .firstcont,
body .order--step,
body .PaymentMethod,
body .paymentDetail {
    min-width: 0;
}

body .order--first_area > .card,
body .order--step.card,
body .firstcont,
body .PaymentMethod,
body .paymentDetail,
body .basket-detail-list {
    border-color: var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body .order--step,
body .firstcont {
    padding: clamp(18px, 3vw, 30px) !important;
}

body .order-payment_title {
    color: var(--t724-text);
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: -.025em;
}

body .PaymentMethod {
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body .PaymentMethod:hover,
body .PaymentMethod.active,
body .PaymentMethod.selected {
    transform: translateY(-2px);
    border-color: rgba(109, 73, 255, .30);
    box-shadow: 0 18px 38px rgba(22, 31, 68, .10);
}

body .PaymentMethod .top,
body .PaymentMethod .bottom {
    min-width: 0;
}

body .PaymentMethod .bottom span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

body .basket-detail-list .item,
body .basket--products .item {
    min-width: 0;
    gap: 12px;
}

body .basket-detail-list .text,
body .basket--products .text,
body .cart-name,
body .cart-link {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body .cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--t724-line);
}

body .cart-item .cart-price {
    flex: 0 0 auto;
}

body .orActionBTND,
body .order-check-butto {
    min-height: 56px;
}

/* ---------- Contact ---------- */
body.page-contact .single--page {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    align-items: start;
    gap: 22px;
    padding: 44px 0 76px;
}

body.page-contact .single--page .card,
body.page-contact .contact--sidebar {
    min-width: 0;
}

body.page-contact .single--page .card-body {
    padding: clamp(22px, 4vw, 38px) !important;
}

body.page-contact .contact--sidebar {
    display: grid;
    gap: 12px;
}

body.page-contact .contact--sidebar .item {
    min-width: 0;
    border: 1px solid var(--t724-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-contact .contact--sidebar .item span,
body.page-contact .contact--sidebar .item a {
    min-width: 0;
    overflow-wrap: anywhere;
}

/* ---------- Standard content pages ---------- */
body.page-single-page section#about {
    padding: 44px 0 76px;
}

body.page-single-page .single--page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 22px;
}

body.page-single-page .card-page-content {
    padding: clamp(24px, 4vw, 46px);
    color: var(--t724-text);
    line-height: 1.78;
}

body.page-single-page .card-page-content :is(h1, h2, h3, h4) {
    color: var(--t724-text);
    letter-spacing: -.025em;
}

body.page-single-page .card-page-content :is(p, li) {
    color: #4e5870;
}

body.page-single-page .page-sidebar-sticky {
    position: sticky;
    top: 98px;
}

body.page-single-page .card-page-menu {
    padding: 10px;
}

body.page-single-page .card-page-menu .cp-link {
    display: block;
    padding: 12px 13px;
    border-radius: 11px;
    color: var(--t724-muted);
}

body.page-single-page .card-page-menu .cp-link:hover {
    background: rgba(109, 73, 255, .08);
    color: var(--t724-violet);
}

/* ---------- Blog listing ---------- */
body.page-blog-list section#blog-list {
    padding: 48px 0 78px;
}

body.page-blog-list .blog--list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

body.page-blog-list .blog--list .post {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

body.page-blog-list .blog--list .post:hover {
    transform: translateY(-4px);
    box-shadow: var(--t724-shadow);
}

body.page-blog-list .blog--list .post .thumbnail {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

body.page-blog-list .blog--list .post .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-blog-list .blog--list .post .detail {
    padding: 20px;
}

body.page-blog-list .blog--list .post-title {
    margin: 8px 0 10px;
    color: var(--t724-text);
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

body.page-blog-list .blog--list .post-description {
    color: var(--t724-muted);
    line-height: 1.65;
}

body .pagination ul {
    flex-wrap: wrap;
}

body .pagination ul li a {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--t724-line);
    border-radius: 12px;
    background: #fff;
    color: var(--t724-text);
}

body .pagination ul li.active a,
body .pagination ul li a:hover {
    border-color: transparent;
    background: linear-gradient(115deg, var(--t724-violet), var(--t724-blue));
    color: #fff;
}

/* ---------- Blog post ---------- */
body.page-single-post section#post-view {
    padding: 46px 0 78px;
}

body.page-single-post .post--view {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 24px;
}

body.page-single-post .single--post_head,
body.page-single-post .post-content {
    grid-column: 1;
    min-width: 0;
}

body.page-single-post .single--post_head {
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-single-post .single--post_head .post-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

body.page-single-post .single--post_head .detail {
    padding: clamp(22px, 4vw, 40px);
}

body.page-single-post .single--post_head .post-title {
    color: var(--t724-text);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}

body.page-single-post .post-content {
    margin-top: 0;
}

body.page-single-post .post-body,
body.page-single-post .post-comment-area,
body.page-single-post .add-comment-area {
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--t724-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-single-post .post-content-area {
    color: #3f4a63;
    line-height: 1.82;
}

body.page-single-post .post-content-area :is(h2, h3, h4) {
    color: var(--t724-text);
    letter-spacing: -.025em;
}

body.page-single-post .post-content-area img,
body.page-single-post .post-content-area table {
    max-width: 100%;
}

body.page-single-post .post-content-area table {
    display: block;
    overflow-x: auto;
}

body.page-single-post .blog--sidebar {
    position: sticky;
    top: 98px;
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--t724-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-single-post .blog--popular .post {
    min-width: 0;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--t724-line);
}

body.page-single-post .blog--popular .post-thumb {
    flex: 0 0 78px;
    width: 78px;
    height: 62px;
    overflow: hidden;
    border-radius: 11px;
}

body.page-single-post .blog--popular .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-single-post .blog--popular .post-title {
    color: var(--t724-text);
    overflow-wrap: anywhere;
}

/* ---------- Free tools ---------- */
body.page-freetool_list .free-tools-list,
body.page-freetool-list .free-tools-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 48px 0 76px;
}

body .free-tools-list .tool,
body .free-tools-list .tool-item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body .free-tools-list .tool-content,
body .free-tools-list .tool-head {
    min-width: 0;
}

body .freearea--box {
    display: grid;
    grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr);
    gap: 22px;
    padding: 48px 0 76px;
}

body .freearea--head,
body .freearea--content {
    min-width: 0;
    border: 1px solid var(--t724-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body .freearea--head {
    overflow: hidden;
}

body .freearea--content {
    padding: clamp(22px, 4vw, 38px);
}

body .freearea--features ul {
    display: grid;
    gap: 8px;
}

body .freearea--features ul li {
    min-width: 0;
    border-radius: 13px;
}

body .free--bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
    padding: 15px;
    border: 1px solid var(--t724-line);
    border-radius: 16px;
    background: var(--t724-surface-soft);
}

body .free--bottom .pack--action {
    margin-left: auto;
}

/* ---------- Order result ---------- */
body.page-order-completed section#order-detail {
    padding: 46px 0 76px;
}

body.page-order-completed .order--detail {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    align-items: start;
    gap: 22px;
}

body.page-order-completed .basket--products,
body.page-order-completed .order--detail > .card {
    min-width: 0;
    border: 1px solid var(--t724-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--t724-shadow-sm);
}

body.page-order-completed .od--details {
    padding: 22px;
}

body.page-order-completed .od--details ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--t724-line);
}

body.page-order-completed .od--details ul li span {
    max-width: 58%;
    text-align: right;
    overflow-wrap: anywhere;
}

/* ---------- 404 ---------- */
body.page-404 .notfound {
    min-height: 72vh;
    padding: 70px 0;
    background: var(--t724-bg);
}

body.page-404 .notfoundarea {
    width: min(760px, 100%);
    margin-inline: auto;
    padding: clamp(28px, 5vw, 60px);
    border: 1px solid var(--t724-line);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--t724-shadow);
}

/* ---------- Search and generic modal ---------- */
body .order--search .order--linear,
body .modal .modal-linear {
    background: rgba(5, 10, 25, .52);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

body .order-search-modal,
body .modal-content,
body .modalArea {
    max-width: calc(100vw - 28px);
    overflow: hidden;
    border: 1px solid var(--t724-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(10, 16, 35, .22);
}

body .order-search-content {
    min-width: 0;
    gap: 10px;
}

body .order-search-content .os-control {
    min-width: 0;
}

/* ---------- Footer ---------- */
body > .wrapper > .container:has(.footer--top),
body .wrapper > .container:has(.footer--top) {
    position: relative;
    z-index: 5;
}

body .footer--top {
    min-height: 104px;
    height: auto;
    margin-top: 50px;
    margin-bottom: -52px;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: linear-gradient(115deg, var(--t724-violet), var(--t724-blue));
    box-shadow: 0 24px 60px rgba(56, 76, 220, .24);
}

body .footer--top .text {
    min-width: 0;
    padding-left: 0;
}

body .footer--top .text span {
    font-size: 22px;
}

body .footer--top .text p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .72);
}

body .footer--top .action {
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body .footer--top .action .item {
    min-height: 46px;
    height: auto;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 13px;
    background: rgba(255, 255, 255, .11);
}

body footer {
    margin-top: 0;
    padding-top: 92px;
    border-top: 0;
    background: var(--t724-dark);
}

body footer .footer--area .footer-about {
    margin-top: 0;
}

body footer .footer-about-desc,
body footer .fn-item,
body footer .copyright {
    color: rgba(255, 255, 255, .54);
}

body footer .footer-nav-heading {
    color: #fff;
    font-size: 15px;
    letter-spacing: .04em;
}

body footer .footer-nav-heading::before {
    background: linear-gradient(to bottom, var(--t724-violet), var(--t724-cyan));
}

body footer .fn-item {
    min-width: 0;
    overflow-wrap: anywhere;
}

body footer .fn-item:hover {
    color: #fff;
}

body footer .footer-socials {
    flex-wrap: wrap;
}

body footer .fsocial-item {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

body footer .footer-bottom {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .10);
}

body footer .footer-bottom .container {
    min-height: 48px;
    height: auto;
    gap: 20px;
}

body footer .footer-bottom img {
    width: auto;
    max-width: min(360px, 48vw);
    height: auto;
}

/* ---------- Mobile bottom navigation ---------- */
body .bottom--menu {
    z-index: 68;
}

body .bottom--content {
    overflow: hidden;
    border: 1px solid var(--t724-line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 38px rgba(22, 31, 68, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body .bottom-content-nav {
    min-width: 0;
}

body .bottom-content-nav .bm-item {
    min-width: 0;
    color: var(--t724-muted);
}

body .bottom-content-nav .bm-item .icon {
    color: var(--t724-blue);
}

body .bottom-content-nav .bm-item .text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- Homepage compatibility fixes ---------- */
body.home-724 header .header {
    min-height: 76px;
}

body.home-724 .h724-proof-row {
    align-items: center;
}

body.home-724 .h724-proof-item {
    min-width: 0;
}

body.home-724 .h724-proof-item span {
    overflow-wrap: anywhere;
}

body.home-724 footer {
    margin-top: 0;
}

/* ---------- Responsive: large tablet ---------- */
@media (max-width: 1100px) {
    body header .navbar ul li .nav-link {
        padding-inline: 8px;
        font-size: 13px;
    }

    body header .butto-login {
        display: none;
    }

    body.page-platform .platform--area {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.page-category .service--content .pack--list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.page-category .service--pack_content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-blog-list .blog--list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ---------- Responsive: tablet ---------- */
@media (max-width: 900px) {
    body .container {
        width: min(100% - 34px, 860px);
    }

    body header .navbar {
        display: none;
    }

    body .mobile-navbar-button {
        display: flex;
    }

    body.page-category .service--area,
    body.page-category .service--area.active {
        grid-template-columns: 1fr;
    }

    body.page-category .service--detail {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: minmax(230px, .75fr) minmax(0, 1.25fr);
        gap: 14px;
    }

    body.page-category .service--detail .poster {
        height: 270px;
    }

    body .order--step_area,
    body.page-contact .single--page,
    body.page-single-page .single--page,
    body.page-order-completed .order--detail,
    body .freearea--box {
        grid-template-columns: 1fr;
    }

    body.page-single-page .page-sidebar-sticky {
        position: relative;
        top: auto;
    }

    body.page-single-post .post--view {
        grid-template-columns: 1fr;
    }

    body.page-single-post .single--post_head,
    body.page-single-post .post-content,
    body.page-single-post .blog--sidebar {
        grid-column: 1;
        grid-row: auto;
    }

    body.page-single-post .blog--sidebar {
        position: relative;
        top: auto;
    }

    body.page-freetool_list .free-tools-list,
    body.page-freetool-list .free-tools-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body .footer--top {
        align-items: flex-start;
        gap: 18px;
    }

    body .footer--top .action {
        max-width: 54%;
    }
}

/* ---------- Responsive: mobile ---------- */
@media (max-width: 768px) {
    body {
        padding-bottom: 78px;
    }

    body .container,
    body.home-724 .container {
        width: min(100% - 26px, 680px);
    }

    body header,
    body header.scrolled {
        position: sticky !important;
        top: 0 !important;
    }

    body header .header,
    body.home-724 header .header {
        min-height: 70px;
        padding: 10px 0 !important;
    }

    body header .header .logo img {
        max-width: min(190px, 48vw);
        height: 34px;
    }

    body header .cart {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    body .navbar-action-area {
        gap: 12px;
    }

    body:not(.home-724) .intro--page,
    body:not(.home-724) .intro--page.ip--category,
    body:not(.home-724) .intro--page.ip--free {
        padding: 44px 0 40px !important;
    }

    body:not(.home-724) .intro--page .intro--head,
    body:not(.home-724) .intro--page .intro--head.ftx {
        align-items: center;
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    body:not(.home-724) .intro--page .intro--head > .icon {
        flex-basis: 58px;
        width: 58px;
        min-width: 58px;
        height: 58px;
        border-radius: 17px;
        font-size: 24px;
    }

    body:not(.home-724) .intro--page .intro--head > .text h1 {
        font-size: clamp(28px, 9vw, 42px);
    }

    body:not(.home-724) .intro--page .intro--head > .text p {
        font-size: 14px;
        line-height: 1.6;
    }

    body.page-platform section#platform,
    body.page-blog-list section#blog-list,
    body.page-single-post section#post-view,
    body.page-single-page section#about,
    body.page-order-completed section#order-detail {
        padding: 34px 0 58px;
    }

    body.page-platform .platform--area {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.page-category .service--area,
    body.page-category .service--area.active {
        gap: 16px;
        padding: 28px 0 58px;
    }

    body.page-category .service--detail {
        display: block;
    }

    body.page-category .service--detail .poster {
        height: 240px;
    }

    body.page-category .service--detail .service--features ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 12px;
    }

    body.page-category .service--detail .service--features ul li {
        align-items: center;
        min-width: 0;
        padding: 10px;
    }

    body.page-category .service--detail .service--features ul li span {
        padding-left: 8px;
        font-size: 12px;
        line-height: 1.25;
    }

    body.page-category .service--content {
        padding: 16px;
        border-radius: 18px;
    }

    body.page-category .service--content .pack--list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-category .service--content .pack--list .pack {
        min-height: 112px;
        padding: 14px 10px;
    }

    body.page-category .service--content .service--bottom,
    body.page-category .service--content .service--bottom.active-bar {
        position: sticky !important;
        bottom: 86px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    body.page-category .service--content .selected--pack .icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    body.page-category .service--content .selected--pack .text > span,
    body.page-category .service--content .selected--pack .text [data-selected_price] {
        font-size: 14px;
    }

    body.page-category .service--content .pack--action {
        display: flex;
        gap: 6px;
    }

    body.page-category .service--content .pack--action .pack--butto,
    body.page-category .active-bar .pack--butto {
        min-width: 108px !important;
        min-height: 44px !important;
        padding: 9px 12px !important;
        font-size: 13px !important;
    }

    body.page-category .active-bar .iptal-buton {
        min-height: 42px;
        padding-inline: 11px !important;
        font-size: 12px !important;
    }

    body.page-category .service--pack_content {
        grid-template-columns: 1fr;
    }

    body.page-category .service--pack_content .pack .pack--bottom {
        flex-wrap: wrap;
    }

    body.page-category .service--pack_content .pack .pack--bottom .butto-buy {
        margin-left: auto;
    }

    body .order--step_area {
        gap: 16px;
        padding: 28px 0 58px;
    }

    body .order--step,
    body .firstcont {
        padding: 18px !important;
    }

    body .cart-item {
        align-items: flex-start;
    }

    body.page-contact .single--page {
        gap: 16px;
        padding: 28px 0 58px;
    }

    body.page-blog-list .blog--list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.page-single-post .single--post_head {
        border-radius: 20px;
    }

    body.page-single-post .single--post_head .post-title {
        font-size: clamp(28px, 9vw, 42px);
    }

    body.page-freetool_list .free-tools-list,
    body.page-freetool-list .free-tools-list {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 30px 0 58px;
    }

    body .freearea--box {
        gap: 16px;
        padding: 28px 0 58px;
    }

    body .free--bottom {
        align-items: stretch;
        flex-direction: column;
    }

    body .free--bottom .pack--action {
        width: 100%;
        margin-left: 0;
    }

    body .free--bottom .pack--action .butto {
        width: 100%;
    }

    body.page-order-completed .od--details ul li {
        flex-direction: column;
        gap: 5px;
    }

    body.page-order-completed .od--details ul li span {
        max-width: 100%;
        text-align: left;
    }

    body .footer--top {
        flex-direction: column;
        margin-top: 34px;
        margin-bottom: -48px;
        padding: 22px;
        text-align: center;
    }

    body .footer--top .text {
        width: 100%;
    }

    body .footer--top .action {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    body .footer--top .action .item {
        width: 100%;
        justify-content: center;
        padding-inline: 10px;
    }

    body .footer--top .action .item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    body footer {
        padding-top: 82px;
    }

    body footer .footer-actions .footer-navs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body footer .footer--area .footer-actions {
        padding: 28px 0 16px;
    }

    body footer .footer-nav-item {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    body footer .footer-bottom .container {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    body footer .footer-bottom img {
        max-width: min(340px, 86vw);
    }

    body .bottom--menu {
        display: block;
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
    }

    body .bottom--content {
        max-width: none;
        margin: 0;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 0;
    }

    body .bottom-content-nav .bm-item {
        min-height: 72px;
        padding: 9px 4px 8px;
    }

    body .bottom-content-nav .bm-item .icon {
        font-size: 21px;
    }

    body .bottom-content-nav .bm-item .text {
        font-size: 11px;
    }

    /* Homepage proof points: stable 3-column mobile layout */
    body.home-724 .h724-proof-row {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: start;
        justify-content: stretch;
        gap: 8px !important;
        width: 100%;
        margin-top: 26px;
    }

    body.home-724 .h724-proof-item,
    body.home-724 .h724-proof-item:last-child {
        grid-column: auto !important;
        display: flex;
        min-width: 0;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start !important;
        gap: 6px;
        padding: 0 2px;
        color: #4d576d;
        font-size: 10.5px;
        line-height: 1.2;
        text-align: center;
    }

    body.home-724 .h724-proof-item i {
        flex: 0 0 auto;
        font-size: 20px;
    }

    body.home-724 .h724-proof-item span {
        display: block;
        width: 100%;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }
}

/* ---------- Responsive: small phone ---------- */
@media (max-width: 520px) {
    body .container,
    body.home-724 .container {
        width: calc(100% - 22px);
    }

    body header .header .logo img {
        max-width: 54vw;
        height: 32px;
    }

    body .navbar-action-area {
        gap: 10px;
    }

    body .mobile-navbar-button {
        width: 28px;
    }

    body.page-platform .platform--area {
        grid-template-columns: 1fr;
    }

    body.page-category .service--detail .service--features ul {
        grid-template-columns: 1fr 1fr;
    }

    body.page-category .service--content .pack--list {
        grid-template-columns: 1fr 1fr;
    }

    body.page-category .service--content .service--bottom,
    body.page-category .service--content .service--bottom.active-bar {
        grid-template-columns: 1fr;
    }

    body.page-category .service--content .pack--action {
        width: 100%;
    }

    body.page-category .service--content .pack--action .pack--butto {
        flex: 1 1 auto;
    }

    body.page-category .service--content .pack--action .iptal-buton {
        flex: 0 0 auto;
    }

    body .order--step .grid-2,
    body .firstcont .grid-2,
    body.page-contact .grid-2 {
        grid-template-columns: 1fr !important;
    }

    body .PaymentMethod {
        min-width: 0;
    }

    body .footer--top .action {
        grid-template-columns: 1fr;
    }

    body .footer--top .action .item:last-child:nth-child(odd) {
        grid-column: auto;
    }

    body.home-724 .h724-proof-item,
    body.home-724 .h724-proof-item:last-child {
        font-size: 9.8px;
    }
}

@media (max-width: 370px) {
    body header .cart {
        width: 41px;
        min-width: 41px;
        height: 41px;
    }

    body .navbar-action-area {
        gap: 8px;
    }

    body.page-category .service--detail .service--features ul,
    body.page-category .service--content .pack--list {
        grid-template-columns: 1fr;
    }

    body.home-724 .h724-proof-row {
        gap: 4px !important;
    }

    body.home-724 .h724-proof-item,
    body.home-724 .h724-proof-item:last-child {
        font-size: 9px;
    }
}

/* ---------- V7: İlk kategori kartı tasarımını koruyan paket sayısı ve ok ---------- */
/* Kart, ikon, ikon kutusu, grid ve ölçüler özellikle değiştirilmez. */
body.page-platform .platform--item .category-buy-label,
body.page-platform .platform--item .category-package-count {
    display: block;
    margin: 0;
    color: var(--t724-muted, #7b829d);
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
}

body.page-platform .platform--item .category-buy-label {
    margin-top: 1px;
    font-size: 14px;
}

body.page-platform .platform--item .category-package-count {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 700;
}

body.page-platform .platform--item > .butto-catpi.category-card-arrow,
body.page-platform .platform--item:hover > .butto-catpi.category-card-arrow {
    display: inline-flex;
    width: 40px;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    padding: 0 !important;
    border-radius: 50%;
    font-size: 18px;
}

@media (max-width: 768px) {
    body.page-platform .platform--item .category-buy-label {
        font-size: 13px;
    }

    body.page-platform .platform--item .category-package-count {
        font-size: 11px;
    }

    body.page-platform .platform--item > .butto-catpi.category-card-arrow,
    body.page-platform .platform--item:hover > .butto-catpi.category-card-arrow {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

/* =========================================================
   V9 - Platform sayfası hizmet gruplama alanı
   Kategori kartlarının mevcut tasarımına dokunmaz.
   ========================================================= */
body.page-platform .platform-platform {
    position: relative;
    z-index: 6;
    padding: 34px 0 0;
}

body.page-platform .platform-filter-panel {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(13, 23, 51, .09);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 55px rgba(22, 31, 68, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.page-platform .platform-filter-panel::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -165px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 73, 255, .15), rgba(109, 73, 255, 0) 70%);
    pointer-events: none;
}

body.page-platform .platform-filter-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
    padding: 0 2px;
}

body.page-platform .platform-filter-title {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

body.page-platform .platform-filter-title > span {
    color: var(--main-color);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .13em;
}

body.page-platform .platform-filter-title > strong {
    color: var(--t724-text, #0d1733);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.015em;
}

body.page-platform .platform-filter-total {
    display: inline-flex;
    min-width: 68px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid rgba(109, 73, 255, .12);
    border-radius: 13px;
    color: var(--main-color);
    background: rgba(109, 73, 255, .06);
    white-space: nowrap;
}

body.page-platform .platform-filter-total span {
    font-size: 16px;
    font-weight: 800;
}

body.page-platform .platform-filter-total small {
    color: #7b829d;
    font-size: 11px;
    font-weight: 700;
}

body.page-platform .platform-filter-panel .catpi--list,
body.page-platform .platform-filter-panel .catpi--list.catpi--hor {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)) !important;
    gap: 10px !important;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-platform .platform-filter-panel .catpi-item,
body.page-platform .platform-filter-panel .catpi--list.catpi--hor .catpi-item {
    position: relative;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 70px !important;
    aspect-ratio: auto !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 11px 13px !important;
    overflow: hidden;
    border: 1px solid rgba(13, 23, 51, .08) !important;
    border-radius: 17px !important;
    color: #0d1733 !important;
    background: #f7f8fc !important;
    box-shadow: none !important;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease !important;
}

body.page-platform .platform-filter-panel .catpi-item::before,
body.page-platform .platform-filter-panel .catpi-item::after {
    display: none !important;
}

body.page-platform .platform-filter-panel .catpi-item:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--c, var(--main-color)) 28%, rgba(13, 23, 51, .08)) !important;
    background: #fff !important;
    box-shadow: 0 12px 24px rgba(22, 31, 68, .08) !important;
}

body.page-platform .platform-filter-panel .catpi-item.active {
    border-color: rgba(255, 255, 255, .10) !important;
    color: #fff !important;
    background: linear-gradient(135deg, #0d1733 0%, #172445 100%) !important;
    box-shadow: 0 14px 28px rgba(13, 23, 51, .18) !important;
}

body.page-platform .platform-filter-panel .catpi-color {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: color-mix(in srgb, var(--c, var(--main-color)) 11%, #fff);
}

body.page-platform .platform-filter-panel .catpi-color::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid color-mix(in srgb, var(--c, var(--main-color)) 18%, transparent);
    border-radius: 9px;
}

body.page-platform .platform-filter-panel .catpi-color i {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--c, var(--main-color));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--c, var(--main-color)) 13%, transparent);
}

body.page-platform .platform-filter-panel .catpi-item.active .catpi-color {
    background: rgba(255, 255, 255, .10);
}

body.page-platform .platform-filter-panel .catpi-item.active .catpi-color::before {
    border-color: rgba(255, 255, 255, .12);
}

body.page-platform .platform-filter-panel .catpi-filter-text,
body.page-platform .platform-filter-panel .catpi--list.catpi--hor .catpi-filter-text {
    display: flex !important;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: inherit !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

body.page-platform .platform-filter-panel .catpi-filter-text strong {
    display: block;
    width: 100%;
    overflow: hidden;
    color: inherit !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.page-platform .platform-filter-panel .catpi-filter-text small {
    display: block;
    color: #858da5;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
}

body.page-platform .platform-filter-panel .catpi-item.active .catpi-filter-text small {
    color: rgba(255, 255, 255, .62);
}

body.page-platform .platform-filter-panel .catpi-filter-check {
    display: inline-flex;
    width: 20px;
    height: 20px;
    min-width: 20px;
    align-items: center;
    justify-content: center;
    color: rgba(13, 23, 51, .18);
    font-size: 18px;
    transition: color .2s ease, transform .2s ease;
}

body.page-platform .platform-filter-panel .catpi-item.active .catpi-filter-check {
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    body.page-platform .platform-platform {
        padding-top: 24px;
    }

    body.page-platform .platform-filter-panel {
        padding: 16px;
        border-radius: 20px;
    }

    body.page-platform .platform-filter-head {
        margin-bottom: 13px;
    }

    body.page-platform .platform-filter-title > strong {
        font-size: 17px;
    }

    body.page-platform .platform-filter-panel .catpi--list,
    body.page-platform .platform-filter-panel .catpi--list.catpi--hor {
        display: flex !important;
        width: calc(100% + 8px);
        margin-inline: -4px !important;
        padding: 2px 4px 8px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 9px !important;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body.page-platform .platform-filter-panel .catpi--list::-webkit-scrollbar {
        display: none;
    }

    body.page-platform .platform-filter-panel .catpi-item,
    body.page-platform .platform-filter-panel .catpi--list.catpi--hor .catpi-item {
        width: 205px !important;
        min-width: 205px !important;
        min-height: 66px !important;
        padding: 10px 12px !important;
        scroll-snap-align: center;
    }
}

@media (max-width: 520px) {
    body.page-platform .platform-filter-panel {
        padding: 14px;
        border-radius: 18px;
    }

    body.page-platform .platform-filter-title > span {
        font-size: 9px;
    }

    body.page-platform .platform-filter-title > strong {
        max-width: 220px;
        font-size: 15px;
    }

    body.page-platform .platform-filter-total {
        min-width: 58px;
        min-height: 38px;
        padding: 7px 10px;
    }

    body.page-platform .platform-filter-total span {
        font-size: 14px;
    }

    body.page-platform .platform-filter-panel .catpi-item,
    body.page-platform .platform-filter-panel .catpi--list.catpi--hor .catpi-item {
        width: 185px !important;
        min-width: 185px !important;
    }

    body.page-platform .platform-filter-panel .catpi-color {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
    }
}
