/* ============================================================
   WHATEVER HOSTING – ORDER FORM THEME
   Remove all white inner backgrounds, keep dark cards
   ============================================================ */

/* Product outer card */
#order-standard_cart .product {
    background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(2,6,23,0.98)) !important;
    border-radius: 1.25rem !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8) !important;
    padding: 1.4rem 1.6rem !important;
    color: #f8fafc !important;
}

/* 🔥 Kill ALL light backgrounds inside product (this removes the white bar) */
#order-standard_cart .product * {
    background-color: transparent !important;
    box-shadow: none !important;
    border-color: inherit;
}

/* We still explicitly clear WHMCS panel/card wrappers just in case */
#order-standard_cart .product .panel,
#order-standard_cart .product .panel-body,
#order-standard_cart .product .panel-heading,
#order-standard_cart .product .card,
#order-standard_cart .product .card-body,
#order-standard_cart .product .card-header,
#order-standard_cart .product .product-header,
#order-standard_cart .product .product-info {
    background: transparent !important;
    border: none !important;
}

/* Title */
#order-standard_cart .product .product-name,
#order-standard_cart .product .panel-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9 !important;
    margin-bottom: 0.35rem;
}

/* Specs text */
#order-standard_cart .product ul li,
#order-standard_cart .product .features,
#order-standard_cart .product .product-desc {
    color: #cbd5e1 !important;
    font-size: 0.85rem;
}

/* Price */
#order-standard_cart .product .price {
    color: #38bdf8 !important;
    font-weight: 700 !important;
}

#order-standard_cart .product .price-cycle {
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
}

/* Order button – re-apply gradient background */
#order-standard_cart .product .btn,
#order-standard_cart .product .btn-order,
#order-standard_cart .product .btn-primary {
    border-radius: 9999px !important;
    background: linear-gradient(135deg, #0ea5e9, #6366f1) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0.55rem 1.2rem !important;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45) !important;
}

#order-standard_cart .product .btn:hover {
    filter: brightness(1.05) !important;
    transform: translateY(-1px) !important;
}

/* Hover effect for the whole card */
#order-standard_cart .product:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9) !important;
}

/* ============================================================
   MATCH SIDEBAR (CATEGORIES + ACTIONS) TO DARK THEME
   ============================================================ */

/* Sidebar containers */
#order-standard_cart .sidebar,
#order-standard_cart .sidebar .panel,
#order-standard_cart .sidebar .panel-heading,
#order-standard_cart .sidebar .panel-body {
    background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(2,6,23,0.98)) !important;
    border-radius: 1.25rem !important;
    border: 1px solid rgba(148,163,184,0.25) !important;
    box-shadow: 0 16px 40px rgba(15,23,42,0.4) !important;
    color: #fff !important;
}

/* Sidebar titles (Categories / Actions) */
#order-standard_cart .sidebar .panel-heading {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #f1f5f9 !important;
    padding: 1rem !important;
    border-bottom: 1px solid rgba(148,163,184,0.2) !important;
}

/* Sidebar item list */
#order-standard_cart .sidebar .list-group-item {
    background: transparent !important;
    border: none !important;
    color: #e2e8f0 !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 1rem !important;
}

/* Hover effect */
#order-standard_cart .sidebar .list-group-item:hover {
    background: rgba(255,255,255,0.06) !important;
    color: #fff !important;
}

/* Active category */
#order-standard_cart .sidebar .list-group-item.active {
    background: rgba(56,189,248,0.25) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* Icons in titles */
#order-standard_cart .sidebar .panel-heading i {
    color: #60a5fa !important;
    margin-right: 0.5rem;
}

/* "Actions" icons */
#order-standard_cart .sidebar .list-group-item i {
    margin-right: 0.55rem;
    color: #93c5fd !important;
}

/* Force all product<number>-name IDs to be white */
#order-standard_cart [id^="product"][id$="-name"] {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}


