* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #2b3958 0%, #22314d 100%);
    color: #f4f4f4;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(31, 43, 68, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 104px;
}

.header-inner-clean {
    display: grid;
    grid-template-columns: minmax(360px, 500px) 1fr 190px;
    align-items: center;
    gap: 18px;
}

.header-right {
    justify-self: end;
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #f4f7ff;
    border-radius: 999px;
    transition: 0.2s ease;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 84vw);
    max-width: 84vw;
    overflow-y: auto;
    overscroll-behavior: contain;
    height: 100vh;
    padding: 22px;
    background: #243350;
    border-left: 1px solid rgba(255,255,255,0.10);
    box-shadow: -10px 0 30px rgba(0,0,0,0.22);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,12,20,0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 110;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 800;
    color: #f4f7ff;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav {
    display: grid;
    gap: 10px;
}

.mobile-nav a,
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #f4f7ff;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
}

.mobile-whatsapp-btn {
    justify-content: center;
    background: #25d366;
    color: #0d0d12;
    margin-top: auto;
    border-color: transparent;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
}

body.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.header-logo-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
}

.header-logo {
    height: 154px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 0;
}

.main-nav a {
    color: #f4f7ff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #ffffff;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.18);
    color: #dfffe9;
    border: 1px solid rgba(37, 211, 102, 0.28);
    padding: 14px 20px;
    font-size: 17px;
    font-weight: 800;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.22);
}

.hero {
    padding: 80px 0 56px;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 128, 0.16), transparent 30%),
        radial-gradient(circle at top left, rgba(0, 180, 255, 0.12), transparent 25%),
        #273553;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.1;
}

.hero p,
.page-hero p {
    color: #eef2fb;
    font-size: 18px;
}

.badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f7f7fb;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn,
.whatsapp-btn,
.ghost-btn,
.preset-btn,
.theme-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s ease;
    border: 0;
    cursor: pointer;
}

.btn:hover,
.ghost-btn:hover,
.preset-btn:hover,
.theme-card:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #25d366;
    color: #0d0d12;
}

.btn-secondary {
    background: #3b4d72;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.10);
}

.ghost-btn,
.preset-btn,
.theme-card {
    background: #3b4d72;
    color: #f2f2f7;
    border: 1px solid rgba(255,255,255,0.10);
}

.full,
.full-btn {
    width: 100%;
}

.hero-card,
.card,
.product-card,
.contact-box,
.cta-box,
.config-preview-card,
.config-controls,
.control-group {
    background: #31415f;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.hero-panel {
    padding: 28px;
}

.hero-panel h3 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 24px;
}

.hero-panel ul {
    padding-left: 18px;
    margin: 0;
    color: #d4d5dd;
}

.section {
    padding: 72px 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: 34px;
}

.section-heading p {
    margin: 0;
    color: #eef2fb;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.product-card {
    padding: 24px;
}

.card h3,
.product-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.card p,
.product-card p {
    color: #eef2fb;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #465a84, #2f4060);
    color: #b7c0d6;
    font-weight: 700;
    overflow: hidden;
}

.image-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-section {
    background: #2a3753;
}

.cta-box,
.contact-box {
    padding: 32px;
}

.page-hero.small {
    padding: 64px 0 24px;
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(31, 43, 68, 0.96);
    backdrop-filter: blur(8px);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p {
    margin: 6px 0 0;
    color: #dfe7f8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    background: #25d366;
    color: #0d0d12;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.configurator-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: 24px;
    align-items: start;
}

.config-preview-card,
.config-controls {
    padding: 22px;
}

.preview-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.preview-label {
    font-size: 14px;
    color: #eef2fb;
    font-weight: 700;
}

.canvas-wrap {
    width: 100%;
    background: #25324d;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    overflow: hidden;
}

.canvas-wrap canvas {
    width: 100%;
    height: auto;
    display: block;
}

.preview-note,
.muted {
    color: #c7cede;
    font-size: 14px;
}

.preview-note {
    margin-top: 14px;
}

.config-controls {
    display: grid;
    gap: 18px;
}

.control-group {
    padding: 18px;
}

.control-group h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.theme-card.active,
.preset-btn.active {
    background: #25d366;
    color: #0d0d12;
    border-color: transparent;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,0.18);
    background: var(--swatch);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.16);
}

