/*
Theme Name: Nutrition Geeks
Theme URI: https://nutritionsgeeks.co/
Author: Nutrition Geeks
Author URI: https://nutritionsgeeks.co/
Description: Enterprise-grade WooCommerce theme for Nutrition Geeks — Science-Backed Supplements at Prices You Love. Includes full e-commerce functionality, interactive AJAX cart drawer, multi-buy tier pricing, product gallery with lightbox, and secure checkout.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nutrition-geeks
Domain Path: /languages
WC requires at least: 8.0
WC tested up to: 9.5
Tags: e-commerce, woocommerce, health, custom-menu, featured-images, full-width-template, theme-options, translation-ready, block-patterns
*/

/* ==========================================================================
   NUTRITION GEEKS - PIXEL PERFECT DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Brand Color Palette */
  --color-primary-dark: #163231;
  --color-primary-forest: #1b3b3a;
  --color-primary-deep: #112625;
  --color-hero-coral: #ec6d69;
  --color-hero-coral-dark: #e05c58;
  --color-accent-orange: #ea6518;
  --color-accent-orange-hover: #d3540d;
  --color-accent-gold: #eab308;
  --color-trustpilot-green: #00b67a;
  
  /* Text & Surfaces */
  --color-text-main: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-bg-white: #ffffff;
  --color-bg-subtle: #f8fafc;
  --color-bg-card: #ffffff;
  --color-border: #e5e7eb;
  --color-border-light: #f1f5f9;
  
  /* Pricing */
  --color-price-sale: #dc2626;
  --color-price-strike: #9ca3af;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Caveat', cursive;
  
  /* Shadows & Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.14);
  --shadow-orange-glow: 0 8px 20px rgba(234, 101, 24, 0.35);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-drawer: 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  letter-spacing: 0.2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10001;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.top-social-links {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.top-social-links a {
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.9 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.top-social-links a svg {
  width: 16px !important;
  height: 16px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  display: block !important;
}

.top-social-links a:hover {
  opacity: 1 !important;
  transform: translateY(-1px) scale(1.08) !important;
}

.top-bar-promo {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  font-size: 13px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.currency-selector-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.currency-btn,
.top-currency-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  line-height: 1.2 !important;
  height: auto !important;
  font-family: inherit !important;
}

.currency-btn:hover,
.top-currency-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
}

.currency-btn svg,
.top-currency-btn svg {
  width: 11px !important;
  height: 11px !important;
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.currency-dropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
  padding: 4px 0 !important;
  min-width: 195px !important;
  z-index: 999999 !important;
  overflow: hidden !important;
  display: none;
}

.currency-dropdown.active {
  display: flex !important;
  flex-direction: column !important;
  animation: ngFadeInDown 0.15s ease forwards !important;
}

@keyframes ngFadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.currency-dropdown button {
  width: 100% !important;
  padding: 10px 14px !important;
  text-align: left !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2d3748 !important;
  background: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  transition: background 0.15s ease, color 0.15s ease !important;
  box-sizing: border-box !important;
}

.currency-dropdown button span {
  font-size: 13px !important;
  color: #2d3748 !important;
}

.currency-dropdown button strong {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.currency-dropdown button:hover {
  background: #f7fafc !important;
  color: #ea6518 !important;
}

.currency-dropdown button:hover span,
.currency-dropdown button:hover strong {
  color: #ea6518 !important;
}

.currency-dropdown button.active {
  background: #f1f5f9 !important;
  color: #ea6518 !important;
  font-weight: 700 !important;
}

.currency-dropdown button.active span,
.currency-dropdown button.active strong {
  color: #ea6518 !important;
}



/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Top Row */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px 0;
  gap: 24px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.logo-container:hover .site-logo-img {
  transform: scale(1.02);
}

.logo-text {
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  color: #111827;
}

.logo-nutrition {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.logo-geeks {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-geeks .e-accent {
  display: inline-block;
  transform: translateY(-1px);
}

/* Search Bar */
.header-search-container {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.header-search-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1.5px solid #163231;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  transition: all var(--transition-fast);
  position: relative;
}

.header-search-input-wrapper:focus-within {
  background-color: #ffffff;
  border-color: #163231;
  box-shadow: 0 0 0 3px rgba(22, 50, 49, 0.12);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: #163231;
  margin-right: 12px;
  flex-shrink: 0;
}

.header-search-input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14.5px;
  font-family: inherit;
  color: #111111;
  font-weight: 500;
}

.header-search-input::placeholder {
  color: var(--color-text-muted);
}

.ng-search-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #e2e8f0;
  border-top-color: #163231;
  border-radius: 50%;
  animation: ngSpin 0.6s linear infinite;
  margin-left: 8px;
  flex-shrink: 0;
}

@keyframes ngSpin {
  to { transform: rotate(360deg); }
}

/* Predictive Search Results Dropdown */
.ng-predictive-search {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 360px;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef0f2;
  padding: 18px 20px 20px;
  z-index: 99999;
  box-sizing: border-box;
  text-align: left;
  animation: ngSearchFadeIn 0.18s ease forwards;
}

@keyframes ngSearchFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ng-search-suggestions {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ng-search-suggestion-item {
  display: block;
  padding: 6px 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  line-height: 1.35;
}

.ng-search-suggestion-item:hover,
.ng-search-suggestion-item.active {
  background: #f4f6f8;
  color: #163231;
}

.ng-search-divider {
  height: 1px;
  background: #eef1f3;
  margin: 12px 0 14px;
}

.ng-search-products-section {
  display: flex;
  flex-direction: column;
}

.ng-search-heading {
  font-size: 13.5px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 10px 4px;
}

.ng-search-products-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ng-search-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 8px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.ng-search-product-item:hover,
.ng-search-product-item.active {
  background: #f6f8fa;
}

.ng-search-product-thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  box-sizing: border-box;
}

.ng-search-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ng-search-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.ng-search-product-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.ng-search-product-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
}

.ng-search-product-regular-price {
  font-size: 12px;
  font-weight: 500;
  color: #888888;
  text-decoration: line-through;
}

.ng-search-product-title {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ng-search-footer {
  margin-top: 14px;
}

.ng-search-all-btn {
  display: block;
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.1s ease;
}

.ng-search-all-btn:hover {
  background: #1b3b3a;
  color: #ffffff;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-account {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid #111827;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  transition: all var(--transition-fast);
}

.btn-account:hover {
  background-color: #111827;
  color: #ffffff;
}

.btn-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #161e24;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all var(--transition-fast);
}

.btn-cart:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.cart-icon-svg {
  width: 18px;
  height: 18px;
}

.cart-badge-count {
  display: inline-block;
  font-weight: 700;
}

