.license-page-root {
    position: relative;
    padding: 2.5rem 1.5rem 1rem;
}

.license-page-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.license-page-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.license-page-glow--cyan {
    width: 240px;
    height: 240px;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, rgba(59, 130, 246, 0) 72%);
}

.license-page-glow--violet {
    width: 240px;
    height: 240px;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(139, 92, 246, 0) 72%);
}

.license-page-header {
    margin-bottom: 2.5rem;
}

.license-page-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.license-page-header .subtitle {
    color: #a1a1aa;
    font-size: 1rem;
    margin-top: 0.5rem;
    max-width: 600px;
}

.license-login-required {
    margin-top: 1rem;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: #e4e4e7;
}

.license-dashboard {
    margin-top: 1.2rem;
}

.tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding: 0.3rem;
    width: fit-content;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
}

.license-tab-btn {
    background: transparent;
    border: 0;
    color: #94a3b8;
    border-radius: 9px;
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.license-tab-btn:hover {
    color: #e2e8f0;
    background: rgba(59, 130, 246, 0.08);
}

.license-tab-btn.active {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.35);
}

.tab-content {
    animation: licenseFade .35s ease;
}

@keyframes licenseFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel,
.license-card {
    /* background: linear-gradient(180deg, rgba(16, 24, 40, 0.38) 0%, rgba(7, 10, 18, 0.22) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    padding: 1.2rem; */
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
}

.license-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.license-catalog-search-wrap {
    width: 100%;
    max-width: 420px;
    position: relative;
}

.license-catalog-search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f4f4f5;
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.875rem;
}

.license-catalog-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.license-catalog-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: #94a3b8;
}

.license-card-head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
}

.license-grid.split-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2.5fr);
    gap: 1.35rem;
}

.license-loading,
.license-empty {
    color: #a1a1aa;
    font-size: 0.94rem;
}

.license-empty {
    padding: 1.15rem;
    border: 1px dashed #3f3f46;
    border-radius: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.license-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.license-item-btn {
    width: 100%;
    text-align: left;
    border: 1px solid #303036;
    background: rgba(255, 255, 255, 0.02);
    color: #d4d4d8;
    border-radius: 12px;
    padding: 0.72rem 0.8rem;
    cursor: pointer;
    transition: all .2s ease;
}

.license-item-btn:hover {
    border-color: #3f3f46;
}

.license-item-btn.active {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
}

.license-item-title {
    display: block;
    color: #fff;
    font-weight: 600;
}

.license-item-sub {
    display: block;
    color: #a1a1aa;
    font-size: 0.84rem;
    margin-top: 0.2rem;
}

.license-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    padding: 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.24);
}

.license-detail-meta span {
    display: block;
    color: #a1a1aa;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.license-detail-meta strong {
    display: block;
    color: #fff;
    margin-top: 0.12rem;
    font-weight: 600;
    word-break: break-word;
}

.license-actions {
    margin-top: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.18);
}

.license-ip-fee-note {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: #a1a1aa;
    line-height: 1.4;
}

.license-ip-fee-note.hidden {
    display: none;
}

.license-inline-form label {
    display: block;
    color: #94a3b8;
    font-size: 0.79rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.license-inline-inputs {
    display: flex;
    gap: 0.5rem;
}

.license-inline-inputs input,
.license-product-buy select,
.license-inline-inputs select {
    background: rgba(3, 7, 18, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #f4f4f5;
    border-radius: 9px;
    padding: 0.62rem 0.75rem;
    min-height: 42px;
}

.license-inline-inputs input {
    flex: 1;
    min-width: 0;
}

.license-inline-inputs select {
    min-width: 170px;
}

.license-renew-inputs .license-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.license-btn {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(51, 65, 85, 0.36);
    color: #f4f4f5;
    border-radius: 9px;
    padding: 0.58rem 0.95rem;
    min-height: 42px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.license-btn:hover {
    background: rgba(71, 85, 105, 0.48);
    border-color: rgba(148, 163, 184, 0.46);
}

/* Owned tab refresh (based on dslic style) */
.license-owned-layout {
    gap: 1.5rem;
}

.license-owned-sidebar {
    padding: 1.05rem;
}

.license-owned-main {
    padding: 1.1rem;
}

.license-owned-main .license-card-head h2,
.license-owned-sidebar .license-card-head h2 {
    font-size: 1.08rem;
    font-weight: 700;
}

.license-data-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.license-data-card {
    background: rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    transition: border-color .2s ease, transform .2s ease;
}

.license-data-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-1px);
}

.license-control-group {
    margin: 0;
}

.license-command-box pre {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.license-btn--ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.24);
    color: #dbeafe;
}