.color-swatch.active {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

.preset-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.file-input,
textarea,
input[type="range"] {
    width: 100%;
}

.file-input {
    margin: 6px 0 14px;
    color: #dce0ea;
}

.range-label {
    display: block;
    margin: 8px 0 6px;
    font-size: 14px;
    color: #dce0ea;
}

textarea {
    min-height: 110px;
    resize: vertical;
    background: #2e3b57;
    color: #f6f7fb;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px;
}

@media (max-width: 900px) {
    .hero-inner,
    .grid-3,
    .footer-inner,
    .configurator-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .container {
        width: min(100% - 28px, 100% - 28px);
    }

    .header-inner-clean {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 86px;
    }

    .main-nav,
    .desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-logo {
        height: 64px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .theme-grid,
    .preset-list {
        grid-template-columns: 1fr;
    }
}

.homepage-choice-grid {
    margin-top: 26px;
}

.choice-card {
    display: block;
    padding: 28px;
    border-radius: 22px;
    background: #31415f;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    transition: 0.2s ease;
}

.choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37,211,102,0.35);
}

.choice-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #fff;
}

.choice-card p {
    margin: 0 0 20px;
    color: #eef2fb;
}

.choice-icon,
.choice-logo {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    font-size: 34px;
    background: #3b4d72;
    color: #fff;
    font-weight: 800;
}

.choice-card-highlight .choice-logo {
    background: #25d366;
    color: #0f1524;
}

.choice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    background: #25d366;
    color: #0d0d12;
    font-weight: 800;
}


.hero-home {
    padding: 46px 0 82px;
}

.home-hero-intro {
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-hero-intro h1 {
    margin: 0;
    font-size: 70px;
    line-height: 1.02;
}

.home-hero-intro p {
    margin: 0 auto;
    max-width: 860px;
    font-size: 22px;
    color: #eef2fb;
}

.compact-home-hero {
    padding-top: 4px;
}

.homepage-choice-grid-large {
    gap: 28px;
}

.choice-card-large {
    min-height: 430px;
    padding: 42px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 34%),
        #354768;
}

.choice-card-large::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
}

.choice-card-large h2 {
    font-size: 40px;
    margin-bottom: 14px;
    line-height: 1.12;
    position: relative;
    z-index: 1;
}

.choice-card-large p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.choice-kicker {
    margin-bottom: 12px;
    color: #d3dbef;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.choice-card-large .choice-icon,
.choice-card-large .choice-logo {
    width: 92px;
    height: 92px;
    margin-bottom: 24px;
    font-size: 44px;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.choice-card-large .choice-link {
    padding: 15px 22px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.choice-card-highlight.choice-card-large {
    border-color: rgba(37,211,102,0.45);
    box-shadow: 0 18px 46px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
    .hero-home {
        padding: 26px 0 42px;
    }

    .home-hero-intro {
        margin-bottom: 22px;
        text-align: left;
    }

    .home-hero-intro h1 {
        font-size: 42px;
    }

    .home-hero-intro p {
        font-size: 17px;
        margin: 0;
    }

    .choice-card-large {
        min-height: auto;
        padding: 28px;
    }
}


@media (min-width: 901px) {
    .mobile-menu-panel,
    .mobile-menu-backdrop,
    .mobile-menu-toggle {
        display: none !important;
    }
}


.category-grid {
    align-items: stretch;
}

.category-panel {
    display: block;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    min-height: 300px;
}

.category-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(37,211,102,0.34);
}

.category-panel h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.12;
}

.category-panel p {
    margin: 0 0 24px;
    color: #e6edf9;
}

.category-badge,
.product-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #f1f5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.category-panel-highlight {
    border-color: rgba(37,211,102,0.38);
}

.product-grid {
    align-items: stretch;
}

