/* Alpha Labs clone overrides — for runtime-injected styles that don't survive HTML capture. */

/* Sale countdown banner: the asnp plugin's blue-pill styling is injected via styled-components
   (CSSOM at runtime), so it isn't in the captured HTML. Recreated from the source's computed styles. */
.asnp-esb-bannerContainerTimerbanner { display:flex; align-items:center; justify-content:center; gap:15px; flex-wrap:wrap; }
.asnp-esb-TimerBannerRightPos { display:flex; align-items:center; }
.asnp-esb-TimerBannerRightPos > div { display:grid; grid-auto-flow:column; gap:1px; background-color:rgb(0,132,255); border-radius:10px; overflow:hidden; }
.asnp-esb-TimerBannerRightPos > div > div { padding:5px 10px; text-align:center; }
.asnp-esb-TimerBanner1Date { font-size:13px; font-weight:700; color:#fff; line-height:10px; }
.asnp-esb-TimerBanner1Label { font-size:10px; font-weight:400; color:#fff; line-height:11px; text-transform:none; }

/* Hide the richpanel live-chat widget (non-functional on the clone). */
.richpanel-micro, [id^="richpanel"], [class^="richpanel"], [id*="rp-widget"], iframe[src*="richpanel"] { display:none !important; }

/* Category pagination: force a neat horizontal row (default WC list stacks vertically). */
.woocommerce-pagination ul, ul.page-numbers { display:flex !important; flex-wrap:wrap; justify-content:center;
  gap:8px; border:0 !important; margin:26px auto !important; padding:0 !important; list-style:none !important; }
.woocommerce-pagination ul li, ul.page-numbers li { display:inline-flex !important; flex:none !important; width:max-content !important; min-width:0 !important; max-width:none !important; height:auto !important; float:none !important; border:0 !important; margin:0 !important; padding:0 !important; overflow:visible !important; }
.woocommerce-pagination a.page-numbers, .woocommerce-pagination span.page-numbers,
ul.page-numbers a, ul.page-numbers span {
  display:inline-flex !important; align-items:center; justify-content:center; min-width:40px; padding:8px 14px;
  border:1px solid #e2d8cf !important; border-radius:8px; background:#fff; color:#5a3a23; line-height:1; text-decoration:none; }
.woocommerce-pagination span.current, ul.page-numbers span.current { background:#bf5a1e !important; color:#fff !important; border-color:#bf5a1e !important; }
/* MOBILE FIX: the theme's product-grid responsive rule
   (.overview-page .clearfix .prod-right .list_of_prod .woocommerce ul li{width:48%!important})
   targets "ul li" (not "ul.products li"), so under its <650px/<450px media queries it ALSO grabs
   the pagination <li>s and forces them ~half-width -> one number per row (stacked). It out-specifies
   our ul.page-numbers li rule (5 classes vs 1), so re-assert max-content with a selector that
   out-specifies that chain. */
.overview-page .clearfix .prod-right .list_of_prod .woocommerce nav.woocommerce-pagination ul li,
.overview-page .clearfix .prod-right .list_of_prod .woocommerce ul.page-numbers li {
  width:max-content !important; flex:0 0 auto !important; }

/* Brown breadcrumb bar (.bread-crumb, bg #59341a): the WC breadcrumb <ul class="breadcrumb">
   inherits Bootstrap's dark default (rgb(33,37,41)) -> near-invisible on brown. Source renders it
   white. Force white text + links (incl. the "/" separators, which inherit the ul color). */
.bread-crumb .breadcrumb, .bread-crumb .breadcrumb a,
.bread-crumb .breadcrumb a:link, .bread-crumb .breadcrumb a:visited { color:#fff !important; }
.bread-crumb .breadcrumb a:hover { color:#f0e3d8 !important; }

/* ============================================================================
   MY ACCOUNT — clone of the source YITH horizontal account menu + SPAR rewards.
   navigation.php renders #my-account-menu-tab (user-profile card + .myaccount-menu
   orange icon tab-row); page-rewards.php renders the .spar-rewards-dashboard.
   ============================================================================ */
/* stack the default WC 2-column account layout (nav on top, content below) on a cyan panel */
.woocommerce-account .woocommerce { display:block; background:#e9f8fb; border-radius:14px; padding:26px; }
.woocommerce-account .woocommerce-MyAccount-navigation { float:none; width:100%; margin:0 0 22px; }
.woocommerce-account .woocommerce-MyAccount-content { float:none; width:100%; }
.woocommerce-account .woocommerce::after { content:""; display:block; clear:both; }

/* user-profile card (avatar + name + email + black logout button) */
#my-account-menu-tab .user-profile { display:flex; align-items:center; gap:16px; margin:0 0 18px; }
#my-account-menu-tab .user-avatar img { width:64px; height:64px; border-radius:12px; object-fit:cover; background:#d9d9d9; display:block; }
#my-account-menu-tab .user-info { display:flex; flex-direction:column; gap:2px; }
#my-account-menu-tab .user-info .username { font-weight:700; color:#2c2118; font-size:16px; line-height:1.2; }
#my-account-menu-tab .user-info .user-email { color:#6a5a4c; font-size:14px; }
#my-account-menu-tab .user-info .logout a { display:inline-block; margin-top:6px; background:#161616; color:#fff; padding:5px 16px; border-radius:6px; font-size:12px; font-weight:600; letter-spacing:.03em; text-transform:uppercase; text-decoration:none; }
#my-account-menu-tab .user-info .logout a:hover { background:#000; }

/* horizontal orange icon tab-row */
#my-account-menu-tab .myaccount-menu { display:flex; flex-wrap:wrap; gap:10px; list-style:none; margin:0; padding:0; border:0; }
#my-account-menu-tab .myaccount-menu li { margin:0; padding:0; list-style:none; background:none; }
#my-account-menu-tab .myaccount-menu li a { display:flex; align-items:center; gap:8px; background:rgba(241,154,48,.94); color:#fff; border-radius:10px; padding:9px 18px; font-size:15px; font-weight:600; line-height:1; text-decoration:none; transition:background .15s ease; }
#my-account-menu-tab .myaccount-menu li a:hover { background:#e08a26; color:#fff; }
#my-account-menu-tab .myaccount-menu li.active a { background:#adadad; color:#fff; font-weight:700; }
#my-account-menu-tab .myaccount-menu .item-icon { display:inline-flex; align-items:center; }
#my-account-menu-tab .myaccount-menu .item-icon svg { width:18px; height:18px; display:block; }

/* WC content blocks inside the cyan panel */
.woocommerce-account .woocommerce-MyAccount-content { color:#3a2e24; }
.woocommerce-account .woocommerce-MyAccount-content a { color:#bf5a1e; }

/* ----- Rewards / My Points (spar-rewards-dashboard) ----- */
.rewards-page .entry-header { text-align:center; padding:8px 0 6px; }
.rewards-page h1.entry-title { color:#33271d; }
.spar-rewards-dashboard { max-width:900px; margin:18px auto 70px; }
.spar-rewards-overview { background:linear-gradient(135deg,#667eea 0%,#764ba2 100%); border-radius:12px; padding:30px; color:#fff; }
.spar-rewards-overview h2 { color:#fff; margin:0 0 6px; font-size:24px; }
.spar-overview-subtitle { margin:0 0 22px; opacity:.92; }
.spar-rewards-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.spar-rewards-stat { background:rgba(255,255,255,.15); border-radius:10px; padding:20px; text-align:center; }
.spar-rewards-stat-number { display:block; font-size:34px; font-weight:800; line-height:1; }
.spar-rewards-stat-label { margin-top:8px; font-weight:700; text-transform:uppercase; font-size:13px; letter-spacing:.04em; }
.spar-rewards-stat-sublabel { font-size:12px; opacity:.82; margin-top:2px; }
.spar-tabs { background:#fff; border:1px solid #ece4dc; border-radius:12px; margin-top:18px; overflow:hidden; }
.spar-tabs-nav { padding:6px; border-bottom:1px solid #f0eae2; }
.spar-tab-nav { background:none; border:0; padding:10px 18px; font-weight:600; color:#6a5a4c; cursor:pointer; border-radius:8px; }
.spar-tab-nav.is-active { background:#f3eee8; color:#59341a; }
.spar-tabs-mobile { display:none; }
.spar-section { padding:18px; }
.spar-redeem-title { color:#5a3a23; margin:0 0 14px; font-size:18px; }
.spar-table-scroll { overflow-x:auto; }
.spar-points-log { width:100%; border-collapse:collapse; }
.spar-points-log th { background:#f6f1ea; text-align:left; padding:11px 14px; font-size:13px; color:#6a5a4c; font-weight:700; }
.spar-points-log th.spar-th-center { text-align:center; }
.spar-points-log td { padding:16px 14px; text-align:center; color:#8a7a6c; font-size:14px; border-top:1px solid #f1ece5; }

/* Edit Address: WC's default float layout (col1 float:left / col2 float:right, no gap, uncleared)
   distorts billing/shipping. Replace with a clean 2-up card grid that stacks on mobile. */
.woocommerce-account .woocommerce-Addresses { display:grid !important; grid-template-columns:1fr 1fr; gap:22px; width:100%; }
/* WC's clearfix ::before/::after (content:" ";display:table) become phantom grid items on a grid
   container, shoving billing into row1/col2 and shipping into row2/col1 (diagonal stagger). Kill them. */
.woocommerce-account .woocommerce-Addresses::before, .woocommerce-account .woocommerce-Addresses::after { content:none !important; display:none !important; }
.woocommerce-account .woocommerce-Addresses .woocommerce-Address { width:auto !important; float:none !important; margin:0 !important; background:#fff; border:1px solid #ece4dc; border-radius:12px; padding:20px 22px; }
.woocommerce-account .woocommerce-Address .woocommerce-Address-title, .woocommerce-account .woocommerce-Address .title { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.woocommerce-account .woocommerce-Address-title h2, .woocommerce-account .woocommerce-Address-title h3, .woocommerce-account .woocommerce-Address .title h3 { margin:0; font-size:18px; color:#5a3a23; }
.woocommerce-account .woocommerce-Address-title .edit, .woocommerce-account .woocommerce-Address .title .edit { background:#cf6a1e; color:#fff !important; padding:5px 14px; border-radius:6px; font-size:13px; font-weight:600; text-decoration:none; white-space:nowrap; }
.woocommerce-account .woocommerce-Address address { font-style:normal; color:#4a3a2c; line-height:1.6; }

@media (max-width:600px){
  .spar-rewards-stats { grid-template-columns:1fr; }
  .woocommerce-account .woocommerce-Addresses { grid-template-columns:1fr; }
  .woocommerce-account .woocommerce { padding:18px; }
  /* neat full-width stacked tab list on mobile (was ragged multi-row wrap) */
  #my-account-menu-tab .myaccount-menu { flex-direction:column; gap:8px; }
  #my-account-menu-tab .myaccount-menu li { width:100%; }
  #my-account-menu-tab .myaccount-menu li a { width:100%; justify-content:flex-start; padding:11px 16px; font-size:15px; }
}


/* ===== Build-a-Kit (two-column: hero image left, builder list right) ===== */
.alpha-kit { padding:10px 0 120px; }
.alpha-kit-top { display:flex; gap:34px; align-items:flex-start; }
@media (max-width:900px){ .alpha-kit-top { flex-direction:column; } }
.alpha-kit-image { flex:0 0 42%; max-width:42%; position:sticky; top:20px; }
@media (max-width:900px){ .alpha-kit-image { max-width:100%; flex-basis:auto; position:static; } }
.alpha-kit-image img { width:100%; height:auto; border-radius:12px; }
.alpha-kit-panel { flex:1 1 auto; min-width:0; }
.alpha-kit-panel .product_title { color:#cf6a1e; margin:0 0 14px; }
.alpha-kit-intro { color:#5a4636; font-size:15px; line-height:1.6; margin-bottom:18px; }
.alpha-kit-intro .req { color:#e02b27; }
.alpha-kit-list { max-height:560px; overflow-y:auto; padding-right:6px; }
.kit-row { display:flex; align-items:center; gap:12px; border:1px solid #ece4dc; border-radius:8px; padding:8px 12px; margin-bottom:10px; background:#fff; }
.kit-row.selected { border-color:#1a8a3a; box-shadow:0 0 0 1px #1a8a3a inset; }
.kit-check { flex:0 0 22px; width:22px; height:22px; border:1px solid #c9bdb0; border-radius:5px; background:#f3eee8; position:relative; }
.kit-row.selected .kit-check { background:#1a8a3a; border-color:#1a8a3a; }
.kit-row.selected .kit-check:after { content:""; position:absolute; left:7px; top:3px; width:5px; height:10px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg); }
.kit-thumb { flex:0 0 56px; }
.kit-thumb img { width:56px; height:56px; object-fit:contain; margin:0; }
.kit-info { flex:1 1 auto; min-width:0; display:flex; flex-direction:column; }
.kit-name { font-weight:700; font-size:14px; color:#2c2118; }
.kit-price { font-size:13px; color:#6a5a4c; }
.kit-price del { color:#aa9; margin-right:5px; }
.kit-price ins { text-decoration:none; color:#bf5a1e; font-weight:700; }
.kit-stepper { flex:0 0 auto; display:inline-flex; align-items:center; border:1px solid #5a3a23; border-radius:6px; overflow:hidden; }
.kit-stepper button { width:32px; height:32px; border:0; background:#5a3a23; color:#fff; font-size:16px; cursor:pointer; }
.kit-stepper .kit-qval { min-width:34px; text-align:center; font-weight:700; }
.kit-totals { display:flex; justify-content:space-between; align-items:center; margin-top:18px; font-size:15px; color:#33271d; }
.kit-totals .kit-total { color:#bf5a1e; font-weight:700; }
.kit-totals .kit-total-label small { color:#1a8a3a; }
.kit-alert { background:#f3efe9; border:1px solid #e6dccf; border-radius:6px; padding:10px 14px; margin:12px 0; color:#a86a3a; font-size:14px; }
.kit-add-row { margin:14px 0; }
.kit-add { background:#cf6a1e; color:#fff !important; border:0; padding:13px 34px; border-radius:26px; font-weight:700; cursor:pointer; }
.kit-add:disabled { opacity:.45; cursor:not-allowed; }
.kit-meta { margin-top:14px; color:#6a5a4c; font-size:13px; }
.kit-meta .sku_wrapper { font-weight:600; }
.kit-disclaimer { margin-top:8px; }
.alpha-kit-below { clear:both; margin-top:40px; }
.kit-related-section, .alpha-kit-below .related { margin:0; clear:both; }
.alpha-kit-below .related > h2 { color:#5a3a23; margin:0 0 16px; }

/* ============================================================================
   PRODUCT CARDS / GRID — DO NOT re-style here. The source styles them entirely via
   its own theme CSS (.product-overview ul.products{display:flex;flex-wrap:wrap},
   li{width:31.8%;border-radius:21px;box-shadow;overflow:hidden}, brown #59341a qib
   buttons, orange #d86202 .add_to_cart_button, .learn-more-btn) in style.css /
   new_style_1.css + the inline Customizer CSS in <head>. Those are all present.
   Hand-rolling overrides here is what caused the drift, so we don't.

   The ONLY source stylesheet we don't otherwise load is the quantity-stepper
   plugin (wc-quantity-plus-minus-button). Inlined verbatim below so the −[n]+
   stepper gets its correct size/layout; the brown colour comes from the inline
   Customizer rule, not here. (Grey default-bg rule intentionally omitted so it
   doesn't fight the Customizer's brown.)
   ============================================================================ */
.qib-button-wrapper button.qib-button { padding:6px 12px 8px; height:41px; background:#ffffff; border:1px solid #efefef; cursor:pointer; font-size:20px; line-height:20px; min-width:41px; color:black; }
.qib-button-wrapper .quantity { display:inline; }
.qib-button-wrapper { margin:3px 0; white-space:nowrap; }
.qib-button-wrapper button.qib-button, .qib-button-wrapper div.quantity.wqpmb_quantity { float:none !important; height:41px; }
.qib-button-wrapper .quantity input.input-text.qty.text { height:41px; padding:6px 12px 8px; text-align:center; background:#ffffff; border:1px solid #efefef; font-size:20px; line-height:20px; box-shadow:none; margin:0 !important; }
span.wqpmb_plain_input.hidden { display:none; }
.quantity.wqpmb_quantity { display:inline-flex; }
body .qib-button-wrapper { display:flex; float:left; flex-wrap:nowrap; margin-right:5px; align-items:center; justify-content:center; gap:0; }
.qib-button-wrapper input::-webkit-outer-spin-button, .qib-button-wrapper input::-webkit-inner-spin-button { -webkit-appearance:none; -moz-appearance:none; margin:0; }
.qib-button-wrapper input[type=number], .qib-button-wrapper .quantity input[type=number] { -moz-appearance:textfield; }

/* Related-products row: the theme sizes the cards (section.related ul.products li{width:23.5%})
   and styles them, but the float/flex that flows them horizontally comes from WooCommerce's
   layout CSS, which this clone doesn't load. Flow them with the same flex-wrap the theme uses
   for its own product grids (.product-overview ul.products) so related goes 4-up like source. */
section.related ul.products { display:flex !important; flex-wrap:wrap !important; justify-content:flex-start !important; }

/* ============================================================================
   SINGLE PRODUCT — source-faithful extras injected by inc/single-product-blocks.php.
   (.tested_for/.price/form `order` + .featured-box layout already come from the lifted
   theme style.css; here we add what the lift didn't carry: peach trust boxes, the full-bleed
   ezp services grid, and the Standard-of-Excellence banner.)
   ============================================================================ */
.single-product .icon-box.featured-box { background-color:#ffd0b5 !important; }
/* ezp services grid (source shipped this inline; full-bleed out of the .container) */
.ezp-container { background-color:#fcf7fb; display:block; padding:60px 0 80px; width:100vw; margin-left:calc(50% - 50vw); }
.ezp_services_grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin:0 auto; max-width:1350px; padding:0 20px; }
.ezp_service_card { background:#fff; border:1px solid #e8e8e8; border-radius:12px; padding:25px 20px; text-align:center; transition:all .3s ease; box-shadow:0 2px 10px rgba(0,0,0,.04); }
.ezp_service_card:hover { transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,.1); border-color:#6c5ce7; }
.ezp_service_icon { font-size:40px; margin-bottom:15px; display:block; line-height:1; }
.ezp_service_card h3 { font-size:17px; font-weight:700; color:#222; margin-bottom:10px; line-height:1.3; }
.ezp_service_card p { font-size:14px; color:#666; line-height:1.6; margin:0; }
/* Standard of Excellence banner (bg image passed via --ex-bg inline var; full-bleed) */
.excellence { width:100vw; margin-left:calc(50% - 50vw); padding:140px 20px; background:var(--ex-bg) no-repeat 65% 0 / cover; }
.excellence__inner { display:flex; gap:50px; max-width:1200px; margin:0 auto; align-items:center; justify-content:space-between; }
.excellence__content { flex:1 1 0; max-width:575px; }
.excellence__content h2 { margin:0 0 20px; font-size:42px; font-weight:700; line-height:1.26; background:linear-gradient(to right,#59341a,#a65723); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.excellence__content p { max-width:500px; font-size:18px; color:#555; line-height:1.7; margin:0; }
.excellence__images { display:flex; gap:25px; justify-content:center; flex:0 0 auto; }
.excellence__images img { width:260px; max-width:260px; height:auto; border-radius:20px; box-shadow:0 10px 25px rgba(0,0,0,.12); }
@media (max-width:768px){ .ezp_services_grid { grid-template-columns:repeat(2,1fr); } .excellence { padding:70px 20px; } .excellence__inner { flex-direction:column; gap:30px; } .excellence__content, .excellence__content p { max-width:100%; } .excellence__content h2 { font-size:32px; } }
@media (max-width:480px){ .ezp_services_grid { grid-template-columns:1fr; } .ezp-container { padding-top:40px; } .excellence__images { flex-wrap:wrap; } .excellence__images img { width:100%; max-width:280px; } }
/* ============================================================================
   SLIDE-OUT CART DRAWER (inc/cart-drawer.php + js/alpha-cart.js) — recreates the source's
   FunnelKit (FKCart) cart with the corepeptides AJAX mechanism. Tokens lifted from the source
   FKCart vars: checkout #d86202, strike #E15334, save-green #5BA238, text #353030.
   ============================================================================ */
#fkcart-modal, .fkcart-modal { display:none !important; }           /* kill the lifted static drawer */

.alc-cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.5); opacity:0; visibility:hidden; transition:opacity .3s ease; z-index:99998; }
.alc-cart-overlay.alc-show { opacity:1; visibility:visible; }
body.alc-cart-locked { overflow:hidden; }

.alc-cart-drawer { position:fixed; top:0; right:0; height:100%; width:420px; max-width:100vw; background:#fff; box-shadow:-6px 0 30px rgba(0,0,0,.18); transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1); z-index:99999; display:flex; flex-direction:column; font-family:inherit; }
.alc-cart-drawer.alc-open { transform:translateX(0); }
@media (max-width:480px){ .alc-cart-drawer { width:100vw; } }

.alc-cart-head { display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid #ececec; flex:0 0 auto; }
.alc-cart-title { font-size:21px; font-weight:700; color:#222; }
.alc-cart-count { color:#222; font-weight:700; }
.alc-cart-close { background:none; border:0; font-size:26px; line-height:1; color:#333; cursor:pointer; padding:0 4px; }

.alc-cart-inner { flex:1 1 auto; display:flex; flex-direction:column; min-height:0; }
.alc-cart-inner.alc-loading { opacity:.55; pointer-events:none; }
.alc-cart-body { flex:1 1 auto; overflow-y:auto; padding:6px 22px; }

/* line item */
.alc-ci { position:relative; display:flex; gap:14px; padding:18px 0 18px 26px; border-bottom:1px solid #f0f0f0; }
.alc-ci-remove { position:absolute; left:-2px; top:18px; width:20px; height:20px; border:1px solid #d8d8d8; border-radius:50%; background:#fff; color:#666; font-size:14px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; padding:0; }
.alc-ci-img { flex:0 0 64px; }
.alc-ci-img img { width:64px; height:64px; object-fit:contain; border:1px solid #eee; border-radius:8px; }
.alc-ci-main { flex:1 1 auto; min-width:0; }
.alc-ci-name { display:block; font-size:14px; font-weight:600; color:#2a2a2a; line-height:1.35; text-decoration:none; margin-bottom:10px; }
.alc-ci-name:hover { color:#cf6a1e; }
.alc-ci-qty { display:inline-flex; align-items:center; border:1px solid #dcdcdc; border-radius:8px; overflow:hidden; }
.alc-ci-qty button { width:30px; height:30px; border:0; background:#fff; color:#333; font-size:16px; cursor:pointer; line-height:1; }
.alc-ci-qty button:hover { background:#f5f5f5; }
.alc-ci-num { min-width:30px; text-align:center; font-size:14px; }
.alc-ci-price { flex:0 0 auto; text-align:right; white-space:nowrap; }
.alc-ci-reg { display:block; font-size:13px; color:#E15334; text-decoration:line-through; }
.alc-ci-reg .woocommerce-Price-amount { color:#E15334; }
.alc-ci-now { display:block; font-size:15px; font-weight:700; color:#222; }
.alc-ci-save { display:block; font-size:12px; font-weight:600; color:#5BA238; margin-top:2px; }

/* foot */
.alc-cart-foot { flex:0 0 auto; border-top:1px solid #ececec; padding:14px 22px 20px; background:#fff; }
.alc-coupon { border-bottom:1px solid #ececec; padding-bottom:12px; margin-bottom:12px; }
.alc-coupon-toggle { width:100%; display:flex; align-items:center; justify-content:space-between; background:none; border:0; padding:4px 0; font-size:15px; color:#333; cursor:pointer; }
.alc-coupon-chev { transition:transform .2s; font-size:18px; }
.alc-coupon-toggle.alc-open .alc-coupon-chev { transform:rotate(90deg); }
.alc-coupon-form { display:flex; gap:8px; margin-top:10px; }
.alc-coupon-form input { flex:1 1 auto; border:1px solid #d8d8d8; border-radius:8px; padding:9px 12px; font-size:14px; }
.alc-coupon-apply { border:0; background:#353030; color:#fff; border-radius:8px; padding:0 16px; font-size:14px; cursor:pointer; }
.alc-coupon-applied { margin-top:8px; color:#5BA238; font-size:13px; font-weight:600; }

.alc-points { display:flex; align-items:center; gap:12px; justify-content:center; text-align:center; color:#7a7a7a; font-size:14px; padding:6px 0 14px; }
.alc-points svg { color:#b7b7b7; flex:0 0 auto; }

.alc-totals { margin-bottom:14px; }
.alc-tot-row { display:flex; align-items:center; justify-content:space-between; font-size:16px; color:#222; padding:3px 0; }
.alc-tot-row .alc-subtotal { font-weight:700; }
.alc-free { color:#222; }
.alc-ship-note { font-size:12px; color:#8a8a8a; margin-top:4px; }

.alc-checkout-btn { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; background:#d86202; color:#fff; font-size:17px; font-weight:700; text-decoration:none; padding:15px; border-radius:10px; transition:background .2s; }
.alc-checkout-btn:hover { background:#c15510; color:#fff; }
.alc-checkout-total { color:#fff; }
.alc-checkout-total .woocommerce-Price-amount { color:#fff; }

/* empty state */
.alc-cart-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:14px; padding:60px 22px; }
.alc-empty-icon { color:#d8d8d8; }
.alc-empty-title { font-size:18px; font-weight:600; color:#444; }
.alc-empty-shop { background:#d86202; color:#fff; text-decoration:none; padding:11px 26px; border-radius:8px; font-weight:600; }
/* Minimum-order notice (from the ct_mpac plugin) + disabled Checkout button when below the minimum. */
.alc-min-notice { background:#fff0f0; border:1px solid #f3c9c9; color:#b00c0c; border-radius:8px; padding:11px 14px; font-size:13px; line-height:1.45; margin-bottom:12px; text-align:center; }
.alc-min-notice .woocommerce-Price-amount { color:#b00c0c; font-weight:700; }
.alc-checkout-btn.alc-disabled { background:#caa88d; cursor:not-allowed; }
.alc-checkout-btn.alc-disabled:hover { background:#caa88d; }

/* ============================================================================
   3-STEP CHECKOUT (tmpl-checkout.php + inc/alpha-checkout.php) — ported from corepeptides,
   restyled to AlphaLabs (orange #d86202 CTA, brown-orange #cf6a1e accents).
   ============================================================================ */
.alco-co-wrap { max-width: 1200px; margin: 0 auto; padding: 0 0 60px; color: #1f2937; }
/* Divi's normalize sets section{display:block} + ol li::before{content:counter()} at author level,
   which beats the UA [hidden] rule and adds stray list counters. Neutralise both inside checkout. */
.alco-co-wrap [hidden] { display: none !important; }
.alco-co-steps li::before { content: none !important; }
.alco-co-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.alco-co-main { padding: 36px 56px 36px 0; min-width: 0; }
.alco-co-logo img { height: 42px; width: auto; margin: 8px 0 22px; }

/* step indicator */
.alco-co-steps { display: flex; gap: 8px; list-style: none; margin: 0 0 28px; padding: 0; font-size: 13px; color: #9aa1ac; flex-wrap: wrap; }
.alco-co-steps li { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.alco-co-steps li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #c7ccd3; font-weight: 400; }
.alco-co-steps li .n { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #e7e9ee; color: #9aa1ac; font-size: 12px; }
.alco-co-steps li.active { color: #cf6a1e; }
.alco-co-steps li.active .n { background: #cf6a1e; color: #fff; }
.alco-co-steps li.done { color: #4b5563; }
.alco-co-steps li.done .n { background: #cf6a1e33; color: #cf6a1e; }

.alco-co-error { background: #fdecea; border: 1px solid #f5c2c0; color: #b3261e; border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 14px; }

.alco-co-form h2 { font-size: 18px; font-weight: 700; margin: 0 0 14px; color: #111827; }
.alco-co-form h2.alco-co-mt { margin-top: 30px; }
.alco-co-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.alco-co-login { font-size: 13px; color: #6b7280; }
.alco-co-login a, .alco-co-form a { color: #cf6a1e; text-decoration: none; }
.alco-co-login a:hover, .alco-co-form a:hover { text-decoration: underline; }

.alco-co-field { margin: 0 0 14px; }
.alco-co-field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.alco-co-field label span { color: #b3261e; }
.alco-co-field input, .alco-co-field select, .alco-co-field textarea {
  width: 100%; box-sizing: border-box; border: 1px solid #d3d7de; border-radius: 8px;
  padding: 12px 14px; font-size: 15px; background: #fff; color: #1f2937; transition: border-color .15s, box-shadow .15s;
}
.alco-co-field input:focus, .alco-co-field select:focus, .alco-co-field textarea:focus { outline: none; border-color: #cf6a1e; box-shadow: 0 0 0 3px #cf6a1e22; }
.alco-co-invalid input, .alco-co-field input.alco-co-invalid, .alco-co-field select.alco-co-invalid { border-color: #e0564f !important; box-shadow: 0 0 0 3px #e0564f22 !important; }
.alco-co-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alco-co-row3 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }

.alco-btn-primary { display: inline-block; background: #d86202; color: #fff !important; border: 0; border-radius: 8px; padding: 15px 30px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none !important; transition: background .15s; }
.alco-btn-primary:hover { background: #c15510; color: #fff !important; }
.alco-btn-ghost { display: inline-block; border: 1px solid #cf6a1e; color: #cf6a1e !important; border-radius: 8px; padding: 13px 26px; font-weight: 700; text-decoration: none !important; }
.alco-co-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; }
.alco-co-back { color: #cf6a1e; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; }
.alco-co-back:hover { text-decoration: underline; }

/* review (change) rows */
.alco-co-review { border: 1px solid #e1e4ea; border-radius: 8px; margin-bottom: 26px; }
.alco-co-review-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; font-size: 14px; }
.alco-co-review-row + .alco-co-review-row { border-top: 1px solid #e1e4ea; }
.alco-co-review-row .k { width: 64px; color: #9aa1ac; flex: 0 0 auto; }
.alco-co-review-row .v { flex: 1; color: #374151; }
.alco-co-review-row .chg { color: #cf6a1e; font-size: 13px; cursor: pointer; }

/* shipping method */
.alco-co-ship { display: flex; flex-direction: column; gap: 10px; }
.alco-co-ship-opt { display: flex; align-items: center; justify-content: space-between; border: 1px solid #d3d7de; border-radius: 8px; padding: 15px 16px; font-size: 15px; cursor: pointer; transition: border-color .15s, background .15s; }
.alco-co-ship-opt:has(input:checked) { border-color: #cf6a1e; background: #cf6a1e0d; }
.alco-co-ship-opt .l { display: flex; align-items: center; gap: 10px; }
.alco-co-ship-opt .p { font-weight: 700; }
.alco-co-ship-note { font-size: 13px; color: #6b7280; margin: 4px 2px 0; }

/* payment list */
.alco-co-pay-intro { font-size: 13px; color: #6b7280; margin: -4px 0 14px; }
.alco-co-pay-list { border: 1px solid #d3d7de; border-radius: 8px; overflow: hidden; }
.alco-co-pay + .alco-co-pay { border-top: 1px solid #d3d7de; }
.alco-co-pay-radio { display: flex; align-items: center; gap: 11px; padding: 16px; cursor: pointer; font-size: 15px; font-weight: 600; color: #1f2937; }
.alco-co-pay.alco-open { background: #cf6a1e08; }
.alco-co-pay-body { display: none; padding: 0 16px 16px 43px; }
.alco-co-pay.alco-open .alco-co-pay-body { display: block; }
.alco-co-pay-hint { font-size: 13px; color: #6b7280; margin: 0 0 10px; }
.alco-co-coins { display: flex; flex-wrap: wrap; gap: 10px; }
.alco-co-coin { display: flex; align-items: center; gap: 7px; border: 1px solid #d3d7de; border-radius: 7px; padding: 9px 13px; font-size: 13px; font-weight: 600; cursor: pointer; background: #fff; }
.alco-co-coin:hover { border-color: #cf6a1e; }

.alco-co-check { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: #374151; margin: 14px 0; cursor: pointer; }
.alco-co-check input { margin-top: 3px; }
.alco-co-terms.alco-co-invalid { color: #b3261e; }
.alco-co-billing { margin-top: 6px; }

/* ---- order summary ---- */
.alco-co-summary { background: #f7f7f5; border-left: 1px solid #e6e6e2; padding: 36px 0 36px 56px; position: sticky; top: 0; align-self: start; }
.alco-co-sum-toggle { display: none; width: 100%; align-items: center; justify-content: space-between; background: #f1f1ee; border: 0; border-top: 1px solid #e6e6e2; border-bottom: 1px solid #e6e6e2; padding: 16px 20px; font-size: 15px; color: #cf6a1e; cursor: pointer; }
.alco-co-sum-toggle .alco-co-sum-total { color: #111827; font-weight: 700; }
.alco-co-items { list-style: none; margin: 0 0 18px; padding: 0; }
.alco-co-item { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.alco-co-thumb { position: relative; flex: 0 0 auto; }
.alco-co-thumb img { width: 60px; height: 60px; object-fit: cover; border: 1px solid #e1e1dd; border-radius: 8px; background: #fff; }
.alco-co-qty { position: absolute; top: -8px; right: -8px; min-width: 21px; height: 21px; padding: 0 6px; background: #6b7280; color: #fff; border-radius: 50%; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.alco-co-iname { flex: 1; font-size: 14px; font-weight: 600; color: #1f2937; }
.alco-co-iprice { font-size: 14px; font-weight: 600; white-space: nowrap; }
.alco-co-coupon { display: flex; gap: 10px; margin: 4px 0 16px; }
.alco-co-coupon input { flex: 1; border: 1px solid #d3d7de; border-radius: 8px; padding: 11px 13px; font-size: 14px; background: #fff; }
.alco-co-coupon button { background: #e7e7e3; border: 1px solid #d3d7de; border-radius: 8px; padding: 0 18px; font-weight: 700; color: #4b5563; cursor: pointer; }
.alco-co-coupon button:hover { background: #ddddd8; }
.alco-co-applied { list-style: none; margin: 0 0 14px; padding: 0; }
.alco-co-applied li { display: flex; justify-content: space-between; font-size: 13px; color: #0b7a3b; padding: 4px 0; }
.alco-co-applied a { color: #9aa1ac; }
.alco-co-totals { border-top: 1px solid #e1e1dd; padding-top: 16px; }
.alco-co-trow { display: flex; justify-content: space-between; font-size: 15px; color: #4b5563; padding: 7px 0; }
.alco-co-trow[hidden] { display: none; }
.alco-co-trow.alco-co-disc, .alco-co-trow.alco-co-pay-disc { color: #0b7a3b; }
.alco-co-grand { border-top: 1px solid #e1e1dd; margin-top: 8px; padding-top: 16px; font-size: 20px; font-weight: 700; color: #111827; }

/* received / empty */
.alco-co-received, .alco-co-empty { max-width: 680px; margin: 50px auto; text-align: center; padding: 0 20px; }
.alco-co-tick { width: 64px; height: 64px; border-radius: 50%; background: #0b7a3b; color: #fff; font-size: 34px; line-height: 64px; margin: 0 auto 20px; }
.alco-co-received h1, .alco-co-empty h1 { font-size: 28px; font-weight: 700; margin: 0 0 10px; }
.alco-co-sub { color: #4b5563; margin-bottom: 18px; }
.alco-co-wait-note { text-align: left; background: #fff8ec; border: 1px solid #f0d9a8; color: #7a5a14; border-radius: 10px; padding: 14px 18px; margin: 0 0 26px; font-size: 14px; line-height: 1.55; }
.alco-co-pay-card { text-align: left; border: 1px solid #e1e4ea; border-radius: 12px; padding: 24px 26px; margin-bottom: 26px; background: #fafafa; }
.alco-co-pay-card h3 { margin: 0 0 14px; font-size: 18px; }
.alco-co-pay-table { width: 100%; border-collapse: collapse; }
.alco-co-pay-table td { padding: 8px 0; font-size: 15px; vertical-align: top; }
.alco-co-pay-table td:first-child { color: #6b7280; width: 38%; }
.alco-co-wallet strong { word-break: break-all; color: #0b3b2e; }
.alco-co-pay-desc { font-size: 13px; color: #6b7280; margin-top: 14px; }
.alco-co-received-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .alco-co-grid { display: flex; flex-direction: column; }
  .alco-co-summary { order: -1; border-left: 0; padding: 0; position: static; margin: 0 -20px; }
  .alco-co-sum-toggle { display: flex; }
  .alco-co-sum-body { display: none; padding: 20px; border-bottom: 1px solid #e6e6e2; }
  .alco-co-main { padding: 26px 0 0; }
  .alco-co-wrap { padding: 0 20px 50px; }
  .alco-co-row3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .alco-co-sum-body { display: block !important; }
}
@media (max-width: 480px) {
  .alco-co-row2, .alco-co-row3 { grid-template-columns: 1fr; }
  .alco-co-main { padding-right: 0; }
}

/* ============================================================================
   EDITABLE HOMEPAGE SEO ZONE (inc/home-seo.php) — renders the "Homepage SEO Content" page just
   before the FAQ. Owner edits it via the WP editor (or Elementor).
   ============================================================================ */
.alpha-home-seo { padding:60px 0; background:#fff; }
.alpha-home-seo .alpha-home-seo-inner { max-width:1000px; margin:0 auto; }
.alpha-home-seo h2 { font-size:32px; line-height:1.25; color:#2a2a2a; margin:0 0 16px; font-weight:700; }
.alpha-home-seo h3 { font-size:22px; line-height:1.3; color:#cf6a1e; margin:28px 0 10px; font-weight:700; }
.alpha-home-seo p { font-size:16px; line-height:1.8; color:#555; margin:0 0 14px; }
.alpha-home-seo a { color:#cf6a1e; }
.alpha-home-seo ul, .alpha-home-seo ol { color:#555; line-height:1.8; margin:0 0 14px 22px; }
@media (max-width:768px){ .alpha-home-seo { padding:40px 0; } .alpha-home-seo h2 { font-size:26px; } .alpha-home-seo h3 { font-size:19px; } }
