/**
 * WeHostName WHMCS Design System
 * Matches https://wehostname.com/
 */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
    --wh-primary: #FF5722;
    --wh-primary-hover: #E64A19;
    --wh-primary-dark: #D84315;
    --wh-primary-light: #FF784E;
    --wh-primary-subtle: rgba(255, 87, 34, 0.08);
    --wh-primary-border: rgba(255, 87, 34, 0.25);
    --wh-primary-glow: 0 4px 20px -2px rgba(255, 87, 34, 0.28);

    --wh-navy-950: #060911;
    --wh-navy-900: #0B0F19;
    --wh-navy-850: #0F172A;
    --wh-navy-800: #162033;
    --wh-navy-700: #1E293B;
    --wh-navy-600: #334155;

    --wh-text-dark: #0F172A;
    --wh-text-body: #334155;
    --wh-text-muted: #64748B;
    --wh-text-light: #94A3B8;

    --wh-bg-body: #F8FAFC;
    --wh-bg-card: #FFFFFF;
    --wh-bg-subtle: #F1F5F9;
    --wh-border: #E2E8F0;
    --wh-border-dark: #1E293B;

    --wh-radius-sm: 6px;
    --wh-radius-md: 10px;
    --wh-radius-lg: 14px;
    --wh-radius-xl: 20px;
    --wh-radius-full: 9999px;

    --wh-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wh-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --wh-shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --wh-shadow-xl: 0 20px 30px -5px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
html, body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    background-color: var(--wh-bg-body) !important;
    color: var(--wh-text-body) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Urbanist', sans-serif !important;
    color: var(--wh-text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--wh-primary);
    transition: color 0.15s ease-in-out;
}

a:hover, a:focus {
    color: var(--wh-primary-hover);
    text-decoration: none;
}

/* ==========================================================================
   Header & Navbar (wehostname.com Style)
   ========================================================================== */
header#header.header {
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--wh-border);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.header .topbar {
    background: #0B0F19;
    color: #94a3b8;
    font-size: 0.8125rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .topbar a {
    color: #cbd5e1;
}

.header .topbar a:hover {
    color: var(--wh-primary-light);
}

.header .topbar .btn {
    color: #e2e8f0;
    font-size: 0.8125rem;
    padding: 0.15rem 0.5rem;
}

.header .topbar .btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.header .topbar .btn-active-client {
    background: rgba(255, 87, 34, 0.15);
    color: #ff784e;
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: var(--wh-radius-full);
    font-weight: 600;
}

.header .navbar-light {
    padding: 0.75rem 0;
    background: #ffffff;
}

.header .navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: inline-flex;
    align-items: center;
}

.header .navbar-brand img.logo-img,
.header .navbar-brand svg {
    max-height: 38px;
    width: auto;
    display: block;
}

/* Navbar Links */
.main-navbar-wrapper {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.main-navbar-wrapper .navbar-nav .nav-link {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wh-navy-700) !important;
    padding: 0.85rem 1rem !important;
    transition: all 0.2s ease;
    border-radius: var(--wh-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.main-navbar-wrapper .navbar-nav .nav-link:hover,
.main-navbar-wrapper .navbar-nav .nav-item.active > .nav-link {
    color: var(--wh-primary) !important;
    background-color: var(--wh-primary-subtle);
}

.main-navbar-wrapper .navbar-nav .dropdown-menu {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-md);
    box-shadow: var(--wh-shadow-lg);
    padding: 0.5rem;
    min-width: 220px;
    margin-top: 0.4rem;
    animation: whDropdownFade 0.2s ease-out;
}

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

.main-navbar-wrapper .navbar-nav .dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wh-text-dark);
    padding: 0.6rem 0.85rem;
    border-radius: var(--wh-radius-sm);
    transition: all 0.15s ease;
}

.main-navbar-wrapper .navbar-nav .dropdown-item:hover {
    background-color: var(--wh-primary-subtle);
    color: var(--wh-primary);
}

