/* WiseHosting Cart Custom Styles */

/* Utility Classes */
.w-hidden {
    display: none !important;
}

/* Domain Configuration Page */
.domain-selection-options {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.4) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.domain-selection-options .option {
    background: rgba(42, 47, 74, 0.6) !important;
    border: 2px solid rgba(71, 85, 105, 0.5) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease !important;
}

.domain-selection-options .option:hover {
    background: rgba(42, 47, 74, 0.8) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.domain-selection-options .option label {
    color: #ffffff !important;
}

.domain-selection-options .option .form-control,
.domain-selection-options .option .input-group-text {
    background: rgba(26, 31, 58, 0.8) !important;
    border-color: rgba(71, 85, 105, 0.5) !important;
    color: #ffffff !important;
}

.domain-selection-options .option .input-group-text {
    background: rgba(42, 47, 74, 0.8) !important;
}

.domain-selection-options .option .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #00b8d4) !important;
    border: none !important;
    color: #ffffff !important;
}

.domain-selection-options .option .btn-primary:hover {
    background: linear-gradient(135deg, #00b8d4, #0097a7) !important;
}

/* Main Cart Container */
#order-standard_cart {
    background: transparent;
}

.cart-container {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Left Column - Main Content */
.cart-main-content {
    flex: 1;
    max-width: 750px;
}

/* Right Sidebar - Order Progress & Summary */
.cart-right-sidebar {
    width: 380px;
    flex-shrink: 0;
}

/* Page Header */
.wh-page-header {
    margin-bottom: 32px;
}

.wh-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.wh-page-subtitle {
    font-size: 15px;
    color: #8b93a7;
    margin: 0;
}

/* Product Card */
.wh-product-display {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .wh-product-display {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .wh-product-price {
        width: 100%;
        text-align: left;
    }
}

.wh-product-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.wh-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wh-product-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.wh-product-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
}

.wh-product-ram {
    font-size: 14px;
    color: #00d4ff;
    font-weight: 600;
}

.wh-product-price {
    text-align: right;
}

.wh-price-label {
    font-size: 12px;
    color: #8b93a7;
    margin-bottom: 4px;
}

.wh-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
}

/* Section Styling */
.wh-section {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.wh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wh-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.wh-toggle-link {
    font-size: 14px;
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.wh-toggle-link:hover {
    color: #00ff88;
}

/* Form Fields */
.wh-form-group {
    margin-bottom: 20px;
}

.wh-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.wh-form-input,
.wh-form-select,
.wh-form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
}

.wh-form-input:focus,
.wh-form-select:focus,
.wh-form-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(15, 18, 35, 1);
}

.wh-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.wh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Billing Cycle Buttons */
.wh-billing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.wh-billing-btn {
    position: relative;
    padding: 16px;
    background: rgba(15, 18, 35, 0.8);
    border: 2px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.wh-billing-btn:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.wh-billing-btn.active {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 255, 136, 0.2) 100%);
}

.wh-billing-period {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.wh-billing-price {
    font-size: 14px;
    color: #00ff88;
}

.wh-billing-save {
    position: absolute;
    top: -8px;
    right: 8px;
    background: #00ff88;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Minecraft Version Cards */
.wh-version-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.wh-version-card {
    padding: 16px;
    background: rgba(15, 18, 35, 0.8);
    border: 2px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.wh-version-card:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.wh-version-card.active {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 255, 136, 0.2) 100%);
}

.wh-version-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
}

.wh-version-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Order Progress Sidebar */
.wh-order-progress {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.wh-progress-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.wh-progress-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wh-progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wh-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(42, 47, 74, 0.8);
    border: 2px solid rgba(42, 47, 74, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7b95;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.wh-progress-step.active .wh-step-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    border-color: #00d4ff;
    color: #000;
}

.wh-progress-step.completed .wh-step-icon {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #00ff88;
}

.wh-step-label {
    font-size: 14px;
    color: #8b93a7;
    font-weight: 600;
}

.wh-progress-step.active .wh-step-label {
    color: #00d4ff;
}

.wh-progress-step.completed .wh-step-label {
    color: #00ff88;
}

/* Order Summary */
.wh-order-summary {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
}

.wh-summary-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.wh-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.wh-summary-label {
    color: #8b93a7;
}

.wh-summary-value {
    color: #ffffff;
    font-weight: 600;
}

.wh-summary-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(42, 47, 74, 0.8);
}

