/* =============================================
   B.A.R & Associates - Modern Products Page
   Brand: Red #e32026 | Blue #21134d | Green #185d2f
   ============================================= */

:root {
    --brand-red: #e32026;
    --brand-blue: #21134d;
    --brand-green: #185d2f;
}

/* Hero — light, minimal */
.product-hero {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 28px 0;
    margin: 0 -15px 32px;
    position: relative;
}

.product-hero::before {
    display: none;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #334155 !important;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.product-hero p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #64748b !important;
    margin: 0;
    line-height: 1.6;
}

/* Product Cards — entrance animation */
@keyframes productCardEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Product Cards Grid */
#order-standard_cart .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

#order-standard_cart .products .product {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    animation: productCardEnter 0.45s ease backwards;
}

#order-standard_cart .products .product:nth-child(1) { animation-delay: 0.08s; }
#order-standard_cart .products .product:nth-child(2) { animation-delay: 0.18s; }
#order-standard_cart .products .product:nth-child(3) { animation-delay: 0.28s; }
#order-standard_cart .products .product:nth-child(n+4) { animation-delay: 0.38s; }

#order-standard_cart .products .product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

/* Product Card Header — light */
#order-standard_cart .products .product header {
    background: #f8fafc !important;
    padding: 20px 22px !important;
    margin: 0 !important;
    border-radius: 14px 14px 0 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

#order-standard_cart .products .product header::after {
    display: none;
}

#order-standard_cart .products .product header span {
    color: #334155 !important;
    font-size: 1.25em !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-text-fill-color: #334155 !important;
    text-transform: none;
}

#order-standard_cart .products .product header .qty {
    float: right;
    font-size: 0.7em;
    color: #64748b !important;
    font-style: normal;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

/* Product Description */
#order-standard_cart .products .product div.product-desc {
    width: 100% !important;
    float: none !important;
    padding: 18px 22px;
    font-size: 0.92em;
    color: #475569 !important;
    line-height: 1.65;
    flex: 1;
}

/* Product Pricing */
#order-standard_cart .products .product div.product-pricing {
    padding: 0 22px 14px;
    text-align: center;
}

#order-standard_cart .products .product div.product-pricing span.price {
    font-size: 1.75em;
    font-weight: 800;
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    background: none !important;
    text-shadow: none;
}

#order-standard_cart .products .product div.product-pricing br + *,
#order-standard_cart .products .product div.product-pricing {
    color: #64748b !important;
}

/* Order Button — gradient + hover glow */
#order-standard_cart .products .product footer {
    width: 100%;
    margin: 0;
    padding: 0 24px 24px;
    text-align: center;
}

#order-standard_cart .products .product footer .btn,
#order-standard_cart .products .product footer .btn.btn-success,
#order-standard_cart .products .product footer .btn-order-now {
    width: 100%;
    background: #185d2f !important;
    border: 1px solid #185d2f !important;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.95em;
    font-weight: 600;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: background 0.15s ease, border-color 0.15s ease;
    box-shadow: none;
}

/* #order-standard_cart .products .product:hover footer .btn,
#order-standard_cart .products .product:hover footer .btn.btn-success,
#order-standard_cart .products .product:hover footer .btn-order-now {
    box-shadow: 0 8px 28px rgba(227, 32, 38, 0.45), 0 0 20px rgba(227, 32, 38, 0.2);
} */

#order-standard_cart .products .product footer .btn:hover,
#order-standard_cart .products .product footer .btn.btn-success:hover,
#order-standard_cart .products .product footer .btn-order-now:hover {
    background: #134a26 !important;
    border-color: #134a26 !important;
    transform: none;
    box-shadow: none;
    color: #fff !important;
}

/* =========================
   VPS PRODUCTS – ALIGNMENT & COLOR ACCENTS
   (applies to all product grids, tuned for VPS layout)
   ========================= */

/* Keep card content perfectly aligned and spaced */
#order-standard_cart .products .product header,
#order-standard_cart .products .product div.product-desc,
#order-standard_cart .products .product footer {
    display: block;
}

/* Description & feature list – tidy alignment */
#order-standard_cart .products .product div.product-desc p {
    margin-bottom: 10px;
}