.product-card-premium {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding-top: 18px;
    flex: 1;
}

.product-card-body h3 {
    margin: 0 0 10px;
    font-size: 28px;
}

.product-card-body p {
    margin: 0;
}

.product-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
}

.product-detail-section {
    padding-top: 44px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 36px;
    align-items: start;
}

.product-detail-image-card {
    background: #31415f;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.product-detail-image-card img {
    width: 100%;
    border-radius: 18px;
}

.product-detail-content h1 {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 1.04;
}

.product-lead {
    margin: 0 0 24px;
    color: #e6edf9;
    font-size: 19px;
}

.detail-spec-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.detail-spec-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #edf2fb;
}

.product-actions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-content h1 {
        font-size: 38px;
    }

    .category-panel {
        min-height: auto;
        padding: 26px;
    }

    .category-panel h2,
    .product-card-body h3 {
        font-size: 26px;
    }
}

.section-tight-top {
    padding-top: 22px;
}

.section-tight-bottom {
    padding-bottom: 34px;
}

.future-filter-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(57, 76, 111, 0.88), rgba(47, 64, 96, 0.88));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.future-filter-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 18px;
}

.future-filter-head h2,
.detail-panel h2 {
    margin: 10px 0 0;
    font-size: 28px;
    line-height: 1.15;
}

.future-filter-head p {
    max-width: 520px;
    margin: 0;
    color: #eef2fb;
}

.future-filter-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.future-filter-group {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.future-filter-label {
    display: block;
    margin-bottom: 10px;
    color: #dbe4fa;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.future-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.future-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #f3f6ff;
    font-size: 14px;
    font-weight: 700;
}

.future-chip.active {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.34);
    color: #dfffe9;
}

.product-detail-grid-wide {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 30px;
    align-items: center;
}

.product-detail-image-card-large {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.product-detail-image-card-large img {
    width: 100%;
    border-radius: 18px;
}

.product-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.muted-tag {
    background: rgba(255,255,255,0.08);
    color: #eaf0ff;
}

.detail-spec-list-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.detail-panel {
    padding: 28px;
    border-radius: 24px;
    background: #31415f;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.feature-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #eef2fb;
}

.feature-list li + li {
    margin-top: 10px;
}

.compact-filter-card .future-filter-head {
    align-items: start;
}

.product-card-body {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .future-filter-head,
    .future-filter-row,
    .detail-section-grid,
    .product-detail-grid-wide,
    .detail-spec-list-rich {
        grid-template-columns: 1fr;
        display: grid;
    }

    .future-filter-head {
        align-items: start;
    }

    .future-filter-head p {
        max-width: none;
    }
}


/* Premium catalog/detail refresh */
.premium-page-hero {
    padding-top: 54px;
}

.premium-page-hero-inner {
    max-width: 1120px;
}

.premium-page-hero h1 {
    font-size: 58px;
    margin-bottom: 12px;
}

.premium-page-hero p {
    max-width: 880px;
    font-size: 19px;
    color: #e7eefc;
}

.filter-shell {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 46px rgba(12, 18, 31, 0.18);
}

.filter-shell-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.filter-title-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cfd8ed;
}

.filter-shell-head h2 {
    margin: 8px 0 0;
    font-size: 30px;
    line-height: 1.12;
}

.filter-shell-head p {
    max-width: 520px;
    margin: 0;
    color: #e1e7f6;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.filter-block {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.filter-label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d7dff2;
}

.filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #f3f6ff;
    font-size: 14px;
    font-weight: 700;
}

.filter-chip.active {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.32);
    color: #ddffe8;
}

.premium-product-grid {
    gap: 26px;
}

.refined-product-card {
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow: 0 20px 44px rgba(10, 16, 28, 0.16);
}

.refined-image-card {
    height: 280px;
    margin-bottom: 0;
    border-radius: 22px;
    background: #2b3b5b;
}

.refined-card-body {
    padding: 22px 8px 0;
}

.product-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mini-spec {
    color: #dde5f7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.refined-card-body h3 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.refined-card-body p {
    color: #e5ecf9;
    line-height: 1.75;
}