.wh-summary-total .wh-summary-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

.wh-summary-total .wh-summary-value {
    font-size: 20px;
    color: #00ff88;
    font-weight: 700;
}

/* Checkout Button */
.wh-checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 16px;
}

.wh-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

/* Promo Code Section */
.wh-promo-section {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.wh-promo-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.wh-promo-input-group {
    display: flex;
    gap: 12px;
}

.wh-promo-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

.wh-promo-btn {
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 8px;
    color: #00d4ff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.wh-promo-btn:hover {
    background: rgba(0, 212, 255, 0.3);
}

/* Payment Methods */
.wh-payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.wh-payment-method {
    flex: 1;
    padding: 16px;
    background: rgba(15, 18, 35, 0.8);
    border: 2px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wh-payment-method:hover {
    border-color: #00d4ff;
}

.wh-payment-method.active {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
}

.wh-payment-icon {
    width: 24px;
    height: 24px;
}

.wh-payment-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Product Actions */
.wh-product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wh-configure-btn {
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    border-radius: 6px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.wh-configure-btn:hover {
    background: rgba(0, 212, 255, 0.3);
}

.wh-delete-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.6);
    border-radius: 6px;
    color: #ff3b30;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wh-delete-btn:hover {
    background: rgba(255, 59, 48, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cart-container {
        flex-direction: column;
    }
    
    .cart-right-sidebar {
        width: 100%;
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .wh-form-row {
        grid-template-columns: 1fr;
    }
    
    .wh-billing-options {
        grid-template-columns: 1fr;
    }
    
    .wh-version-grid {
        grid-template-columns: 1fr;
    }
    
    .wh-payment-methods {
        flex-direction: column;
    }
}

/* Products page - smaller pricing */
#order-standard_cart .products .product div.product-pricing span.price {
    font-size: 0.9em !important;
}

#order-standard_cart .products .product div.product-pricing {
    font-size: 12px;
}

/* ===================================
   Store Page Styles
   =================================== */

/* Store Hero Section */
.wh-store-hero {
    background: transparent;
    padding: 60px 20px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.wh-store-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.wh-store-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wh-store-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Alert Messages */
.wh-store-alert {
    max-width: 1200px;
    margin: 0 auto 30px;
    border-radius: 8px;
}

/* Categories Container */
.wh-categories-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Horizontal Categories */
.wh-categories-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    background: transparent;
    padding: 24px;
}

.wh-category-btn {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
    min-width: 200px;
}

.wh-category-btn:hover {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.wh-category-btn.active {
    background: linear-gradient(135deg, #00d4ff, #00b8d4);
    border-color: #00d4ff;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.wh-category-btn i {
    font-size: 16px;
}

/* Products Grid */
.wh-products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.wh-products-grid::after {
    content: "";
    display: block;
    clear: both;
}

/* Product Card */
.products .product.wh-product-card,
.wh-product-card {
    background: rgba(18, 28, 46, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3) !important;
    border-radius: 16px !important;
    padding: 24px 20px 20px !important;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Cube Icon */
.wh-product-card .wh-product-icon {
    text-align: center;
    margin-bottom: 12px;
}

.wh-cube-icon {
    width: 64px;
    height: 64px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00d4ff;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.wh-product-card:hover .wh-cube-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 184, 212, 0.2));
    border-color: rgba(0, 212, 255, 0.6);
}

/* Product Header */
.wh-product-header {
    text-align: center;
    margin-bottom: 12px;
}

.wh-product-card .wh-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.wh-product-subtitle {
    font-size: 15px;
    color: #8b93a7;
    margin: 0;
    font-weight: 400;
}

/* Product Body */
.wh-product-body {
    flex: 1;
    text-align: center;
    margin-bottom: 12px;
}

.wh-product-description {
    font-size: 14px;
    color: #b8c1d3;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Features Toggle */
.wh-product-features-toggle {
    margin-bottom: 8px;
}

.wh-product-features-toggle a {
    color: #00d4ff;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.wh-product-features-toggle a:hover {
    color: #00ffcc;
    text-decoration: underline;
}

.wh-product-features-list {
    list-style: none;
    padding: 16px;
    margin: 0 0 16px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: left;
}

.wh-product-features-list li {
    font-size: 13px;
    color: #cbd5e1;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wh-product-features-list li:last-child {
    border-bottom: none;
}

.wh-product-features-list .feature-value {
    color: #00d4ff;
    font-weight: 600;
    margin-right: 8px;
}

/* Star Rating */
.wh-product-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.wh-product-rating i {
    font-size: 8px;
    color: #475569;
}

/* Pricing */
.wh-product-pricing {
    margin-bottom: 12px;
    padding: 0;
    border-top: none;
}

.wh-product-card .wh-price-label {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.wh-product-card .wh-price {
    font-size: 36px;
    font-weight: 700;
    color: #00ff88;
    display: inline-block;
}

.wh-price-cycle {
    font-size: 14px;
    color: #94a3b8;
    margin-left: 4px;
}

.wh-setup-fee {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
}

/* Product Footer */
.wh-product-footer {
    text-align: center;
    border-top: none;
    padding-top: 0;
}

.wh-contact-us {
    font-size: 14px;
    color: #8b93a7;
    margin: 0 0 12px 0;
}

.wh-order-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wh-order-btn:hover {
    background: #00d4ff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    text-decoration: none;
}

/* Stock Badge */
.wh-stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .wh-store-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .wh-store-title {
        font-size: 36px;
    }
    
    .wh-store-hero {
        padding: 60px 20px;
    }
    
    .wh-product-card .wh-product-name {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .wh-store-title {
        font-size: 30px;
    }
    
    .wh-store-tagline {
        font-size: 16px;
    }
    
    .wh-store-hero {
        padding: 50px 15px;
    }
    
    .wh-categories-horizontal {
        gap: 8px;
    }
    
    .wh-category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wh-product-card {
        margin-bottom: 20px;
    }
    
    .wh-cube-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .wh-product-card .wh-product-name {
        font-size: 20px;
    }
    
    .wh-product-card .wh-price {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .wh-store-title {
        font-size: 26px;
    }
    
    .wh-categories-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wh-category-btn {
        text-align: center;
        justify-content: center;
    }
}

/* ===================================
   CHECKOUT PAGE STYLES - DARK THEME
   =================================== */

/* Checkout Container */
#order-standard_cart .cart-body {
    background: transparent;
}

/* Header Styling */
#order-standard_cart .header-lined {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

#order-standard_cart .header-lined h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Already Registered Section */
#order-standard_cart .already-registered {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

#order-standard_cart .already-registered p {
    color: #8b93a7;
    margin: 0;
}

#order-standard_cart .already-registered .btn-info,
#order-standard_cart .already-registered .btn-warning {
    background: linear-gradient(135deg, #00d4ff, #00b8d4);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#order-standard_cart .already-registered .btn-info:hover,
#order-standard_cart .already-registered .btn-warning:hover {
    background: linear-gradient(135deg, #00b8d4, #0097a7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

/* Error Messages */
#order-standard_cart .checkout-error-feedback {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

#order-standard_cart .checkout-error-feedback p {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 10px;
}

#order-standard_cart .checkout-error-feedback ul {
    color: #ff8a80;
    margin: 0;
    padding-left: 20px;
}

/* Section Headings */
#order-standard_cart .sub-heading {
    margin: 30px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

#order-standard_cart .sub-heading span {
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
    background: none !important;
}

/* Account Selection */
#order-standard_cart .account-select-container {
    margin-bottom: 30px;
    background: transparent !important;
}

#order-standard_cart .account-select-container > div {
    background: transparent !important;
}