#order-standard_cart .products .product div.product-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#order-standard_cart .products .product div.product-desc ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.9em;
    line-height: 1.5;
}

#order-standard_cart .products .product div.product-desc ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    margin-top: 8px;
    border-radius: 999px;
    background: #0d9488;
    flex-shrink: 0;
}

#order-standard_cart .products .product div.product-desc ul li .feature-value {
    font-weight: 600;
    color: #334155;
}

/* Pricing block – stronger alignment and color */
#order-standard_cart .products .product div.product-pricing {
    padding-top: 8px;
}

#order-standard_cart .products .product div.product-pricing span.price {
    display: inline-block;
    margin-bottom: 4px;
}

/* Tier tint — soft pastels on header */
#order-standard_cart .products .product:nth-child(1) header {
    background: #f0f9ff !important;
}

#order-standard_cart .products .product:nth-child(1) div.product-pricing span.price {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
}

#order-standard_cart .products .product:nth-child(2) header {
    background: #f0fdf4 !important;
}

#order-standard_cart .products .product:nth-child(2) div.product-pricing span.price {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
}

#order-standard_cart .products .product:nth-child(3) header {
    background: #fffbeb !important;
}

#order-standard_cart .products .product:nth-child(3) div.product-pricing span.price {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
}

#order-standard_cart .products .product:nth-child(2) header .qty {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #166534 !important;
}

/* Responsive tweaks – prevent overflow and keep grid tidy */
@media (max-width: 767.98px) {
    .product-hero {
        margin: 0 0 28px;
        border-radius: 0 0 18px 18px;
    }

    #order-standard_cart .products {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    #order-standard_cart .products .product div.product-desc {
        padding: 18px 18px 14px;
    }

    #order-standard_cart .products .product div.product-pricing {
        padding: 0 18px 14px;
    }

    #order-standard_cart .products .product footer {
        padding: 0 18px 20px;
    }
}

/* Sidebar Panel Headers — green bg + white text */
#order-standard_cart .cart-sidebar .panel-heading,
#order-standard_cart .cart-sidebar .card-header {
    background: #185d2f !important;
    border: none !important;
}

#order-standard_cart .cart-sidebar .panel-heading h3,
#order-standard_cart .cart-sidebar .card-header h3,
#order-standard_cart .cart-sidebar .panel-heading .panel-title,
#order-standard_cart .cart-sidebar .card-header .panel-title,
#order-standard_cart .cart-sidebar h3.panel-title {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
}

#order-standard_cart .cart-sidebar .panel-heading i,
#order-standard_cart .cart-sidebar .card-header i {
    color: #fff !important;
}

/* Sidebar List Items */
#order-standard_cart .cart-sidebar .list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 2px;
    padding: 10px 16px;
    color: #333 !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

#order-standard_cart .cart-sidebar .list-group-item:hover {
    background: rgba(33, 19, 77, 0.06) !important;
    color: #21134d !important;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover {
    background: #21134d !important;
    border-color: #21134d !important;
    color: #fff !important;
    font-weight: 600;
}

/* Sidebar collapsed (mobile) */
#order-standard_cart .sidebar-collapsed .panel-heading,
#order-standard_cart .sidebar-collapsed .card-header {
    background: #185d2f !important;
}

#order-standard_cart .sidebar-collapsed .panel-heading h3,
#order-standard_cart .sidebar-collapsed .card-header h3,
#order-standard_cart .sidebar-collapsed .panel-title {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Features List — light */
#order-standard_cart .products .product ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

#order-standard_cart .products .product ul li {
    padding: 8px 0;
    color: #475569 !important;
    font-size: 0.9em;
    position: relative;
    padding-left: 22px;
    transition: color 0.15s ease;
}

#order-standard_cart .products .product:hover ul li {
    color: #334155 !important;
}

#order-standard_cart .products .product ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #0d9488 !important;
    font-weight: 600;
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 991px) {
    #order-standard_cart .products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .product-hero { padding: 40px 0; }
}

@media (max-width: 767px) {
    #order-standard_cart .products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .product-hero {
        padding: 32px 0;
        margin: 0 0 24px;
    }
    #order-standard_cart .products .product header span {
        font-size: 1.2em !important;
    }
}

