/**
 * My Account page styles.
 *
 * Theme: NicheRocket (Astra child)
 * Handle: nicherocket-my-account-css (depends on nicherocket-theme-css)
 *
 * Loaded only on is_account_page() — see child_enqueue_styles() in functions.php.
 *
 * Migrated from the Snippets plugin (was printed inline on wp_footer, priority 99).
 */


/* ---------------------------------------------------------------------------
 * Keep Your Number — port request form (edit-line endpoint).
 *
 * Matches the checkout field treatment in css/checkout.css: 1px #111 border,
 * 4px radius, 48px min-height. Keep the two in sync if either changes.
 * ------------------------------------------------------------------------ */

body.woocommerce-account .port_information .field-group input[type="text"],
body.woocommerce-account .port_information .field-group input[type="tel"],
body.woocommerce-account .port_information .field-group select {
	width: 100%;
	border: 1px solid #111 !important;
	border-radius: 4px;
	background-color: #fff;
	min-height: 48px;
	padding: 12px 14px;
	box-shadow: none !important;
	color: #222;
}

body.woocommerce-account .port_information .field-group input::placeholder {
	color: #555;
	opacity: 1;
}

body.woocommerce-account .port_information .field-group input[type="text"]:focus,
body.woocommerce-account .port_information .field-group input[type="tel"]:focus,
body.woocommerce-account .port_information .field-group select:focus {
	border-color: #000 !important;
	outline: 2px solid rgba(0, 0, 0, 0.12);
}

/*
 * style.css already sets .field-group to a 10px-gap flex column with a 600
 * label. These override the vertical rhythm for this form only.
 */
body.woocommerce-account .port_information .field-group {
	margin-bottom: 16px;
}

body.woocommerce-account .port_information .field-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}


/* ---------------------------------------------------------------------------
 * Mobile accordion.
 * ------------------------------------------------------------------------ */

/*
 * Keep Your Number is the last section inside .tabs-content, and the theme's
 * :not(:last-child) rule strips its bottom border.
 */
@media (max-width: 767px) {
	.accordion-tabs #section6 > .accordion-trigger {
		border-bottom: 1px solid #e5e5e5 !important;
	}
}

/* ---------------------------------------------------------------------------
 * Change Plan simplified layout.
 * Changed on 8/11/2026 by Rus.
 * Description: Moves Change Plan from cards to the approved Current Plan /
 * Available Plan presentation.
 * ------------------------------------------------------------------------ */

 body.woocommerce-account .silvercell-simple-plan-change {
	max-width: 720px;
	padding: 0;
}

body.woocommerce-account .silvercell-current-plan {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 28px;
}

body.woocommerce-account .silvercell-current-plan strong {
	font-weight: 700;
	margin-right: 4px;
}

body.woocommerce-account .silvercell-available-plan {
	padding: 22px 0 26px;
	border-bottom: 1px solid #ddd;
}

body.woocommerce-account .silvercell-available-plan:first-child {
	padding-top: 0;
}

body.woocommerce-account .silvercell-available-plan:last-child {
	border-bottom: 0;
}

body.woocommerce-account .silvercell-new-plan {
	font-size: 18px;
	line-height: 1.4;
	margin: 0 0 14px;
}

body.woocommerce-account .available-plan-label {
	font-weight: 700;
}

body.woocommerce-account .silvercell-plan-options fieldset {
	border: 0;
	padding: 0;
	margin: 0 0 22px;
}

body.woocommerce-account .silvercell-plan-options label {
	display: block;
	font-size: 20px !important;
	line-height: 1.3;
	margin-bottom: 14px !important;
	color: #555;
}

body.woocommerce-account .silvercell-plan-options input[type="radio"] {
	margin-right: 8px;
	transform: translateY(-1px);
}

body.woocommerce-account .silvercell-plan-action {
	margin: 10px 0 0;
}

body.woocommerce-account
.silvercell-plan-action
.change-plan-button {
	font-size: 16px;
	font-weight: 700;
	padding: 13px 28px;
	border-radius: 5px;
}

body.woocommerce-account .silvercell-plan-note {
	font-size: 17px;
	line-height: 1.35;
	margin-top: 26px;
}

body.woocommerce-account .silvercell-plan-note strong {
	font-weight: 700;
}