/* Octagon Theme Base Refinements */
:root {
    --octagon-glow: rgba(59, 130, 246, 0.15);
    --octagon-border: rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050810;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

/* DataTables Styling */
.dataTables_wrapper .octagon-table-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    margin: 0 4px !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 !important;
    float: none !important;
}

.dataTables_wrapper .dataTables_paginate > span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.dataTables_wrapper .dataTables_info {
    color: rgba(255, 255, 255, 0.2) !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: 1.5px !important;
    padding-top: 0 !important;
    margin: 0 !important;
    float: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

@media (max-width: 768px) {
    .dataTables_wrapper .octagon-table-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        justify-content: center;
        text-align: center;
    }
}

/* Select Dropdown Reset */
select {
    padding-right: 2rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* WHMCS Orderform & Cart Overrides - Force Premium Dark */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
}

/* Modal Visibility Fix */
.modal {
    display: none;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(8px);
}
.modal.show, .modal.in {
    display: flex !important;
    opacity: 1 !important;
}
.modal-dialog {
    margin: auto !important;
    width: 100%;
    max-width: 600px;
}
.modal-backdrop {
    display: none !important;
}

.view-cart-items-header, 
.view-cart-items, 
.order-summary,
.cart-sidebar, 
.product-info,
.categories-sidebar,
.promo-code-container,
.sub-total-container {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    color: white !important;
}

.view-cart-items-header {
    background: #3b82f6 !important;
    border: none !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.order-summary h2, .cart-sidebar h3 {
    color: white !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.list-group-item {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.list-group-item.active {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

input[type="text"], input[type="password"], input[type="email"], select, textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px !important;
}

.btn-primary, .btn-checkout {
    background: #3b82f6 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* WHMCS Orderform Exhaustive Overrides */
#order-standard_cart, .cart-body, .order-summary, .cart-sidebar, .primary-sidebar, .secondary-sidebar {
    background: transparent !important;
    color: white !important;
}

#order-standard_cart .view-cart-container,
#order-standard_cart .product-selection-container,
#order-standard_cart .checkout-container {
    padding-top: 140px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

#order-standard_cart .categories-sidebar,
#order-standard_cart .secondary-sidebar,
#order-standard_cart .order-summary,
#order-standard_cart .view-cart-items-header,
#order-standard_cart .view-cart-items,
#order-standard_cart .promo-code-container,
#order-standard_cart .sub-total-container,
#order-standard_cart .panel-default,
#order-standard_cart .well {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    color: white !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}

#order-standard_cart .view-cart-items-header {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    padding: 15px 25px !important;
}

#order-standard_cart .view-cart-items .item {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px !important;
}

#order-standard_cart .view-cart-items .item:last-child {
    border-bottom: none !important;
}

#order-standard_cart .list-group-item {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 8px !important;
    border-radius: 10px !important;
}

#order-standard_cart .list-group-item.active,
#order-standard_cart .list-group-item:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: #3b82f6 !important;
    color: white !important;
}

#order-standard_cart input, #order-standard_cart select, #order-standard_cart textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 10px !important;
    height: auto !important;
    padding: 12px 18px !important;
}

#order-standard_cart .btn-primary, 
#order-standard_cart .btn-checkout, 
#order-standard_cart .btn-add-to-cart,
#order-standard_cart button[type="submit"] {
    background: #3b82f6 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}

#order-standard_cart .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
}

/* Fix text colors */
#order-standard_cart h2, #order-standard_cart h3, #order-standard_cart h1, 
#order-standard_cart .headline, #order-standard_cart .price {
    color: white !important;
    font-weight: 800 !important;
}

#order-standard_cart .text-muted, #order-standard_cart p, #order-standard_cart label {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Hide messy WHMCS default elements */
#order-standard_cart hr {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cart-sidebar .panel-heading {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}

/* Domain Checker Specific Overrides */
#order-standard_cart .domain-checker-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(5, 8, 16, 0.5) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 60px 40px !important;
    margin-bottom: 40px !important;
}

#order-standard_cart .domain-checker-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

#order-standard_cart .domain-checker-container input {
    font-size: 18px !important;
    padding: 20px 30px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px 0 0 16px !important;
}

#order-standard_cart .domain-checker-container .btn-primary {
    border-radius: 0 16px 16px 0 !important;
    padding: 0 40px !important;
}

#order-standard_cart .tld-filters {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    margin-bottom: 30px !important;
    padding: 10px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

#order-standard_cart .tld-filters a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
}

#order-standard_cart .tld-filters a.active {
    color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border-radius: 8px !important;
}

#order-standard_cart .domain-lookup-result {
    margin-top: 30px !important;
}

#order-standard_cart .domain-lookup-available, 
#order-standard_cart .domain-lookup-unavailable {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    color: white !important;
}

#order-standard_cart .domain-suggestions {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 16px !important;
    margin-top: 40px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

#order-standard_cart .domain-suggestions .suggestion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 25px !important;
    color: white !important;
}

#order-standard_cart .domain-suggestions .suggestion-item:last-child {
    border-bottom: none !important;
}

#order-standard_cart .domain-promo-box {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin-top: 20px !important;
}

#order-standard_cart .domain-promo-box i {
    font-size: 40px !important;
    color: #3b82f6 !important;
}

/* Fix for standard table within domain checker */
#order-standard_cart .table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.01) !important;
}

#order-standard_cart .table > tbody > tr > td {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    padding: 20px !important;
}

/* Client Area Home panel content */
.client-home-panels .body-html-container {
    color: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: 14px;
}