.mini-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.mini-feature-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #eff4ff;
    font-size: 13px;
    font-weight: 700;
}

.refined-actions-grid {
    margin-top: 24px;
}

.accent-card {
    border-color: rgba(37,211,102,0.30);
}

.premium-detail-page {
    padding-top: 28px;
}

.detail-breadcrumb-wrap {
    margin-bottom: 18px;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #d9e2f5;
    font-size: 14px;
}

.detail-breadcrumb a {
    color: #f4f7ff;
}

.premium-detail-grid {
    gap: 42px;
    align-items: start;
}

.premium-media-card {
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.detail-media-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.detail-media-note {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.detail-note-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #d8e0f3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-media-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.detail-media-note p,
.panel-text {
    margin: 0;
    color: #e7eefc;
    line-height: 1.8;
}

.premium-detail-content h1 {
    font-size: 64px;
    line-height: 0.98;
    margin-bottom: 16px;
}

.premium-lead {
    font-size: 20px;
    line-height: 1.85;
    color: #e7eefc;
}

.detail-highlight-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.detail-highlight-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.detail-highlight-item span {
    display: block;
    margin-bottom: 6px;
    color: #ced8ef;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.detail-highlight-item strong {
    display: block;
    font-size: 18px;
    line-height: 1.35;
}

.detail-spec-card {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 18px 40px rgba(10, 16, 28, 0.12);
}

.detail-spec-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
}

.refined-spec-grid .detail-spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 106px;
    justify-content: center;
}

.refined-spec-grid .detail-spec-item strong {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d6deef;
}

.refined-spec-grid .detail-spec-item span {
    font-size: 17px;
    line-height: 1.45;
}

.detail-action-panel {
    margin-top: 22px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.detail-action-panel strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.detail-action-panel p {
    margin: 0;
    color: #e5ecf9;
}

.refined-inline-actions {
    margin-top: 18px;
}

.premium-detail-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.premium-detail-panel {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
}

.clean-feature-list {
    list-style: none;
    padding-left: 0;
}

.clean-feature-list li {
    position: relative;
    padding-left: 26px;
    line-height: 1.8;
}

.clean-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #25d366;
}

@media (max-width: 900px) {
    .premium-page-hero h1,
    .premium-detail-content h1 {
        font-size: 40px;
    }

    .filter-shell,
    .detail-spec-card,
    .detail-action-panel,
    .premium-detail-panel {
        padding: 22px;
    }

    .filter-shell-head,
    .filter-grid,
    .detail-highlight-strip,
    .detail-media-note-grid,
    .premium-detail-sections {
        grid-template-columns: 1fr;
        display: grid;
    }

    .refined-image-card {
        height: 240px;
    }

    .refined-card-body h3 {
        font-size: 28px;
    }

    .product-card-topline {
        align-items: start;
        flex-direction: column;
    }
}

/* Premium refinement v3 */
.premium-home-hero {
    padding-top: 48px;
}

.premium-choice-grid {
    margin-top: 26px;
}

.premium-choice-card {
    min-height: 360px;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(66, 86, 126, 0.98) 0%, rgba(53, 70, 106, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 42px rgba(18, 28, 48, 0.24);
}

.choice-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #f4f7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.choice-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 18px;
}

.choice-meta-row span,
.proof-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: #eef2fb;
    font-size: 12px;
    font-weight: 700;
}

.premium-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 22px;
    align-items: end;
}

.hero-micro-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.hero-micro-proof div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-micro-proof strong,
.hero-micro-proof span {
    display: block;
}

.hero-micro-proof strong {
    font-size: 15px;
    color: #ffffff;
}

.hero-micro-proof span {
    margin-top: 4px;
    font-size: 13px;
    color: #d9e1f2;
}

.compact-filter-head p {
    display: none;
}

.premium-filter-shell {
    padding: 28px;
    background: linear-gradient(180deg, rgba(54, 70, 104, 0.92) 0%, rgba(45, 61, 93, 0.92) 100%);
    border: 1px solid rgba(255,255,255,0.10);
}

