/* /templates/orderforms/fusion_order/style.css */

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #16a34a;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --info-color: #0891b2;
}
body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
#order-standard_cart {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.orderform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.step-indicator {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.step-indicator .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 10px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    text-align: center;
    position: relative;
    flex-grow: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.step.active .step-number {
    background: var(--primary-color);
    color: white;
}
.step.completed .step-number {
    background: var(--success-color);
    color: white;
}
.step-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}
.step.active .step-title {
    color: var(--primary-color);
    font-weight: 600;
}
.main-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.content-header {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 30px;
    text-align: center;
}
.content-body {
    padding: 40px;
}
/* Products Page (Step 2) Styling */
#products {
    background: transparent;
}
#products .product {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    box-shadow: none;
}
#products .product:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
#products .product-title, #products .product-pricing {
    background: none;
    border: none;
    text-align: left;
}
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}
.package-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}
.package-price small {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: normal;
}
#products .product-desc {
    padding: 0;
}
.feature-list {
    list-style: none;
    padding: 0;
    color: #475569;
}
.feature-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}
.feature-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Pro';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}
#products .product .order-button {
    margin-top: 15px;
}
#products .product .order-button .btn {
    width: 100%;
}
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    opacity: 0.9;
}
.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}
/* Configurable Options & Addons (Steps 3-6) */
.form-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}
.form-section h4 {
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}
.addon-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}
.addon-card.selected {
    border-color: var(--primary-color);
    background: #eff6ff;
}
.addon-card p {
    font-size: 0.9rem;
}
.did-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.did-option {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.did-option:hover, .did-option.selected {
    border-color: var(--primary-color);
    background: #eff6ff;
}
.did-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.did-location {
    color: #64748b;
    font-size: 0.9rem;
}
/* Price Summary Sidebar */
.price-summary {
    position: sticky;
    top: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
}
.price-summary h4 {
    color: #1e293b;
    font-weight: 600;
}
#order-summary {
    margin: 0;
}
#order-summary .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#order-summary .summary-line.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}
/* Navigation */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}
.hidden {
    display: none;
}
/* Cart Page (Step 7/8) */
.view-cart-items-header, .view-cart-tabs, .view-cart-items-header, #domain-selection, .promo-code-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}
#frmCheckout {
    padding-top: 20px;
}
/* Complete Page (Step 9) */
.order-confirmation {
    text-align: center;
    padding: 50px 20px;
}
.order-confirmation .fas.fa-check-circle {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}
/* --- New Styles for Package Card Highlighting --- */

/* This creates the hover effect when your cursor is over a package */
.package-card:hover {
    border-color: #2563eb; /* This is your theme's primary blue color */
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px); /* This makes the card "lift" slightly */
}

/* This style "sticks" to the package after it has been clicked */
.package-card.selected {
    border-color: #16a34a; /* This is your theme's success green color */
    background-color: #f0fdf4; /* A very light green to make it stand out */
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
    transform: translateY(-5px) scale(1.02); /* Keeps it lifted and makes it slightly bigger */
}