/* Fair E Web Host Portal v10 — client page styles. */
/* Fair E Web Host Billing Platform v7 — scoped legacy page styles.
   Generated from former inline page CSS so shared platform-v7.css remains the final cascade authority. */

/* ---- client/account/index ---- */

/* ===== ACCOUNT SETTINGS ENHANCED STYLES ===== */

/* Enhanced Cards */
.fwh-client-account-index .settings-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fwh-client-account-index .settings-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.fwh-client-account-index .settings-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-account-index .settings-card .card-header h5{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-client-account-index .settings-card .card-body{
    padding: 2rem;
}

/* Enhanced Form Inputs */
.fwh-client-account-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-client-account-index .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-client-account-index .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-client-account-index .form-control:disabled{
    background: #f8f9fa;
    cursor: not-allowed;
}

/* Enhanced Buttons */
.fwh-client-account-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-account-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Badge Enhancement */
.fwh-client-account-index .badge-modern{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Smooth animations */
.fwh-client-account-index .fade-in{
    animation: fwh-client-account-index-fadeIn 0.5s ease;
}

@keyframes fwh-client-account-index-fadeIn{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---- client/billing/index ---- */

.fwh-client-billing-index .billing-hero{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 16px; padding: 2rem; color: white;
    margin-bottom: 2rem; box-shadow: 0 8px 24px rgba(13,110,253,0.25);
}
.fwh-client-billing-index .billing-hero h2{ font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.fwh-client-billing-index .billing-hero p{ opacity: 0.9; font-size: 1.1rem; margin: 0; }
.fwh-client-billing-index .billing-stat-card{
    border: none; border-radius: 16px; padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all 0.3s ease;
}
.fwh-client-billing-index .billing-stat-card:hover{ transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.fwh-client-billing-index .billing-table th{ font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; color: #718096; border-top: none; }
.fwh-client-billing-index .billing-table td{ vertical-align: middle; }
.fwh-client-billing-index .badge-status{ padding: 0.35rem 0.85rem; border-radius: 20px; font-weight: 600; font-size: 0.75rem; }
.fwh-client-billing-index .empty-state{ text-align: center; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; }
.fwh-client-billing-index .empty-state > i{ font-size: 4rem; color: #cbd5e0; margin-bottom: 1rem; }
.fwh-client-billing-index .empty-state p{ color: #718096; margin-bottom: 1.5rem; }
.fwh-client-billing-index .empty-state .btn{ display: inline-flex !important; width: auto !important; min-width: 160px; max-width: 280px; align-items: center; justify-content: center; }
.fwh-client-billing-index .btn-modern{ border-radius: 8px; padding: 0.5rem 1.25rem; font-weight: 600; transition: all 0.3s ease; }
.fwh-client-billing-index .btn-modern:hover{ transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }


/* ---- client/cart/checkout ---- */

/* ===== CHECKOUT PAGE ENHANCED STYLES ===== */

/* Enhanced Breadcrumb */
.fwh-client-cart-checkout .breadcrumb{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #bbf7d0;
}

.fwh-client-cart-checkout .breadcrumb-item a{
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fwh-client-cart-checkout .breadcrumb-item a:hover{
    color: #15803d;
}

.fwh-client-cart-checkout .breadcrumb-item.active{
    color: #166534;
    font-weight: 700;
}

/* Enhanced Cards */
.fwh-client-cart-checkout .checkout-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-cart-checkout-fadeInUp 0.6s ease;
}

.fwh-client-cart-checkout .checkout-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-cart-checkout .checkout-card .card-header h5, .fwh-client-cart-checkout .checkout-card .card-header h6{
    margin: 0;
    font-weight: 700;
}

/* Order Items */
.fwh-client-cart-checkout .order-item{
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-cart-checkout .order-item:last-child{
    border-bottom: none;
}

.fwh-client-cart-checkout .order-item:hover{
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.fwh-client-cart-checkout .service-type-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fwh-client-cart-checkout .service-type-badge.shared{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-checkout .service-type-badge.wordpress{ background: #e0e7ff; color: #3730a3; }
.fwh-client-cart-checkout .service-type-badge.woocommerce{ background: #f3e8ff; color: #6b21a8; }
.fwh-client-cart-checkout .service-type-badge.vps{ background: #dbeafe; color: #1e3a8a; }
.fwh-client-cart-checkout .service-type-badge.reseller{ background: #d1fae5; color: #065f46; }
.fwh-client-cart-checkout .service-type-badge.dedicated-cpu{ background: #fee2e2; color: #991b1b; }
.fwh-client-cart-checkout .service-type-badge.email{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-checkout .service-type-badge.ssl{ background: #d1fae5; color: #065f46; }

.fwh-client-cart-checkout .item-details{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-checkout .item-detail{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.fwh-client-cart-checkout .item-detail i{
    color: #16a34a;
    width: 20px;
}

.fwh-client-cart-checkout .item-config{
    background: #f8fafc;
    border-left: 3px solid #16a34a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-checkout .config-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.fwh-client-cart-checkout .config-item:last-child{
    margin-bottom: 0;
}

.fwh-client-cart-checkout .config-item i{
    color: #16a34a;
    width: 16px;
}

/* Payment Options */
.fwh-client-cart-checkout .payment-option{
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.fwh-client-cart-checkout .payment-option:hover{
    border-color: #16a34a !important;
    background: rgba(22, 163, 74, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.fwh-client-cart-checkout .payment-option .form-check-input:checked{
    background-color: #16a34a;
    border-color: #16a34a;
}

.fwh-client-cart-checkout .payment-option .form-check-input:checked ~ .form-check-label{
    color: #166534;
}

/* Enhanced Buttons */
.fwh-client-cart-checkout .btn-checkout{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-cart-checkout .btn-checkout:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-cart-checkout .btn-primary.btn-checkout{
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
}

.fwh-client-cart-checkout .btn-success.btn-checkout{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
}

/* Total Summary */
.fwh-client-cart-checkout .total-row{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem;
    border-radius: 8px;
}

.fwh-client-cart-checkout .total-amount{
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a34a;
}

/* Animations */
@keyframes fwh-client-cart-checkout-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fwh-client-cart-checkout .fade-in{
    animation: fwh-client-cart-checkout-fadeIn 0.5s ease;
}

@keyframes fwh-client-cart-checkout-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-cart-checkout .order-item{
        padding: 1rem;
    }
    
    .fwh-client-cart-checkout .total-amount{
        font-size: 1.5rem;
    }
}


/* ---- client/cart/index ---- */

/* ===== SHOPPING CART ENHANCED STYLES ===== */

/* Cart Header */
.fwh-client-cart-index .cart-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-cart-index-fadeInDown 0.6s ease;
}

.fwh-client-cart-index .cart-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-cart-index .cart-count{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

/* Empty Cart State */
.fwh-client-cart-index .empty-cart{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-cart-index-fadeIn 0.6s ease;
}

.fwh-client-cart-index .empty-cart i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-cart-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-cart-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-cart-index .empty-cart h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-cart-index .empty-cart p{
    color: #718096;
    font-size: 1.1rem;
}

/* Cart Card */
.fwh-client-cart-index .cart-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-cart-index-fadeInUp 0.6s ease;
}

.fwh-client-cart-index .cart-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Cart Item */
.fwh-client-cart-index .cart-item{
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.fwh-client-cart-index .cart-item:last-child{
    border-bottom: none;
}

.fwh-client-cart-index .cart-item:hover{
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.fwh-client-cart-index .cart-item h5{
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-cart-index .service-type-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fwh-client-cart-index .service-type-badge.shared{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-index .service-type-badge.wordpress{ background: #e0e7ff; color: #3730a3; }
.fwh-client-cart-index .service-type-badge.woocommerce{ background: #f3e8ff; color: #6b21a8; }
.fwh-client-cart-index .service-type-badge.vps{ background: #dbeafe; color: #1e3a8a; }
.fwh-client-cart-index .service-type-badge.reseller{ background: #d1fae5; color: #065f46; }
.fwh-client-cart-index .service-type-badge.dedicated-cpu{ background: #fee2e2; color: #991b1b; }
.fwh-client-cart-index .service-type-badge.email{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-index .service-type-badge.ssl{ background: #d1fae5; color: #065f46; }

.fwh-client-cart-index .cart-item-details{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-cart-index .cart-item-detail{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

.fwh-client-cart-index .cart-item-detail i{
    color: #16a34a;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.fwh-client-cart-index .cart-item-detail strong{
    color: #475569;
}

.fwh-client-cart-index .cart-item-config{
    background: #f8fafc;
    border-left: 3px solid #16a34a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-index .cart-item-config h6{
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.fwh-client-cart-index .config-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.fwh-client-cart-index .config-item i{
    color: #16a34a;
    width: 16px;
}

.fwh-client-cart-index .cart-item-price{
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.fwh-client-cart-index .price-period{
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Remove Button */
.fwh-client-cart-index .btn-remove{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.fwh-client-cart-index .btn-remove:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Summary Card */
.fwh-client-cart-index .summary-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-client-cart-index-fadeInRight 0.6s ease;
}

.fwh-client-cart-index .summary-card .card-header{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-bottom: 2px solid #bbf7d0;
    padding: 1.25rem 1.5rem;
}

.fwh-client-cart-index .summary-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #166534;
}

.fwh-client-cart-index .summary-card .card-body{
    padding: 1.5rem;
}

.fwh-client-cart-index .summary-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #475569;
}

.fwh-client-cart-index .summary-row strong{
    font-weight: 600;
    color: #1e293b;
}

.fwh-client-cart-index .summary-total{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.fwh-client-cart-index .summary-total h5{
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}

.fwh-client-cart-index .summary-total .total-amount{
    color: #16a34a;
    font-size: 2rem;
    font-weight: 700;
}

/* Enhanced Buttons */
.fwh-client-cart-index .btn-enhanced{
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-cart-index .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-cart-index .btn-enhanced i{
    font-size: 1.1rem;
}

.fwh-client-cart-index .btn-primary.btn-enhanced{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
}

.fwh-client-cart-index .btn-primary.btn-enhanced:hover{
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

/* Security Badge */
.fwh-client-cart-index .security-badge{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.fwh-client-cart-index .security-badge i{
    font-size: 1.25rem;
    color: #16a34a;
}

/* Animations */
@keyframes fwh-client-cart-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-cart-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-cart-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-cart-index-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-cart-index .cart-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-cart-index .summary-card{
        position: static;
    }
    
    .fwh-client-cart-index .cart-item{
        padding: 1rem;
    }
    
    .fwh-client-cart-index .cart-item-details{
        grid-template-columns: 1fr;
    }
    
    .fwh-client-cart-index .cart-item-price{
        font-size: 1.5rem;
    }
    
    .fwh-client-cart-index .summary-total .total-amount{
        font-size: 1.5rem;
    }
}


/* ---- client/checkout/review ---- */

.fwh-client-checkout-review .checkout-card{border:none;border-radius:16px;box-shadow:0 2px 12px rgba(0,0,0,.08);margin-bottom:1.5rem;overflow:hidden}
.fwh-client-checkout-review .checkout-card .card-header{padding:1.1rem 1.4rem;border:none}
.fwh-client-checkout-review .checkout-card .card-header h5, .fwh-client-checkout-review .checkout-card .card-header h6{margin:0;font-weight:700}
.fwh-client-checkout-review .order-item{padding:1.25rem 1.4rem;border-bottom:1px solid #eef2f7}
.fwh-client-checkout-review .order-item:last-child{border-bottom:none}
.fwh-client-checkout-review .service-type-badge{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .75rem;border-radius:999px;font-size:.72rem;font-weight:700;text-transform:uppercase}
.fwh-client-checkout-review .service-type-badge.shared{background:#dbeafe;color:#1e40af}.fwh-client-checkout-review .service-type-badge.wordpress{background:#e0e7ff;color:#3730a3}.fwh-client-checkout-review .service-type-badge.woocommerce{background:#f3e8ff;color:#6b21a8}.fwh-client-checkout-review .service-type-badge.vps{background:#dbeafe;color:#1e3a8a}.fwh-client-checkout-review .service-type-badge.reseller{background:#d1fae5;color:#065f46}.fwh-client-checkout-review .service-type-badge.dedicated-cpu{background:#fee2e2;color:#991b1b}.fwh-client-checkout-review .service-type-badge.email{background:#dbeafe;color:#1e40af}.fwh-client-checkout-review .service-type-badge.ssl{background:#d1fae5;color:#065f46}
.fwh-client-checkout-review .item-details{display:flex;flex-direction:column;gap:.45rem;margin-top:.75rem}.fwh-client-checkout-review .item-detail{display:flex;align-items:center;gap:.5rem;font-size:.92rem;color:#64748b}.fwh-client-checkout-review .item-detail i{color:#16a34a;width:18px}
.fwh-client-checkout-review .item-config{background:#f8fafc;border-left:3px solid #16a34a;border-radius:8px;padding:.75rem 1rem;margin-top:.75rem}.fwh-client-checkout-review .config-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#64748b;margin-bottom:.25rem}.fwh-client-checkout-review .config-item:last-child{margin-bottom:0}.fwh-client-checkout-review .config-item i{color:#16a34a;width:16px}
.fwh-client-checkout-review .total-row{background:linear-gradient(135deg,#f0fdf4 0%,#dcfce7 100%);padding:1rem;border-radius:10px}.fwh-client-checkout-review .total-amount{font-size:1.7rem;font-weight:800;color:#16a34a}
.fwh-client-checkout-review .payment-option{border:2px solid #e9ecef!important;border-radius:12px!important;transition:all .25s ease;cursor:pointer}.fwh-client-checkout-review .payment-option:hover{border-color:#16a34a!important;background:rgba(22,163,74,.02);transform:translateY(-1px);box-shadow:0 4px 12px rgba(22,163,74,.12)}
.fwh-client-checkout-review .btn-checkout{padding:1rem 2rem;font-weight:700;border-radius:12px;font-size:1.05rem;transition:all .25s ease}
.fwh-client-checkout-review .breadcrumb{background:linear-gradient(135deg,#f0fdf4 0%,#dcfce7 100%);padding:1rem 1.4rem;border-radius:12px;border:1px solid #bbf7d0}
.fwh-client-checkout-review .breadcrumb-item a{color:#16a34a;text-decoration:none;font-weight:600}
.fwh-client-checkout-review .breadcrumb-item.active{color:#166534;font-weight:700}


/* ---- client/domains/index ---- */

/* ===== MY DOMAINS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-domains-index .domains-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-domains-index-fadeInDown 0.6s ease;
}

.fwh-client-domains-index .domains-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-client-domains-index .domains-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Empty State */
.fwh-client-domains-index .empty-domains{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-domains-index-fadeIn 0.6s ease;
}

.fwh-client-domains-index .empty-domains i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-domains-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-domains-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-domains-index .empty-domains h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-domains-index .empty-domains p{
    color: #718096;
    font-size: 1.1rem;
}

/* Domain Card */
.fwh-client-domains-index .domain-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    animation: fwh-client-domains-index-fadeInUp 0.6s ease;
}

.fwh-client-domains-index .domain-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-domains-index .domain-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.fwh-client-domains-index .domain-card .card-header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.fwh-client-domains-index .domain-card .card-header h5{
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}

.fwh-client-domains-index .domain-card .card-body{
    padding: 1.5rem;
}

/* Domain Info Row */
.fwh-client-domains-index .domain-info{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-domains-index .domain-info:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-domains-index .domain-info i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.fwh-client-domains-index .domain-info-content{
    flex: 1;
}

.fwh-client-domains-index .domain-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-index .domain-info-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Status Badge */
.fwh-client-domains-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-domains-index .badge-status i{
    font-size: 0.75rem;
}

/* Expiry Warning */
.fwh-client-domains-index .expiry-warning{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-domains-index .expiry-warning i{
    color: #ff6b35;
    font-size: 1.25rem;
}

.fwh-client-domains-index .expiry-warning span{
    color: #856404;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-index .expiry-expired{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-domains-index .expiry-expired i{
    color: #dc3545;
}

.fwh-client-domains-index .expiry-expired span{
    color: #721c24;
}

/* Enhanced Buttons */
.fwh-client-domains-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-domains-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Action Buttons */
.fwh-client-domains-index .domain-actions{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Auto Renew Toggle */
.fwh-client-domains-index .auto-renew-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-index .auto-renew-on{
    background: #d4edda;
    color: #155724;
}

.fwh-client-domains-index .auto-renew-off{
    background: #f8d7da;
    color: #721c24;
}

/* Animations */
@keyframes fwh-client-domains-index-fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fwh-client-domains-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-domains-index .domains-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .fwh-client-domains-index .domains-header .btn{
        width: 100%;
    }
}


/* ---- client/domains/show ---- */

/* ===== DOMAIN DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-domains-show .domain-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-domains-show-fadeInDown 0.6s ease;
}

.fwh-client-domains-show .domain-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    word-break: break-all;
}

.fwh-client-domains-show .domain-header h2 i{
    color: #0d6efd;
}

/* Alert Boxes */
.fwh-client-domains-show .alert-expiry{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-domains-show-slideInDown 0.6s ease;
}

.fwh-client-domains-show .alert-expiry i{
    font-size: 2rem;
}

.fwh-client-domains-show .alert-expiry-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.fwh-client-domains-show .alert-expiry-content p{
    margin: 0;
}

.fwh-client-domains-show .alert-warning-custom{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left-color: #ffc107;
}

.fwh-client-domains-show .alert-warning-custom i{
    color: #ff6b35;
}

.fwh-client-domains-show .alert-danger-custom{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-domains-show .alert-danger-custom i{
    color: #dc3545;
}

/* Enhanced Cards */
.fwh-client-domains-show .details-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-domains-show-fadeInUp 0.6s ease;
}

.fwh-client-domains-show .details-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-domains-show .details-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-domains-show .details-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-domains-show .details-card .card-body{
    padding: 1.5rem;
}

/* Info Table */
.fwh-client-domains-show .info-table{
    margin: 0;
}

.fwh-client-domains-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-domains-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-client-domains-show .info-table tr:hover{
    background: #f8f9fa;
}

.fwh-client-domains-show .info-table th{
    font-weight: 600;
    color: #495057;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
}

.fwh-client-domains-show .info-table td{
    color: #6c757d;
    padding: 1rem;
    border: none;
}

/* Status Badge */
.fwh-client-domains-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-domains-show .badge-status i{
    font-size: 0.75rem;
}

/* Auto Renew Badge */
.fwh-client-domains-show .auto-renew-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-show .auto-renew-on{
    background: #d4edda;
    color: #155724;
}

.fwh-client-domains-show .auto-renew-off{
    background: #f8d7da;
    color: #721c24;
}

/* Nameserver List */
.fwh-client-domains-show .nameserver-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-domains-show .nameserver-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-domains-show .nameserver-item i{
    color: #0d6efd;
    font-size: 1.25rem;
}

.fwh-client-domains-show .nameserver-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-show .nameserver-content span{
    color: #6c757d;
    font-size: 0.95rem;
    font-family: "Courier New", monospace;
}

/* Action Buttons */
.fwh-client-domains-show .action-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-client-domains-show-fadeInRight 0.6s ease;
}

.fwh-client-domains-show .action-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-domains-show .action-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-domains-show .action-card .card-body{
    padding: 1.5rem;
}

.fwh-client-domains-show .action-buttons{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fwh-client-domains-show .btn-action{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-domains-show .btn-action:not(:disabled):hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Enhanced Button */
.fwh-client-domains-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-domains-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Timeline Info */
.fwh-client-domains-show .domain-timeline{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.fwh-client-domains-show .timeline-item{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.fwh-client-domains-show .timeline-item i{
    color: #0d6efd;
    font-size: 1.25rem;
    width: 30px;
}

.fwh-client-domains-show .timeline-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-show .timeline-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fwh-client-domains-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-domains-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-domains-show .domain-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .fwh-client-domains-show .domain-header .btn{
        width: 100%;
    }
    
    .fwh-client-domains-show .action-card{
        position: static;
    }
}


/* ---- client/invoices/index ---- */

/* ===== MY INVOICES ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-invoices-index .invoices-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-invoices-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-invoices-index .invoices-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Filter Buttons */
.fwh-client-invoices-index .filter-buttons{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-client-invoices-index .btn-filter{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.fwh-client-invoices-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-invoices-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-client-invoices-index .empty-invoices{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-invoices-index-fadeIn 0.6s ease;
}

.fwh-client-invoices-index .empty-invoices i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-invoices-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-invoices-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-invoices-index .empty-invoices h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-invoices-index .empty-invoices p{
    color: #718096;
    font-size: 1.1rem;
}

/* Invoice Table Card */
.fwh-client-invoices-index .invoice-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-client-invoices-index-fadeInUp 0.6s ease;
}

.fwh-client-invoices-index .invoice-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-invoices-index .invoice-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-client-invoices-index .invoice-table{
    margin: 0;
}

.fwh-client-invoices-index .invoice-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-invoices-index .invoice-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-invoices-index .invoice-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-invoices-index .invoice-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-client-invoices-index .invoice-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-client-invoices-index .invoice-table tbody tr:last-child{
    border-bottom: none;
}

/* Invoice Number Link */
.fwh-client-invoices-index .invoice-number{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .invoice-number:hover{
    color: #0a58ca;
    transform: translateX(4px);
}

/* Status Badges */
.fwh-client-invoices-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .badge-status i{
    font-size: 0.75rem;
}

/* Payment Method Badge */
.fwh-client-invoices-index .payment-badge{
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Overdue Warning */
.fwh-client-invoices-index .overdue-warning{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Action Buttons */
.fwh-client-invoices-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Summary Cards */
.fwh-client-invoices-index .summary-cards{
    margin-top: 2rem;
    animation: fwh-client-invoices-index-fadeInUp 0.6s ease 0.3s both;
}

.fwh-client-invoices-index .summary-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-invoices-index .summary-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.fwh-client-invoices-index .summary-card.unpaid::before{
    background: linear-gradient(90deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-client-invoices-index .summary-card.paid::before{
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.fwh-client-invoices-index .summary-card.total::before{
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-client-invoices-index .summary-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-invoices-index .summary-card .card-body{
    padding: 1.75rem;
}

.fwh-client-invoices-index .summary-card h6{
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .summary-card h3{
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.fwh-client-invoices-index .summary-icon{
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.1;
}

/* Enhanced Button */
.fwh-client-invoices-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-invoices-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-invoices-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-invoices-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-invoices-index .invoices-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-invoices-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-client-invoices-index .btn-filter{
        flex: 1;
        text-align: center;
    }
    
    .fwh-client-invoices-index .invoice-table thead th, .fwh-client-invoices-index .invoice-table tbody td{
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .fwh-client-invoices-index .btn-action{
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}


/* ---- client/invoices/show ---- */

/* ===== INVOICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-invoices-show .invoice-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-invoices-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-invoices-show .invoice-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .invoice-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-invoices-show .invoice-header-actions{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Alert Boxes */
.fwh-client-invoices-show .alert-overdue{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-invoices-show-slideInDown 0.6s ease;
}

.fwh-client-invoices-show .alert-overdue i{
    font-size: 2rem;
    color: #dc3545;
}

.fwh-client-invoices-show .alert-overdue-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #721c24;
}

.fwh-client-invoices-show .alert-overdue-content p{
    margin: 0;
    color: #721c24;
}

/* Enhanced Cards */
.fwh-client-invoices-show .invoice-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-invoices-show-fadeInUp 0.6s ease;
}

.fwh-client-invoices-show .invoice-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-invoices-show .invoice-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-invoices-show .invoice-card .card-header h5, .fwh-client-invoices-show .invoice-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .invoice-card .card-body{
    padding: 2rem;
}

/* Status Row */
.fwh-client-invoices-show .status-row{
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fwh-client-invoices-show .status-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .status-item strong{
    color: #495057;
    font-weight: 600;
}

/* Status Badge */
.fwh-client-invoices-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Paid Alert */
.fwh-client-invoices-show .alert-paid{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-client-invoices-show .alert-paid i{
    font-size: 1.5rem;
    color: #28a745;
}

/* Invoice Table */
.fwh-client-invoices-show .invoice-table{
    margin: 0;
}

.fwh-client-invoices-show .invoice-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-invoices-show .invoice-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-invoices-show .invoice-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-client-invoices-show .invoice-table tbody td{
    padding: 1.25rem;
    vertical-align: middle;
}

.fwh-client-invoices-show .invoice-table tfoot{
    background: #f8f9fa;
}

.fwh-client-invoices-show .invoice-table tfoot td{
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.fwh-client-invoices-show .invoice-table .total-row{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
}

.fwh-client-invoices-show .invoice-table .total-row td{
    padding: 1.5rem 1.25rem;
}

/* Notes Section */
.fwh-client-invoices-show .notes-section{
    margin-top: 2rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
}

.fwh-client-invoices-show .notes-section strong{
    color: #495057;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Payment Card */
.fwh-client-invoices-show .payment-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    position: sticky;
    top: 80px;
    animation: fwh-client-invoices-show-fadeInRight 0.6s ease;
}

.fwh-client-invoices-show .payment-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-invoices-show .payment-card .card-body{
    padding: 1.5rem;
}

.fwh-client-invoices-show .payment-amount{
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

/* Payment Buttons */
.fwh-client-invoices-show .btn-payment{
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .btn-payment:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-invoices-show .btn-payment i{
    font-size: 1.25rem;
}

/* Security Badge */
.fwh-client-invoices-show .security-note{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-invoices-show .security-note i{
    color: #28a745;
}

/* Info Card */
.fwh-client-invoices-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-invoices-show-fadeInRight 0.6s ease 0.2s both;
}

.fwh-client-invoices-show .info-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-invoices-show .info-card .card-body{
    padding: 1.5rem;
}

.fwh-client-invoices-show .info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-invoices-show .info-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-invoices-show .info-item:last-child{
    margin-bottom: 0;
}

.fwh-client-invoices-show .info-item i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-invoices-show .info-item-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Enhanced Button */
.fwh-client-invoices-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-invoices-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Enhancements */
.fwh-client-invoices-show .modal-content{
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fwh-client-invoices-show .modal-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    border-radius: 16px 16px 0 0;
}

.fwh-client-invoices-show .modal-header .modal-title{
    font-weight: 700;
}

.fwh-client-invoices-show .interac-instructions{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.25rem;
}

.fwh-client-invoices-show .interac-instructions h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-invoices-show .interac-instructions ol{
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.fwh-client-invoices-show .interac-instructions ol li{
    margin-bottom: 0.75rem;
    color: #495057;
}

.fwh-client-invoices-show .interac-instructions ol li:last-child{
    margin-bottom: 0;
}

/* Print Styles */
@media print{
    .fwh-client-invoices-show .invoice-header-actions, .fwh-client-invoices-show .payment-card, .fwh-client-invoices-show .btn, .fwh-client-invoices-show .no-print{
        display: none !important;
    }
    
    .fwh-client-invoices-show .invoice-card{
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Animations */
@keyframes fwh-client-invoices-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-invoices-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-invoices-show .invoice-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-invoices-show .invoice-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-client-invoices-show .invoice-header-actions .btn{
        width: 100%;
    }
    
    .fwh-client-invoices-show .payment-card{
        position: static;
    }
    
    .fwh-client-invoices-show .payment-amount{
        font-size: 2rem;
    }
}


/* ---- client/order/dedicated-cpu-hosting ---- */

.fwh-client-order-dedicated-cpu-hosting{
    --dedicated-red: #dc2626;
    --dedicated-red-dark: #991b1b;
    --dedicated-orange: #ea580c;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: fwh-client-order-dedicated-cpu-hosting-pulse 8s ease-in-out infinite;
}

@keyframes fwh-client-order-dedicated-cpu-hosting-pulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.fwh-client-order-dedicated-cpu-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-dedicated-cpu-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .package-card:hover{
    border-color: var(--dedicated-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-dedicated-cpu-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-dedicated-cpu-hosting .package-card.selected{
    border-color: var(--dedicated-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.fwh-client-order-dedicated-cpu-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-dedicated-cpu-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--dedicated-orange) 0%, #c2410c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    z-index: 1;
}

.fwh-client-order-dedicated-cpu-hosting .btn-dedicated{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .btn-dedicated:hover{
    background: linear-gradient(135deg, var(--dedicated-red-dark) 0%, var(--dedicated-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    color: white;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-features{
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-features h4{
    color: var(--dedicated-red-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .feature-icon{
    color: var(--dedicated-red);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .performance-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dedicated-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .specs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.fwh-client-order-dedicated-cpu-hosting .spec-item{
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .spec-label{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.fwh-client-order-dedicated-cpu-hosting .spec-value{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box{
    background: white;
    border: 2px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box i{
    font-size: 3rem;
    color: var(--dedicated-red);
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box h5{
    color: var(--dedicated-red-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-feature i{
    color: var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--dedicated-red);
    margin-bottom: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-dedicated-cpu-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-dedicated-cpu-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-dedicated-cpu-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .form-control, .fwh-client-order-dedicated-cpu-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .form-control:focus, .fwh-client-order-dedicated-cpu-hosting .form-select:focus{
    border-color: var(--dedicated-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.fwh-client-order-dedicated-cpu-hosting .price-display{
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/domain ---- */

/* ===== DOMAIN REGISTRATION ENHANCED STYLES ===== */

/* Hero Section */
.fwh-client-order-domain .domain-hero{
    text-align: center;
    margin-bottom: 3rem;
    animation: fwh-client-order-domain-fadeInDown 0.6s ease;
}

.fwh-client-order-domain .domain-hero h1{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fwh-client-order-domain .domain-hero h1 i{
    color: #16a34a;
    font-size: 2.5rem;
}

.fwh-client-order-domain .domain-hero .lead{
    color: #6c757d;
    font-size: 1.25rem;
}

/* Search Card */
.fwh-client-order-domain .search-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease;
}

.fwh-client-order-domain .search-card .card-body{
    padding: 2.5rem;
}

/* Search Input */
.fwh-client-order-domain .domain-search{
    position: relative;
}

.fwh-client-order-domain .domain-search .input-group{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.fwh-client-order-domain .domain-search .form-control{
    border: 2px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border-right: none;
}

.fwh-client-order-domain .domain-search .form-control:focus{
    border-color: #16a34a;
    box-shadow: none;
}

.fwh-client-order-domain .domain-search .btn-search{
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .domain-search .btn-search:hover{
    transform: scale(1.05);
}

/* Search Results */
.fwh-client-order-domain #searchResults{
    margin-top: 2rem;
    animation: fwh-client-order-domain-fadeIn 0.5s ease;
}

.fwh-client-order-domain .result-available{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-client-order-domain .result-available h5{
    color: #155724;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-domain .result-available h5 i{
    font-size: 1.5rem;
}

.fwh-client-order-domain .result-unavailable{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-client-order-domain .result-unavailable i{
    font-size: 1.5rem;
    color: #dc3545;
}

/* Register Form Card */
.fwh-client-order-domain .register-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-order-domain .register-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-domain .register-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-domain .register-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-order-domain .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .form-label i{
    color: #16a34a;
}

.fwh-client-order-domain .form-control, .fwh-client-order-domain .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .form-control:focus, .fwh-client-order-domain .form-select:focus{
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

/* TLD Pricing Cards */
.fwh-client-order-domain .tld-cards{
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.4s both;
}

.fwh-client-order-domain .tld-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-order-domain .tld-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-domain .tld-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-order-domain .tld-card:hover::before{
    transform: scaleX(1);
}

.fwh-client-order-domain .tld-card .card-body{
    padding: 2rem;
    text-align: center;
}

.fwh-client-order-domain .tld-extension{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .tld-extension i{
    color: #16a34a;
}

.fwh-client-order-domain .tld-price{
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.fwh-client-order-domain .tld-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-domain .tld-features{
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.fwh-client-order-domain .tld-features li{
    padding: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .tld-features li i{
    color: #28a745;
}

/* Popular Badge */
.fwh-client-order-domain .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Enhanced Buttons */
.fwh-client-order-domain .btn-enhanced{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-domain .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-domain .btn-enhanced i{
    font-size: 1.1rem;
}

/* Loading Spinner */
.fwh-client-order-domain .loading-spinner{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Alert Enhancements */
.fwh-client-order-domain .alert{
    border-radius: 12px;
    border: none;
}

.fwh-client-order-domain .alert-info{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0dcaf0;
}

.fwh-client-order-domain .alert-warning{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
}

.fwh-client-order-domain .alert-danger{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

/* Features Section */
.fwh-client-order-domain .features-section{
    margin-top: 3rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.6s both;
}

.fwh-client-order-domain .feature-card{
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .feature-card:hover{
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.fwh-client-order-domain .feature-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.3);
}

.fwh-client-order-domain .feature-card h5{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-client-order-domain .feature-card p{
    color: #6c757d;
    margin: 0;
}

/* Animations */
@keyframes fwh-client-order-domain-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-order-domain-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-domain-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-domain .domain-hero h1{
        font-size: 1.75rem;
        flex-direction: column;
    }
    
    .fwh-client-order-domain .domain-hero h1 i{
        font-size: 2rem;
    }
    
    .fwh-client-order-domain .search-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-client-order-domain .domain-search .btn-search{
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .fwh-client-order-domain .tld-price{
        font-size: 2rem;
    }
}


/* ---- client/order/email-hosting ---- */

.fwh-client-order-email-hosting{
    --email-blue: #3b82f6;
    --email-blue-dark: #1e40af;
    --email-indigo: #6366f1;
}

.fwh-client-order-email-hosting .email-header{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-email-hosting .email-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-email-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-email-hosting .package-card:hover{
    border-color: var(--email-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-email-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-email-hosting .package-card.selected{
    border-color: var(--email-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.fwh-client-order-email-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-email-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--email-indigo) 0%, #4f46e5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.fwh-client-order-email-hosting .btn-email{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .btn-email:hover{
    background: linear-gradient(135deg, var(--email-blue-dark) 0%, var(--email-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

.fwh-client-order-email-hosting .email-features{
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid var(--email-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .email-features h4{
    color: var(--email-blue-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .feature-icon{
    color: var(--email-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-email-hosting .email-clients{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .client-item{
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .client-item:hover{
    border-color: var(--email-blue);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.fwh-client-order-email-hosting .client-item i{
    font-size: 2rem;
    color: var(--email-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .client-item span{
    display: block;
    font-weight: 600;
    color: #374151;
}

.fwh-client-order-email-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-email-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-email-hosting .package-feature i{
    color: var(--email-blue);
}

.fwh-client-order-email-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--email-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-email-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-email-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-email-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-email-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-email-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-email-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-email-hosting .form-control, .fwh-client-order-email-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .form-control:focus, .fwh-client-order-email-hosting .form-select:focus{
    border-color: var(--email-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.fwh-client-order-email-hosting .price-display{
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid var(--email-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-email-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-email-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-email-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-email-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-email-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-email-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-email-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/hosting ---- */

/* ===== ORDER HOSTING ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-order-hosting .hosting-header{
    margin-bottom: 2rem;
    animation: fwh-client-order-hosting-fadeInDown 0.6s ease;
}

.fwh-client-order-hosting .hosting-header h2{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .hosting-header h2 i{
    color: #0d6efd;
}

/* Package Selection Card */
.fwh-client-order-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-client-order-hosting-fadeInUp 0.6s ease;
}

.fwh-client-order-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .packages-card .card-body{
    padding: 2rem;
}

/* Package Cards */
.fwh-client-order-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-order-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-hosting .package-card:hover{
    border-color: #0d6efd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.fwh-client-order-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-hosting .package-card.selected{
    border-color: #0d6efd;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
}

.fwh-client-order-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-hosting .package-card .card-body{
    padding: 1.75rem;
}

.fwh-client-order-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-hosting .package-name i{
    color: #0d6efd;
}

.fwh-client-order-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-hosting .package-features{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.fwh-client-order-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.95rem;
}

.fwh-client-order-hosting .package-feature i{
    color: #0d6efd;
    font-size: 1.1rem;
}

.fwh-client-order-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.fwh-client-order-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Popular Badge */
.fwh-client-order-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

/* Configuration Card */
.fwh-client-order-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-order-hosting-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-order-hosting .config-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .config-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-order-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-hosting .form-label i{
    color: #0d6efd;
}

.fwh-client-order-hosting .form-control, .fwh-client-order-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-order-hosting .form-control:focus, .fwh-client-order-hosting .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Price Display */
.fwh-client-order-hosting .price-display{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-hosting .price-display strong{
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Sidebar Cards */
.fwh-client-order-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-order-hosting-fadeInRight 0.6s ease;
}

.fwh-client-order-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-hosting .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Features List */
.fwh-client-order-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-order-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-hosting .features-list li:hover{
    background: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 8px;
}

.fwh-client-order-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
    width: 24px;
}

/* Enhanced Buttons */
.fwh-client-order-hosting .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-hosting .btn-enhanced i{
    font-size: 1.1rem;
}

/* Info Alert */
.fwh-client-order-hosting .info-alert{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0dcaf0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-order-hosting-fadeIn 0.6s ease;
}

.fwh-client-order-hosting .info-alert i{
    font-size: 2rem;
    color: #0dcaf0;
}

/* Savings Badge */
.fwh-client-order-hosting .savings-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.fwh-client-order-hosting .savings-badge i{
    font-size: 0.75rem;
}

/* Animations */
@keyframes fwh-client-order-hosting-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-order-hosting-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-hosting-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-hosting-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-hosting .package-card .row{
        flex-direction: column;
    }
    
    .fwh-client-order-hosting .package-card .text-end{
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .fwh-client-order-hosting .package-features{
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .fwh-client-order-hosting .btn-enhanced{
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


/* ---- client/order/index ---- */

/* ===== ORDER SERVICES ENHANCED STYLES ===== */

/* Hero Section */
.fwh-client-order-index .services-hero{
    text-align: center;
    margin-bottom: 3rem;
    animation: fwh-client-order-index-fadeInDown 0.6s ease;
}

.fwh-client-order-index .services-hero h1{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fwh-client-order-index .services-hero h1 i{
    color: #16a34a;
    font-size: 2.5rem;
}

.fwh-client-order-index .services-hero .lead{
    color: #6c757d;
    font-size: 1.25rem;
}

/* Service Categories */
.fwh-client-order-index .service-categories{
    margin-bottom: 4rem;
}

.fwh-client-order-index .category-card{
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    animation: fwh-client-order-index-fadeInUp 0.6s ease;
    background: white;
}

.fwh-client-order-index .category-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color) 0%, var(--card-color-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.fwh-client-order-index .category-card:hover::before{
    transform: scaleX(1);
}

.fwh-client-order-index .category-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.fwh-client-order-index .category-card .card-body{
    padding: 2.5rem 2rem;
}

.fwh-client-order-index .service-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.fwh-client-order-index .category-card:hover .service-icon{
    transform: scale(1.1) rotate(5deg);
}

/* Service Type Colors */
.fwh-client-order-index .category-card.shared{ --card-color: #0d6efd; --card-color-dark: #0a58ca; }
.fwh-client-order-index .category-card.wordpress{ --card-color: #0073aa; --card-color-dark: #005177; }
.fwh-client-order-index .category-card.woocommerce{ --card-color: #7f54b3; --card-color-dark: #5e3a87; }
.fwh-client-order-index .category-card.vps{ --card-color: #0066cc; --card-color-dark: #004d99; }
.fwh-client-order-index .category-card.reseller{ --card-color: #10b981; --card-color-dark: #059669; }
.fwh-client-order-index .category-card.dedicated{ --card-color: #dc2626; --card-color-dark: #991b1b; }
.fwh-client-order-index .category-card.email{ --card-color: #3b82f6; --card-color-dark: #1e40af; }
.fwh-client-order-index .category-card.ssl{ --card-color: #059669; --card-color-dark: #047857; }
.fwh-client-order-index .category-card.domain{ --card-color: #198754; --card-color-dark: #146c43; }

.fwh-client-order-index .service-icon.shared{
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.2) 100%);
    color: #0d6efd;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.2);
}

.fwh-client-order-index .service-icon.wordpress{
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.1) 0%, rgba(0, 115, 170, 0.2) 100%);
    color: #0073aa;
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.2);
}

.fwh-client-order-index .service-icon.woocommerce{
    background: linear-gradient(135deg, rgba(127, 84, 179, 0.1) 0%, rgba(127, 84, 179, 0.2) 100%);
    color: #7f54b3;
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.2);
}

.fwh-client-order-index .service-icon.vps{
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
    color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.fwh-client-order-index .service-icon.reseller{
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-index .service-icon.dedicated{
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.fwh-client-order-index .service-icon.email{
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.fwh-client-order-index .service-icon.ssl{
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.fwh-client-order-index .service-icon.domain{
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.2) 100%);
    color: #198754;
    box-shadow: 0 8px 24px rgba(25, 135, 84, 0.2);
}

.fwh-client-order-index .category-card h3{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.fwh-client-order-index .category-card p{
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.fwh-client-order-index .price-from{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-index .price-from strong{
    font-size: 1.5rem;
    color: var(--card-color);
    font-weight: 700;
}

/* Enhanced Buttons */
.fwh-client-order-index .btn-service{
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.fwh-client-order-index .btn-service:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-index .btn-service i{
    font-size: 1.1rem;
}

/* Popular Badge */
.fwh-client-order-index .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 10;
    animation: fwh-client-order-index-pulse 2s infinite;
}

@keyframes fwh-client-order-index-pulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Why Choose Section */
.fwh-client-order-index .why-choose-section{
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    animation: fwh-client-order-index-fadeInUp 0.6s ease 0.5s both;
}

.fwh-client-order-index .section-header{
    text-align: center;
    margin-bottom: 3rem;
}

.fwh-client-order-index .section-header h3{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-index .section-header h3 i{
    color: #16a34a;
}

.fwh-client-order-index .section-header p{
    color: #6c757d;
    font-size: 1.1rem;
}

.fwh-client-order-index .feature-box{
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    background: white;
    border-radius: 16px;
    height: 100%;
}

.fwh-client-order-index .feature-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fwh-client-order-index .feature-box-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.2);
    transition: all 0.3s ease;
}

.fwh-client-order-index .feature-box:hover .feature-box-icon{
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.3);
}

.fwh-client-order-index .feature-box h5{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-client-order-index .feature-box p{
    color: #6c757d;
    margin: 0;
}

/* Animations */
@keyframes fwh-client-order-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-index .services-hero h1{
        font-size: 2rem;
        flex-direction: column;
    }
    
    .fwh-client-order-index .services-hero h1 i{
        font-size: 2rem;
    }
    
    .fwh-client-order-index .category-card .card-body{
        padding: 2rem 1.5rem;
    }
    
    .fwh-client-order-index .service-icon{
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .fwh-client-order-index .category-card h3{
        font-size: 1.25rem;
    }
}


/* ---- client/order/reseller-hosting ---- */

.fwh-client-order-reseller-hosting{
    --reseller-green: #10b981;
    --reseller-green-dark: #059669;
    --reseller-teal: #14b8a6;
}

.fwh-client-order-reseller-hosting .reseller-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-reseller-hosting .reseller-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-reseller-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-reseller-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-reseller-hosting .package-card:hover{
    border-color: var(--reseller-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-reseller-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-reseller-hosting .package-card.selected{
    border-color: var(--reseller-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-reseller-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-reseller-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--reseller-teal) 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    z-index: 1;
}

.fwh-client-order-reseller-hosting .btn-reseller{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-reseller-hosting .btn-reseller:hover{
    background: linear-gradient(135deg, var(--reseller-green-dark) 0%, var(--reseller-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.fwh-client-order-reseller-hosting .reseller-features{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .reseller-features h4{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .feature-icon{
    color: var(--reseller-green);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-reseller-hosting .business-benefits{
    background: white;
    border: 2px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .business-benefits h5{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .benefit-item{
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
}

.fwh-client-order-reseller-hosting .benefit-icon{
    width: 40px;
    height: 40px;
    background: var(--reseller-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fwh-client-order-reseller-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-reseller-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-reseller-hosting .package-feature i{
    color: var(--reseller-green);
}

.fwh-client-order-reseller-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--reseller-green);
    margin-bottom: 0.5rem;
}

.fwh-client-order-reseller-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-reseller-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-reseller-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-reseller-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-reseller-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-reseller-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-reseller-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-reseller-hosting .form-control, .fwh-client-order-reseller-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-reseller-hosting .form-control:focus, .fwh-client-order-reseller-hosting .form-select:focus{
    border-color: var(--reseller-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.fwh-client-order-reseller-hosting .price-display{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-reseller-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-reseller-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-reseller-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-reseller-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-reseller-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-reseller-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-reseller-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/ssl-certificates ---- */

.fwh-client-order-ssl-certificates{
    --reseller-green: #10b981;
    --reseller-green-dark: #059669;
    --reseller-teal: #14b8a6;
}

.fwh-client-order-ssl-certificates .reseller-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-ssl-certificates .reseller-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-ssl-certificates .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-ssl-certificates .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-ssl-certificates .package-card:hover{
    border-color: var(--reseller-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-ssl-certificates .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-ssl-certificates .package-card.selected{
    border-color: var(--reseller-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-ssl-certificates .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-ssl-certificates .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--reseller-teal) 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    z-index: 1;
}

.fwh-client-order-ssl-certificates .btn-reseller{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-ssl-certificates .btn-reseller:hover{
    background: linear-gradient(135deg, var(--reseller-green-dark) 0%, var(--reseller-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.fwh-client-order-ssl-certificates .reseller-features{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .reseller-features h4{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .feature-icon{
    color: var(--reseller-green);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-ssl-certificates .business-benefits{
    background: white;
    border: 2px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .business-benefits h5{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .benefit-item{
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
}

.fwh-client-order-ssl-certificates .benefit-icon{
    width: 40px;
    height: 40px;
    background: var(--reseller-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fwh-client-order-ssl-certificates .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-ssl-certificates .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-ssl-certificates .package-feature i{
    color: var(--reseller-green);
}

.fwh-client-order-ssl-certificates .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--reseller-green);
    margin-bottom: 0.5rem;
}

.fwh-client-order-ssl-certificates .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-ssl-certificates .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-ssl-certificates .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-ssl-certificates .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-ssl-certificates .config-card .card-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-ssl-certificates .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-ssl-certificates .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-ssl-certificates .form-control, .fwh-client-order-ssl-certificates .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-ssl-certificates .form-control:focus, .fwh-client-order-ssl-certificates .form-select:focus{
    border-color: var(--reseller-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.fwh-client-order-ssl-certificates .price-display{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-ssl-certificates .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-ssl-certificates .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-ssl-certificates .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-ssl-certificates .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-ssl-certificates .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-ssl-certificates .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-ssl-certificates .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/vps-hosting ---- */

.fwh-client-order-vps-hosting{
    --vps-blue: #0066cc;
    --vps-blue-dark: #004d99;
    --vps-cyan: #00bcd4;
}

.fwh-client-order-vps-hosting .vps-header{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-vps-hosting .vps-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-vps-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-vps-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-vps-hosting .package-card:hover{
    border-color: var(--vps-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-vps-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-vps-hosting .package-card.selected{
    border-color: var(--vps-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.fwh-client-order-vps-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-vps-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--vps-cyan) 0%, #0097a7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
    z-index: 1;
}

.fwh-client-order-vps-hosting .btn-vps{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-vps-hosting .btn-vps:hover{
    background: linear-gradient(135deg, var(--vps-blue-dark) 0%, var(--vps-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    color: white;
}

.fwh-client-order-vps-hosting .vps-features{
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--vps-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-vps-hosting .vps-features h4{
    color: var(--vps-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .feature-icon{
    color: var(--vps-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-vps-hosting .specs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.fwh-client-order-vps-hosting .spec-item{
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--vps-blue);
}

.fwh-client-order-vps-hosting .spec-label{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.fwh-client-order-vps-hosting .spec-value{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vps-blue);
}

.fwh-client-order-vps-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-vps-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-vps-hosting .package-feature i{
    color: var(--vps-blue);
}

.fwh-client-order-vps-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--vps-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-vps-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-vps-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-vps-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-vps-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-vps-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-vps-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-vps-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-vps-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-vps-hosting .form-control, .fwh-client-order-vps-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-vps-hosting .form-control:focus, .fwh-client-order-vps-hosting .form-select:focus{
    border-color: var(--vps-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.fwh-client-order-vps-hosting .price-display{
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--vps-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-vps-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-vps-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-vps-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-vps-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-vps-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-vps-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-vps-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/woocommerce-hosting ---- */

.fwh-client-order-woocommerce-hosting{
    --woo-purple: #7f54b3;
    --woo-purple-dark: #5e3a87;
    --woo-pink: #c7509f;
}

.fwh-client-order-woocommerce-hosting .woocommerce-header{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-woocommerce-hosting .woocommerce-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-woocommerce-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .package-card:hover{
    border-color: var(--woo-purple);
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-woocommerce-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-woocommerce-hosting .package-card.selected{
    border-color: var(--woo-purple);
    background: linear-gradient(135deg, rgba(127, 84, 179, 0.05) 0%, rgba(127, 84, 179, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.2);
}

.fwh-client-order-woocommerce-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-woocommerce-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--woo-pink) 0%, #a8428a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(199, 80, 159, 0.3);
    z-index: 1;
}

.fwh-client-order-woocommerce-hosting .btn-woocommerce{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .btn-woocommerce:hover{
    background: linear-gradient(135deg, var(--woo-purple-dark) 0%, var(--woo-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 84, 179, 0.3);
    color: white;
}

.fwh-client-order-woocommerce-hosting .woocommerce-features{
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-left: 4px solid var(--woo-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-woocommerce-hosting .woocommerce-features h4{
    color: var(--woo-purple);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .feature-icon{
    color: var(--woo-purple);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-woocommerce-hosting .package-feature i{
    color: var(--woo-purple);
}

.fwh-client-order-woocommerce-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--woo-purple);
    margin-bottom: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-woocommerce-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-woocommerce-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-woocommerce-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-woocommerce-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-woocommerce-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-woocommerce-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-woocommerce-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .form-control, .fwh-client-order-woocommerce-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .form-control:focus, .fwh-client-order-woocommerce-hosting .form-select:focus{
    border-color: var(--woo-purple);
    box-shadow: 0 0 0 4px rgba(127, 84, 179, 0.1);
}

.fwh-client-order-woocommerce-hosting .price-display{
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-left: 4px solid var(--woo-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-woocommerce-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-woocommerce-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-woocommerce-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/wordpress-hosting ---- */

.fwh-client-order-wordpress-hosting{
    --wp-blue: #0073aa;
    --wp-blue-dark: #005177;
    --wp-orange: #d54e21;
}

.fwh-client-order-wordpress-hosting .wordpress-header{
    background: linear-gradient(135deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-wordpress-hosting .wordpress-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-wordpress-hosting .wordpress-header p{
    font-size: 1.2rem;
    opacity: 0.9;
}

.fwh-client-order-wordpress-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-wordpress-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-wordpress-hosting .package-card:hover{
    border-color: var(--wp-blue);
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-wordpress-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-wordpress-hosting .package-card.selected{
    border-color: var(--wp-blue);
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.05) 0%, rgba(0, 115, 170, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.2);
}

.fwh-client-order-wordpress-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-wordpress-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--wp-orange) 0%, #c7401b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(213, 78, 33, 0.3);
    z-index: 1;
}

.fwh-client-order-wordpress-hosting .btn-wordpress{
    background: linear-gradient(135deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-wordpress-hosting .btn-wordpress:hover{
    background: linear-gradient(135deg, var(--wp-blue-dark) 0%, var(--wp-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 115, 170, 0.3);
    color: white;
}

.fwh-client-order-wordpress-hosting .wordpress-features{
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 4px solid var(--wp-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-wordpress-hosting .wordpress-features h4{
    color: var(--wp-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-wordpress-hosting .feature-icon{
    color: var(--wp-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


/* ---- client/services/index ---- */

/* ===== MY SERVICES ENHANCED STYLES ===== */
.fwh-client-services-index .services-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-services-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}
.fwh-client-services-index .services-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fwh-client-services-index .services-header h2 i{ color: #0d6efd; }
.fwh-client-services-index .services-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}
.fwh-client-services-index .empty-services{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-services-index-fadeIn 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fwh-client-services-index .empty-services > i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-services-index-float 3s ease-in-out infinite;
}
.fwh-client-services-index .empty-services .btn{
    display: inline-flex !important;
    width: auto !important;
    min-width: 180px;
    max-width: 280px;
    align-items: center;
    justify-content: center;
}
@keyframes fwh-client-services-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.fwh-client-services-index .empty-services h4{ color: #2d3748; margin-bottom: 1rem; }
.fwh-client-services-index .empty-services p{ color: #718096; font-size: 1.1rem; }
.fwh-client-services-index .service-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    animation: fwh-client-services-index-fadeInUp 0.6s ease;
}
.fwh-client-services-index .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.fwh-client-services-index .service-card .card-header{
    padding: 1.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}
.fwh-client-services-index .service-card .card-header::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
}
.fwh-client-services-index .service-card .card-header h5{
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}
.fwh-client-services-index .service-card .card-header h5 i{ font-size: 1.25rem; }
.fwh-client-services-index .service-card .card-body{ padding: 1.75rem; }
.fwh-client-services-index .service-info{
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.fwh-client-services-index .service-info:hover{ background: #e9ecef; transform: translateX(4px); }
.fwh-client-services-index .service-info i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}
.fwh-client-services-index .service-info-content{ flex: 1; }
.fwh-client-services-index .service-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.fwh-client-services-index .service-info-content span{ color: #6c757d; font-size: 0.95rem; }
.fwh-client-services-index .badge-status{
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.fwh-client-services-index .price-display{ font-size: 1.5rem; font-weight: 700; color: #0d6efd; }
.fwh-client-services-index .due-soon{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fwh-client-services-index .due-soon i{ color: #ff6b35; font-size: 1.25rem; }
.fwh-client-services-index .due-soon span{ color: #856404; font-size: 0.875rem; font-weight: 600; }
.fwh-client-services-index .service-actions{ display: flex; flex-direction: column; gap: 0.5rem; }
.fwh-client-services-index .btn-action{
    padding: 0.6rem 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.fwh-client-services-index .btn-action:hover{ transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.fwh-client-services-index .btn-enhanced{
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.fwh-client-services-index .btn-enhanced:hover{ transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.fwh-client-services-index .filter-tabs{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-client-services-index-fadeIn 0.6s ease;
}
.fwh-client-services-index .filter-tab{
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}
.fwh-client-services-index .filter-tab:hover{ border-color: #0d6efd; color: #0d6efd; transform: translateY(-2px); }
.fwh-client-services-index .filter-tab.active{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-color: #0d6efd;
}
.fwh-client-services-index .quick-stats{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-services-index-fadeInUp 0.6s ease;
    flex-wrap: wrap;
}
.fwh-client-services-index .stat-mini{
    flex: 1;
    min-width: 140px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}
.fwh-client-services-index .stat-mini:hover{ transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.fwh-client-services-index .stat-mini-icon{
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.fwh-client-services-index .stat-mini-icon.active{ background: rgba(40,167,69,0.12); color: #28a745; }
.fwh-client-services-index .stat-mini-icon.pending{ background: rgba(255,193,7,0.12); color: #e0a800; }
.fwh-client-services-index .stat-mini-icon.suspended{ background: rgba(220,53,69,0.12); color: #dc3545; }
.fwh-client-services-index .stat-mini-icon.total{ background: rgba(13,110,253,0.12); color: #0d6efd; }
.fwh-client-services-index .stat-mini-content h3{ margin: 0; font-weight: 700; font-size: 1.75rem; color: #2d3748; }
.fwh-client-services-index .stat-mini-content p{ margin: 0; color: #6c757d; font-size: 0.8rem; font-weight: 500; }
/* Search bar */
.fwh-client-services-index .services-search{
    position: relative;
    margin-bottom: 1.5rem;
}
.fwh-client-services-index .services-search input{
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}
.fwh-client-services-index .services-search input:focus{
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}
.fwh-client-services-index .services-search i{
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
}
/* No results state */
.fwh-client-services-index .no-results{
    text-align: center;
    padding: 3rem 1rem;
    color: #718096;
    display: none;
}
.fwh-client-services-index .no-results i{ font-size: 3rem; color: #cbd5e0; margin-bottom: 1rem; display: block; }
@keyframes fwh-client-services-index-fadeIn{ from { opacity: 0; } to { opacity: 1; } }
@keyframes fwh-client-services-index-fadeInDown{
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fwh-client-services-index-fadeInUp{
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px){
    .fwh-client-services-index .services-header{ flex-direction: column; align-items: flex-start; }
    .fwh-client-services-index .quick-stats{ flex-direction: column; }
    .fwh-client-services-index .filter-tabs{ width: 100%; }
    .fwh-client-services-index .filter-tab{ flex: 1; text-align: center; }
}


/* ---- client/services/show ---- */

/* ===== SERVICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-services-show .service-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-services-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-services-show .service-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    word-break: break-all;
}

.fwh-client-services-show .service-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-services-show .service-header-info .status-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Alert Boxes */
.fwh-client-services-show .alert-due{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-services-show-slideInDown 0.6s ease;
}

.fwh-client-services-show .alert-due i{
    font-size: 2rem;
}

.fwh-client-services-show .alert-due-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.fwh-client-services-show .alert-due-content p{
    margin: 0;
}

.fwh-client-services-show .alert-warning-custom{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left-color: #ffc107;
}

.fwh-client-services-show .alert-warning-custom i{
    color: #ff6b35;
}

.fwh-client-services-show .alert-danger-custom{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-services-show .alert-danger-custom i{
    color: #dc3545;
}

/* Enhanced Cards */
.fwh-client-services-show .details-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-services-show-fadeInUp 0.6s ease;
}

.fwh-client-services-show .details-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-services-show .details-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-services-show .details-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-services-show .details-card .card-body{
    padding: 2rem;
}

/* Info Table */
.fwh-client-services-show .info-table{
    margin: 0;
}

.fwh-client-services-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-services-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-client-services-show .info-table tr:hover{
    background: #f8f9fa;
}

.fwh-client-services-show .info-table th{
    font-weight: 600;
    color: #495057;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
}

.fwh-client-services-show .info-table td{
    color: #6c757d;
    padding: 1rem;
    border: none;
}

/* cPanel Access Card */
.fwh-client-services-show .cpanel-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    animation: fwh-client-services-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-services-show .cpanel-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-services-show .cpanel-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-services-show .cpanel-info{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fwh-client-services-show .cpanel-info i{
    font-size: 2rem;
    color: #28a745;
}

.fwh-client-services-show .cpanel-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fwh-client-services-show .cpanel-info-content span{
    color: #6c757d;
    font-family: "Courier New", monospace;
    font-size: 1.1rem;
}

/* Server Info Card */
.fwh-client-services-show .server-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-services-show-fadeInUp 0.6s ease 0.4s both;
}

/* Sidebar Cards */
.fwh-client-services-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-services-show-fadeInRight 0.6s ease;
}

.fwh-client-services-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-services-show .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-services-show .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Action Buttons */
.fwh-client-services-show .action-buttons{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fwh-client-services-show .btn-action{
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-services-show .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-services-show .btn-action i{
    font-size: 1.1rem;
}

/* Invoice List */
.fwh-client-services-show .invoice-list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fwh-client-services-show .invoice-item{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.fwh-client-services-show .invoice-item:hover{
    border-color: #0d6efd;
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-services-show .invoice-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fwh-client-services-show .invoice-number{
    font-weight: 600;
    color: #495057;
}

.fwh-client-services-show .invoice-amount{
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Enhanced Button */
.fwh-client-services-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-services-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Nameserver List */
.fwh-client-services-show .nameserver-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-services-show .nameserver-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-services-show .nameserver-item i{
    color: #0d6efd;
    font-size: 1.25rem;
}

.fwh-client-services-show .nameserver-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fwh-client-services-show .nameserver-content span{
    color: #6c757d;
    font-size: 0.95rem;
    font-family: "Courier New", monospace;
}

/* Animations */
@keyframes fwh-client-services-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-services-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-services-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-services-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-services-show .service-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-services-show .service-header .btn{
        width: 100%;
    }
    
    .fwh-client-services-show .sidebar-card{
        position: static;
    }
}


/* ---- client/tickets/create ---- */

/* ===== OPEN NEW TICKET ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-create .ticket-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-create .ticket-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-create .ticket-header h2 i{
    color: #0d6efd;
}

/* Form Card */
.fwh-client-tickets-create .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-create-fadeInUp 0.6s ease;
}

.fwh-client-tickets-create .form-card .card-body{
    padding: 2.5rem;
}

/* Form Elements */
.fwh-client-tickets-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .form-label i{
    color: #0d6efd;
}

.fwh-client-tickets-create .form-label .required{
    color: #dc3545;
}

.fwh-client-tickets-create .form-control, .fwh-client-tickets-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .form-control:focus, .fwh-client-tickets-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-client-tickets-create .form-control.is-invalid, .fwh-client-tickets-create .form-select.is-invalid{
    border-color: #dc3545;
}

.fwh-client-tickets-create .form-control.is-invalid:focus, .fwh-client-tickets-create .form-select.is-invalid:focus{
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.fwh-client-tickets-create textarea.form-control{
    resize: vertical;
    min-height: 200px;
}

.fwh-client-tickets-create .form-text{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.fwh-client-tickets-create .form-text i{
    color: #0d6efd;
}

/* Department Icons */
.fwh-client-tickets-create .department-option{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Priority Badges */
.fwh-client-tickets-create .priority-select option[value="urgent"]{
    background: #dc3545;
    color: white;
}

.fwh-client-tickets-create .priority-select option[value="high"]{
    background: #ffc107;
}

.fwh-client-tickets-create .priority-select option[value="medium"]{
    background: #17a2b8;
}

.fwh-client-tickets-create .priority-select option[value="low"]{
    background: #28a745;
}

/* Enhanced Button */
.fwh-client-tickets-create .btn-submit{
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-tickets-create .btn-submit:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-tickets-create .btn-submit i{
    font-size: 1.25rem;
}

/* Sidebar Cards */
.fwh-client-tickets-create .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-tickets-create-fadeInRight 0.6s ease;
}

.fwh-client-tickets-create .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-tickets-create .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Response Time List */
.fwh-client-tickets-create .response-times{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-tickets-create .response-times li{
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .response-times li:hover{
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-tickets-create .response-times li strong{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
}

.fwh-client-tickets-create .response-times li span{
    color: #6c757d;
    font-size: 0.9rem;
}

.fwh-client-tickets-create .priority-urgent{
    border-left: 4px solid #dc3545;
}

.fwh-client-tickets-create .priority-high{
    border-left: 4px solid #ffc107;
}

.fwh-client-tickets-create .priority-medium{
    border-left: 4px solid #17a2b8;
}

.fwh-client-tickets-create .priority-low{
    border-left: 4px solid #28a745;
}

/* Tips List */
.fwh-client-tickets-create .tips-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-tickets-create .tips-list li{
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .tips-list li:hover{
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-tickets-create .tips-list li i{
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-tickets-create .tips-list li a{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.fwh-client-tickets-create .tips-list li a:hover{
    text-decoration: underline;
}

/* Character Counter */
.fwh-client-tickets-create .character-counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-tickets-create .character-count{
    font-weight: 600;
}

/* Help Box */
.fwh-client-tickets-create .help-box{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.fwh-client-tickets-create .help-box h6{
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .help-box h6 i{
    color: #0d6efd;
}

.fwh-client-tickets-create .help-box p{
    color: #495057;
    margin: 0;
}

/* Enhanced Button */
.fwh-client-tickets-create .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-tickets-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-create-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-create .ticket-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-create .ticket-header .btn{
        width: 100%;
    }
    
    .fwh-client-tickets-create .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-client-tickets-create .btn-submit{
        width: 100%;
    }
}


/* ---- client/tickets/index ---- */

/* ===== SUPPORT TICKETS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-index .tickets-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-index .tickets-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-index .tickets-header h2 i{
    color: #0d6efd;
}

.fwh-client-tickets-index .tickets-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Filter Buttons */
.fwh-client-tickets-index .filter-buttons{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-client-tickets-index-fadeIn 0.6s ease;
}

.fwh-client-tickets-index .btn-filter{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-tickets-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-client-tickets-index .empty-tickets{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-tickets-index-fadeIn 0.6s ease;
}

.fwh-client-tickets-index .empty-tickets i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-tickets-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-tickets-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-tickets-index .empty-tickets h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-tickets-index .empty-tickets p{
    color: #718096;
    font-size: 1.1rem;
}

/* Tickets Table Card */
.fwh-client-tickets-index .tickets-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-client-tickets-index-fadeInUp 0.6s ease;
}

.fwh-client-tickets-index .tickets-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-tickets-index .tickets-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-client-tickets-index .tickets-table{
    margin: 0;
}

.fwh-client-tickets-index .tickets-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-tickets-index .tickets-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-tickets-index .tickets-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-tickets-index .tickets-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-client-tickets-index .tickets-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-client-tickets-index .tickets-table tbody tr:last-child{
    border-bottom: none;
}

/* Ticket Number */
.fwh-client-tickets-index .ticket-number{
    font-weight: 700;
    color: #495057;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
}

/* Subject Link */
.fwh-client-tickets-index .ticket-subject{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .ticket-subject:hover{
    color: #0a58ca;
    transform: translateX(4px);
}

/* Department Badge */
.fwh-client-tickets-index .department-badge{
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.fwh-client-tickets-index .department-badge i{
    font-size: 0.9rem;
}

/* Priority Badges */
.fwh-client-tickets-index .badge-priority{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .badge-priority i{
    font-size: 0.75rem;
}

/* Status Badges */
.fwh-client-tickets-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .badge-status i{
    font-size: 0.75rem;
}

/* Time Display */
.fwh-client-tickets-index .time-display{
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .time-display i{
    color: #0d6efd;
}

/* Action Buttons */
.fwh-client-tickets-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quick Stats */
.fwh-client-tickets-index .quick-stats{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-index-fadeInUp 0.6s ease;
}

.fwh-client-tickets-index .stat-card{
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-index .stat-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.fwh-client-tickets-index .stat-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.fwh-client-tickets-index .stat-icon.open{
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
    color: #28a745;
}

.fwh-client-tickets-index .stat-icon.closed{
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(108, 117, 125, 0.2) 100%);
    color: #6c757d;
}

.fwh-client-tickets-index .stat-icon.total{
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.2) 100%);
    color: #0d6efd;
}

.fwh-client-tickets-index .stat-content h3{
    margin: 0;
    font-weight: 700;
    font-size: 1.75rem;
    color: #2d3748;
}

.fwh-client-tickets-index .stat-content p{
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Enhanced Button */
.fwh-client-tickets-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-tickets-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-tickets-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-index .tickets-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-client-tickets-index .btn-filter{
        flex: 1;
        justify-content: center;
    }
    
    .fwh-client-tickets-index .quick-stats{
        flex-direction: column;
    }
    
    .fwh-client-tickets-index .tickets-table thead th, .fwh-client-tickets-index .tickets-table tbody td{
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .fwh-client-tickets-index .btn-action{
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}


/* ---- client/tickets/show ---- */

/* ===== TICKET DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-show .ticket-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-show .ticket-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .ticket-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-tickets-show .ticket-header-info .status-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Conversation Card */
.fwh-client-tickets-show .conversation-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-tickets-show-fadeInUp 0.6s ease;
}

.fwh-client-tickets-show .conversation-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-tickets-show .conversation-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    flex: 1;
}

.fwh-client-tickets-show .conversation-card .card-body{
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
}

/* Reply Message */
.fwh-client-tickets-show .reply-message{
    margin-bottom: 1.5rem;
    border-radius: 12px;
    padding: 1.5rem;
    animation: fwh-client-tickets-show-fadeIn 0.5s ease;
    position: relative;
}

.fwh-client-tickets-show .reply-message.client-message{
    background: white;
    border: 2px solid #e9ecef;
    margin-left: 0;
    margin-right: 2rem;
}

.fwh-client-tickets-show .reply-message.staff-message{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    margin-right: 0;
    margin-left: 2rem;
}

.fwh-client-tickets-show .reply-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.fwh-client-tickets-show .reply-author{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-tickets-show .reply-author-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.fwh-client-tickets-show .client-avatar{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.fwh-client-tickets-show .staff-avatar{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.fwh-client-tickets-show .staff-badge{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-show .reply-time{
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-show .reply-time i{
    color: #0d6efd;
}

.fwh-client-tickets-show .reply-content{
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Reply Form Card */
.fwh-client-tickets-show .reply-form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-tickets-show .reply-form-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-tickets-show .reply-form-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .reply-form-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-tickets-show .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.fwh-client-tickets-show .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Closed Ticket Notice */
.fwh-client-tickets-show .closed-notice{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-tickets-show-fadeIn 0.6s ease;
}

.fwh-client-tickets-show .closed-notice i{
    font-size: 2rem;
    color: #dc3545;
}

.fwh-client-tickets-show .closed-notice-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #721c24;
}

.fwh-client-tickets-show .closed-notice-content p{
    margin: 0;
    color: #721c24;
}

/* Sidebar Card */
.fwh-client-tickets-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-show-fadeInRight 0.6s ease;
    position: sticky;
    top: 80px;
}

.fwh-client-tickets-show .info-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-tickets-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-tickets-show .info-card .card-body{
    padding: 1.5rem;
}

/* Info Item */
.fwh-client-tickets-show .info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-tickets-show .info-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-tickets-show .info-item:last-child{
    margin-bottom: 0;
}

.fwh-client-tickets-show .info-item i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-tickets-show .info-item-content{
    flex: 1;
}

.fwh-client-tickets-show .info-item-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-tickets-show .info-item-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Priority and Status Badges */
.fwh-client-tickets-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Button */
.fwh-client-tickets-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-tickets-show .btn-submit{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .btn-submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Character Counter */
.fwh-client-tickets-show .character-counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-tickets-show .character-count{
    font-weight: 600;
}

/* Scrollbar Styling */
.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar{
    width: 8px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-track{
    background: #f8f9fa;
    border-radius: 4px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-thumb{
    background: #dee2e6;
    border-radius: 4px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-thumb:hover{
    background: #cbd5e0;
}

/* Animations */
@keyframes fwh-client-tickets-show-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-tickets-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-show .ticket-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-show .ticket-header .btn{
        width: 100%;
    }
    
    .fwh-client-tickets-show .reply-message.client-message, .fwh-client-tickets-show .reply-message.staff-message{
        margin-left: 0;
        margin-right: 0;
    }
    
    .fwh-client-tickets-show .info-card{
        position: static;
    }
    
    .fwh-client-tickets-show .conversation-card .card-body{
        max-height: 400px;
    }
}