.premium-product-grid-v2 {
    gap: 26px;
}

.premium-card-v2 {
    padding: 18px;
    background: linear-gradient(180deg, rgba(61, 79, 117, 0.98) 0%, rgba(48, 64, 97, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow: 0 20px 40px rgba(15, 25, 42, 0.20);
}

.premium-image-frame {
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #42567e, #31415f);
}

.premium-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.premium-card-v2:hover .premium-image-frame img,
.detail-thumb-card:hover img {
    transform: scale(1.03);
}

.product-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.mini-spec {
    color: #d8e1f4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.proof-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.premium-detail-grid-v2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 32px;
}

.premium-media-card-v2 {
    padding: 16px;
    background: linear-gradient(180deg, rgba(54, 72, 108, 0.98) 0%, rgba(43, 58, 89, 0.98) 100%);
}

.premium-media-card-v2 img {
    width: 100%;
    border-radius: 18px;
}

.detail-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.detail-thumb-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 22px rgba(14, 24, 40, 0.16);
}

.detail-thumb-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.premium-highlight-strip {
    margin: 22px 0 24px;
}

.premium-cta-panel {
    margin-top: 0;
    background: linear-gradient(180deg, rgba(58, 75, 109, 0.98) 0%, rgba(48, 63, 95, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 30px rgba(16, 26, 44, 0.16);
}

.premium-detail-blocks-wrap {
    padding-top: 22px;
}

.premium-detail-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.spec-panel-wide {
    grid-column: span 2;
}

.refined-spec-grid-strong {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.refined-spec-grid-strong .detail-spec-item {
    min-height: 110px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.refined-spec-grid-strong .detail-spec-item strong,
.refined-spec-grid-strong .detail-spec-item span {
    display: block;
}

.refined-spec-grid-strong .detail-spec-item strong {
    margin-bottom: 8px;
    color: #ffffff;
}

.refined-spec-grid-strong .detail-spec-item span {
    color: #dce4f5;
}

.checked-feature-list {
    list-style: none;
    padding-left: 0;
}

.checked-feature-list li {
    position: relative;
    padding-left: 26px;
}

.checked-feature-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    top: 0;
    color: #4bf19a;
    font-size: 20px;
    line-height: 1;
}

.order-flow-list {
    display: grid;
    gap: 12px;
}

.order-flow-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.order-flow-list strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.18);
    color: #dfffe9;
}

.order-flow-list span {
    color: #eef2fb;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .premium-page-hero-grid,
    .premium-detail-grid-v2,
    .premium-detail-blocks-grid,
    .spec-panel-wide {
        grid-template-columns: 1fr;
    }

    .spec-panel-wide {
        grid-column: auto;
    }

    .refined-spec-grid-strong {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .premium-choice-card {
        min-height: auto;
    }

    .premium-page-hero-grid,
    .detail-thumb-row,
    .refined-spec-grid-strong {
        grid-template-columns: 1fr;
    }

    .premium-image-frame {
        height: 220px;
    }

    .detail-thumb-card img {
        height: 180px;
    }
}


.home-panels-section {
    padding: 34px 0 60px;
    background: linear-gradient(180deg, #2b3958 0%, #23314c 100%);
}

.home-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-panel-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(11, 17, 31, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-panel-card-highlight {
    border-color: rgba(37, 211, 102, 0.34);
}

.home-panel-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.home-panel-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 18px 0 18px;
}

.home-panel-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    padding: 14px 16px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10, 15, 26, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-panel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-panel-card p {
    margin: 18px 0 0;
    color: #eef3ff;
    font-size: 18px;
    line-height: 1.7;
}

.home-panel-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.home-panel-list li {
    position: relative;
    padding-left: 18px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.home-panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
}

.home-panel-btn {
    margin-top: auto;
    align-self: flex-start;
    padding-inline: 24px;
}

@media (max-width: 1100px) {
    .home-panels-grid {
        grid-template-columns: 1fr;
    }

    .home-panel-card h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .home-panels-section {
        padding-top: 24px;
    }

    .home-panel-card {
        padding: 18px;
        border-radius: 20px;
    }

    .home-panel-image-link {
        height: 220px;
        padding: 12px;
    }

    .home-panel-card p,
    .home-panel-list li {
        font-size: 17px;
    }
}

.home-slider-section {
    padding: 28px 0 84px;
}

.home-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.home-slider-head h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.12;
    color: #f6f8ff;
}

.home-slider-head p {
    margin: 0;
    color: rgba(241, 244, 255, 0.82);
    font-size: 16px;
}

.home-showcase-slider {
    position: relative;
}

.showcase-track {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.showcase-slide {
    display: none;
}

.showcase-slide.is-active {
    display: block;
}

.showcase-card {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 52px rgba(0,0,0,0.20);
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,24,0.04) 0%, rgba(8,12,22,0.12) 45%, rgba(8,12,22,0.72) 100%);
    pointer-events: none;
}

.showcase-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.showcase-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.16);
    color: #d9ffe6;
    border: 1px solid rgba(37, 211, 102, 0.24);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.showcase-caption h3 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.06;
    color: #ffffff;
}