/* Header Sub-Navigation Row */
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 14px 0;
  border-top: 1px solid var(--color-border-light);
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-links > li,
.main-nav-links > .menu-item,
.nav-item {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-links > li > a,
.main-nav-links > .menu-item > a,
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.main-nav-links > li > a:hover,
.main-nav-links > .menu-item > a:hover,
.nav-link:hover {
  color: var(--color-accent-orange);
}

/* Downward Chevron Arrow for Parent Items */
.main-nav-links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.main-nav-links .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-link svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Sub-Menus */
.main-nav-links .sub-menu,
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  list-style: none;
  margin: 2px 0 0 0;
  pointer-events: none;
}

.main-nav-links .menu-item-has-children:hover > .sub-menu,
.main-nav-links .menu-item-has-children:focus-within > .sub-menu,
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav-links .sub-menu li,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-links .sub-menu li a,
.dropdown-menu a {
  display: block;
  padding: 7px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav-links .sub-menu li a:hover,
.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: var(--color-accent-orange);
}

/* Trustpilot Header Right Badge */
.header-trustpilot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.tp-star-box {
  width: 26px;
  height: 26px;
  background-color: var(--color-trustpilot-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.tp-star-box svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.tp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.tp-text .tp-customers {
  font-weight: 500;
  color: var(--color-text-muted);
}

.tp-text .tp-rating {
  font-weight: 700;
  color: #111827;
}

/* Mobile Hamburger Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO COVER BANNER SECTION
   ========================================================================== */
.hero-cover-section {
  width: 100%;
  background: #ebede9;
  overflow: hidden;
  display: block;
}

.hero-cover-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.hero-cover-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-cover-link:hover .hero-cover-img {
  filter: brightness(0.99);
}

.hero-section {
  background: linear-gradient(135deg, #ec6d69 0%, #e65f5b 50%, #ea6e6a 100%);
  color: #ffffff;
  padding: 56px 0 64px 0;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f06a1d 0%, #d85208 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(184, 60, 4, 0.45), 0 2px 4px rgba(0,0,0,0.1);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(184, 60, 4, 0.55);
}

.hero-visual-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}

.floating-pouches-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-pouch {
  position: absolute;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}

.hero-pouch:hover {
  transform: translateY(-8px) scale(1.04) !important;
}

.pouch-pos-1 {
  left: 0%;
  bottom: 0px;
  transform: rotate(-14deg) scale(0.72);
  z-index: 2;
}

.pouch-pos-2 {
  left: 22%;
  bottom: 15px;
  transform: rotate(-4deg) scale(0.92);
  z-index: 4;
}

.pouch-pos-3 {
  right: 18%;
  bottom: 30px;
  transform: rotate(10deg) scale(0.85);
  z-index: 3;
}

.pouch-pos-4 {
  right: 0%;
  bottom: 5px;
  transform: rotate(18deg) scale(0.74);
  z-index: 1;
}

/* ==========================================================================
   PRESS & MEDIA BAR
   ========================================================================== */
.press-bar {
  background-color: #f1f5f9;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.press-logos-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
}

.press-logo-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #334155;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.press-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Specific press logo stylings */
.press-metro {
  letter-spacing: 2px;
  font-weight: 900;
}

.press-glamour {
  font-family: 'Playfair Display', serif, sans-serif;
  letter-spacing: 1px;
}

.press-cosmo {
  font-size: 17px;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   PRODUCTS CATALOG GRID SECTION
   ========================================================================== */
.section-products {
  padding: 72px 0 84px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #111827;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16.5px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* Category Filter Pills */
.category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  background-color: var(--color-bg-subtle);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.product-card-badge.best-seller {
  background-color: #fef3c7;
  color: #b45309;
}

/* Product Image Preview Area */
.product-image-wrap {
  width: 100%;
  height: 260px;
  background: radial-gradient(circle, #f8fafc 40%, #f1f5f9 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.product-image-wrap svg,
.product-image-wrap img {
  height: 88%;
  width: auto;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrap svg {
  transform: scale(1.06);
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 12px;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.product-image-wrap:hover .quick-view-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Product Content */
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 8px;
  min-height: 46px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title:hover {
  color: var(--color-accent-orange);
}

/* Rating Stars */
.product-rating-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars {
  color: #111827;
  font-size: 13px;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Pricing Row */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-current {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-price-sale);
}

.price-original {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-price-strike);
  text-decoration: line-through;
}

/* Supply Duration Tag */
.product-supply-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.product-short-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-bottom: 18px;
  flex: 1;
}

/* Add to Basket Action */
.btn-add-to-basket {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-add-to-basket:hover {
  background-color: #111827;
  color: #ffffff;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-view-all-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 42px;
  border: 1.5px solid #111827;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  transition: all var(--transition-fast);
}

.btn-view-all-outline:hover {
  background-color: #111827;
  color: #ffffff;
}

/* ==========================================================================
   SAVE WITH BUNDLES CAROUSEL SECTION
   ========================================================================== */
.section-bundles {
  padding: 80px 0;
  background-color: #f9fafb;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.bundle-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background: #ffffff;
}

.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.bundle-hero-box {
  padding: 36px 20px 24px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bundle-script-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
}

.bundle-script-title span.script {
  font-family: var(--font-handwriting);
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
}

.bundle-image-box {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-body {
  padding: 22px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.bundle-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111827;
}

.bundle-tagline {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-bottom: 18px;
  flex: 1;
}

/* ==========================================================================
   BRAND STORY & PHD SCIENCE SPLIT BANNER
   ========================================================================== */
.section-brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-primary-dark);
  color: #ffffff;
  overflow: hidden;
}

.story-content-col {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  margin-left: auto;
}

.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.story-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 36px;
}

.btn-story-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border: 1.5px solid #ffffff;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.btn-story-outline:hover {
  background-color: #ffffff;
  color: var(--color-primary-dark);
}

.story-visual-col {
  position: relative;
  min-height: 480px;
  background: radial-gradient(circle, #254b49 0%, #163231 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-editorial-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* ==========================================================================
   USPS / WHY CHOOSE US
   ========================================================================== */
.section-usps {
  padding: 64px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border-light);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.usp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usp-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.usp-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.section-faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-accordion-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17.5px;
  font-weight: 700;
  color: #111827;
  background: #ffffff;
  transition: background var(--transition-fast);
}

.faq-trigger:hover {
  background-color: var(--color-bg-subtle);
}

.faq-icon-toggle {
  font-size: 22px;
  font-weight: 400;
  color: #111827;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 28px;
  background-color: #ffffff;
}

.faq-item.open .faq-content {
  max-height: 250px;
  padding: 0 28px 24px 28px;
}

.faq-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   FOOTER (100% Pixel-to-Pixel match with official Nutrition Geeks)
   ========================================================================== */
.site-footer {
  background-color: #1e3f43;
  color: #ffffff;
  padding: 64px 0 28px 0;
  font-family: inherit;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP GRID: 3 Columns */
.footer-top-grid {
  display: grid;
  grid-template-columns: 380px 220px 260px;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  max-width: 320px;
}

.footer-email-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border-radius: 4px 0 0 4px;
  border: none;
  background-color: #ffffff;
  color: #2d3748;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.footer-email-input::placeholder {
  color: #718096;
}

.btn-footer-signup {
  height: 44px;
  padding: 0 22px;
  background: #ef7a12;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 0 22px 22px 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-footer-signup:hover {
  background: #d9690b;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li {
  margin: 0;
  padding: 0;
}

.footer-links-list a {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  transition: text-decoration-color 0.2s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

/* MIDDLE ROW: Get In Touch + Payment Icons */
.footer-middle-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-getintouch h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.footer-contact-email {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-block;
  transition: opacity 0.2s;
}

.footer-contact-email:hover {
  opacity: 0.85;
}

.footer-social-links-row {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 6px !important;
}

.site-footer .footer-social-links-row a {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.site-footer .footer-social-links-row a svg {
  width: 20px !important;
  height: 20px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  display: block !important;
}

.site-footer .footer-social-links-row a:hover {
  background: transparent !important;
  background-color: transparent !important;
  opacity: 0.8 !important;
  transform: translateY(-1px) !important;
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-payment-icons .ng-payment-icons-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-items: center !important;
  margin-top: 0 !important;
  max-width: 440px !important;
}

/* BOTTOM ROW: Copyright + Currency */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12.5px;
  color: #ffffff;
}

.footer-bottom-row a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-row a:hover {
  text-decoration-color: #ffffff;
}

.footer-currency-selector {
  position: relative;
  display: inline-block;
}

.footer-currency-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 12.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.footer-currency-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-currency-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: #ffffff;
  color: #1a202c;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  min-width: 190px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

.footer-currency-dropdown.active {
  display: flex;
}

.footer-currency-dropdown button {
  background: none;
  border: none;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  color: #2d3748;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: background 0.15s ease, color 0.15s ease;
}

.footer-currency-dropdown button:hover {
  background: #f7fafc;
  color: #ef7a12;
}

.footer-currency-dropdown button.active {
  font-weight: 700;
  color: #ef7a12;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-newsletter-form {
    max-width: 100%;
  }
  .footer-middle-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   SLIDE-OUT SHOPPING BASKET (CART DRAWER)
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-drawer);
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform var(--transition-drawer);
  display: flex;
  flex-direction: column;
}

.cart-drawer-backdrop.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.btn-close-drawer {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.btn-close-drawer:hover {
  background: #f1f5f9;
}

/* Free Shipping Meter */
.free-shipping-bar-wrap {
  padding: 14px 24px;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--color-border-light);
}

.free-shipping-text {
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #111827;
}

.shipping-progress-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  width: 100%;
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

/* Cart Items Scroll Area */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
  align-items: center;
}

.cart-item-thumb {
  width: 68px;
  height: 68px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.cart-item-format {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  gap: 8px;
  background: #ffffff;
}

.qty-btn {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  width: 18px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-val {
  font-size: 13px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-item-price-col {
  text-align: right;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.cart-item-save-tag {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
}

.btn-remove-item {
  color: var(--color-text-muted);
  padding: 4px;
  transition: color var(--transition-fast);
}

.btn-remove-item:hover {
  color: #ef4444;
}

/* Empty Cart State */
.empty-cart-state {
  text-align: center;
  padding: 48px 16px;
}

.empty-cart-state p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

/* Cross-Sell Upsell Box */
.cart-cross-sell-box {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
  margin-top: 8px;
}

.cross-sell-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}

.cross-sell-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cross-sell-info {
  flex: 1;
}

.cross-sell-name {
  font-size: 13px;
  font-weight: 700;
}

.cross-sell-price {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--color-price-sale);
}

.btn-quick-cross-add {
  padding: 6px 14px;
  background: var(--color-accent-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--radius-pill);
}

/* Cart Footer Checkout Area */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border-light);
  background: #ffffff;
}

.cart-subtotal-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.subtotal-label {
  font-size: 15px;
  font-weight: 700;
}

.subtotal-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
}

.btn-checkout-orange {
  width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, #f06a1d 0%, #d85208 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-checkout-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 101, 24, 0.45);
}

.cart-pay-badges-footer {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

/* ==========================================================================
   PRODUCT DETAIL QUICK-VIEW MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.btn-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 20;
  transition: all var(--transition-fast);
}

.btn-modal-close:hover {
  background: #e2e8f0;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow-y: auto;
}

.modal-left-media {
  background: radial-gradient(circle, #f8fafc 40%, #e2e8f0 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-right-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-product-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.modal-features-list li svg {
  width: 16px;
  height: 16px;
  color: #059669;
  flex-shrink: 0;
}

/* Multi-buy option buttons */
.multibuy-box {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.multibuy-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.multibuy-card {
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  transition: all var(--transition-fast);
}

.multibuy-card.selected {
  border-color: var(--color-accent-orange);
  background: #fff7ed;
}

.multibuy-card .pack-count {
  font-size: 13px;
  font-weight: 800;
}

.multibuy-card .pack-save {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.toast-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .products-grid, .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header-nav-row {
    display: none;
  }
  .header-search-container {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .header-top-row {
    flex-wrap: wrap;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .section-brand-story {
    grid-template-columns: 1fr;
  }
  .story-content-col {
    padding: 48px 24px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-left-media {
    padding: 20px;
  }
  .modal-right-details {
    padding: 24px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid, .bundles-grid {
    grid-template-columns: 1fr;
  }
  .usps-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   CART DRAWER — Pixel-perfect slide-out basket (matches nutritiongeeks.co)
   ========================================================================== */

.ng-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ng-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ng-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ng-cart-drawer.open {
  transform: translateX(0);
}

/* Drawer Header */
.ng-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.ng-cart-drawer-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}
.ng-cart-drawer-count {
  color: #6b7280;
  font-weight: 600;
  font-size: 16px;
}
.ng-cart-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ng-cart-drawer-close:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Free Shipping Progress Bar */
.ng-cart-shipping-bar {
  padding: 14px 24px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
  background: #f8fafc;
}
.ng-shipping-msg {
  font-size: 13.5px;
  color: #374151;
  margin-bottom: 8px;
  font-weight: 600;
}
.ng-shipping-progress-track {
  height: 6px;
  background: #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
}
.ng-shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 50px;
  transition: width 0.4s ease;
}

/* Cart Items Container */
.ng-cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* Empty State */
.ng-cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: #6b7280;
}
.ng-cart-empty p {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}
.ng-cart-empty a {
  display: inline-block;
  padding: 10px 24px;
  background: #111827;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

/* Individual Cart Item */
.ng-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f8fafc;
  position: relative;
  transition: background 0.2s;
}
.ng-cart-item:hover {
  background: #fafafa;
}
.ng-cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.ng-cart-item-info {
  flex: 1;
  min-width: 0;
}
.ng-cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.35;
}
.ng-cart-item-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.ng-cart-item-price {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}
.ng-cart-item-orig {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}
.ng-cart-item-save {
  font-size: 12.5px;
  font-weight: 700;
  color: #10b981;
}

/* Qty Controls */
.ng-cart-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.ng-qty-btn {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ng-qty-btn:hover { background: #f3f4f6; }
.ng-qty-num {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  border-left: 1.5px solid #e5e7eb;
  border-right: 1.5px solid #e5e7eb;
  padding: 0 4px;
  line-height: 30px;
}

/* Remove Button */
.ng-cart-remove {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-weight: 700;
}
.ng-cart-remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Drawer Footer */
.ng-cart-drawer-footer {
  border-top: 1px solid #f1f5f9;
  padding: 20px 24px;
  flex-shrink: 0;
  background: #fff;
}
.ng-cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ng-cart-subtotal-label {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}
.ng-cart-subtotal-val {
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}
.ng-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #ea6518;
  color: #fff !important;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(234, 101, 24, 0.35);
  margin-bottom: 12px;
}
.ng-checkout-btn:hover {
  background: #d3540d;
  transform: translateY(-1px);
}

/* Payment Icons Row */
.ng-cart-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ng-cart-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  background: #f9fafb;
  letter-spacing: 0.3px;
}

/* Loading state for cart items */
.ng-cart-loading {
  text-align: center;
  padding: 32px;
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 480px) {
  .ng-cart-drawer { width: 100vw; }
}

/* ================================================================
   PRODUCT GRID — Additional Cards and Category Tabs CSS
   ================================================================ */
.category-tabs-row::-webkit-scrollbar { height: 0; }
.cat-tab {
  transition: all 0.2s ease;
  outline: none;
}
/* ==========================================================================
   CATEGORY TABS & NEW PRODUCT GRID (Matches Nutrition Geeks Layout)
   ========================================================================== */
.cat-tab {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}
.cat-tab:hover, .cat-tab.active {
  background: #111827 !important;
  color: #ffffff !important;
  border-color: #111827 !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.15);
}

/* 4-Column Product Grid */
.ng-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}
@media (max-width: 1100px) {
  .ng-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ng-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .ng-products-grid { grid-template-columns: 1fr; }
}

/* Single Product Card (Matches User Screenshot Exactly) */
.ng-product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ng-product-card:hover {
  border-color: #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* Bigger Product Image - Clean & Prominent */
.ng-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 280px;
  margin: 0 auto 20px;
  text-decoration: none;
  background: transparent;
}
.ng-card-pouch-img {
  max-height: 260px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}
.ng-product-card:hover .ng-card-pouch-img {
  transform: scale(1.03);
}

/* Card Details */
.ng-card-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.ng-card-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  line-height: 1.25;
  margin: 0 0 8px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ng-card-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.15s;
}
.ng-card-title a:hover {
  color: #ea6518;
}

/* Ratings */
.ng-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.ng-stars {
  color: #1a1a1a;
  font-size: 13px;
  letter-spacing: 2px;
}
.ng-reviews-count {
  font-size: 13px;
  color: #4a4a4a;
  font-weight: 400;
}

/* Pricing - Red Sale Price + Grey Strikethrough */
.ng-card-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.ng-price-sale {
  font-size: 15px;
  font-weight: 700;
  color: #ef4444;
}
.ng-price-regular {
  font-size: 14px;
  color: #888888;
  text-decoration: line-through;
  font-weight: 400;
}

/* Supply Duration & Benefit */
.ng-card-supply {
  font-size: 13.5px;
  color: #666666;
  font-weight: 400;
  margin-bottom: 4px;
}
.ng-card-benefit {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 18px;
  min-height: 38px;
  max-width: 250px;
}

/* Add to Basket Button */
.ng-card-add-btn {
  width: 85%;
  max-width: 240px;
  padding: 10px 20px;
  background: #ffffff;
  color: #112d2f;
  border: 1px solid #112d2f;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  outline: none;
}
.ng-card-add-btn:hover {
  background: #112d2f;
  color: #ffffff;
  transform: translateY(-1px);
}
.ng-card-add-btn.added {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
}
.ng-card-add-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================================================================
   SAVE WITH BUNDLES GRID (Matches Screenshot 3)
   ========================================================================== */
.ng-bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .ng-bundles-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ng-bundles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .ng-bundles-grid { grid-template-columns: 1fr; }
}

.ng-bundle-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ng-bundle-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}
.ng-bundle-artwork-link {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  text-decoration: none;
  background: #f8fafc;
}
.ng-bundle-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.ng-bundle-box:hover .ng-bundle-banner-img {
  transform: scale(1.04);
}
.ng-bundle-content {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.ng-bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.ng-bundle-sale-price {
  font-size: 17px;
  font-weight: 800;
  color: #ef4444;
}
.ng-bundle-reg-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}
.ng-bundle-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.ng-bundle-rev-num {
  font-size: 12.5px;
  color: #4b5563;
  font-weight: 500;
}
.ng-bundle-title {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.25;
}
.ng-bundle-title a {
  color: inherit;
  text-decoration: none;
}
.ng-bundle-title a:hover {
  color: #ea6518;
}
.ng-bundle-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.45;
  margin: 0 0 16px;
  min-height: 38px;
  max-width: 250px;
}
.ng-bundle-add-btn {
  width: 100%;
  max-width: 210px;
  padding: 10px 20px;
  background: #ffffff;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  outline: none;
}
.ng-bundle-add-btn:hover {
  background: #111827;
  color: #ffffff;
}
.ng-bundle-add-btn.added {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
}