#order-standard_cart .account {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 2px solid rgba(42, 47, 74, 0.8) !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#order-standard_cart .account:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(26, 31, 58, 0.8);
}

#order-standard_cart .account.active {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

#order-standard_cart .account label {
    color: #ffffff !important;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

#order-standard_cart .account input[type="radio"] {
    accent-color: #00d4ff;
    cursor: pointer;
    margin-right: 10px;
}

#order-standard_cart .account .address {
    color: #ffffff !important;
}

#order-standard_cart .account .address strong {
    color: #00d4ff !important;
    font-size: 16px;
}

#order-standard_cart .account .address .small {
    color: #8b93a7 !important;
}

#order-standard_cart .account .label-default,
#order-standard_cart .account .label-info {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

/* Form Sections */
#order-standard_cart #containerExistingUserSignin,
#order-standard_cart #containerNewUserSignup {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Form Groups */
#order-standard_cart .form-group {
    margin-bottom: 20px;
    position: relative;
}

#order-standard_cart .form-group label:not(.radio-inline):not(.field-icon) {
    display: block;
    color: #8b93a7;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Form Icons */
#order-standard_cart .prepend-icon {
    position: relative;
}

#order-standard_cart .field-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

/* Form Inputs */
#order-standard_cart .field.form-control,
#order-standard_cart input.form-control,
#order-standard_cart select.form-control,
#order-standard_cart textarea.form-control {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