.showcase-caption p {
    margin: 0;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245,248,255,0.92);
}

.home-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

.mobile-slider-controls {
    display: none;
    justify-content: center;
    margin-top: 18px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.24);
    cursor: pointer;
    padding: 0;
}

.slider-dot.is-active {
    background: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

@media (max-width: 900px) {
    .home-slider-section {
        padding: 22px 0 56px;
    }

    .home-slider-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .home-slider-head h2 {
        font-size: 26px;
    }

    .home-slider-head p {
        font-size: 15px;
    }

    .desktop-slider-controls {
        display: none;
    }

    .mobile-slider-controls {
        display: flex;
    }

    .showcase-card,
    .showcase-image {
        min-height: 300px;
        height: 300px;
    }

    .showcase-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .showcase-caption h3 {
        font-size: 24px;
    }

    .showcase-caption p {
        font-size: 14px;
        line-height: 1.55;
    }
}


/* Slider edge arrow fix */
.home-slider-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.home-showcase-slider {
    position: relative;
}

.slider-edge-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(13, 19, 34, 0.72);
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(0,0,0,0.24);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(10px);
}

.slider-edge-arrow:hover {
    background: rgba(20, 28, 48, 0.92);
    border-color: rgba(255,255,255,0.32);
    transform: translateY(-50%) scale(1.04);
}

.slider-edge-arrow-left {
    left: 18px;
}

.slider-edge-arrow-right {
    right: 18px;
}

.showcase-track {
    border-radius: 30px;
}

.slider-dots {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .slider-edge-arrow {
        display: none;
    }

    .home-slider-head {
        margin-bottom: 14px;
    }
}



@media (max-width: 1260px) {
    .header-inner-clean {
        grid-template-columns: minmax(300px, 420px) 1fr 168px;
        gap: 14px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 17px;
    }

    .whatsapp-btn {
        padding: 13px 16px;
        font-size: 16px;
    }

    .header-logo {
        height: 142px;
    }
}

.fightcade-page {
    padding: 46px 0 76px;
}

.fightcade-page .page-hero {
    padding: 0 0 26px;
}

.fightcade-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.fightcade-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(10,16,28,0.18);
    padding: 28px;
}

.fightcade-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #f4f7ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fightcade-card h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.1;
    color: #ffffff;
}

.fightcade-card p {
    margin: 0 0 18px;
    color: #e7eefc;
    font-size: 17px;
    line-height: 1.75;
}

.fightcade-actions {
    display: grid;
    gap: 14px;
    margin: 22px 0 24px;
}

.fightcade-action-card {
    padding: 18px 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

.fightcade-action-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    color: #ffffff;
}

.fightcade-action-card span {
    display: block;
    margin-bottom: 14px;
    color: #dbe4f7;
    line-height: 1.65;
}

.fightcade-steps {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.fightcade-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.fightcade-step strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.18);
    color: #dfffe9;
    font-size: 18px;
}

