/* ==========================================================================
   Premium Custom Server Builder Styles (1466.css)
   Inspiration: Stripe, Vercel, Linear, DigitalOcean
   ========================================================================== */

/* Main Container Layout */
.builder-section {
    padding: 24px 0 80px;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Two-column responsive layout */
.builder-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Left Sidebar Summary Column (Sticky) */
.builder-sidebar {
    width: 360px;
    flex-shrink: 0;
    position: sticky !important;
    top: 100px;
    background-color: #080f1e;
    border-radius: 20px;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 40;
    transition: all 0.3s ease;
}

/* Sidebar Video and Logo Group */
.sidebar-top {
    margin-bottom: 24px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.sidebar-logo img {
    height: 24px;
    object-fit: contain;
}

.sidebar-video-container {
    background-color: #040914;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Sections */
.sidebar-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
}

.sidebar-summary-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.summary-label {
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-label svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    opacity: 0.7;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

/* Thin Elegant Progress Line Indicators */
.summary-progress-bg {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2px;
}

.summary-progress-fill {
    height: 100%;
    background-color: #3b82f6;
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estimated Deployment & Status Banner */
.sidebar-status-banner {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 24px;
}

.sidebar-status-banner svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Sidebar Price Widget */
.sidebar-price-widget {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.sidebar-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
}

.sidebar-price-value {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sidebar-price-period {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.sidebar-price-tax {
    font-size: 11px;
    color: #475569;
    margin-top: 4px;
    font-weight: 500;
}

/* Sidebar Money-Back Guarantee badge */
.sidebar-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.sidebar-guarantee svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* Right Configurator Content Column */
.builder-content {
    flex: 1;
}

.builder-header {
    margin-bottom: 32px;
}

.builder-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.builder-header p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

/* Configurator Sections separated by thin dividers */
.config-section {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid #f1f5f9;
}

.config-section:last-of-type {
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.config-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.config-section-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

.field-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-tooltip-icon {
    width: 14px;
    height: 14px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.15s ease;
}

.info-tooltip-icon:hover {
    color: #64748b;
}

/* Premium Custom Dropdowns (Stripe/Vercel style) */
.custom-dropdown-container {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.custom-dropdown-trigger:hover {
    border-color: #94a3b8;
}

.custom-dropdown-trigger:focus,
.custom-dropdown-container.open .custom-dropdown-trigger {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.selected-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-option-content img,
.selected-option-content svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.dropdown-chevron-icon {
    width: 16px;
    height: 16px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.custom-dropdown-container.open .dropdown-chevron-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Options Panel */
.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    margin-top: 6px;
    padding: 6px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-container.open .custom-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.custom-dropdown-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.1s ease;
}

.custom-dropdown-option:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.custom-dropdown-option.selected {
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

.option-left-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-left-content img,
.option-left-content svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.option-latency-tag {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Custom Checkmark for Selected State */
.option-check-icon {
    width: 16px;
    height: 16px;
    color: #2563eb;
    display: none;
}

.custom-dropdown-option.selected .option-check-icon {
    display: block;
}

/* Resources Sliders Styles */
.resource-row {
    margin-bottom: 28px;
}

.resource-row:last-child {
    margin-bottom: 0;
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.resource-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.resource-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 800;
    color: #1e40af;
    background-color: #eff6ff;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid #bfdbfe;
    transition: all 0.15s ease;
    cursor: text;
}

.resource-value-badge:hover {
    border-color: #3b82f6;
    background-color: #dbeafe;
}

.resource-value-badge:focus-within {
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.badge-edit-icon {
    width: 13px;
    height: 13px;
    stroke: #1e40af;
    stroke-width: 2.5;
    fill: none;
    margin-right: 2px;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.resource-value-badge:hover .badge-edit-icon,
.resource-value-badge:focus-within .badge-edit-icon {
    opacity: 0.9;
}

.badge-number-input {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: 800;
    color: #1e40af !important;
    text-align: right;
    width: 38px;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    line-height: 1 !important;
    font-family: inherit;
}

/* Hide number input spinners */
.badge-number-input::-webkit-outer-spin-button,
.badge-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.badge-number-input {
    -moz-appearance: textfield !important; /* Firefox */
}

/* Horizontal Sliders Input Styling */
.range-slider-container {
    position: relative;
    padding: 8px 0;
}

.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    transition: background 0.15s ease;
    cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3), 0 0 0 0px rgba(37, 99, 235, 0.15);
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 6px rgba(37, 99, 235, 0.4), 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.custom-range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3), 0 0 0 0px rgba(37, 99, 235, 0.15);
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.custom-range-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 6px rgba(37, 99, 235, 0.4), 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 6px;
    font-weight: 500;
}

/* Quick Select Buttons (For RAM) */
.quick-select-list {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-quick-select {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-quick-select:hover {
    border-color: #cbd5e1;
    color: #334155;
    background-color: #f8fafc;
}

.btn-quick-select.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* Storage Toggle Buttons (NVMe, SSD, HDD) */
.toggle-select-list {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-toggle-select {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-toggle-select:hover {
    border-color: #cbd5e1;
    color: #334155;
    background-color: #f8fafc;
}

.btn-toggle-select.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.btn-toggle-select:disabled {
    background-color: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* IP Address Radios Group Styles */
.radio-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-radio-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-radio-row input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.custom-radio-row input[type="radio"]:checked {
    border-color: #2563eb;
}

.custom-radio-row input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2563eb;
    transform: scale(0);
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-radio-row input[type="radio"]:checked::before {
    transform: scale(1);
}

.radio-label-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.radio-price-tag {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-left: 4px;
}

/* Add-ons List Rows Styles */
.addons-clean-list {
    display: flex;
    flex-direction: column;
}

.addon-clean-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
}

.addon-clean-row:last-child {
    border-bottom: none;
}

.addon-left-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.addon-checkbox:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.addon-checkbox::before {
    content: "✓";
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transform: scale(0);
    transition: transform 0.1s ease;
}

.addon-checkbox:checked::before {
    transform: scale(1);
}

.addon-icon {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.addon-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.addon-name-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.addon-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
}

.addon-recommended-badge {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

.addon-description {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.addon-price-cell {
    font-size: 13px;
    font-weight: 700;
    color: #1d4ed8;
}

/* Premium Sticky Bottom deploy Section */
.sticky-deploy-bar {
    position: sticky !important;
    bottom: 0 !important;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    z-index: 50;
    padding: 16px 0;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.03);
    margin-top: 40px;
}

.sticky-deploy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* WhatsApp CTA instead of 4 trust points */
.deploy-whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    border-right: 1px solid #e2e8f0;
    padding-right: 32px;
    margin-right: 32px;
}

.whatsapp-cta-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-cta-icon {
    width: 20px;
    height: 20px;
    color: #128C7E;
}

.whatsapp-cta-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-cta-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.whatsapp-cta-desc {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    max-width: 420px;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #25D366;
    background-color: #ffffff;
    color: #128C7E;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    margin-left: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-whatsapp-cta:hover {
    border-color: #128C7E;
    background-color: #f0fdf4;
    color: #075E54;
}

.whatsapp-btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.btn-chevron {
    margin-left: 2px;
    font-size: 11px;
    font-weight: 700;
    transition: transform 0.15s ease;
    display: inline-block;
}

.btn-whatsapp-cta:hover .btn-chevron {
    transform: translateX(3px);
}

/* Deploy Pricing actions group */
.deploy-action-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.deploy-price-info {
    text-align: right;
}

.deploy-price-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.deploy-price-val {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.deploy-price-period {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.deploy-buttons-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-deploy-main {
    background-color: #2563eb;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: all 0.15s ease;
    text-decoration: none !important;
}

.btn-deploy-main:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 10px -1px rgba(37, 99, 235, 0.3);
}

.btn-deploy-main svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.15s ease;
}

.btn-deploy-main:hover svg {
    transform: translateX(3px);
}

.btn-save-config {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569 !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none !important;
}

.btn-save-config:hover {
    border-color: #94a3b8;
    color: #1e293b !important;
    background-color: #f8fafc;
}

.btn-save-config svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* Toast Message Style */
.builder-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background-color: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.builder-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.builder-toast svg {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    fill: none;
}

/* Sidebar Included Add-ons Section */
.summary-addons-section {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-addons-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 12px;
}

.summary-addons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-addons-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.summary-addons-item svg {
    width: 14px;
    height: 14px;
    stroke: #10b981 !important; /* Green checkmark */
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

.summary-addons-more {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    padding-left: 22px; /* aligns with item text after check icon */
    margin-top: 2px;
}

/* Custom Server Mobile overrides */
@media (max-width: 991px) {
    .builder-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .builder-sidebar {
        width: 100%;
        position: relative !important;
        top: 0 !important;
    }
    
    .sticky-deploy-container {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }
    
    .deploy-whatsapp-cta {
        display: none; /* Hide WhatsApp CTA in mobile footer to save space */
    }
    
    .deploy-action-box {
        flex-direction: column;
        gap: 12px;
    }
    
    .deploy-price-info {
        text-align: center;
    }
    
    .deploy-buttons-group {
        width: 100%;
    }
    
    .btn-deploy-main, .btn-save-config {
        flex: 1;
        justify-content: center;
    }
}