#order-standard_cart .field.form-control:focus,
#order-standard_cart input.form-control:focus,
#order-standard_cart select.form-control:focus,
#order-standard_cart textarea.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(15, 18, 35, 1);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

#order-standard_cart .field.form-control::placeholder,
#order-standard_cart input.form-control::placeholder {
    color: #6c7b95;
}

/* Select Dropdowns - Critical Fix */
#order-standard_cart select.form-control,
#order-standard_cart select,
select.form-control {
    cursor: pointer !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    pointer-events: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    position: relative !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.5 !important;
    padding: 12px 16px 12px 44px !important;
    vertical-align: middle !important;
    display: inline-block !important;
    appearance: menulist !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
}

#order-standard_cart select.form-control option {
    background: #1a1f3a;
    color: #ffffff;
    padding: 8px 12px;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
}

/* Ensure selected option text is visible */
#order-standard_cart select.form-control option:checked,
#order-standard_cart select.form-control option:hover {
    background: #2a2f4a;
    color: #ffffff;
}

/* Fix for select showing value */
#order-standard_cart select.form-control:not([multiple]):not([size]) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Buttons */
#order-standard_cart .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #00b8d4);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-primary:focus {
    background: linear-gradient(135deg, #00b8d4, #0097a7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
    color: #ffffff;
}

#order-standard_cart .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Secondary Buttons */
#order-standard_cart .btn-default,
#order-standard_cart .btn-secondary {
    background: rgba(42, 47, 74, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.5);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#order-standard_cart .btn-default:hover,
#order-standard_cart .btn-secondary:hover {
    background: rgba(42, 47, 74, 0.8);
    border-color: #00d4ff;
}

/* Domain Contact Section */
#order-standard_cart #domainRegistrantInputFields {
    margin-top: 20px;
}

/* Field Help Text */
#order-standard_cart .field-help-text {
    display: block;
    font-size: 12px;
    color: #6c7b95;
    margin-top: 6px;
    font-style: italic;
}

/* Alert Messages - Success */
#order-standard_cart .alert-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

/* Alert Messages - Info */
#order-standard_cart .alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

/* Hide empty alert boxes */
#order-standard_cart .alert-info:empty,
#order-standard_cart .alert:empty {
    display: none !important;
}