.license-btn--warn {
    border-color: rgba(245, 158, 11, 0.45);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.08);
}

/* dslic.html parity for Owned tab */
#license-tab-panel-owned .license-owned-dashboard {
    display: flex;
    gap: 24px;
    width: 100%;
    position: relative;
}

#license-tab-panel-owned .license-owned-dashboard::before,
#license-tab-panel-owned .license-owned-dashboard::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(110px);
    z-index: -1;
    opacity: 0.16;
    pointer-events: none;
}

#license-tab-panel-owned .license-owned-dashboard::before {
    background: #38bdf8;
    left: -90px;
    bottom: -120px;
}

#license-tab-panel-owned .license-owned-dashboard::after {
    background: #818cf8;
    right: -90px;
    top: -120px;
}

#license-tab-panel-owned .sidebar {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#license-tab-panel-owned .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

#license-tab-panel-owned .glass-panel {
    background: rgba(20, 20, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

#license-tab-panel-owned .gradient-text {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

#license-tab-panel-owned .section-title {
    font-size: 1.35rem;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#license-tab-panel-owned .section-title .section-title-icon {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.95;
}

#license-tab-panel-owned .btn-icon-only {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 18px;
}

#license-tab-panel-owned .btn-icon-only:hover {
    background: rgba(255,255,255,0.1);
    color: #f8fafc;
}

#license-tab-panel-owned .license-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#license-tab-panel-owned .license-item-btn {
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.02);
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#license-tab-panel-owned .license-item-btn:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

#license-tab-panel-owned .license-item-btn.active {
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.05));
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

#license-tab-panel-owned .license-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#license-tab-panel-owned .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

#license-tab-panel-owned .status-dot.active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

#license-tab-panel-owned .status-dot.expired {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
}

#license-tab-panel-owned .status-dot.neutral {
    background: #94a3b8;
    box-shadow: 0 0 8px rgba(148, 163, 184, 0.55);
}

#license-tab-panel-owned .license-status-text.active {
    color: #10b981;
}

#license-tab-panel-owned .license-status-text.expired {
    color: #ef4444;
}

#license-tab-panel-owned .license-status-text.neutral {
    color: #94a3b8;
}

#license-tab-panel-owned .data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 0;
    border: none;
    background: transparent;
}

#license-tab-panel-owned .license-data-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

#license-tab-panel-owned .license-data-card span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

#license-tab-panel-owned .license-data-card strong {
    font-size: 1.1rem;
    font-weight: 600;
}

#license-tab-panel-owned .license-value-active { color: #10e1a0; }
#license-tab-panel-owned .license-value-expired { color: #ef4444; }
#license-tab-panel-owned .license-value-neutral { color: #f8fafc; }
#license-tab-panel-owned .license-value-ip { color: #38bdf8; }

#license-tab-panel-owned .license-actions {
    border: 0;
    background: transparent;
    padding: 0;
    gap: 12px;
}

#license-tab-panel-owned .license-control-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #f8fafc;
}

#license-tab-panel-owned .input-glass {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    min-height: 46px;
}

#license-tab-panel-owned .input-glass:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

#license-tab-panel-owned .btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

#license-tab-panel-owned .btn-primary {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

#license-tab-panel-owned .btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

#license-tab-panel-owned .license-command-box pre {
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 44px 16px 16px;
    position: relative;
}

#license-tab-panel-owned .license-command-box pre::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at 14px 16px, #ff5f56 0 4px, transparent 5px),
        radial-gradient(circle at 30px 16px, #ffbd2e 0 4px, transparent 5px),
        radial-gradient(circle at 46px 16px, #27c93f 0 4px, transparent 5px),
        rgba(255,255,255,0.03);
}

#license-tab-panel-owned .btn-change-icon {
    display: inline-block;
    margin-right: 2px;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    #license-tab-panel-owned .license-owned-dashboard {
        flex-direction: column;
    }
    #license-tab-panel-owned .sidebar {
        flex: 1 1 auto;
    }
}