/* Toolbar & Action Buttons */
.toolbar .cart-btn {
    position: relative;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-full);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wh-navy-700) !important;
    background: #ffffff;
    transition: all 0.2s ease;
}

.toolbar .cart-btn:hover {
    border-color: var(--wh-primary);
    color: var(--wh-primary) !important;
    box-shadow: var(--wh-shadow-sm);
}

.toolbar .cart-btn #cartItemCount {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--wh-primary) !important;
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--wh-radius-full);
    padding: 0.2em 0.5em;
    min-width: 18px;
    border: 2px solid #ffffff;
}

.wh-btn-login {
    background-color: var(--wh-primary);
    color: #ffffff !important;
    border-radius: var(--wh-radius-full);
    padding: 0.5rem 1.25rem !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.25);
    border: none;
}

.wh-btn-login:hover {
    background-color: var(--wh-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.wh-btn-register {
    border: 1.5px solid var(--wh-border);
    color: var(--wh-navy-800) !important;
    border-radius: var(--wh-radius-full);
    padding: 0.45rem 1.15rem !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.wh-btn-register:hover {
    border-color: var(--wh-primary);
    color: var(--wh-primary) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    border-radius: var(--wh-radius-md);
    padding: 0.55rem 1.15rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--wh-primary) !important;
    border-color: var(--wh-primary) !important;
    color: #ffffff !important;
    box-shadow: var(--wh-shadow-sm);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--wh-primary-hover) !important;
    border-color: var(--wh-primary-hover) !important;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.3);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--wh-primary) !important;
    border-color: var(--wh-primary) !important;
    background-color: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--wh-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.25);
}

.btn-success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

.btn-success:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
}

.btn-default, .btn-secondary {
    background-color: #f1f5f9;
    border-color: var(--wh-border);
    color: var(--wh-navy-700);
}

.btn-default:hover, .btn-secondary:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    color: var(--wh-navy-900);
}

/* ==========================================================================
   Hero & Domain Search (wehostname.com Style)
   ========================================================================== */
.home-domain-search {
    background: radial-gradient(circle at 50% 0%, rgba(255, 87, 34, 0.08) 0%, rgba(248, 250, 252, 1) 75%) !important;
    border-bottom: 1px solid var(--wh-border);
    padding: 3.5rem 0 3rem !important;
}

.home-domain-search h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--wh-navy-950);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.home-domain-search p.subtitle {
    font-size: 1.1rem;
    color: var(--wh-text-muted);
    margin-bottom: 2rem;
}

.home-domain-search .input-group-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--wh-radius-full);
    padding: 6px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--wh-border);
    transition: all 0.2s ease;
}

.home-domain-search .input-group-wrapper:focus-within {
    box-shadow: 0 12px 35px -5px rgba(255, 87, 34, 0.18), 0 0 0 2px var(--wh-primary);
}

.home-domain-search .input-group-wrapper .form-control {
    border: none;
    background: transparent;
    padding-left: 1.5rem;
    font-size: 1.15rem;
    font-family: 'Urbanist', sans-serif;
    color: var(--wh-navy-900);
    height: 52px;
}

.home-domain-search .input-group-wrapper .form-control:focus {
    box-shadow: none;
}

.home-domain-search .input-group-wrapper .btn {
    border-radius: var(--wh-radius-full) !important;
    padding: 0 1.8rem;
    font-size: 1rem;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.home-domain-search .input-group-wrapper #btnDomainSearch {
    background-color: var(--wh-primary) !important;
    border-color: var(--wh-primary) !important;
}

.home-domain-search .input-group-wrapper #btnTransfer {
    background-color: var(--wh-navy-900) !important;
    border-color: var(--wh-navy-900) !important;
    color: #ffffff;
    margin-left: 0.4rem;
}

.home-domain-search .input-group-wrapper #btnTransfer:hover {
    background-color: var(--wh-navy-700) !important;
}

/* TLD Tags under Domain Search */
.home-domain-search .tld-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0.5rem;
}