/* =============================================
   Confproduct listing fallback – cleaner modern cards
   (VPS / VDS: .bar-cart-vps-hosting / .bar-cart-vds-hosting skip this + shared-hosting block below)
   ============================================= */
#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product:hover {
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16) !important;
    border-color: rgba(1, 106, 77, 0.24) !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product div.product-desc {
    color: #334155 !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product ul li {
    color: #334155 !important;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.26);
    padding: 9px 0 9px 24px;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product ul li:last-child {
    border-bottom: none;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product:hover ul li {
    color: #1f2937 !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product div.product-pricing span.price {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    text-shadow: none !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product div.product-pricing {
    color: #475569 !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn,
#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn.btn-success,
#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn-order-now {
    background: linear-gradient(135deg, #016a4d 0%, #059669 55%, #16a34a 100%) !important;
    box-shadow: 0 8px 22px rgba(1, 106, 77, 0.3);
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn:hover,
#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn.btn-success:hover,
#order-standard_cart:not(.bar-cart-vps-hosting):not(.bar-cart-vds-hosting) .products .product footer .btn-order-now:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #38bdf8 100%) !important;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.38);
}

/* ============================
   Shared-hosting card styling
   (match provided Solo/Infinity/Pro image)
   Scoped so VPS & VDS keep dark tier cards above
   ============================ */

#order-standard_cart.bar-cart-shared-hosting .products .product {
    background: #ffffff !important;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08) !important;
    overflow: hidden !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product:hover {
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.14) !important;
    border-color: rgba(37, 99, 235, 0.25) !important;
    transform: translateY(-6px) scale(1.01) !important;
}

/* Header: plain white background + black text */
#order-standard_cart.bar-cart-shared-hosting .products .product header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 22px 24px 10px !important;
    position: relative !important;
    text-align: center !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product header span {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    font-size: 1.45em !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* Price cycle text ("Monthly") under price */
#order-standard_cart.bar-cart-shared-hosting .products .product .product-pricing .price-cycle {
    display: inline-block;
    font-size: 0.85rem !important;
    font-weight: 600;
    color: #64748b !important;
}

/* When using homepage card class stack, keep title typography identical */
#order-standard_cart.bar-cart-shared-hosting .products .product.plan-card-modern header span {
    font-size: 2.35em !important;
    font-weight: 500 !important;
    text-align: center !important;
}

/* "Popular" chip (uses the existing .qty span as the label) */
#order-standard_cart.bar-cart-shared-hosting .products .product header .qty {
    float: none !important;
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    background: rgba(219, 234, 254, 0.9) !important;
    border: 1px solid rgba(29, 78, 216, 0.18) !important;
    color: #1d4ed8 !important;
    border-radius: 999px !important;
    padding: 6px 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.04em !important;
}

/* Features list: remove dashed divider; teal circle bullets */
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc {
    padding: 14px 24px 8px !important;
    color: #334155 !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc ul {
    border-bottom: none !important;
    padding: 0 !important;
    margin: 8px 0 0 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc ul li {
    border-bottom: none !important;
    color: #334155 !important;
    padding: 6px 0 6px 22px !important;
    font-size: 1.06em !important;
    font-weight: 600 !important;
    position: relative !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 999px !important;
    background: #0f766e !important;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.22) !important;
}

/* Price: big number, dark text */
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-pricing {
    padding: 6px 24px 10px !important;
    text-align: center !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product div.product-pricing span.price {
    font-size: 1.50em !important;
    font-weight: 900 !important;
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    text-shadow: none !important;
}

/* Order button: blue gradient like screenshot */
#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn,
#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn.btn-success,
#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn-order-now {
    width: 100% !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-size: 1.05em !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.25) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn:hover,
#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn.btn-success:hover,
#order-standard_cart.bar-cart-shared-hosting .products .product footer .btn-order-now:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
    transform: translateY(-2px) scale(1.01) !important;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.38) !important;
}