.ng-view-all-bundles-btn {
  display: inline-block;
  padding: 12px 36px;
  background: #ffffff;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ng-view-all-bundles-btn:hover {
  background: #111827;
  color: #ffffff;
}

/* Hero Cover */
.hero-cover-section {
  display: block !important;
  width: 100% !important;
  background: #ebede9;
  position: relative;
  overflow: hidden;
}
.hero-cover-link {
  display: block !important;
  width: 100% !important;
  text-decoration: none;
}
.hero-cover-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 768px) {
  .hero-cover-section {
    display: block !important;
    width: 100% !important;
    min-height: 180px;
  }
  .hero-cover-link {
    display: block !important;
    width: 100% !important;
  }
  .hero-cover-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bundles-grid  { grid-template-columns: 1fr !important; }
  .brand-story-section > .container { grid-template-columns: 1fr !important; }
  .press-container { flex-direction: column; gap: 12px; }
}

/* ==========================================================================
   CART DRAWER — Screenshot 3 Design & Upsell Card Enhancements
   ========================================================================== */

.ng-cart-item-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.ng-cart-trash-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.ng-cart-trash-btn:hover {
  color: #ef4444;
  background: #fee2e2;
}

.ng-cart-item-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.ng-cart-item-price-box {
  text-align: right;
}