.home-domain-search .tld-logos li {
    background: #ffffff;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--wh-navy-800);
    box-shadow: var(--wh-shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.home-domain-search .tld-logos li:hover {
    border-color: var(--wh-primary);
    color: var(--wh-primary);
    transform: translateY(-2px);
    box-shadow: var(--wh-shadow-md);
}

.home-domain-search .tld-logos li img {
    height: 18px;
    width: auto;
}

/* ==========================================================================
   Cards, Panels & Widgets
   ========================================================================== */
.card, .panel {
    background: var(--wh-bg-card);
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-lg);
    box-shadow: var(--wh-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--wh-shadow-md);
    border-color: #cbd5e1;
}

.card-header, .panel-heading {
    background: #ffffff;
    border-bottom: 1px solid var(--wh-border);
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--wh-navy-900);
}

.card-title, .pricing-card-title {
    font-weight: 700;
    color: var(--wh-navy-900);
    margin-bottom: 0.75rem;
}

/* Action Icon Buttons on Homepage */
.action-icon-btns a {
    background: #ffffff;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    display: block;
    color: var(--wh-navy-900);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--wh-shadow-sm);
    transition: all 0.2s ease;
}

.action-icon-btns a:hover {
    transform: translateY(-4px);
    box-shadow: var(--wh-shadow-lg);
    border-color: var(--wh-primary-border);
    color: var(--wh-primary);
}

.action-icon-btns figure.ico-container {
    width: 52px;
    height: 52px;
    border-radius: var(--wh-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--wh-primary-subtle);
    color: var(--wh-primary);
    font-size: 1.35rem;
    transition: all 0.2s ease;
}

.action-icon-btns a:hover figure.ico-container {
    background: var(--wh-primary);
    color: #ffffff;
    transform: scale(1.08);
}

/* ==========================================================================
   Sidebar & Navigation Widgets
   ========================================================================== */
.sidebar .card {
    border-radius: var(--wh-radius-lg);
    margin-bottom: 1.5rem;
}

.sidebar .card-header {
    background: var(--wh-bg-subtle);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--wh-navy-700);
}

.sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.85rem 1.15rem;
    font-weight: 600;
    color: var(--wh-navy-700);
    transition: all 0.15s ease;
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

.sidebar .list-group-item:hover {
    background-color: var(--wh-primary-subtle);
    color: var(--wh-primary);
    padding-left: 1.35rem;
}

.sidebar .list-group-item.active {
    background-color: var(--wh-primary-subtle);
    border-color: transparent;
    color: var(--wh-primary);
    font-weight: 700;
    border-left: 3px solid var(--wh-primary);
}

.sidebar .badge {
    border-radius: var(--wh-radius-full);
    padding: 0.35em 0.7em;
    font-weight: 700;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.master-breadcrumb {
    background: transparent !important;
    padding: 1.25rem 0 0.5rem;
}

.breadcrumb {
    background: transparent !important;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--wh-text-muted);
}

.breadcrumb-item a:hover {
    color: var(--wh-primary);
}

.breadcrumb-item.active {
    color: var(--wh-navy-900);
}

/* ==========================================================================
   Forms, Inputs & Tables
   ========================================================================== */
.form-control {
    font-family: 'Urbanist', sans-serif;
    border: 1.5px solid var(--wh-border);
    border-radius: var(--wh-radius-md);
    padding: 0.65rem 1rem;
    color: var(--wh-navy-900);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--wh-primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

table.table {
    font-family: 'Urbanist', sans-serif;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-lg);
    overflow: hidden;
}

table.table thead th {
    background: #f8fafc;
    border-bottom: 1px solid var(--wh-border);
    color: var(--wh-navy-700);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 1rem 1.25rem;
}

table.table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border-top: 1px solid #f1f5f9;
    color: var(--wh-navy-800);
    font-weight: 500;
}

table.table tbody tr:hover td {
    background-color: rgba(255, 87, 34, 0.03);
}