/* Social Login Buttons */
#order-standard_cart .social-signin-btns {
    margin-bottom: 20px;
}

#order-standard_cart .social-signin-btns .btn {
    margin: 5px;
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    color: #ffffff;
}

#order-standard_cart .social-signin-btns .btn:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: #00d4ff;
}

/* Text Alignment */
#order-standard_cart .text-center {
    text-align: center;
}

#order-standard_cart .text-sm-left {
    text-align: left;
}

/* Additional Information Section */
#order-standard_cart .field-container {
    background: transparent;
}

/* Custom Fields */
#order-standard_cart .customfield {
    margin-bottom: 20px;
}

#order-standard_cart .customfield select,
#order-standard_cart .customfield select.form-control {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    cursor: pointer !important;
    appearance: menulist !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    pointer-events: auto !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.5 !important;
    padding: 12px 16px !important;
    vertical-align: middle !important;
}

#order-standard_cart .customfield select option {
    background: #1a1f3a;
    color: #ffffff;
}

#order-standard_cart .customfield label {
    color: #8b93a7;
    font-weight: 600;
}

/* Checkbox and Radio Buttons */
#order-standard_cart input[type="checkbox"],
#order-standard_cart input[type="radio"] {
    width: auto;
    padding: 0;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #00d4ff;
}

#order-standard_cart .radio-inline,
#order-standard_cart .checkbox-inline {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    color: #ffffff;
    cursor: pointer;
}

/* Payment Gateway Selection - Styled Buttons */
#paymentGatewaysContainer .radio-inline {
    background: rgba(15, 18, 35, 0.8);
    border: 2px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    padding: 14px 20px;
    margin: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

#paymentGatewaysContainer .radio-inline:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

#paymentGatewaysContainer .radio-inline:has(input:checked) {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 184, 212, 0.2));
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-weight: 600;
}

#paymentGatewaysContainer input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    margin: 0;
}

#paymentGatewaysContainer .text-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

#paymentGatewaysContainer p.small {
    color: #8b93a7;
    margin-bottom: 20px;
    text-align: center;
}

/* Password Strength Indicator */
#order-standard_cart .password-strength-indicator {
    height: 4px;
    background: rgba(42, 47, 74, 0.8);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

#order-standard_cart .password-strength-bar {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

#order-standard_cart .password-strength-bar.weak {
    background: #ff3b30;
}

#order-standard_cart .password-strength-bar.moderate {
    background: #ffc107;
}

#order-standard_cart .password-strength-bar.strong {
    background: #00ff88;
}

/* Cart Sidebar - HIDDEN */
#order-standard_cart .cart-sidebar {
    display: none !important;
}

/* Expand cart body to full width when sidebar is hidden */
#order-standard_cart .cart-body {
    width: 100%;
    max-width: 100%;
}

/* Payment Methods Section */
#order-standard_cart .payment-methods {
    margin: 30px 0;
}

#order-standard_cart .payment-methods .panel,
#order-standard_cart .payment-methods .card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    margin-bottom: 20px;
}

#order-standard_cart .payment-methods .panel-heading,
#order-standard_cart .payment-methods .card-header {
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(42, 47, 74, 0.8);
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}

#order-standard_cart .payment-methods .panel-title,
#order-standard_cart .payment-methods .card-title {
    color: #00d4ff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

#order-standard_cart .payment-methods .panel-body,
#order-standard_cart .payment-methods .card-body {
    padding: 20px;
}

#order-standard_cart .payment-methods .radio {
    background: rgba(15, 18, 35, 0.8);
    border: 2px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

#order-standard_cart .payment-methods .radio:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(15, 18, 35, 1);
}

#order-standard_cart .payment-methods .radio.active,
#order-standard_cart .payment-methods .radio:has(input:checked) {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

#order-standard_cart .payment-methods label {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

#order-standard_cart .payment-methods img {
    max-height: 30px;
    margin-left: 10px;
}

/* Order Summary Section */
#order-standard_cart .order-summary,
#order-standard_cart .view-cart-items {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