/* Customers Also Bought — Upsell Card (Screenshot 3) */
.ng-cart-upsell-box {
  margin: 20px 16px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
}
.ng-upsell-heading {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0 0 14px;
}
.ng-upsell-card {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ng-upsell-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 4px;
  flex-shrink: 0;
}
.ng-upsell-info {
  flex: 1;
  min-width: 0;
}
.ng-upsell-title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.3;
}
.ng-upsell-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.ng-upsell-price {
  font-size: 14.5px;
  font-weight: 800;
  color: #111827;
}
.ng-upsell-orig {
  font-size: 12.5px;
  color: #9ca3af;
  text-decoration: line-through;
}
.ng-upsell-rating {
  font-size: 12px;
  color: #eab308;
  margin-bottom: 8px;
}
.ng-upsell-reviews {
  color: #6b7280;
  font-weight: 600;
}
.ng-upsell-add-btn {
  width: 100%;
  padding: 8px 16px;
  background: #ea6518;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.ng-upsell-add-btn:hover {
  background: #d3540d;
  transform: translateY(-1px);
}

/* Payment Icons Badges (Screenshot 3 styling) */
.ng-cart-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pay-apple { background: #000; color: #fff; border-color: #000; }
.pay-gpay { color: #4285f4; border-color: #e5e7eb; }
.pay-paypal { color: #003087; border-color: #003087; background: #f8fafc; }
.pay-amex { background: #006fcf; color: #fff; border-color: #006fcf; }
.pay-visa { color: #1a1f71; font-style: italic; font-weight: 900; }
.pay-mc { color: #eb001b; font-weight: 900; }
.pay-shop { background: #5a31f4; color: #fff; border-color: #5a31f4; }

/* ===== OFFICIAL VECTOR PAYMENT BADGE ICONS ===== */


.ng-payment-icons-list, .payment-badges-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  align-items: center !important;
  margin-top: 14px !important;
  width: 100% !important;
}
.ng-cart-drawer .ng-payment-icons-list {
  justify-content: center !important;
  margin-top: 14px !important;
}
.ng-payment-icons-list .ng-pay-icon,
.ng-pay-icon,
.pay-badge {
  width: 38px !important;
  height: 24px !important;
  min-width: 38px !important;
  min-height: 24px !important;
  max-width: 38px !important;
  max-height: 24px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  border-radius: 4px !important;
  vertical-align: middle !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  overflow: hidden !important;
}
.ng-pay-icon:hover, .pay-badge:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}


/* ==========================================================================
   MOBILE HEADER, NAVIGATION DRAWER & REVIEWS (Pixel-perfect match to reference)
   ========================================================================== */

/* Show/Hide desktop vs mobile header rows */
.desktop-only-header {
  display: flex !important;
}
.mobile-header-row {
  display: none !important;
}

@media (max-width: 900px) {
  .desktop-only-header {
    display: none !important;
  }
  .mobile-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 0 !important;
    min-height: 54px !important;
    gap: 10px !important;
  }

  .site-header {
    padding: 0 !important;
  }

  .site-header .container {
    padding: 0 16px !important;
  }

  /* Hamburger Menu Button */
  .ng-mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: #111827 !important;
    border-radius: 8px !important;
    transition: background 0.15s ease !important;
  }
  .ng-mobile-menu-btn:hover,
  .ng-mobile-menu-btn:active {
    background: #f3f4f6 !important;
  }

  /* Centered Mobile Logo */
  .ng-mobile-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex: 1 !important;
  }
  .ng-mobile-logo img {
    height: 36px !important;
    width: auto !important;
    max-width: 135px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Right Action Icons */
  .ng-mobile-header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .ng-mobile-icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    color: #111827 !important;
    border-radius: 8px !important;
    position: relative !important;
    transition: background 0.15s ease !important;
  }
  .ng-mobile-icon-btn:hover,
  .ng-mobile-icon-btn:active {
    background: #f3f4f6 !important;
  }

  .ng-mobile-cart-badge {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: #ea6518 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    min-width: 17px !important;
    height: 17px !important;
    line-height: 17px !important;
    border-radius: 50% !important;
    text-align: center !important;
    padding: 0 4px !important;
    box-shadow: 0 1px 3px rgba(234, 101, 24, 0.4) !important;
  }

  /* Expandable Mobile Search Bar */
  .ng-mobile-search-bar {
    width: 100% !important;
    background: #ffffff !important;
    padding: 8px 0 12px !important;
    border-top: 1px solid #f1f5f9 !important;
    animation: ngSlideDown 0.2s ease forwards !important;
  }
  @keyframes ngSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .ng-mobile-search-input-wrap {
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border: 1.5px solid #163231 !important;
    border-radius: 999px !important;
    padding: 7px 16px !important;
    gap: 10px !important;
  }
  .ng-mobile-search-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 14px !important;
    font-family: inherit !important;
    color: #111827 !important;
  }
  .ng-mobile-search-close {
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    color: #64748b !important;
    cursor: pointer !important;
    padding: 0 4px !important;
  }

  /* Mobile Trustpilot Social Proof Strip */
  .mobile-trustpilot-strip {
    display: block !important;
    background: #163231 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    font-size: 12.5px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .mobile-tp-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  .mobile-tp-stars {
    color: #00b67a !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
  }
  .mobile-tp-text {
    color: #cbd5e1 !important;
  }
  .mobile-tp-text a {
    color: #ffffff !important;
    text-decoration: underline !important;
  }
}

@media (min-width: 901px) {
  .mobile-trustpilot-strip {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE SIDEBAR NAVIGATION DRAWER (Slide from Left)
   ========================================================================== */
.ng-mobile-nav-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(3px) !important;
  z-index: 99998 !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.ng-mobile-nav-overlay.open {
  opacity: 1 !important;
}

.ng-mobile-nav-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 85% !important;
  max-width: 340px !important;
  background: #ffffff !important;
  z-index: 99999 !important;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.18) !important;
  transform: translateX(-100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}
.ng-mobile-nav-drawer.open {
  transform: translateX(0) !important;
}

.ng-mobile-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.ng-mobile-drawer-title {
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #163231 !important;
  font-family: var(--font-heading, -apple-system, sans-serif) !important;
}
.ng-mobile-drawer-close {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1px solid #e5e7eb !important;
  background: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #111827 !important;
  transition: background 0.15s ease !important;
}
.ng-mobile-drawer-close:hover {
  background: #e2e8f0 !important;
}

.ng-mobile-drawer-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 8px 0 !important;
}

.ng-mobile-nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ng-mobile-nav-list li {
  border-bottom: 1px solid #f8fafc !important;
}
.ng-mobile-nav-list a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 22px !important;
  font-size: 15.5px !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.ng-mobile-nav-list a:hover,
.ng-mobile-nav-list a:active {
  background: #f8fafc !important;
  color: #ea6518 !important;
}
.ng-mobile-nav-list a svg {
  color: #9ca3af !important;
  flex-shrink: 0 !important;
}

.ng-badge-popular {
  background: #fef3c7 !important;
  color: #d97706 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 2px 7px !important;
  border-radius: 999px !important;
  margin-left: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

/* Drawer Footer */
.ng-mobile-drawer-footer {
  padding: 18px 22px !important;
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.ng-mobile-drawer-account {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #163231 !important;
  text-decoration: none !important;
  transition: background 0.15s ease !important;
}
.ng-mobile-drawer-account:hover {
  background: #f1f5f9 !important;
}

.ng-mobile-drawer-currency {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
}
.ng-mobile-curr-btns {
  display: flex !important;
  gap: 6px !important;
}
.ng-mobile-curr-btns button {
  padding: 5px 9px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  cursor: pointer !important;
}
.ng-mobile-curr-btns button.active {
  background: #163231 !important;
  color: #ffffff !important;
  border-color: #163231 !important;
}

.ng-mobile-drawer-social {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 4px !important;
}
.ng-mobile-drawer-social a {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #163231 !important;
  transition: all 0.15s ease !important;
}
.ng-mobile-drawer-social a:hover {
  background: #163231 !important;
  color: #ffffff !important;
  border-color: #163231 !important;
}


/* ==========================================================================
   MOBILE PERMANENT SEARCH STRIP & REFINED RESPONSIVE FIXES
   ========================================================================== */

.mobile-search-strip {
  display: none;
}

@media (max-width: 900px) {
  .desktop-only-bar {
    display: none !important;
  }
  .top-bar-inner {
    justify-content: center !important;
  }
  .top-bar-promo {
    text-align: center !important;
    width: 100% !important;
    font-size: 12.5px !important;
  }
  .mobile-search-strip {
    display: block !important;
    padding: 8px 0 12px !important;
    background: #ffffff !important;
    border-top: 1px solid #f3f4f6 !important;
  }
  .mobile-search-input-wrap {
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border: 1.5px solid #163231 !important;
    border-radius: 999px !important;
    padding: 8px 16px !important;
    gap: 10px !important;
    transition: all 0.2s ease !important;
  }
  .mobile-search-input-wrap:focus-within {
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(22, 50, 49, 0.12) !important;
  }
  .mobile-search-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 14px !important;
    font-family: inherit !important;
    color: #111827 !important;
    font-weight: 500 !important;
  }
  .mobile-search-input::placeholder {
    color: #6b7280 !important;
  }
}

/* ==========================================================================
   NUTRITION GEEKS - MY ACCOUNT & CUSTOMER PORTAL DESIGN SYSTEM
   ========================================================================== */

/* WooCommerce Global Notice & Alert Banners */
.woocommerce-notices-wrapper {
  margin-bottom: 28px !important;
  width: 100% !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 20px !important;
  border-radius: 14px !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  margin: 0 0 20px !important;
  list-style: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  border: 1.5px solid transparent !important;
}

.woocommerce-message {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

.woocommerce-info {
  background: #eff6ff !important;
  color: #1e40af !important;
  border-color: #bfdbfe !important;
}

.woocommerce-error {
  background: #fef2f2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
}

.woocommerce-error li {
  list-style: none !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: auto !important;
  background: #163231 !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
}

/* Account Page Hero Banner */
.ng-account-hero-banner {
  background: linear-gradient(135deg, #163231 0%, #1b3b3a 100%) !important;
  color: #ffffff !important;
  padding: 44px 0 48px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ng-account-hero-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.ng-account-breadcrumbs {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.ng-account-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
}

.ng-account-breadcrumbs a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.ng-account-breadcrumbs .sep {
  opacity: 0.5 !important;
}

.ng-account-breadcrumbs .current {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.ng-account-page-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

.ng-account-page-subtitle {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  max-width: 580px !important;
  line-height: 1.5 !important;
}

.ng-account-hero-badges {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.ng-hero-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

/* Main Container */
.ng-account-main-wrapper {
  background-color: #f8fafc !important;
  min-height: 550px !important;
  padding: 48px 0 80px !important;
}

.ng-account-content-box {
  width: 100% !important;
}

/* ==========================================================================
   UNAUTHENTICATED VIEW: LOGIN & REGISTER SPLIT GRID
   ========================================================================== */

.ng-auth-container {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.ng-auth-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 32px !important;
  align-items: stretch !important;
}

.ng-auth-grid.single-form {
  grid-template-columns: 1fr 0.9fr !important;
}

/* Auth Card (Form Side) */
.ng-auth-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
}

.ng-auth-card.ng-auth-card-narrow {
  max-width: 480px !important;
  margin: 0 auto !important;
}

.ng-auth-tabs-nav {
  display: flex !important;
  background: #f1f5f9 !important;
  padding: 5px !important;
  border-radius: 14px !important;
  margin-bottom: 32px !important;
  gap: 4px !important;
}

.ng-auth-tab-btn {
  flex: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 11px 16px !important;
  border-radius: 10px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.ng-auth-tab-btn:hover {
  color: #163231 !important;
}

.ng-auth-tab-btn.active {
  background: #163231 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(22, 50, 49, 0.2) !important;
}

.ng-auth-header {
  margin-bottom: 24px !important;
}

.ng-auth-header.text-center {
  text-align: center !important;
}

.ng-auth-icon-circle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #f0fdf4 !important;
  border: 1.5px solid #bbf7d0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
}

.ng-auth-badge {
  display: inline-block !important;
  background: #fff7ed !important;
  color: #ea6518 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  margin-bottom: 8px !important;
}

.ng-auth-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 6px !important;
  line-height: 1.25 !important;
}

.ng-auth-desc {
  font-size: 14.5px !important;
  color: #64748b !important;
  margin: 0 !important;
  line-height: 1.45 !important;
}

/* Styled Form Inputs */
.ng-styled-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.ng-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

.ng-form-label {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.ng-form-label .required {
  color: #ef4444 !important;
  font-weight: 700 !important;
}

.ng-label-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.ng-lost-pwd-link {
  font-size: 13px !important;
  color: #ea6518 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.ng-lost-pwd-link:hover {
  text-decoration: underline !important;
  color: #d3540d !important;
}

.ng-input-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

.ng-input-icon {
  position: absolute !important;
  left: 14px !important;
  color: #94a3b8 !important;
  pointer-events: none !important;
}

.ng-form-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px 0 44px !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  font-family: inherit !important;
  color: #111827 !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.ng-form-input:focus {
  background: #ffffff !important;
  border-color: #163231 !important;
  box-shadow: 0 0 0 3px rgba(22, 50, 49, 0.1) !important;
}

.ng-form-input::placeholder {
  color: #94a3b8 !important;
}

.ng-pwd-toggle {
  position: absolute !important;
  right: 12px !important;
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  padding: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ng-pwd-toggle:hover {
  color: #163231 !important;
}

.ng-form-row-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 2px 0 !important;
}

.ng-checkbox-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  cursor: pointer !important;
  user-select: none !important;
}

.ng-checkbox-label input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  accent-color: #163231 !important;
  cursor: pointer !important;
}

.ng-pwd-auto-notice {
  font-size: 13px !important;
  color: #64748b !important;
  background: #f1f5f9 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  margin: 0 !important;
}

/* Primary Auth Submit Button */
.ng-btn-submit {
  width: 100% !important;
  height: 50px !important;
  background: #163231 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.2s ease !important;
  margin-top: 6px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(22, 50, 49, 0.25) !important;
}

.ng-btn-submit:hover {
  background: #ea6518 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(234, 101, 24, 0.35) !important;
  color: #ffffff !important;
}

.ng-btn-submit:active {
  transform: translateY(0) !important;
}

.ng-auth-footer-notice {
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid #f1f5f9 !important;
  font-size: 13px !important;
  color: #64748b !important;
  text-align: center !important;
}

.ng-auth-back-link {
  text-align: center !important;
  margin-top: 16px !important;
}

.ng-auth-back-link a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #163231 !important;
  text-decoration: none !important;
}

.ng-auth-back-link a:hover {
  color: #ea6518 !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   RIGHT COLUMN: BRAND PERKS & TRUST CARD
   ========================================================================== */

.ng-perks-card {
  background: linear-gradient(145deg, #163231 0%, #112625 100%) !important;
  color: #ffffff !important;
  border-radius: 24px !important;
  padding: 40px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ng-perks-card::before {
  content: '' !important;
  position: absolute !important;
  top: -60px !important;
  right: -60px !important;
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(circle, rgba(234, 101, 24, 0.25) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

.ng-perks-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(234, 101, 24, 0.15) !important;
  border: 1px solid rgba(234, 101, 24, 0.3) !important;
  color: #ea6518 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  margin-bottom: 12px !important;
}

.ng-perks-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}

.ng-perks-subtitle {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 0 28px !important;
  line-height: 1.5 !important;
}

.ng-perks-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
}

.ng-perk-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.ng-perk-icon-wrap {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #10b981 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.ng-perk-content h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 3px !important;
}

.ng-perk-content p {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.ng-perks-review {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  margin-top: auto !important;
}

.ng-review-stars {
  color: #00b67a !important;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  margin-bottom: 6px !important;
}

.ng-review-quote {
  font-size: 13px !important;
  font-style: italic !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0 10px !important;
  line-height: 1.4 !important;
}

.ng-review-author {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
}

.ng-author-name {
  font-weight: 700 !important;
  color: #ffffff !important;
}

.ng-author-tag {
  color: #10b981 !important;
  background: rgba(16, 185, 129, 0.15) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   AUTHENTICATED CUSTOMER PORTAL LAYOUT
   ========================================================================== */

.ng-account-portal-layout {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 36px !important;
  align-items: start !important;
}

/* Sidebar Navigation */
.ng-account-sidebar {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  position: sticky !important;
  top: 90px !important;
}

.ng-sidebar-user-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.ng-user-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #163231 0%, #ea6518 100%) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 10px rgba(22, 50, 49, 0.2) !important;
}

.ng-user-info {
  overflow: hidden !important;
}

.ng-user-greeting {
  font-size: 12px !important;
  color: #64748b !important;
  display: block !important;
}

.ng-user-name {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 1px 0 3px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.ng-member-tag {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #166534 !important;
  background: #f0fdf4 !important;
  padding: 1px 7px !important;
  border-radius: 4px !important;
}

.ng-sidebar-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.ng-menu-item {
  border-radius: 12px !important;
  transition: all 0.15s ease !important;
}

.ng-menu-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.ng-menu-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #64748b !important;
  transition: color 0.15s ease !important;
}

.ng-menu-text {
  flex: 1 !important;
}

.ng-menu-chevron {
  color: #cbd5e1 !important;
  transition: transform 0.15s ease !important;
}

.ng-menu-item:hover .ng-menu-link {
  background: #f8fafc !important;
  color: #163231 !important;
}

.ng-menu-item:hover .ng-menu-chevron {
  transform: translateX(2px) !important;
  color: #163231 !important;
}

.ng-menu-item.is-active .ng-menu-link,
.woocommerce-MyAccount-navigation-link.is-active .ng-menu-link {
  background: #163231 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(22, 50, 49, 0.18) !important;
}

.ng-menu-item.is-active .ng-menu-icon,
.woocommerce-MyAccount-navigation-link.is-active .ng-menu-icon {
  color: #10b981 !important;
}

.ng-menu-item.is-active .ng-menu-chevron,
.woocommerce-MyAccount-navigation-link.is-active .ng-menu-chevron {
  color: #ffffff !important;
}

/* Sidebar Help Box */
.ng-sidebar-help-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 16px !important;
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

.ng-help-icon {
  margin-top: 2px !important;
}

.ng-help-text h5 {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 2px !important;
}

.ng-help-text p {
  font-size: 12px !important;
  color: #64748b !important;
  margin: 0 0 8px !important;
  line-height: 1.35 !important;
}

.ng-help-link {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #ea6518 !important;
  text-decoration: none !important;
}

.ng-help-link:hover {
  text-decoration: underline !important;
}

/* ==========================================================================
   MAIN DASHBOARD HUB & METRICS
   ========================================================================== */

.ng-account-main-content {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 36px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.ng-dashboard-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}

/* Welcome Hero in Dashboard */
.ng-dashboard-hero {
  background: linear-gradient(135deg, #163231 0%, #1b3b3a 100%) !important;
  color: #ffffff !important;
  border-radius: 18px !important;
  padding: 28px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.ng-dashboard-hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 10px !important;
}

.ng-pulse-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4) !important;
}

.ng-dashboard-hero-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 6px !important;
}

.ng-dashboard-hero-text {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  max-width: 540px !important;
}

.ng-btn-outline-logout {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.ng-btn-outline-logout:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  border-color: #ef4444 !important;
  color: #fca5a5 !important;
}

/* 4-Stat Metric Cards Grid */
.ng-dash-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

.ng-dash-card {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 24px !important;
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.2s ease !important;
}

.ng-dash-card:hover {
  background: #ffffff !important;
  border-color: #163231 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

.ng-dash-card.bg-highlight:hover {
  border-color: #ea6518 !important;
}

.ng-dash-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
}

.ng-dash-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ng-dash-icon.bg-orange { background: #fff7ed !important; }
.ng-dash-icon.bg-emerald { background: #ecfdf5 !important; }
.ng-dash-icon.bg-blue { background: #eff6ff !important; }
.ng-dash-icon.bg-purple { background: #f5f3ff !important; }

.ng-dash-pill {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 3px 9px !important;
  border-radius: 999px !important;
}

.ng-dash-pill.highlight {
  color: #ea6518 !important;
  background: #fff7ed !important;
  border-color: #ffedd5 !important;
}

.ng-dash-card-body h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 6px !important;
}

.ng-dash-card-body p {
  font-size: 13.5px !important;
  color: #64748b !important;
  margin: 0 0 16px !important;
  line-height: 1.45 !important;
}

.ng-dash-card-footer {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #163231 !important;
  margin-top: auto !important;
}

.ng-dash-card.bg-highlight .ng-dash-card-footer {
  color: #ea6518 !important;
}

/* Promo Banner in Dashboard */
.ng-dash-promo-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
  border: 1.5px solid #a7f3d0 !important;
  border-radius: 18px !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.ng-promo-badge {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #065f46 !important;
  background: #d1fae5 !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  margin-bottom: 6px !important;
}

.ng-dash-promo-text h3 {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #064e3b !important;
  margin: 0 0 4px !important;
}

.ng-dash-promo-text p {
  font-size: 13.5px !important;
  color: #047857 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.ng-promo-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #163231 !important;
  color: #ffffff !important;
  padding: 11px 20px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 12px rgba(22, 50, 49, 0.2) !important;
}

.ng-promo-btn:hover {
  background: #ea6518 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(234, 101, 24, 0.3) !important;
}

/* ==========================================================================
   ORDERS HISTORY TABLE & BADGES
   ========================================================================== */

.ng-orders-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.ng-orders-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.ng-section-title {
  font-family: var(--font-heading, 'Outfit', sans-serif) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 4px !important;
}

.ng-section-desc {
  font-size: 14px !important;
  color: #64748b !important;
  margin: 0 !important;
}

.ng-btn-sm-secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  background: #f1f5f9 !important;
  color: #163231 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.ng-btn-sm-secondary:hover {
  background: #163231 !important;
  color: #ffffff !important;
}

.ng-orders-table-wrapper {
  overflow-x: auto !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
}

.ng-styled-table {
  width: 100% !important;
  border-collapse: collapse !important;
  text-align: left !important;
  font-size: 14px !important;
}

.ng-styled-table th {
  background: #f8fafc !important;
  padding: 14px 18px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.ng-styled-table td {
  padding: 16px 18px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  color: #1e293b !important;
  vertical-align: middle !important;
}

.ng-styled-table tr:last-child td {
  border-bottom: none !important;
}

.ng-styled-table tr:hover td {
  background: #fcfdfe !important;
}

.ng-order-num-link {
  color: #163231 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.ng-order-num-link:hover {
  color: #ea6518 !important;
  text-decoration: underline !important;
}

/* Status Badges */
.ng-status-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
}

.status-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
}

.status-completed {
  background: #ecfdf5 !important;
  color: #059669 !important;
}
.status-completed .status-dot { background: #059669 !important; }

.status-processing {
  background: #eff6ff !important;
  color: #2563eb !important;
}
.status-processing .status-dot { background: #2563eb !important; }

.status-on-hold {
  background: #fffbeb !important;
  color: #d97706 !important;
}
.status-on-hold .status-dot { background: #d97706 !important; }

.status-pending {
  background: #fff7ed !important;
  color: #ea580c !important;
}
.status-pending .status-dot { background: #ea580c !important; }

.status-cancelled,
.status-failed {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}
.status-cancelled .status-dot,
.status-failed .status-dot { background: #dc2626 !important; }

.ng-order-total-price {
  font-weight: 700 !important;
  color: #111827 !important;
}

.ng-order-actions-flex {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.ng-table-btn {
  display: inline-block !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  background: #163231 !important;
  color: #ffffff !important;
  transition: all 0.15s ease !important;
}

.ng-table-btn:hover {
  background: #ea6518 !important;
  color: #ffffff !important;
}

.ng-table-btn.cancel {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}

.ng-table-btn.cancel:hover {
  background: #dc2626 !important;
  color: #ffffff !important;
}

/* Empty Orders Card */
.ng-empty-orders-card {
  text-align: center !important;
  padding: 48px 20px !important;
  background: #f8fafc !important;
  border: 1.5px dashed #cbd5e1 !important;
  border-radius: 18px !important;
}

.ng-empty-icon {
  margin-bottom: 14px !important;
}

.ng-empty-orders-card h4 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 6px !important;
}

.ng-empty-orders-card p {
  font-size: 14px !important;
  color: #64748b !important;
  margin: 0 !important;
  max-width: 440px !important;
  margin: 0 auto !important;
  line-height: 1.45 !important;
}

/* ==========================================================================
   ADDRESSES & EDIT ACCOUNT FORMS STYLING
   ========================================================================== */

.woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  margin-top: 16px !important;
}

.woocommerce-Address {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.woocommerce-Address-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.woocommerce-Address-title h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 !important;
}

.woocommerce-Address-title .edit {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ea6518 !important;
  text-decoration: none !important;
}

.woocommerce-Address-title .edit:hover {
  text-decoration: underline !important;
}

.woocommerce-Address address {
  font-style: normal !important;
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

/* Edit Account Form */
.woocommerce-EditAccountForm {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.woocommerce-EditAccountForm .woocommerce-form-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin: 0 !important;
}

.woocommerce-EditAccountForm .woocommerce-form-row label {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
}

.woocommerce-EditAccountForm .woocommerce-Input,
.woocommerce-address-fields input,
.woocommerce-address-fields select {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  font-family: inherit !important;
  color: #111827 !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.woocommerce-EditAccountForm .woocommerce-Input:focus,
.woocommerce-address-fields input:focus,
.woocommerce-address-fields select:focus {
  background: #ffffff !important;
  border-color: #163231 !important;
  box-shadow: 0 0 0 3px rgba(22, 50, 49, 0.1) !important;
}

.woocommerce-EditAccountForm fieldset {
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin: 16px 0 !important;
  background: #fcfdfe !important;
}

.woocommerce-EditAccountForm fieldset legend {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  padding: 0 10px !important;
}

.woocommerce-EditAccountForm .woocommerce-Button,
.woocommerce-address-fields .button {
  height: 48px !important;
  background: #163231 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0 28px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover,
.woocommerce-address-fields .button:hover {
  background: #ea6518 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE TWEAKS FOR MY ACCOUNT
   ========================================================================== */

@media (max-width: 960px) {
  .ng-auth-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .ng-account-portal-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .ng-account-sidebar {
    position: static !important;
  }
  .ng-sidebar-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .ng-sidebar-menu li:last-child {
    grid-column: span 2 !important;
  }
  .ng-dash-grid {
    grid-template-columns: 1fr !important;
  }
  .woocommerce-Addresses {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .ng-account-hero-banner {
    padding: 28px 0 32px !important;
  }
  .ng-account-page-title {
    font-size: 26px !important;
  }
  .ng-account-page-subtitle {
    font-size: 13.5px !important;
  }
  .ng-account-main-wrapper {
    padding: 24px 0 48px !important;
  }
  .ng-auth-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .ng-perks-card {
    padding: 28px 20px !important;
    border-radius: 18px !important;
  }
  .ng-account-main-content {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }
  .ng-sidebar-menu {
    grid-template-columns: 1fr !important;
  }
  .ng-sidebar-menu li:last-child {
    grid-column: auto !important;
  }
  .ng-dashboard-hero {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
  }
  .ng-dash-promo-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .ng-dash-promo-btn-wrap {
    width: 100% !important;
  }
  .ng-promo-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