/* Make sure tier (nth-child) gradients don't override the shared-hosting look */
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(1) header,
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(2) header,
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(3) header {
    background: transparent !important;
    border-bottom: none !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(1) header span,
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(2) header span,
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(3) header span {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    text-shadow: none !important;
}

/* Popular badge (middle plan) */
#order-standard_cart.bar-cart-shared-hosting .products .product:nth-child(2) header .qty {
    background: rgba(219, 234, 254, 0.9) !important;
    border: 1px solid rgba(29, 78, 216, 0.18) !important;
    color: #1d4ed8 !important;
    border-radius: 999px !important;
    padding: 6px 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.04em !important;
    box-shadow: none !important;
}

/* Feature bullets: remove checkmarks + force teal dots */
#order-standard_cart.bar-cart-shared-hosting .products .product ul li::before {
    content: '' !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 999px !important;
    background: #0f766e !important;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.22) !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

#order-standard_cart.bar-cart-shared-hosting .products .product ul li {
    border-bottom: none !important;
    padding: 6px 0 6px 22px !important;
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 1.02em !important;
}

/* Final hard override for feature text (fixes other cart css conflicts) */
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc ul li,
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc ul li span.feature-value {
    font-size: 1.12em !important;
    line-height: 1.35 !important;
}

/* Feature text can also be rendered as <p> with <br> (store shared-hosting) */
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc p,
#order-standard_cart.bar-cart-shared-hosting .products .product div.product-desc p span {
    font-size: 1.25em !important;
    line-height: 1.45 !important;
}

/* =============================================
   Virtual Dedicated Server (barabd_cart) — light, minimal
   ============================================= */

.bar-vds-hero {
    position: relative;
    margin: 0 0 28px;
    padding: clamp(22px, 4vw, 36px) clamp(18px, 3vw, 28px);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.bar-vds-hero-inner {
    position: relative;
    max-width: 720px;
}

.bar-vds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
}

.bar-vds-hero-badge i {
    color: #0d9488;
    font-size: 0.8rem;
}

.bar-vds-hero-title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
}

.bar-vds-hero-lead {
    margin: 0 0 18px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: #64748b !important;
    max-width: 40rem;
}

.bar-vds-hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.bar-vds-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569 !important;
}

.bar-vds-hero-points li i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ecfdf5;
    color: #0d9488;
    font-size: 0.75rem;
}

@media (max-width: 575.98px) {
    .bar-vds-hero-points {
        flex-direction: column;
        gap: 8px;
    }
}

#order-standard_cart.bar-cart-vds-hosting .products {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 22px;
}

/* VDS uses same light cards as base; only subtle tier tints */
#order-standard_cart.bar-cart-vds-hosting .products .product:nth-child(1) header {
    background: #f0f9ff !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product:nth-child(2) header {
    background: #f0fdf4 !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product:nth-child(3) header {
    background: #fffbeb !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product:nth-child(n+4) header {
    background: #f8fafc !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product header span {
    font-weight: 800 !important;
    text-shadow: none !important;
    -webkit-text-shadow: none !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product div.product-pricing {
    text-align: center !important;
    font-size: 1.05rem !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product div.product-pricing span.price {
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    text-shadow: none !important;
    font-size: 1.95rem !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product div.product-pricing .price-cycle {
    font-size: 1rem !important;
    font-weight: 600 !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product div.product-desc ul li .feature-value {
    color: #334155 !important;
}

/* VDS: no list bullets / dots */
#order-standard_cart.bar-cart-vds-hosting .products .product div.product-desc ul li::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product div.product-desc ul li {
    padding-left: 0 !important;
    gap: 0 !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product ul li::before {
    content: none !important;
    display: none !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product ul li {
    padding-left: 0 !important;
}

#order-standard_cart.bar-cart-vds-hosting .products .product footer .btn-order-now,
#order-standard_cart.bar-cart-vds-hosting .products .product footer .btn {
    background: #185d2f !important;
    border-color: #185d2f !important;
    box-shadow: none;
}

#order-standard_cart.bar-cart-vds-hosting .products .product footer .btn-order-now:hover,
#order-standard_cart.bar-cart-vds-hosting .products .product footer .btn:hover {
    background: #134a26 !important;
    border-color: #134a26 !important;
    box-shadow: none;
}