#order-standard_cart .order-summary h2,
#order-standard_cart .view-cart-items h2 {
    color: #00d4ff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

#order-standard_cart .summary-container {
    background: transparent;
}

#order-standard_cart .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42, 47, 74, 0.5);
    color: #ffffff;
}

#order-standard_cart .summary-row:last-child {
    border-bottom: none;
}

#order-standard_cart .summary-row .item {
    color: #8b93a7;
}

#order-standard_cart .summary-row .price {
    color: #ffffff;
    font-weight: 600;
}

#order-standard_cart .summary-total {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

#order-standard_cart .summary-total .item {
    color: #00d4ff;
    font-size: 16px;
    font-weight: 700;
}

#order-standard_cart .summary-total .price {
    color: #00ff88;
    font-size: 20px;
    font-weight: 700;
}

/* Complete Order Button */
#order-standard_cart #btnCompleteOrder,
#order-standard_cart .btn-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#order-standard_cart #btnCompleteOrder:hover,
#order-standard_cart .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
}

#order-standard_cart #btnCompleteOrder:disabled,
#order-standard_cart .btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Terms and Conditions */
#order-standard_cart .terms-checkbox {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

#order-standard_cart .terms-checkbox label {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#order-standard_cart .terms-checkbox a {
    color: #00d4ff;
    text-decoration: none;
}

#order-standard_cart .terms-checkbox a:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Promo Code Section in Checkout */
#order-standard_cart .promo-code-section {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

#order-standard_cart .promo-code-section h3 {
    color: #00d4ff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

#order-standard_cart .input-group {
    display: flex;
    gap: 10px;
}

#order-standard_cart .input-group .form-control {
    flex: 1;
}

#order-standard_cart .input-group-btn .btn,
#order-standard_cart .input-group-append .btn {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid #00d4ff;
    color: #00d4ff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#order-standard_cart .input-group-btn .btn:hover,
#order-standard_cart .input-group-append .btn:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: #00ff88;
}

/* Credit Card Form */
#order-standard_cart .credit-card-form .form-control {
    background: rgba(15, 18, 35, 0.8);
    border: 1px solid rgba(42, 47, 74, 0.8);
    color: #ffffff;
}

#order-standard_cart .credit-card-form .form-control:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

#order-standard_cart .credit-card-form label {
    color: #8b93a7;
}

/* Loading States */
#order-standard_cart .btn .fa-spinner {
    margin-right: 8px;
}

#order-standard_cart .processing-overlay {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
}

#order-standard_cart .processing-overlay .fa-spinner {
    color: #00d4ff;
    font-size: 48px;
}

/* Captcha/Spam Bot Verification Section */
#order-standard_cart .text-center:has(.margin-bottom) {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

/* Payment Details Section Container */
#order-standard_cart #totalDueToday,
#order-standard_cart #applyCreditContainer,
#order-standard_cart #paymentGatewaysContainer {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

/* Total Due Today Specific Styling */
#order-standard_cart #totalDueToday {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

#order-standard_cart #totalDueToday strong {
    color: #00ff88;
    font-size: 24px;
}

/* Apply Credit Container */
#order-standard_cart #applyCreditContainer {
    background: rgba(26, 31, 58, 0.6);
}

#order-standard_cart #applyCreditContainer p {
    color: #8b93a7;
    margin-bottom: 15px;
}

#order-standard_cart #applyCreditContainer label.radio {
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

/* Payment Gateway Container already styled above */
#order-standard_cart #paymentGatewayInput {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

/* Credit Card Input Fields Container */
#order-standard_cart #creditCardInputFields {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 47, 74, 0.8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

/* Remove grey boxes from domain selection and other sections */
#order-standard_cart .domain-selection-options .option,
#order-standard_cart .modal-body,
#order-standard_cart .panel,
#order-standard_cart .panel-body,
#order-standard_cart .well,
#order-standard_cart .panel-default,
#order-standard_cart .panel-default > .panel-body {
    background: transparent !important;
}