/* Badges */
.badge {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-info {
    background-color: var(--wh-primary) !important;
}

.badge-success {
    background-color: #10b981 !important;
}

.badge-warning {
    background-color: #f59e0b !important;
}

.badge-danger {
    background-color: #ef4444 !important;
}

/* Alerts */
.alert {
    border-radius: var(--wh-radius-md);
    border: none;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.alert-info {
    background-color: rgba(255, 87, 34, 0.1);
    color: #c2410c;
    border-left: 4px solid var(--wh-primary);
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-warning {
    background-color: #fffbeb;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* ==========================================================================
   Footer (Matching wehostname.com rich dark footer)
   ========================================================================== */
footer#footer.footer {
    background: #0B0F19 !important;
    color: #94A3B8 !important;
    border-top: 1px solid #1E293B;
    padding: 4rem 0 2rem !important;
    margin-top: 4rem;
}

.wh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
    .wh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .wh-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.wh-footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    max-width: 320px;
}

.wh-footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.wh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-footer-links li {
    margin-bottom: 0.65rem;
}

.wh-footer-links a {
    color: #94a3b8 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.wh-footer-links a:hover {
    color: var(--wh-primary) !important;
    padding-left: 3px;
}

.wh-footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.wh-footer-bottom .copyright {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.wh-social-links {
    display: inline-flex;
    gap: 0.75rem;
}

.wh-social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--wh-radius-full);
    background: #162033;
    color: #cbd5e1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wh-social-btn:hover {
    background: var(--wh-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.wh-footer-bottom .btn-locale {
    background: #162033;
    color: #cbd5e1;
    border: 1px solid #1E293B;
    border-radius: var(--wh-radius-full);
    padding: 0.35rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 600;
}

.wh-footer-bottom .btn-locale:hover {
    background: #1E293B;
    color: #ffffff;
}

/* ==========================================================================
   Auth Forms (Login, Register, Password Reset)
   ========================================================================== */
.login-form .card.mw-540,
.card.mw-540 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-xl);
    box-shadow: var(--wh-shadow-lg);
    background: #ffffff;
}

.login-form .card-body {
    padding: 2.5rem 2rem !important;
}

.login-form h6.h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--wh-navy-950);
}

.login-form .input-group-merge .input-group-text {
    background-color: #f8fafc;
    border-color: var(--wh-border);
    color: var(--wh-text-muted);
}

.login-form .input-group-merge .form-control {
    border-left: none;
}

.login-form .btn#login,
.login-form .btn-primary {
    border-radius: var(--wh-radius-full);
    padding: 0.65rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.login-form .card-footer {
    background-color: #f8fafc;
    border-top: 1px solid var(--wh-border);
    border-bottom-left-radius: var(--wh-radius-xl);
    border-bottom-right-radius: var(--wh-radius-xl);
    text-align: center;
    padding: 1rem;
}

/* ==========================================================================
   Client Area Dashboard Tiles
   ========================================================================== */
.tiles .tile {
    background: #ffffff;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--wh-shadow-sm);
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.tiles .tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--wh-shadow-md);
    border-color: rgba(255, 87, 34, 0.3);
}

.tiles .tile .icon {
    width: 48px;
    height: 48px;
    border-radius: var(--wh-radius-full);
    background: var(--wh-primary-subtle);
    color: var(--wh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tiles .tile .stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--wh-navy-950);
    line-height: 1.1;
}

.tiles .tile .title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.25rem;
}

/* ==========================================================================
   Shopping Cart / Order Form Polish
   ========================================================================== */
.order-sidebar .card,
#order-standard_cart .card {
    border-radius: var(--wh-radius-lg);
    border: 1px solid var(--wh-border);
}

#order-standard_cart .btn-checkout,
.btn-checkout {
    background-color: var(--wh-primary) !important;
    border-color: var(--wh-primary) !important;
    color: #ffffff !important;
    border-radius: var(--wh-radius-full) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

#order-standard_cart .btn-checkout:hover {
    background-color: var(--wh-primary-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Ticket Thread */
.ticket-reply {
    background: #ffffff;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ticket-reply.staff {
    border-left: 4px solid var(--wh-primary);
    background: #fffbf9;
}