.fightcade-step div {
    color: #eef3ff;
    line-height: 1.7;
}

.fightcade-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 22px;
    overflow: hidden;
    background: #0f1726;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.fightcade-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fightcade-video-note {
    margin-top: 16px;
    color: #dbe4f7;
    font-size: 15px;
    line-height: 1.7;
}

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

    .fightcade-card {
        padding: 22px;
    }

    .fightcade-card h2 {
        font-size: 26px;
    }

    .fightcade-card p {
        font-size: 16px;
    }
}


/* KemoPlay home panel premium color option 3 */
.home-panels-grid .home-panel-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(31, 68, 98, 0.96) 0%, rgba(24, 49, 79, 0.96) 100%);
    border-color: rgba(82, 165, 255, 0.24);
    box-shadow: 0 18px 40px rgba(9, 20, 38, 0.26), 0 0 0 1px rgba(82, 165, 255, 0.06) inset;
}
.home-panels-grid .home-panel-card:nth-child(1) .home-panel-divider {
    background: rgba(143, 200, 255, 0.20);
}
.home-panels-grid .home-panel-card:nth-child(1) .home-panel-image-link {
    background: rgba(7, 20, 38, 0.26);
    border-color: rgba(82, 165, 255, 0.16);
}
.home-panels-grid .home-panel-card:nth-child(1) .home-panel-list li::before {
    background: #65b8ff;
    box-shadow: 0 0 0 4px rgba(101, 184, 255, 0.14);
}
.home-panels-grid .home-panel-card:nth-child(1) .home-panel-btn {
    background: linear-gradient(180deg, #5db7ff 0%, #4a95e8 100%);
    color: #09111f;
}

.home-panels-grid .home-panel-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(51, 35, 66, 0.96) 0%, rgba(36, 28, 54, 0.96) 100%);
    border-color: rgba(224, 92, 255, 0.22);
    box-shadow: 0 18px 40px rgba(15, 11, 26, 0.28), 0 0 0 1px rgba(224, 92, 255, 0.05) inset;
}
.home-panels-grid .home-panel-card:nth-child(2) .home-panel-divider {
    background: rgba(236, 156, 255, 0.18);
}
.home-panels-grid .home-panel-card:nth-child(2) .home-panel-image-link {
    background: rgba(18, 12, 28, 0.24);
    border-color: rgba(224, 92, 255, 0.14);
}
.home-panels-grid .home-panel-card:nth-child(2) .home-panel-list li::before {
    background: #d86dff;
    box-shadow: 0 0 0 4px rgba(216, 109, 255, 0.14);
}
.home-panels-grid .home-panel-card:nth-child(2) .home-panel-btn {
    background: linear-gradient(180deg, #d95fff 0%, #b04ce3 100%);
    color: #130d1d;
}

.home-panels-grid .home-panel-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(25, 47, 42, 0.96) 0%, rgba(18, 36, 33, 0.96) 100%);
    border-color: rgba(65, 217, 164, 0.24);
    box-shadow: 0 18px 40px rgba(9, 20, 18, 0.28), 0 0 0 1px rgba(65, 217, 164, 0.06) inset;
}
.home-panels-grid .home-panel-card:nth-child(3) .home-panel-divider {
    background: rgba(135, 255, 214, 0.18);
}
.home-panels-grid .home-panel-card:nth-child(3) .home-panel-image-link {
    background: rgba(7, 21, 18, 0.24);
    border-color: rgba(65, 217, 164, 0.14);
}
.home-panels-grid .home-panel-card:nth-child(3) .home-panel-list li::before {
    background: #49d7a7;
    box-shadow: 0 0 0 4px rgba(73, 215, 167, 0.14);
}
.home-panels-grid .home-panel-card:nth-child(3) .home-panel-btn {
    background: linear-gradient(180deg, #4ae2a9 0%, #2fb686 100%);
    color: #091511;
}


/* Hazir joystickler grid refresh */
.ready-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ready-product-card {
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
    transform: translateY(0) scale(1);
    will-change: transform;
}

.ready-product-card:hover {
    transform: translateY(-8px) scale(1.014);
    box-shadow: 0 26px 56px rgba(10, 16, 28, 0.28);
}

.ready-product-card:hover .premium-image-frame img {
    transform: scale(1.04);
}

.ready-products-grid .ready-product-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(54, 73, 110, 0.98) 0%, rgba(45, 61, 93, 0.98) 100%);
    border-color: rgba(128, 167, 230, 0.14);
}