/* Override any grey backgrounds in checkout sections */
#order-standard_cart .form-horizontal .panel-body,
#order-standard_cart .checkout-container .panel-body,
#order-standard_cart div[style*="background"] {
    background: transparent !important;
}

/* Hide empty blue info boxes and notifications */
.alert-info:empty,
.alert:empty,
div.alert-info:not(:has(*)),
div.alert:not(:has(*)),
.alert-info:not(:has(*:not(:empty))),
.notification:empty,
.info-box:empty,
div[class*="alert"]:empty,
div[class*="info"]:empty,
div[class*="notification"]:empty,
#passwdFeedback.w-hidden,
#passwdFeedback:empty,
.w-hidden,
.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Specifically hide password feedback when empty */
#order-standard_cart #passwdFeedback:not(:has(p)),
#order-standard_cart #passwdFeedback:not(:has(span)),
#order-standard_cart #passwdFeedback:not(:has(div)) {
    display: none !important;
}

/* Fix for intl-tel-input phone number country code overlap */
#order-standard_cart .intl-tel-input {
    width: 100% !important;
}

#order-standard_cart .intl-tel-input input[type="tel"] {
    padding-left: 80px !important;
    width: 100% !important;
}

#order-standard_cart .intl-tel-input .flag-container {
    width: 70px !important;
}

#order-standard_cart .intl-tel-input .selected-flag {
    width: 70px !important;
    padding-left: 10px !important;
}

#order-standard_cart .intl-tel-input .selected-dial-code {
    margin-left: 8px !important;
}

/* CRITICAL: Ensure all select dropdowns are fully interactive */
#order-standard_cart select,
#order-standard_cart select *,
#order-standard_cart select.form-control,
#order-standard_cart select.form-control *,
select.form-control,
select {
    pointer-events: auto !important;
    -webkit-user-select: auto !important;
    user-select: auto !important;
}

/* Make sure form groups don't block select elements */
#order-standard_cart .form-group {
    pointer-events: auto !important;
}

#order-standard_cart .form-group select {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure select dropdowns are above any overlays */
#order-standard_cart .row select,
#order-standard_cart .col-sm-6 select,
#order-standard_cart .col-md-6 select {
    pointer-events: auto !important;
    z-index: 100 !important;
}

/* ========================================
   FINAL OVERRIDE: FIX ALL DROPDOWNS
   ======================================== */
select,
select.form-control,
#order-standard_cart select,
#order-standard_cart select.form-control,
input[name="country"],
select[name="country"],
select[name="state"],
select[id*="country"],
select[id*="state"],
.form-control.select,
#customfield select {
    pointer-events: auto !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    user-select: text !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    overflow: visible !important;
}

/* Fix dropdown option text being cut off */
select option,
select.form-control option {
    padding: 8px 12px !important;
    overflow: visible !important;
    white-space: normal !important;
    min-height: 30px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    #order-standard_cart .header-lined h1 {
        font-size: 28px;
    }
    
    #order-standard_cart #containerExistingUserSignin,
    #order-standard_cart #containerNewUserSignup {
        padding: 20px;
    }
    
    #order-standard_cart .already-registered {
        text-align: center;
    }
    
    #order-standard_cart .already-registered .btn-info,
    #order-standard_cart .already-registered .btn-warning {
        margin-top: 10px;
        width: 100%;
    }
    
    #order-standard_cart .cart-sidebar {
        margin-top: 30px;
    }
    
    #order-standard_cart .input-group {
        flex-direction: column;
    }
    
    #order-standard_cart .input-group-btn .btn,
    #order-standard_cart .input-group-append .btn {
        width: 100%;
    }
}

/* Hide any absolutely positioned empty elements that might appear in corners */
div[style*="position: absolute"]:empty,
div[style*="position: fixed"]:empty,
.top-notification:empty,
.corner-notification:empty {
    display: none !important;
    visibility: hidden !important;
}