.license-reissue-advanced {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.license-reissue-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    margin: 0;
    cursor: pointer;
    border-radius: 8px;
}

.license-reissue-toggle-row:focus-within {
    outline: 1px solid rgba(245, 158, 11, 0.35);
    outline-offset: 2px;
}

.license-reissue-toggle-label {
    font-size: 0.82rem;
    color: #a1a1aa;
    line-height: 1.35;
}

#license-reissue-wrap.hidden {
    display: none;
}

.license-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.license-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.license-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #3f3f46;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.license-switch-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #f4f4f5;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.license-switch input:checked + .license-switch-slider {
    background: rgba(245, 158, 11, 0.55);
}

.license-switch input:checked + .license-switch-slider::before {
    transform: translateX(20px);
}

.license-switch input:focus-visible + .license-switch-slider {
    outline: 2px solid rgba(245, 158, 11, 0.55);
    outline-offset: 2px;
}

.license-help {
    margin-top: 1.1rem;
}

.license-help h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.license-help pre {
    margin: 0;
    background: rgba(2, 6, 23, 0.44);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 10px;
    padding: 0.82rem 0.9rem;
    color: #e4e4e7;
    max-height: 330px;
    overflow: auto;
    white-space: pre-wrap;
}

.license-help pre.license-help-pre--ready {
    cursor: pointer;
    outline-offset: 2px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.license-help pre.license-help-pre--ready:hover {
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.06);
}

.license-help pre.license-help-pre--ready:focus-visible {
    outline: 2px solid rgba(245, 158, 11, 0.65);
}

.license-access-log {
    margin-top: 1.25rem;
}

.license-access-log h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.license-access-log-body {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #27272a;
    border-radius: 10px;
    padding: 0.65rem;
    max-height: 280px;
    overflow: auto;
}

.license-access-log-empty {
    margin: 0;
    font-size: 0.85rem;
    color: #a1a1aa;
}

.license-access-log-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    color: #e4e4e7;
}

.license-access-log-table th,
.license-access-log-table td {
    border-bottom: 1px solid #27272a;
    padding: 0.4rem 0.35rem;
    text-align: left;
    vertical-align: top;
}

.license-access-log-table th {
    color: #a1a1aa;
    font-weight: 600;
    white-space: nowrap;
}

.license-access-log-table tr:last-child td {
    border-bottom: none;
}

.license-inactive-note {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
    font-size: 0.85rem;
}

.license-orders-wrap {
    overflow-x: auto;
}

.license-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    color: #e4e4e7;
}

.license-orders-table th,
.license-orders-table td {
    border-bottom: 1px solid #27272a;
    padding: 0.55rem 0.4rem;
    text-align: left;
}

.license-orders-table th {
    color: #a1a1aa;
    font-weight: 600;
    white-space: nowrap;
}

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

.license-orders-table .num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Shop list layout based on html/lic.html */
.license-catalog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.license-group-title {
    margin: 0 0 1rem;
    color: #f4f4f5;
    font-size: 1.12rem;
    font-weight: 700;
}

.license-group-grid {
    display: block;
}

.license-shop-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 240px 1fr 220px;
    gap: 32px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.license-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: #3b82f6;
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.license-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
}

.license-row:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.row-info {
    display: flex;
    flex-direction: column;
}

.row-logo {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    width: max-content;
}

.row-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
}

.row-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f8fafc;
}

.row-subtitle {
    font-size: 13px;
    color: #94a3b8;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: cover;
}

.row-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
    gap: 10px;
}

.price {
    color: #f8fafc;
    font-weight: 700;
    font-size: 14px;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    margin-left: 0.5rem;
    letter-spacing: 0.02em;
}

.btn-buy {
    width: 100%;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-buy:hover {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-buy:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .license-row {
        grid-template-columns: 200px 1fr;
        gap: 24px;
    }
    .row-action {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    .btn-buy {
        width: auto;
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .license-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .license-grid.split-layout {
        grid-template-columns: 1fr;
    }
    .license-detail-meta {
        grid-template-columns: 1fr;
    }
    .license-inline-inputs {
        flex-direction: column;
    }
}