.ready-products-grid .ready-product-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(52, 68, 103, 0.98) 0%, rgba(43, 58, 89, 0.98) 100%);
    border-color: rgba(150, 136, 228, 0.13);
}

.ready-products-grid .ready-product-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(49, 70, 102, 0.98) 0%, rgba(40, 58, 87, 0.98) 100%);
    border-color: rgba(124, 183, 231, 0.13);
}

.ready-products-grid .ready-product-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(58, 66, 103, 0.98) 0%, rgba(46, 55, 88, 0.98) 100%);
    border-color: rgba(184, 139, 221, 0.13);
}

.ready-products-grid .ready-product-card:nth-child(5) {
    background: linear-gradient(180deg, rgba(49, 67, 97, 0.98) 0%, rgba(40, 56, 84, 0.98) 100%);
    border-color: rgba(112, 189, 179, 0.13);
}

.ready-products-grid .ready-product-card:nth-child(6) {
    background: linear-gradient(180deg, rgba(55, 71, 101, 0.98) 0%, rgba(45, 59, 89, 0.98) 100%);
    border-color: rgba(168, 176, 200, 0.12);
}

.ready-products-grid .ready-product-card .proof-chip-row span {
    background: rgba(255,255,255,0.07);
}

@media (max-width: 1200px) {
    .ready-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ready-products-grid {
        grid-template-columns: 1fr;
    }

    .ready-product-card:hover {
        transform: translateY(-4px) scale(1.008);
    }
}


/* Oyunlu joystickler grid refresh */
.loaded-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loaded-product-card {
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
    transform: translateY(0) scale(1);
    will-change: transform;
}

.loaded-product-card:hover {
    transform: translateY(-8px) scale(1.014);
    box-shadow: 0 26px 56px rgba(10, 16, 28, 0.28);
}

.loaded-product-card:hover .premium-image-frame img {
    transform: scale(1.04);
}

.loaded-products-grid .loaded-product-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(55, 74, 111, 0.98) 0%, rgba(45, 61, 93, 0.98) 100%);
    border-color: rgba(126, 169, 232, 0.14);
}

.loaded-products-grid .loaded-product-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(47, 72, 93, 0.98) 0%, rgba(38, 59, 77, 0.98) 100%);
    border-color: rgba(111, 204, 194, 0.13);
}

.loaded-products-grid .loaded-product-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(57, 67, 104, 0.98) 0%, rgba(46, 55, 88, 0.98) 100%);
    border-color: rgba(175, 146, 226, 0.13);
}

.loaded-products-grid .loaded-product-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(65, 60, 100, 0.98) 0%, rgba(52, 49, 82, 0.98) 100%);
    border-color: rgba(208, 147, 226, 0.13);
}

.loaded-products-grid .loaded-product-card:nth-child(5) {
    background: linear-gradient(180deg, rgba(70, 67, 93, 0.98) 0%, rgba(57, 54, 77, 0.98) 100%);
    border-color: rgba(215, 185, 131, 0.12);
}

.loaded-products-grid .loaded-product-card:nth-child(6) {
    background: linear-gradient(180deg, rgba(56, 69, 92, 0.98) 0%, rgba(45, 56, 76, 0.98) 100%);
    border-color: rgba(161, 176, 203, 0.12);
}

.loaded-products-grid .loaded-product-card .proof-chip-row span {
    background: rgba(255,255,255,0.07);
}

@media (max-width: 1200px) {
    .loaded-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .loaded-products-grid {
        grid-template-columns: 1fr;
    }

    .loaded-product-card:hover {
        transform: translateY(-4px) scale(1.008);
    }
}