.client-home-panels .body-html-container a {
    color: var(--premium-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.client-home-panels .body-html-container a:hover {
    color: #ffffff;
}

.client-home-panels .body-html-container > form {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.client-home-panels .body-html-container .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-home-panels .body-html-container .input-group > input,
.client-home-panels .body-html-container input[type="text"] {
    flex: 1 1 240px;
    min-width: 0;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
}

.client-home-panels .body-html-container .input-group-btn,
.client-home-panels .body-html-container .input-group-btn .btn {
    display: flex;
}

.client-home-panels .body-html-container .input-group-btn .btn,
.client-home-panels .body-html-container .btn,
.client-home-panels .body-html-container .btn-default,
.client-home-panels .body-html-container .btn-primary {
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-home-panels .body-html-container .btn-primary,
.client-home-panels .body-html-container .input-group-btn .btn-primary {
    background: var(--premium-blue);
    border-color: var(--premium-blue);
}

.client-home-panels .body-html-container .label {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-home-panels .body-html-container .label-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.client-home-panels .body-html-container .label-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.client-home-panels .body-html-container .label-danger {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.client-home-panels .body-html-container .label-info {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

/* Octagon service cards */
.octagon-service-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.octagon-service-item:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    transform: translateY(-1px);
}

.octagon-service-item__meta {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.octagon-service-item__status {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.octagon-service-item__status--success,
.octagon-service-item__status--active {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
}

.octagon-service-item__status--warning,
.octagon-service-item__status--suspended,
.octagon-service-item__status--pending {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}

.octagon-service-item__status--danger,
.octagon-service-item__status--terminated,
.octagon-service-item__status--cancelled {
    background: rgba(244, 63, 94, 0.14);
    color: #fb7185;
}

.octagon-service-item__status--info {
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
}

.octagon-service-item__identity {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.octagon-service-item__title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.octagon-service-item__domain {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.octagon-service-item__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.octagon-service-item__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.octagon-service-item__button:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transform: translateY(-1px);
}

.octagon-service-item__button--primary {
    background: var(--premium-blue);
    border-color: var(--premium-blue);
    box-shadow: 0 12px 24px -14px rgba(59, 130, 246, 0.8);
}

.octagon-service-item__button--primary:hover {
    background: #4a8cff;
    border-color: #4a8cff;
}

.octagon-service-item__button--ghost {
    background: transparent;
}

.octagon-service-item__dropdown {
    position: relative;
}

.octagon-service-item__menu {
    min-width: 220px;
    padding: 8px;
    margin-top: 8px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}

.octagon-service-item__menu .dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.35;
    cursor: pointer;
}

.octagon-service-item__menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

#octagon-news-panel-slot {
    width: 100%;
}

#octagon-news-panel-slot:empty {
    display: none;
}

.octagon-news-panel-full {
    width: 100%;
    max-width: 100%;
}

.octagon-news-panel-full .px-8.py-5.text-sm {
    min-height: 72px;
}

@media (max-width: 900px) {
    .octagon-service-item {
        grid-template-columns: 1fr;
    }

    .octagon-service-item__actions {
        justify-content: flex-start;
    }
}

/* Product Details Page */
.product-detail-stat {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-detail-stat__label,
.product-detail-section__title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
}

.product-detail-stat__value {
    margin-top: 8px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.product-detail-section {
    display: grid;
    gap: 18px;
}

.product-detail-list {
    display: grid;
    gap: 10px;
}

.product-detail-row {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-detail-row span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-row strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-module-output > div,
.product-module-output .panel,
.product-module-output .module-client-area,
.product-module-output .form-horizontal,
.product-module-output .well {
    max-width: 100%;
}

.product-module-output {
    overflow-x: auto;
}

/* Force dark background on product detail page containers - prevent module CSS bleed */
#tabOverview,
.tab-content,
.tab-content > .tab-pane,
.product-details-tab-container,
.product-details-tab-container > .tab-pane {
    background: transparent !important;
    color: inherit !important;
}

/* Six product details: isolate legacy module UI inside a neutral shell */
.module-embed-shell {
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
}

.module-embed-shell .module-client-area {
    min-width: 680px;
    background: #f4f6fb;
    border-radius: 12px;
    border: 1px solid #dbe2ee;
    padding: 10px;
    color: #111827;
}

.module-embed-shell .module-client-area,
.module-embed-shell .module-client-area * {
    box-sizing: border-box;
}

.module-embed-shell .module-client-area .panel,
.module-embed-shell .module-client-area .well,
.module-embed-shell .module-client-area .box,
.module-embed-shell .module-client-area [class*="card"] {
    background: #ffffff !important;
    border-color: #dde4ef !important;
    color: #111827 !important;
}

.module-embed-shell .module-client-area .panel-heading,
.module-embed-shell .module-client-area .panel-title,
.module-embed-shell .module-client-area .panel-title * {
    color: #111827 !important;
}

.module-embed-shell .module-client-area .table,
.module-embed-shell .module-client-area .table > thead > tr > th,
.module-embed-shell .module-client-area .table > tbody > tr > td,
.module-embed-shell .module-client-area .table > tbody > tr > th {
    color: #111827 !important;
    border-color: #e5eaf3 !important;
    background: transparent !important;
}

.module-embed-shell .module-client-area .form-control,
.module-embed-shell .module-client-area input,
.module-embed-shell .module-client-area select,
.module-embed-shell .module-client-area textarea {
    background: #ffffff !important;
    border: 1px solid #cfd8e6 !important;
    color: #111827 !important;
}

.module-embed-shell .module-client-area a {
    color: #1d4ed8;
}

.module-embed-shell .module-client-area a:hover {
    color: #1e40af;
}

@media (max-width: 900px) {
    .module-embed-shell .module-client-area {
        min-width: 560px;
    }
}

.product-usage-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-usage-card__label {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-usage-card__bar {
    position: relative;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.product-usage-card__bar span {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 999px;
}

.product-usage-card__meta {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.product-subcard {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .product-detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
