/*
Theme Name: FabPro Hair
Theme URI: https://fabprohair.co.uk
Author: Critical Media
Author URI: https://criticalmedia.co.uk
Description: Custom WooCommerce theme for FabPro Hair Supplies. Authorised UK stockist of Merlin Professional.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: fabpro
*/

/* ==========================================================================
   DESIGN SYSTEM
   ========================================================================== */

:root {
  --p:    #6b3fa0;
  --pm:   #8b52c8;
  --pl:   #f4eeff;
  --pp:   #faf7ff;
  --gold: #d4a843;
  --goldl:#fdf6e3;
  --red:  #d63031;
  --redl: #fff5f5;
  --green:#00b894;
  --brd:  #ebebeb;
  --brdm: #d0d0d0;
  --tx:   #1a1a2e;
  --txm:  #4a4a6a;
  --txs:  #8888aa;
  --bg:   #ffffff;
  --bgs:  #fafafa;
  --max:  1380px;
  --g:    clamp(20px, 3vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }

/* Hard reset — override anything WordPress/Bootstrap sets on body */
html, body {
  text-align: left !important;
}

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--tx);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.fp-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--g);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  padding: 0;
}

.btn-primary  { background: var(--p);   color: #fff;      padding: 14px 30px; }
.btn-primary:hover { background: var(--pm); color: #fff; }
.btn-outline  { background: transparent; color: var(--p);  padding: 13px 30px; border: 1.5px solid var(--p); }
.btn-outline:hover { background: var(--p); color: #fff; }
.btn-ghost    { background: rgba(255,255,255,.12); color: #fff; padding: 13px 26px; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-gold     { background: var(--gold); color: #fff;      padding: 14px 32px; }
.btn-gold:hover { background: #bc942f; color: #fff; }
.btn-red      { background: var(--red);  color: #fff;      padding: 12px 26px; }
.btn-red:hover { background: #b52828; color: #fff; }
.btn-dark     { background: var(--tx);   color: #fff;      padding: 12px 22px; }
.btn-dark:hover { background: var(--p); color: #fff; }

/* ==========================================================================
   ANNOUNCE BAR
   ========================================================================== */

.fp-announce {
  background: var(--p);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: .02em;
}
.fp-ann-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fp-ann-txt  { color: rgba(255,255,255,.9); }
.fp-ann-sep  { color: rgba(255,255,255,.35); margin: 0 12px; }

/* ==========================================================================
   BOOTSTRAP / WORDPRESS RESETS
   ========================================================================== */

/* Search form — strip WordPress form chrome */
.fp-search form { margin: 0; padding: 0; display: contents; }
.fp-search input[type="search"],
.fp-search input[type="text"] {
  width: 100%; height: 46px;
  border: none !important;
  border-bottom: 1.5px solid #d0d0d0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 18px 0 42px !important;
  font-size: 14px !important;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
  color: var(--tx) !important;
  background: transparent !important;
}
.fp-search input[type="search"]:focus,
.fp-search input[type="text"]:focus { border-bottom-color: var(--p) !important; }
.fp-search input::placeholder { color: var(--txs); }
.fp-search button[type="submit"],
.fp-search input[type="submit"] { display: none !important; }

/* Trade accounts link — inline white text */
.fp-trade-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: color .15s;
}
.fp-trade-link:hover { color: #fff; }
.fp-trade-link svg {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,.75);
  fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.fp-nav {
  background: #fff;
  border-bottom: 1px solid var(--brd);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .2s;
}
.fp-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.fp-nav-row {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}

/* Primary desktop nav — sits between search and utility buttons */
.fp-primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 16px 0 auto;
  flex-shrink: 0;
}
.fp-primary-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-primary-nav li a {
  display: block;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--tx);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.fp-primary-nav li a:hover,
.fp-primary-nav li.current-menu-item a,
.fp-primary-nav li.current_page_item a { color: var(--p); }

/* Logo */
.fp-logo {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--tx);
  white-space: nowrap;
  margin-right: 40px;
  flex-shrink: 0;
}
.fp-logo em { color: var(--p); font-style: normal; }

/* Search */
.fp-search { position: relative; flex: 1; max-width: 440px; margin-right: auto; }
.fp-search svg {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  stroke: var(--txs); fill: none; stroke-width: 1.8;
  pointer-events: none;
}
.fp-search input {
  width: 100%; height: 46px;
  border: none; border-bottom: 1.5px solid #d0d0d0;
  border-radius: 0;
  padding: 0 18px 0 42px;
  font-size: 14px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: var(--tx); background: transparent; outline: none;
  transition: border-color .18s;
}
.fp-search input:focus { border-bottom-color: var(--p); }
.fp-search input::placeholder { color: var(--txs); }

/* Hamburger */
.fp-hburg {
  background: none; border: none;
  padding: 8px; display: flex;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.fp-hburg span {
  width: 22px; height: 1.5px;
  background: var(--tx); display: block;
  transition: background .15s;
}
.fp-hburg:hover span { background: var(--p); }

/* Mobile bag + hamburger — pushed right on mobile */
.fp-mob-bag { margin-left: auto !important; margin-right: 8px; position: relative; }
.fp-mob-bag svg { width: 22px; height: 22px; }
.fp-mob-bag .fp-badge { position: absolute; top: -4px; right: -8px; }

/* Utility buttons */
.fp-utils { display: flex; align-items: center; margin-left: 28px; flex-shrink: 0; }
.fp-usep  { width: 1px; height: 18px; background: var(--brd); margin: 0 8px; }
.fp-ubtn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 300;
  color: var(--txm); background: none; border: none;
  padding: 8px 6px; cursor: pointer;
  transition: color .18s; white-space: nowrap; position: relative;
}
.fp-ubtn:hover { color: var(--p); }
.fp-ubtn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.4; flex-shrink: 0; }
.fp-ulbl   { font-size: 14px; font-weight: 300; }
.fp-flag {
  width: 22px; height: 22px; overflow: hidden; position: relative;
  border: 1px solid var(--brd); flex-shrink: 0;
  filter: grayscale(1); transition: filter .2s;
}
.fp-flag svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; }
.fp-ubtn:hover .fp-flag { filter: none; }
.fp-badge {
  min-width: 18px; height: 18px;
  background: var(--p); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 0;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px; margin-left: -2px;
}

/* ==========================================================================
   DROPDOWNS
   ========================================================================== */

.fp-dd-wrap { position: relative; }
.fp-dd {
  position: absolute; top: 100%; right: 0;
  min-width: 210px; z-index: 1100;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s, visibility .15s;
  padding-top: 12px; /* bridge gap */
}
.fp-dd-inner {
  background: #fff; border: 1px solid var(--brd);
  box-shadow: 0 8px 32px rgba(0,0,0,.11); overflow: hidden;
}
.fp-dd-wrap:hover > .fp-dd,
.fp-dd:hover {
  opacity: 1; visibility: visible; pointer-events: all;
}
.fp-dd.bag-dd { width: 320px; right: -10px; }
.fp-dd-hd {
  padding: 10px 16px 4px;
  font-size: 10px; color: var(--txs);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
}
.fp-dd-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 14px;
  color: var(--txm); cursor: pointer;
  transition: background .15s;
}
.fp-dd-row:hover { background: var(--pp); color: var(--p); }
.fp-dd-row.on    { color: var(--p); font-weight: 500; }
.fp-dd-row svg   { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; flex-shrink: 0; }
.fp-dd-flag {
  width: 22px; height: 15px; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.fp-dd-flag svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.fp-dd-user { padding: 13px 16px; border-bottom: 1px solid var(--brd); }
.fp-dd-user p    { font-size: 14px; font-weight: 600; color: var(--tx); margin: 0 0 2px; }
.fp-dd-user span { font-size: 12px; color: var(--txs); }
.fp-dd-div    { height: 1px; background: var(--brd); margin: 4px 0; }
.fp-dd-danger { color: var(--red) !important; }
.fp-dd-danger:hover { background: var(--redl) !important; }

/* ==========================================================================
   BAG DROPDOWN
   ========================================================================== */

.bag-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--brd);
}
.bag-hd-t { font-size: 13px; font-weight: 700; color: var(--tx); letter-spacing: .06em; text-transform: uppercase; }
.bag-hd-c { font-size: 12px; color: var(--txs); }
.bag-items { max-height: 220px; overflow-y: auto; }
.bag-item  { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--brd); }
.bag-thumb { width: 46px; height: 46px; background: var(--pl); flex-shrink: 0; }
.bag-thumb.c2 { background: #eef4ff; }
.bag-brand { font-size: 9px; letter-spacing: .12em; color: var(--p); font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.bag-name  { font-size: 12px; font-weight: 500; color: var(--tx); line-height: 1.3; margin-bottom: 1px; }
.bag-meta  { font-size: 11px; color: var(--txs); }
.bag-price { font-size: 14px; font-weight: 700; color: var(--tx); flex-shrink: 0; }
.bag-rm    { background: none; border: none; cursor: pointer; padding: 4px; display: flex; color: var(--txs); }
.bag-rm:hover { color: var(--red); }
.bag-rm svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.bag-ft { padding: 14px 16px; background: var(--bgs); }
.bag-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.bag-sub span:first-child { font-size: 13px; color: var(--txm); }
.bag-sub span:last-child  { font-size: 17px; font-weight: 700; color: var(--tx); }
.del-bar       { height: 4px; background: var(--brd); margin-bottom: 5px; overflow: hidden; }
.del-bar-fill  { height: 100%; background: var(--green); width: 66%; }
.del-note {
  font-size: 11px; color: var(--txs); margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}
.del-note svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ==========================================================================
   CATEGORY NAV
   ========================================================================== */

.fp-catnav {
  background: #fff;
  border-bottom: 1px solid var(--brd);
  position: sticky; top: 77px; z-index: 990;
}
.fp-catnav-row {
  display: flex; align-items: center;
  height: 52px; overflow-x: auto; gap: 0;
}
.fp-catnav-row::-webkit-scrollbar { display: none; }

.fp-clink {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 400;
  color: var(--txm);
  padding: 0 18px; height: 52px;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: all .18s; cursor: pointer; position: relative;
}
.fp-clink:first-child { padding-left: 0; }
.fp-clink:hover, .fp-clink.on { color: var(--p); border-bottom-color: var(--p); }
.fp-clink.outlet { color: var(--red); font-weight: 600; }
.fp-clink.outlet:hover { border-bottom-color: var(--red); }
.fp-clink svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Category sub-dropdown */
.fp-cdd-wrap { position: relative; }
.fp-cdd {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--brd);
  min-width: 180px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  z-index: 1000; padding: 6px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s, visibility .15s, transform .15s;
  pointer-events: none;
}
.fp-cdd-wrap:hover > .fp-cdd, .fp-cdd:hover {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.fp-cdd a { display: block; padding: 9px 18px; font-size: 13px; color: var(--txm); transition: all .15s; }
.fp-cdd a:hover { background: var(--pp); color: var(--p); }

/* ==========================================================================
   OFFCANVAS (MOBILE NAV)
   ========================================================================== */

.fp-offcanvas .offcanvas-header { background: var(--p); padding: 20px 24px; }
.fp-mlogo {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: .18em; color: #fff;
}
.fp-mlogo em { color: var(--gold); font-style: normal; }
.fp-offcanvas .nav-link {
  font-size: 15px; color: var(--tx);
  padding: 14px 0; border-bottom: 1px solid var(--brd); font-weight: 400;
}
.fp-offcanvas .nav-link:hover { color: var(--p); }
.fp-offcanvas .nav-link.outlet { color: var(--red); font-weight: 600; }

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */

.fp-hero {
  position: relative; overflow: hidden;
  height: 57vh; min-height: 340px;
}
.fp-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(28px, 4vh, 50px);
  opacity: 0; transition: opacity .7s; pointer-events: none;
}
.fp-slide.active { opacity: 1; pointer-events: all; }
.fp-hero-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#1a0a33,#4a2080);
  display: flex; align-items: center; justify-content: center;
}
.fp-hero-img-bg span {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); text-align: center;
}
/* Hero text — padding left/right to clear the arrow buttons */
.fp-slide .fp-wrap {
  position: relative; z-index: 2;
  width: 100%;
  text-align: left;
  padding-left: clamp(80px, 9vw, 120px);
  padding-right: clamp(80px, 9vw, 120px);
}

/* Promo banners — larger text on desktop and mobile */
.fp-promo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.fp-promo-sub {
  font-size: 14px; color: rgba(255,255,255,.75); font-weight: 300;
  line-height: 1.6; margin-bottom: 16px; max-width: 340px;
}
.fp-hero-eye {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.fp-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400; color: #fff; line-height: 1.06;
  margin-bottom: 16px;
}
.fp-hero h1 em { font-style: italic; color: var(--gold); }
.fp-hero p {
  font-size: 15px; color: rgba(255,255,255,.7);
  font-weight: 300; max-width: 520px; line-height: 1.75;
  margin-bottom: 32px;
}
.fp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Prev/next */
.fp-hero-prev, .fp-hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background .18s;
}
.fp-hero-prev:hover, .fp-hero-next:hover { background: rgba(255,255,255,.28); }
.fp-hero-prev { left: clamp(16px,3vw,40px); }
.fp-hero-next { right: clamp(16px,3vw,40px); }
.fp-hero-prev svg, .fp-hero-next svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }

/* Dots */
.fp-hero-dots {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.fp-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: background .18s, transform .18s;
}
.fp-dot.active { background: #fff; transform: scale(1.3); }

/* ==========================================================================
   USP BAR
   ========================================================================== */

.fp-usp { background: var(--bgs); border-bottom: 1px solid var(--brd); }
.fp-usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fp-usp-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--brd);
}
.fp-usp-item:last-child { border-right: none; }
.fp-usp-ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--p); flex-shrink: 0;
}
.fp-usp-ico svg { width: 22px; height: 22px; }
.fp-usp-t { font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 2px; }
.fp-usp-s { font-size: 12px; color: var(--txs); font-weight: 300; }

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.fp-sh {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 24px;
}
.fp-st {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400; color: var(--tx);
}
.fp-sl { font-size: 12px; color: var(--p); font-weight: 500; }
.fp-sl:hover { text-decoration: underline; }

/* ==========================================================================
   CATEGORY TILES
   ========================================================================== */

.fp-cats { padding: 56px 0; background: #fff; }
.fp-cat-grid {
  display: grid;
  gap: 16px; height: 360px;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* default: 4 equal — overridden by data-layout */
}
/* Layout variants — applied via data-layout attribute on .fp-cat-grid */
.fp-cat-grid[data-layout="equal"][data-count="2"] { grid-template-columns: 1fr 1fr; height: 360px; }
.fp-cat-grid[data-layout="equal"][data-count="3"] { grid-template-columns: 1fr 1fr 1fr; height: 360px; }
.fp-cat-grid[data-layout="equal"][data-count="4"] { grid-template-columns: 1fr 1fr 1fr 1fr; height: 320px; }
.fp-cat-grid[data-layout="feature-l"]             { grid-template-columns: 2fr 1fr 1fr; height: 360px; }
.fp-cat-grid[data-layout="feature-r"]             { grid-template-columns: 1fr 1fr 2fr; height: 360px; }
.fp-cat-grid[data-layout="half-half"]             { grid-template-columns: 1fr 1fr; height: 360px; }
.fp-cat-tile {
  position: relative; overflow: hidden;
  background: var(--pl); display: flex; align-items: flex-end;
  text-decoration: none; transition: transform .2s;
}
.fp-cat-tile:hover { transform: scale(1.01); }
.fp-cat-body {
  position: relative; z-index: 1;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  width: 100%;
}
.fp-cat-name  { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 400; color: #fff; }
.fp-cat-count { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 300; }

/* ==========================================================================
   OUTLET STRIP
   ========================================================================== */

.fp-outlet {
  background: var(--tx);
  padding: 20px 0;
}
.fp-outlet-row {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.fp-outlet-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 4px 12px; flex-shrink: 0;
}
.fp-outlet-copy { display: flex; flex-direction: column; gap: 3px; }
.fp-outlet-copy strong { font-size: 14px; color: #fff; font-weight: 600; }
.fp-outlet-copy span   { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 300; }

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.fp-prods { padding: 56px 0; background: var(--bgs); }
.fp-pgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fp-pcard {
  background: #fff; border: 1px solid var(--brd);
  display: flex; flex-direction: column;
  transition: border-color .18s, transform .18s;
}
.fp-pcard:hover { border-color: var(--gold); transform: translateY(-3px); }
.fp-pimg {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--pl); position: relative;
}
.fp-pimg.c2 { background: #eef4ff; }
.fp-pimg.c3 { background: #edf5ee; }
.fp-pimg.c4 { background: #fdf3e7; }
.fp-pbadge {
  position: absolute; top: 8px; left: 8px;
  background: var(--p); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 8px;
}
.fp-pwish {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.fp-pwish:hover { background: #fff; }
.fp-pwish svg { width: 14px; height: 14px; stroke: var(--txs); fill: none; stroke-width: 1.5; }
.fp-pbody { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.fp-pbrnd { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 5px; }
.fp-pname { font-size: 13px; font-weight: 400; color: var(--tx); line-height: 1.35; flex: 1; margin-bottom: 8px; }
.fp-pprice { font-size: 16px; font-weight: 600; color: var(--tx); }
.fp-pwas  { font-size: 12px; color: var(--txs); text-decoration: line-through; font-weight: 300; margin-left: 6px; }
.fp-psave { font-size: 11px; color: var(--red); font-weight: 600; margin-left: 6px; }

/* Qty toggle + add-to-bag row spacing */
.fp-pcard .fp-qty { margin-right: 10px; }

/* Qty toggle */
.fp-qty { display: inline-flex; align-items: center; border: 1px solid var(--brd); height: 36px; }
/* Quantity buttons — purple background, white text */
.fp-qty-btn {
  width: 32px; height: 36px;
  background: var(--p); border: none; font-size: 16px;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.fp-qty-btn:hover { background: var(--pm); color: #fff; }
.fp-qty-val {
  width: 32px; height: 36px; text-align: center;
  font-size: 13px; font-weight: 500; color: var(--tx);
  border: none; border-left: 1px solid var(--brd); border-right: 1px solid var(--brd);
  background: #fff; outline: none; padding: 0; font-family: inherit;
}

/* ==========================================================================
   PROMO STRAP
   ========================================================================== */

.fp-promo-strap { border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); padding: 32px 0; }
.fp-promo-strap .fp-wrap { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; /* default 2-up */ }
.fp-promo-strap .fp-wrap[data-per-row="1"] { grid-template-columns: 1fr; }
.fp-promo-strap .fp-wrap[data-per-row="2"] { grid-template-columns: 1fr 1fr; }
.fp-promo-strap .fp-wrap[data-per-row="3"] { grid-template-columns: 1fr 1fr 1fr; }
.fp-promo-strap .fp-wrap[data-per-row="4"] { grid-template-columns: 1fr 1fr 1fr 1fr; }
.fp-promo-panel {
  min-height: 340px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; cursor: pointer;
}
.fp-promo-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.fp-promo-bg span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); text-align: center; }
.fp-promo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 55%, transparent 100%); }
.fp-promo-content { position: relative; z-index: 1; padding: 20px 26px; width: 100%; }
.fp-promo-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 5px; display: block;
}
.fp-promo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 6px;
}
.fp-promo-sub {
  font-size: 12px; color: rgba(255,255,255,.7); font-weight: 300;
  line-height: 1.5; margin-bottom: 14px; max-width: 340px;
}

/* ==========================================================================
   MERLIN PROFESSIONAL + TRADE SECTION
   ========================================================================== */

.fp-mt-section { background: #fff; border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); }
.fp-mt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.fp-merlin-col { padding: 64px 48px; border-right: 1px solid var(--brd); }
.fp-trade-col  { padding: 64px 48px; }
.fp-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--p);
  display: block; margin-bottom: 12px;
}
.fp-teye {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--p);
  margin-bottom: 12px;
}
.fp-mt-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400; color: var(--tx); line-height: 1.15; margin-bottom: 16px;
}
.fp-mt-heading em { color: var(--p); font-style: italic; }
.fp-mt-body { font-size: 13px; color: var(--txm); line-height: 1.9; font-weight: 300; margin-bottom: 14px; }
.fp-mt-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; margin-top: 8px; }
.fp-mt-icon-item { display: flex; align-items: flex-start; gap: 10px; }
.fp-mt-icon-box {
  width: 30px; height: 30px; background: transparent;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fp-mt-icon-title { font-size: 12px; font-weight: 500; color: var(--tx); margin-bottom: 2px; }
.fp-mt-icon-sub   { font-size: 11px; color: var(--txs); font-weight: 300; }
.fp-mt-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.fp-mt-stats { margin-bottom: 28px; }
.fp-tstats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.fp-tstat  { border: 1px solid var(--brd); padding: 14px 16px; }
.fp-tval   { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 400; color: var(--p); }
.fp-tlbl   { font-size: 11px; color: var(--txs); font-weight: 300; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.fp-nl {
  background: linear-gradient(135deg, var(--p), var(--pm));
  padding: 64px 0; position: relative; overflow: hidden;
}
.fp-nl::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px);
}
.fp-nlgrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.fp-nl h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400; color: #fff; margin-bottom: 10px;
}
.fp-nl p { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.7; }
.fp-nlform { display: flex; gap: 0; }
.fp-nlinp {
  flex: 1; min-width: 0;
  border: none; border-bottom: 2px solid rgba(255,255,255,.4);
  background: transparent; padding: 13px 0;
  font-size: 14px; color: #fff;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  outline: none;
}
.fp-nlinp::placeholder { color: rgba(255,255,255,.45); }
.fp-nlinp:focus { border-bottom-color: rgba(255,255,255,.9); }
.fp-nlbtn {
  background: #fff; color: var(--p);
  border: none; padding: 13px 28px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer;
  transition: background .18s;
}
.fp-nlbtn:hover { background: var(--pl); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.fp-footer { background: #fff; border-top: 1px solid var(--brd); padding: 52px 0 0; }
.fp-fgrid  {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
.fp-flogo {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: .18em;
  color: var(--tx); display: block; margin-bottom: 14px;
  white-space: nowrap;
}
.fp-flogo em { color: var(--p); font-style: normal; }
.fp-fabout { font-size: 12px; color: var(--txs); font-weight: 300; line-height: 1.8; margin-bottom: 18px; max-width: 260px; }
.fp-fsoc   { display: flex; gap: 12px; margin-bottom: 0; }
.fp-fsoc a {
  width: 34px; height: 34px;
  border: 1px solid var(--brd);
  display: flex; align-items: center; justify-content: center;
  color: var(--txs); transition: all .15s;
}
.fp-fsoc a:hover { border-color: var(--p); color: var(--p); }
.fp-fsoc svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.fp-fct {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--tx);
  margin-bottom: 14px;
}
.fp-flinks { list-style: none; padding: 0; margin: 0; }
.fp-flinks li { margin-bottom: 8px; }
.fp-flinks a { font-size: 13px; color: var(--txs); font-weight: 300; transition: color .15s; }
.fp-flinks a:hover { color: var(--p); }
.fp-fcontact { display: flex; flex-direction: column; gap: 8px; }
.fp-fci { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--txs); font-weight: 300; }
.fp-fci svg { width: 13px; height: 13px; stroke: var(--p); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.fp-ftrust {
  border-top: 1px solid var(--brd);
  padding: 18px 0;
}
.fp-ftr { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fp-fcopy { font-size: 12px; color: var(--txs); }
.fp-fpay  { display: flex; gap: 8px; align-items: center; }
.fp-pchip {
  background: var(--bgs); border: 1px solid var(--brd);
  padding: 4px 10px;
  font-size: 10px; font-weight: 700; color: var(--txm); letter-spacing: .06em;
}
.fp-flegal { display: flex; gap: 24px; }
.fp-flegal a { font-size: 12px; color: var(--txs); transition: color .18s; }
.fp-flegal a:hover { color: var(--p); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .fp-logo { font-size: 24px; margin-right: 24px; }
  .fp-fgrid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
  .fp-merlin-col, .fp-trade-col { padding: 48px 32px; }
}

@media (max-width: 991px) {
  .fp-search  { display: none; }
  .fp-logo    { margin-right: 0; }
  .fp-utils .fp-ulbl { display: none; }
  .fp-catnav  { display: none; }
  .fp-cat-grid,
  .fp-cat-grid[data-layout],
  .fp-cat-grid[data-layout][data-count] { grid-template-columns: 1fr 1fr; height: auto; gap: 10px; }
  /* Tablet portrait: keep category tiles tall enough to read */
  .fp-cat-grid .fp-cat-tile { min-height: 240px; }
  .fp-fgrid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .fp-mt-grid { grid-template-columns: 1fr; }
  .fp-merlin-col { border-right: none; border-bottom: 1px solid var(--brd); padding: 48px 32px; }
  .fp-trade-col  { padding: 48px 32px; }
  .fp-nlgrid { grid-template-columns: 1fr; gap: 28px; }
  .fp-pgrid  { grid-template-columns: repeat(2, 1fr); }
  .fp-usp-grid { grid-template-columns: 1fr 1fr; }
  .fp-usp-item:nth-child(2) { border-right: none; }
}

@media (max-width: 767px) {
  .fp-nav-row { height: 64px; }
  .fp-logo    { font-size: 20px; margin-right: 0; }
  .fp-usep    { display: none; }
  /* Category grid: first tile full width, second and third side by side */
  .fp-cat-grid { grid-template-columns: 1fr 1fr; height: auto; gap: 10px; }
  .fp-cat-grid .fp-cat-tile { min-height: 160px; }
  .fp-promo-strap .fp-wrap,
  .fp-promo-strap .fp-wrap[data-per-row],
  .fp-promo-grid { grid-template-columns: 1fr !important; }
  .fp-mt-icons  { grid-template-columns: 1fr; }
  .fp-mt-btns   { flex-direction: column; }
  .fp-mt-btns .btn { width: 100%; justify-content: center; }
  .fp-fgrid {
    grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .fp-fgrid > div:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--brd);
    padding-bottom: 28px; margin-bottom: 8px;
  }
  /* Best sellers: single column stacked on mobile */
  .fp-pgrid { grid-template-columns: 1fr; gap: 16px; }
  /* Promo banners: larger text on mobile */
  .fp-promo-title { font-size: 22px; }
  .fp-promo-sub   { font-size: 14px; }

  /* Hero — left-align text, hide nav arrows, bigger text */
  .fp-slide .fp-wrap { padding-left: var(--g); padding-right: var(--g); text-align: left; }
  .fp-hero-prev, .fp-hero-next { display: none; }
  .fp-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .fp-hero p { font-size: 14px; max-width: none; }
  .fp-hero-eye { font-size: 11px; }

  /* General mobile text — slightly bigger to fill space */
  .fp-usp-t { font-size: 14px; }
  .fp-usp-s { font-size: 13px; }
  .fp-cat-name { font-size: 20px; }
  .fp-st { font-size: clamp(24px, 7vw, 30px); }
  .fp-mt-body { font-size: 14px; }
  .fp-nl p { font-size: 14px; }
}

@media (max-width: 480px) {
  .fp-usp-grid { grid-template-columns: 1fr; }
  .fp-usp-item { border-right: none; border-bottom: 1px solid var(--brd); }
  .fp-fgrid   { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* Outlet strap */
.fp-outlet-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; width: 100%;
}
.fp-outlet-badge {
  font-size: 18px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.2); padding: 8px 20px; flex-shrink: 0;
}
.fp-outlet-copy {
  display: flex; flex-direction: column; gap: 6px; flex: 1; text-align: left;
}
.fp-outlet-copy strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 28px); color: #fff; font-weight: 400; line-height: 1.2;
}
.fp-outlet-copy span {
  font-size: 14px; color: rgba(255,255,255,.75); font-weight: 300;
}
.fp-outlet-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; padding: 14px 28px; border: 1.5px solid rgba(255,255,255,.6);
  text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .18s;
}
.fp-outlet-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

@media (max-width: 767px) {
  .fp-outlet-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fp-outlet-btn   { width: 100%; justify-content: center; }
  .fp-outlet-badge { font-size: 16px; }
}



.fp-basket { padding: 40px 0 80px; background: var(--bgs); }

/* Steps bar */
.fp-steps { background: #fff; border-bottom: 1px solid var(--brd); padding: 0; }
.fp-steps-inner { display: flex; align-items: stretch; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fp-step {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; font-size: 12px; font-weight: 400;
  color: var(--txs); white-space: nowrap;
  border-bottom: 2px solid transparent;
  flex-shrink: 0; letter-spacing: .04em;
}
.fp-step.done { color: var(--p); }
.fp-step.done .fp-step-num { background: var(--p); color: #fff; border-color: var(--p); }
.fp-step.active { color: var(--tx); font-weight: 500; border-bottom-color: var(--p); }
.fp-step.active .fp-step-num { border-color: var(--p); color: var(--p); }
.fp-step-num {
  width: 22px; height: 22px;
  border: 1.5px solid var(--brdm);
  border-radius: 0 !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; flex-shrink: 0;
}
.fp-step-sep { color: var(--brdm); padding: 0 4px; flex-shrink: 0; }

/* Basket sections */
.fp-basket-section { background: #fff; border: 1px solid var(--brd); margin-bottom: 16px; }
.fp-basket-hd {
  padding: 18px 24px; border-bottom: 1px solid var(--brd);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx);
  display: flex; align-items: center; justify-content: space-between;
}
.fp-basket-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 24px; border-bottom: 1px solid var(--brd);
}
.fp-basket-item:last-child { border-bottom: none; }
.fp-basket-img {
  width: 88px; height: 88px; flex-shrink: 0;
  background: var(--pl); border: 1px solid var(--brd);
  position: relative; overflow: hidden;
}
.fp-basket-img.c2 { background: #eef4ff; }
.fp-basket-img.c3 { background: #edf5ee; }
.fp-basket-img.c4 { background: #fdf3e7; }
.fp-basket-info { flex: 1; min-width: 0; }
.fp-basket-brand { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--p); margin-bottom: 4px; }
.fp-basket-name { font-size: 14px; font-weight: 400; color: var(--tx); line-height: 1.3; margin-bottom: 6px; }
.fp-basket-meta { font-size: 11px; color: var(--txs); font-weight: 300; margin-bottom: 12px; }
.fp-basket-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fp-basket-remove {
  font-size: 11px; font-weight: 400; color: var(--txs);
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline; transition: color .15s;
}
.fp-basket-remove:hover { color: var(--red); }
.fp-basket-save {
  font-size: 11px; font-weight: 400; color: var(--txs);
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline; transition: color .15s;
}
.fp-basket-save:hover { color: var(--p); }
.fp-basket-price { text-align: right; flex-shrink: 0; }
.fp-basket-price-now { font-size: 16px; font-weight: 600; color: var(--tx); }
.fp-basket-price-was { font-size: 12px; color: var(--txs); text-decoration: line-through; font-weight: 300; margin-bottom: 2px; }
.fp-basket-price-save { font-size: 10px; font-weight: 600; background: var(--redl); color: var(--red); padding: 2px 6px; display: inline-block; margin-top: 4px; }

/* Basket qty controls */
.fp-bqty { display: inline-flex; align-items: center; border: 1px solid var(--brd); height: 34px; }
.fp-bqty-btn {
  width: 32px; height: 34px; background: none; border: none;
  border-radius: 0 !important;
  font-size: 16px; color: var(--txm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; transition: color .15s;
}
.fp-bqty-btn:hover { color: var(--p); }
.fp-bqty-val {
  width: 36px; height: 34px; text-align: center;
  font-size: 13px; font-weight: 500; color: var(--tx);
  border: none; border-left: 1px solid var(--brd); border-right: 1px solid var(--brd);
  border-radius: 0 !important;
  background: #fff; outline: none; padding: 0;
  font-family: inherit; -moz-appearance: textfield;
}
.fp-bqty-val::-webkit-outer-spin-button,
.fp-bqty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Promo code row */
.fp-promo-row { display: flex; gap: 0; margin-bottom: 0; }
.fp-promo-input {
  flex: 1; border: 1.5px solid var(--brd); border-right: none;
  border-radius: 0 !important;
  padding: 11px 14px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 300; outline: none; background: #fff; color: var(--tx);
  box-shadow: none !important;
}
.fp-promo-input:focus { border-color: var(--p); }
.fp-promo-input::placeholder { color: var(--txs); }

/* Order summary panel (basket) */
.fp-sum-panel { background: #fff; border: 1px solid var(--brd); padding: 24px; position: sticky; top: 92px; }
.fp-sum-hd {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tx); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--brd);
}
.fp-sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; }
.fp-sum-row span:first-child { color: var(--txm); font-weight: 300; }
.fp-sum-row span:last-child  { font-weight: 400; color: var(--tx); }
.fp-sum-row.saving span:last-child { color: var(--red); }
.fp-sum-row.total { border-top: 1.5px solid var(--brd); margin-top: 8px; padding-top: 14px; }
.fp-sum-row.total span:first-child { font-weight: 600; font-size: 14px; color: var(--tx); }
.fp-sum-row.total span:last-child  { font-size: 22px; font-weight: 600; color: var(--tx); }

/* Delivery threshold bar */
.fp-del-bar-wrap { background: var(--pp); border: 1px solid var(--brdm); padding: 13px 16px; margin-bottom: 16px; }
.fp-del-bar-msg { font-size: 12px; color: var(--p); font-weight: 400; margin-bottom: 8px; }
.fp-del-bar-msg strong { font-weight: 600; }
.fp-del-track { height: 4px; background: var(--brd); position: relative; }
.fp-del-fill { height: 4px; background: var(--p); }

/* Upsell strip */
.fp-upsell { background: #fff; border: 1px solid var(--brd); padding: 20px 24px; margin-bottom: 16px; }
.fp-upsell-hd { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx); margin-bottom: 16px; }
.fp-upsell-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }

/* Upsell cards — compact version of fp-pcard */
.fp-upsell-card {
  border: 1px solid var(--brd); background: #fff;
  display: flex; flex-direction: column;
  cursor: pointer; transition: border-color .18s, transform .18s;
  overflow: hidden;
}
.fp-upsell-card:hover { border-color: var(--p); transform: translateY(-2px); }
.fp-upsell-img {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--pl); position: relative;
}
.fp-upsell-img.c2 { background: #eef4ff; }
.fp-upsell-img.c3 { background: #edf5ee; }
.fp-upsell-img.c4 { background: #fdf3e7; }
.fp-upsell-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-upsell-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.fp-upsell-brand { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 3px; }
.fp-upsell-name  { font-size: 11px; font-weight: 400; color: var(--tx); line-height: 1.35; flex: 1; margin-bottom: 6px; }
.fp-upsell-price { font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 8px; }
.fp-upsell-add {
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--p); background: none; border: 1px solid var(--p);
  cursor: pointer; padding: 5px 0; font-family: inherit; width: 100%;
  transition: background .15s, color .15s;
}
.fp-upsell-add:hover { background: var(--p); color: #fff; }

/* Tab panel content formatting */
.fp-tab-panel ul, .fp-tab-panel ol { padding-left: 20px; margin: 12px 0; }
.fp-tab-panel li { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.9; margin-bottom: 4px; }
.fp-tab-panel em, .fp-tab-panel i { color: var(--txs); font-style: italic; }
.fp-tab-panel p { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.9; margin-bottom: 12px; }
.fp-tab-panel strong { font-weight: 600; color: var(--tx); }

/* Trust strip (basket + checkout) */
.fp-co-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--brd); }
.fp-co-trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--txs); font-weight: 300; }
.fp-co-trust-item svg { width: 13px; height: 13px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Guest checkout selector */
.fp-guest-opt { border: 1.5px solid var(--brd); padding: 18px 16px; cursor: pointer; transition: border-color .15s, background .15s; text-align: center; background: #fff; }
.fp-guest-opt:hover { border-color: var(--p); background: var(--pp); }
.fp-guest-opt.selected { border-color: var(--p); background: var(--pp); }
.fp-guest-opt-ico { margin-bottom: 10px; }
.fp-guest-opt-ico svg { width: 22px; height: 22px; stroke: var(--p); fill: none; stroke-width: 1.5; }
.fp-guest-opt-title { font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 4px; }
.fp-guest-opt-sub   { font-size: 11px; color: var(--txs); font-weight: 300; line-height: 1.5; }
.fp-guest-sub { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--brd); }
.fp-guest-sub.open { display: block; }
.fp-guest-field { margin-bottom: 14px; }
.fp-guest-label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--txm); margin-bottom: 7px;
}
.fp-guest-input {
  width: 100%; border: 1.5px solid var(--brd); border-radius: 0 !important;
  padding: 11px 13px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 300; outline: none; color: var(--tx);
  transition: border-color .15s; box-shadow: none !important; background: #fff;
}
.fp-guest-input:focus { border-color: var(--p); }

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

.fp-checkout { padding: 40px 0 80px; background: var(--bgs); }

/* Checkout sections */
.fp-co-section { background: #fff; border: 1px solid var(--brd); padding: 28px; margin-bottom: 16px; }
.fp-co-section-hd {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 400; color: var(--tx);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--brd);
}

/* Form fields */
.fp-field { margin-bottom: 16px; }
.fp-label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--txm); margin-bottom: 7px;
}
.fp-input {
  width: 100%; border: 1.5px solid var(--brd); border-radius: 0 !important;
  padding: 12px 14px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 300;
  outline: none; background: #fff; color: var(--tx);
  transition: border-color .15s; box-shadow: none !important;
}
.fp-input:focus { border-color: var(--p); }
.fp-input::placeholder { color: var(--txs); }
.fp-input.filled { border-color: var(--brdm); }
.fp-select {
  width: 100%; border: 1.5px solid var(--brd); border-radius: 0 !important;
  padding: 12px 36px 12px 14px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 300; outline: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E") no-repeat right 12px center #fff;
  appearance: none; cursor: pointer; color: var(--tx); box-shadow: none !important;
}

/* Delivery options */
.fp-delivery-opt {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--brd); padding: 14px 16px;
  cursor: pointer; margin-bottom: 10px; transition: border-color .15s;
}
.fp-delivery-opt:hover { border-color: var(--brdm); }
.fp-delivery-opt.selected { border-color: var(--p); background: var(--pp); }
.fp-delivery-opt input { accent-color: var(--p); width: 16px; height: 16px; flex-shrink: 0; }
.fp-delivery-label { flex: 1; }
.fp-delivery-name { font-size: 13px; font-weight: 500; color: var(--tx); margin-bottom: 2px; }
.fp-delivery-sub  { font-size: 11px; color: var(--txs); font-weight: 300; }
.fp-delivery-price { font-size: 14px; font-weight: 500; color: var(--tx); flex-shrink: 0; }

/* Saved addresses */
.fp-saved-addr {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px solid var(--brd); padding: 14px 16px;
  cursor: pointer; margin-bottom: 10px; transition: border-color .15s;
}
.fp-saved-addr:hover { border-color: var(--brdm); }
.fp-saved-addr.selected { border-color: var(--p); background: var(--pp); }

/* Payment tabs */
.fp-pay-tabs { display: flex; border-bottom: 1.5px solid var(--brd); margin-bottom: 20px; }
.fp-pay-tab {
  flex: 1; padding: 12px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 0 !important;
  background: #fafafa; color: var(--txs); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px; transition: all .15s;
}
.fp-pay-tab.active { background: #fff; color: var(--p); border-bottom-color: var(--p); }
.fp-pay-tab:not(:last-child) { border-right: 1px solid var(--brd); }

/* WC payment — hide default structure, JS builds tab UI above */
.fp-co-payment #payment { background: none; border: none; padding: 0; }
.fp-co-payment .wc_payment_methods { list-style: none; padding: 0; margin: 0; }

/* Hide all radios and labels — tabs replace them */
.fp-co-payment .wc_payment_method > input[type="radio"] { position: absolute !important; opacity: 0 !important; width: 0 !important; height: 0 !important; pointer-events: none !important; }
.fp-co-payment .wc_payment_method > label { display: none !important; }

/* Hide inactive payment boxes, show active */
.fp-co-payment .wc_payment_method { border: none; margin: 0; padding: 0; }
.fp-co-payment .wc_payment_method .payment_box { display: none !important; }
.fp-co-payment .wc_payment_method.fp-active .payment_box { display: block !important; }

/* Payment content panels */
.fp-co-payment .payment_box { padding: 0; font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.7; }
.fp-co-payment .payment_box::before { display: none !important; }
.fp-co-payment .payment_box p { font-size: 12px; color: var(--txs); margin-bottom: 10px; }
.fp-co-payment .payment_method_ppcp-gateway .payment_box > p { display: none; }

/* JS-built tab bar */
.fp-pay-tabs-built { display: flex; border-bottom: 1.5px solid var(--brd); margin-bottom: 20px; }
.fp-pay-tabs-built .fp-pay-tab {
  flex: 1; padding: 12px;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  border: none; background: #fafafa; color: var(--txs); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px; transition: all .15s;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  white-space: nowrap;
}
.fp-pay-tabs-built .fp-pay-tab:not(:last-child) { border-right: 1px solid var(--brd); }
.fp-pay-tabs-built .fp-pay-tab.active { background: #fff; color: var(--p); border-bottom-color: var(--p); }
.fp-pay-tabs-built .fp-pay-tab img { max-height: 18px; width: auto; }

/* Place order button */
.fp-co-payment .form-row.place-order { padding: 0; margin: 20px 0 0; }
.fp-co-payment #place_order {
  width: 100%; height: 52px; background: var(--p); color: #fff; border: none;
  border-radius: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background .18s;
}
.fp-co-payment #place_order:hover { background: var(--pm); }

/* Terms & conditions */
.fp-co-payment .woocommerce-terms-and-conditions-wrapper { font-size: 12px; color: var(--txs); font-weight: 300; margin-bottom: 14px; line-height: 1.7; }
.fp-co-payment .woocommerce-terms-and-conditions-wrapper a { color: var(--p); }

/* Stripe element min height */
.fp-co-payment .wc-stripe-upe-element { min-height: 40px; }

/* PayPal smart button wrapper */
.fp-co-payment .ppc-button-wrapper { margin-top: 12px; }

/* PayPal gateway button — override WC/PayPal default styles */
#fpPayPanels [id*="pay-paypal"] .paypal-button-container,
#fpPayPanels [id*="pay-ppcp"] .paypal-button-container { margin: 0 auto; max-width: 400px; }

/* Apple Pay gateway button — override Stripe default styles */
#fpPayPanels [id*="pay-apple"] .stripe-apple-pay-button-container,
#fpPayPanels [id*="pay-stripe_apple_pay"] button { margin: 0 auto; }

/* Strip WC gateway description padding when we wrap it ourselves */
#fpPayPanels .payment_box { background: transparent !important; padding: 0 !important; margin: 0 !important; }
#fpPayPanels .woocommerce-SavedPaymentMethods-saveNew { font-size: 13px; font-weight: 300; }
/* Stripe "Save my info" — collapsed by default, expand on click */
#fpPayPanels .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] { display: none; }
#fpPayPanels .woocommerce-SavedPaymentMethods-saveNew label { cursor: pointer; color: var(--p); user-select: none; }

/* PayPal / Apple Pay provider panel */
.fp-pay-provider-panel { padding: 28px 20px; background: var(--bgs); text-align: center; }
.fp-pay-provider-msg { font-size: 13px; color: var(--txm); font-weight: 300; margin-bottom: 18px; }

/* Order summary (checkout sidebar) */
.fp-order-sum {
  background: #fff; border: 1px solid var(--brd); padding: 24px;
  position: sticky; top: 92px;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}
.fp-order-sum:hover { box-shadow: 0 4px 24px rgba(107,63,160,.08); }
.fp-sum-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--brd); }
.fp-sum-img { width: 52px; height: 52px; flex-shrink: 0; background: var(--pl); position: relative; }
.fp-sum-img.c2 { background: #eef4ff; }
.fp-sum-img.c3 { background: #edf5ee; }
.fp-sum-qty {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--txm); color: #fff;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.fp-sum-name  { font-size: 12px; font-weight: 400; color: var(--tx); line-height: 1.4; flex: 1; }
.fp-sum-brand { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 2px; }
.fp-sum-meta  { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 2px; }
.fp-sum-price { font-size: 13px; font-weight: 500; color: var(--tx); flex-shrink: 0; }
.fp-sum-rows  { margin-top: 4px; }

/* Responsive basket/checkout */
@media (max-width: 991px) { .fp-upsell-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) {
  .fp-basket { padding: 24px 0 56px; }
  .fp-basket-item { gap: 12px; }
  .fp-basket-img { width: 68px; height: 68px; }
  .fp-basket-name { font-size: 13px; }
  .fp-sum-panel { position: static; }
  .fp-order-sum { position: static; }
  .fp-step { padding: 12px 16px; font-size: 11px; }
  .fp-co-section { padding: 20px; }
  .fp-checkout { padding: 24px 0 56px; }
}

/* Nuclear WooCommerce border-radius reset — nothing gets rounded corners */
.woocommerce *,
.woocommerce-page *,
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-cart *,
.wc-block-checkout * {
  border-radius: 0 !important;
}
/* Override WooCommerce quantity input specifically */
.woocommerce .quantity input.qty,
.woocommerce input.qty,
input.qty {
  border-radius: 0 !important;
  border: 1px solid var(--brd) !important;
  box-shadow: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  text-align: center !important;
  -moz-appearance: textfield !important;
}

/* ==========================================================================
   ACCOUNT PAGE
   ========================================================================== */

.fp-account { padding: 48px 0 80px; background: var(--bgs); }

/* Sidebar nav */
.fp-acc-nav { background: #fff; border: 1px solid var(--brd); overflow: hidden; position: sticky; top: 92px; }
.fp-acc-user { padding: 24px; border-bottom: 1px solid var(--brd); display: flex; align-items: center; gap: 14px; }
.fp-acc-avatar {
  width: 48px; height: 48px; background: var(--p);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; font-weight: 400; color: #fff; flex-shrink: 0; letter-spacing: .04em;
}
.fp-acc-name  { font-size: 14px; font-weight: 500; color: var(--tx); margin-bottom: 2px; }
.fp-acc-email { font-size: 11px; color: var(--txs); font-weight: 300; }

.fp-acc-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; font-size: 13px; font-weight: 400;
  color: var(--txm); cursor: pointer;
  border: none; border-left: 3px solid transparent;
  background: none; width: 100%; text-align: left;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  transition: all .15s; text-decoration: none;
}
.fp-acc-link:hover { color: var(--p); background: var(--pp); }
.fp-acc-link.active { color: var(--p); font-weight: 500; border-left-color: var(--p); background: var(--pp); }
.fp-acc-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.fp-acc-link-sep { height: 1px; background: var(--brd); margin: 4px 0; }
.fp-acc-badge {
  margin-left: auto; background: var(--p); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px; letter-spacing: .04em;
}

/* Panels */
.fp-acc-panel { display: none; }
.fp-acc-panel.active { display: block; }
.fp-acc-section { background: #fff; border: 1px solid var(--brd); padding: 28px; margin-bottom: 16px; }
.fp-acc-section-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--brd);
}
.fp-acc-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 400; color: var(--tx);
}
.fp-acc-section-action {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--p); background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

/* Order rows */
.fp-order-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--brd); flex-wrap: wrap;
}
.fp-order-row:last-child { border-bottom: none; }
.fp-order-thumb {
  width: 44px; height: 44px;
  border: 1px solid var(--brd); background: var(--pl); flex-shrink: 0;
}
.fp-order-thumb.c2 { background: #eef4ff; }
.fp-order-thumb.c3 { background: #edf5ee; }
.fp-order-thumb.c4 { background: #fdf3e7; }
.fp-order-ref  { font-size: 13px; font-weight: 500; color: var(--tx); }
.fp-order-date { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 2px; }
.fp-order-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px;
}
.fp-order-status.dispatched  { background: #e8f8f2; color: #00875a; }
.fp-order-status.processing  { background: var(--pp); color: var(--p); }
.fp-order-status.delivered   { background: #f0f0f0; color: var(--txm); }
.fp-order-status.cancelled   { background: var(--redl); color: var(--red); }
.fp-order-total { font-size: 14px; font-weight: 600; color: var(--tx); margin-left: auto; }

/* Wishlist */
.fp-wish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fp-wish-card { border: 1px solid var(--brd); overflow: hidden; transition: border-color .15s; }
.fp-wish-card:hover { border-color: var(--p); }
.fp-wish-img { aspect-ratio: 1/1; background: var(--pl); position: relative; }
.fp-wish-img.c2 { background: #eef4ff; }
.fp-wish-img.c3 { background: #edf5ee; }
.fp-wish-img.c4 { background: #fdf3e7; }
.fp-wish-remove {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.fp-wish-remove svg { width: 12px; height: 12px; stroke: var(--txs); fill: none; stroke-width: 2; }
.fp-wish-remove:hover svg { stroke: var(--red); }
.fp-wish-body  { padding: 12px 14px; }
.fp-wish-brand { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 3px; }
.fp-wish-name  { font-size: 12px; font-weight: 400; color: var(--tx); line-height: 1.35; margin-bottom: 6px; }
.fp-wish-price { font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 10px; }
.fp-wish-actions { display: flex; gap: 6px; }

/* Address cards */
.fp-addr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fp-addr-card { border: 1.5px solid var(--brd); padding: 20px; position: relative; transition: border-color .15s; }
.fp-addr-card.default { border-color: var(--p); background: var(--pp); }
.fp-addr-card:hover { border-color: var(--brdm); }
.fp-addr-default-badge {
  position: absolute; top: 0; right: 0;
  background: var(--p); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px;
}
.fp-addr-label  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txs); margin-bottom: 8px; }
.fp-addr-name   { font-size: 13px; font-weight: 500; color: var(--tx); margin-bottom: 4px; }
.fp-addr-body   { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.7; margin-bottom: 14px; }
.fp-addr-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fp-addr-action {
  font-size: 11px; font-weight: 500; color: var(--p);
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; text-decoration: underline;
}
.fp-addr-action.del { color: var(--txs); }
.fp-addr-action.del:hover { color: var(--red); }
.fp-addr-add {
  border: 1.5px dashed var(--brd);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 32px 20px; cursor: pointer;
  transition: border-color .15s; min-height: 160px; background: none;
  width: 100%; font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}
.fp-addr-add:hover { border-color: var(--p); }
.fp-addr-add svg { width: 20px; height: 20px; stroke: var(--txs); fill: none; stroke-width: 1.5; }
.fp-addr-add span { font-size: 12px; font-weight: 500; color: var(--txs); }

/* Mobile account tabs */
.fp-acc-mob-tabs {
  display: none; overflow-x: auto; background: #fff;
  border-bottom: 1px solid var(--brd); -webkit-overflow-scrolling: touch;
}
.fp-acc-mob-tab {
  padding: 12px 16px; font-size: 11px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--txs); white-space: nowrap;
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}
.fp-acc-mob-tab.active { color: var(--p); border-bottom-color: var(--p); }

/* Account responsive */
@media (max-width: 991px) { .fp-wish-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) {
  .fp-account { padding: 0 0 56px; }
  .fp-acc-nav { display: none; }
  .fp-acc-mob-tabs { display: flex; }
  .fp-acc-section { padding: 20px; }
  .fp-wish-grid { grid-template-columns: 1fr; }
  .fp-addr-grid { grid-template-columns: 1fr; }
  .fp-order-total { width: 100%; }
}
@media (max-width: 480px) { .fp-wish-grid { grid-template-columns: 1fr; gap: 10px; } }

/* ==========================================================================
   PRODUCT PAGE — tabs, USPs, wishlist btn
   ========================================================================== */

.fp-tabs {
  display: flex; border-bottom: 1.5px solid var(--brd);
  gap: 0; margin-bottom: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.fp-tab {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 20px; border: none; border-bottom: 2.5px solid transparent;
  background: none; color: var(--txs); cursor: pointer; white-space: nowrap;
  transition: all .15s; margin-bottom: -1.5px;
}
.fp-tab:hover { color: var(--p); }
.fp-tab.active { color: var(--p); border-bottom-color: var(--p); font-weight: 500; }
.fp-tab-panel { display: none; }
.fp-tab-panel.active { display: block; }


.fp-prod-usps {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin: 20px 0;
}
.fp-prod-usp {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--txm); font-weight: 300;
}
.fp-prod-usp svg {
  width: 14px; height: 14px; stroke: var(--p); fill: none;
  stroke-width: 1.5; flex-shrink: 0;
}

.fp-add-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; }
.fp-add-row .fp-qty { height: 48px; }
.fp-add-row .fp-qty-btn { width: 38px; height: 48px; }
.fp-add-row .fp-qty-val { width: 38px; height: 48px; font-size: 15px; }

.fp-wish-btn {
  width: 48px; height: 48px; border: 1.5px solid var(--brd); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: border-color .15s;
}
.fp-wish-btn:hover { border-color: var(--p); }
.fp-wish-btn svg { width: 18px; height: 18px; stroke: var(--txs); fill: none; stroke-width: 1.5; }

/* Add to bag button — outline style with adding/added states
   Uses #addToBagBtn for specificity over Bootstrap .btn */
#addToBagBtn { transition: all .18s; }
#addToBagBtn.fp-atb-adding,
#addToBagBtn.fp-atb-adding:hover,
#addToBagBtn.fp-atb-adding:focus,
#addToBagBtn.fp-atb-adding:active,
#addToBagBtn.fp-atb-adding:focus-visible {
  background: var(--p) !important; color: #fff !important;
  border-color: var(--p) !important; pointer-events: none;
}
#addToBagBtn.fp-atb-added,
#addToBagBtn.fp-atb-added:hover,
#addToBagBtn.fp-atb-added:focus,
#addToBagBtn.fp-atb-added:active,
#addToBagBtn.fp-atb-added:focus-visible {
  background: var(--gold) !important; color: #fff !important;
  border-color: var(--gold) !important; pointer-events: none;
}

@media (max-width: 767px) {
  .fp-prod-usps { grid-template-columns: 1fr; }
  .fp-add-row { flex-direction: column; }
  .fp-add-row .btn-outline, .fp-add-row .fp-wish-btn { width: 100%; }
  .fp-add-row .fp-qty { width: 100%; justify-content: center; }
}

/* ==========================================================================
   PHASE 3 — INFO PAGES (delivery, returns, faq, contact, track)
   ========================================================================== */

.fp-info-hero {
  background: linear-gradient(135deg, #5c2d91 0%, #7c42b8 100%);
  padding: 64px 0 52px; position: relative; overflow: hidden;
}
.fp-info-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.fp-info-hero-inner { position: relative; z-index: 1; }
.fp-info-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); display: block; margin-bottom: 12px;
}
.fp-info-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px,4.5vw,54px); font-weight: 400; color: #fff;
  line-height: 1.15; margin-bottom: 14px;
}
.fp-info-hero p { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 300; max-width: 520px; line-height: 1.75; margin: 0; }
.fp-info-body { padding: 64px 0 80px; background: var(--bgs); }
.fp-info-main { background: #fff; border: 1px solid var(--brd); padding: 40px 44px; }
.fp-info-main h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 400;
  color: var(--tx); margin: 36px 0 14px; padding-top: 32px; border-top: 1px solid var(--brd);
}
.fp-info-main h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.fp-info-main h3 { font-size: 14px; font-weight: 600; color: var(--tx); margin: 20px 0 8px; letter-spacing: .03em; }
.fp-info-main p { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.9; margin-bottom: 14px; }
.fp-info-main ul, .fp-info-main ol { padding-left: 20px; margin-bottom: 14px; }
.fp-info-main ul li, .fp-info-main ol li { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.9; margin-bottom: 4px; }
.fp-info-main table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 13px; }
.fp-info-main th { background: var(--pp); padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--p); border: 1px solid var(--brd); }
.fp-info-main td { padding: 11px 14px; border: 1px solid var(--brd); color: var(--txm); font-weight: 300; }
.fp-info-main td:first-child { font-weight: 400; color: var(--tx); }
/* Gutenberg button overrides inside content pages */
.fp-info-main .wp-block-button__link,
.fp-info-main .wp-block-button .wp-element-button {
  background: var(--p) !important; color: #fff !important;
  border-radius: 0 !important; border: none !important;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  padding: 14px 30px !important; transition: background .18s !important;
}
.fp-info-main .wp-block-button__link:hover,
.fp-info-main .wp-block-button .wp-element-button:hover {
  background: var(--pm) !important;
}
.fp-info-callout { background: var(--pp); border: 1px solid var(--brdm); border-left: 3px solid var(--p); padding: 16px 20px; margin: 20px 0; }
.fp-info-callout p { margin: 0; color: var(--p); font-weight: 400; font-size: 13px; }
.fp-info-aside { background: #fff; border: 1px solid var(--brd); padding: 24px; position: sticky; top: 92px; }
.fp-info-aside-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txs); margin-bottom: 12px; }
.fp-info-aside-link { display: block; font-size: 13px; color: var(--txm); font-weight: 300; padding: 9px 0; border-bottom: 1px solid var(--brd); text-decoration: none; transition: color .15s; }
.fp-info-aside-link:last-child { border-bottom: none; }
.fp-info-aside-link:hover, .fp-info-aside-link.active { color: var(--p); }
.fp-info-aside-link.active { font-weight: 500; }

/* FAQ accordion */
.fp-faq-item { border-bottom: 1px solid var(--brd); }
.fp-faq-q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 0; background: none; border: none; text-align: left; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; color: var(--tx);
  gap: 16px;
}
.fp-faq-q svg { width: 16px; height: 16px; stroke: var(--p); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .2s; }
.fp-faq-q.open svg { transform: rotate(45deg); }
.fp-faq-a { display: none; padding: 0 0 18px; font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.9; }
.fp-faq-a.open { display: block; }

/* ==========================================================================
   PHASE 3 — EDITORIAL PAGES (about, science, howto, ingredients)
   ========================================================================== */

.fp-pg-hero {
  position: relative; overflow: hidden; padding: 80px 0;
  background: linear-gradient(150deg, #1a0a33 0%, #3a1a6a 55%, #6b3fa0 100%);
}
.fp-pg-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px);
}
.fp-pg-hero-inner { position: relative; z-index: 1; }
.fp-pg-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.fp-pg-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px,5vw,62px); font-weight: 400; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.fp-pg-hero h1 em { font-style: italic; color: var(--gold); }
.fp-pg-hero p { font-size: 15px; color: rgba(255,255,255,.65); font-weight: 300; max-width: 600px; line-height: 1.85; margin: 0; }
.fp-pg-section { padding: 72px 0; border-bottom: 1px solid var(--brd); }
.fp-pg-section:last-of-type { border-bottom: none; }
.fp-pg-section.alt { background: var(--bgs); }
.fp-pg-eyebrow-sm { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--p); display: block; margin-bottom: 12px; }
.fp-pg-h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px,3.5vw,44px); font-weight: 400; color: var(--tx); line-height: 1.2; margin-bottom: 20px; }
.fp-pg-h2 em { color: var(--p); font-style: italic; }
.fp-pg-body { font-size: 14px; color: var(--txm); font-weight: 300; line-height: 1.9; margin-bottom: 14px; }
.fp-img-ph { background: var(--pl); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--txs); font-weight: 300; letter-spacing: .05em; }

/* Stats bar */
.fp-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--brd); }
.fp-stat-item { padding: 28px 24px; border-right: 1px solid var(--brd); text-align: center; }
.fp-stat-item:last-child { border-right: none; }
.fp-stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 400; color: var(--p); line-height: 1; margin-bottom: 6px; }
.fp-stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); }

/* Feature card grid (Why us / What's different) */
.fp-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.fp-feat-card { background: #fff; border: 1px solid var(--brd); padding: 28px; }
.fp-feat-ico { width: 44px; height: 44px; background: var(--pp); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fp-feat-ico svg { width: 20px; height: 20px; stroke: var(--p); fill: none; stroke-width: 1.5; }
.fp-feat-title { font-size: 14px; font-weight: 600; color: var(--tx); margin-bottom: 8px; }
.fp-feat-body { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.8; }

/* Ingredient cards */
.fp-ing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.fp-ing-card { border: 1px solid var(--brd); padding: 22px 24px; background: #fff; }
.fp-ing-name { font-size: 14px; font-weight: 600; color: var(--tx); margin-bottom: 6px; }
.fp-ing-latin { font-size: 11px; font-weight: 300; color: var(--txs); font-style: italic; margin-bottom: 10px; }
.fp-ing-body { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.75; }
.fp-ing-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: var(--pp); color: var(--p); padding: 3px 8px; margin-top: 10px; }

/* How-to accordion */
.fp-how-product { border: 1px solid var(--brd); margin-bottom: 2px; background: #fff; }
.fp-how-hd { display: flex; align-items: center; gap: 16px; padding: 18px 24px; width: 100%; background: none; border: none; cursor: pointer; transition: background .12s; }
.fp-how-hd:hover { background: var(--bgs); }
.fp-how-hd.open { background: var(--pp); border-bottom: 1px solid var(--brd); }
.fp-how-img { width: 52px; height: 52px; background: var(--pl); flex-shrink: 0; overflow: hidden; }
.fp-how-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-how-name { font-size: 14px; font-weight: 500; color: var(--tx); flex: 1; text-align: left; }
.fp-how-sub { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 2px; }
.fp-how-toggle { width: 28px; height: 28px; border: 1px solid var(--brd); background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 0; }
.fp-how-toggle svg { width: 14px; height: 14px; stroke: var(--p); fill: none; stroke-width: 2; transition: transform .2s; }
.fp-how-hd.open .fp-how-toggle svg { transform: rotate(45deg); }
.fp-how-steps { display: none; padding: 28px 24px; border-top: 1px solid var(--brd); }
.fp-how-steps.open { display: block; }
.fp-how-step { display: flex; gap: 16px; margin-bottom: 20px; }
.fp-how-step:last-child { margin-bottom: 0; }
.fp-how-step-num { width: 26px; height: 26px; background: var(--p); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.fp-how-step-title { font-size: 13px; font-weight: 600; color: var(--tx); margin-bottom: 4px; }
.fp-how-step-body { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.8; }

/* ==========================================================================
   PHASE 3 — NEWS / JOURNAL
   ========================================================================== */

.fp-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fp-news-card { background: #fff; border: 1px solid var(--brd); display: flex; flex-direction: column; transition: border-color .18s, transform .18s; text-decoration: none; }
.fp-news-card:hover { border-color: var(--p); transform: translateY(-3px); }
.fp-news-img { aspect-ratio: 16/9; overflow: hidden; background: var(--pl); }
.fp-news-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.fp-news-cat { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--p); margin-bottom: 8px; display: block; }
.fp-news-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 400; color: var(--tx); line-height: 1.3; margin-bottom: 10px; }
.fp-news-excerpt { font-size: 12px; color: var(--txs); font-weight: 300; line-height: 1.7; margin-bottom: 14px; flex: 1; }
.fp-news-meta { font-size: 11px; color: var(--txs); font-weight: 300; }

/* Article body */
.fp-article-body { font-size: 14px; color: var(--txm); font-weight: 300; line-height: 1.95; }
.fp-article-body h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 400; color: var(--tx); margin: 32px 0 14px; }
.fp-article-body h3 { font-size: 15px; font-weight: 600; color: var(--tx); margin: 24px 0 10px; }
.fp-article-body p { margin-bottom: 18px; }
.fp-article-body ul, .fp-article-body ol { padding-left: 22px; margin-bottom: 18px; }
.fp-article-body li { margin-bottom: 6px; }
.fp-article-body blockquote { background: var(--pp); border-left: 3px solid var(--p); padding: 18px 22px; margin: 28px 0; font-style: italic; color: var(--p); font-size: 15px; font-weight: 400; line-height: 1.75; }
.fp-article-body blockquote cite { display: block; font-size: 11px; font-style: normal; color: var(--txs); margin-top: 8px; font-weight: 300; }
.fp-article-body img { width: 100%; height: auto; margin: 24px 0; }
.fp-article-body a { color: var(--p); }

/* ==========================================================================
   PHASE 3 — RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  .fp-info-body { padding: 40px 0 56px; }
  .fp-info-aside { position: static; margin-bottom: 16px; }
  .fp-pg-section { padding: 48px 0; }
  .fp-stat-grid { grid-template-columns: repeat(2,1fr); }
  .fp-stat-item:nth-child(2) { border-right: none; }
  .fp-news-grid, .fp-feat-grid { grid-template-columns: repeat(2,1fr); }
  .fp-ing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .fp-info-main { padding: 24px 20px; }
  .fp-news-grid, .fp-feat-grid { grid-template-columns: 1fr; }
  .fp-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   OUTLET PAGE
   ========================================================================== */

.fp-outlet-hero {
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 55%, #e8442f 100%);
  padding: 64px 0 52px; position: relative; overflow: hidden;
}
.fp-outlet-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .12;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.fp-outlet-hero-inner { position: relative; z-index: 1; }
.fp-outlet-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); display: block; margin-bottom: 12px; }
.fp-outlet-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px,5vw,62px); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.fp-outlet-hero h1 em { font-style: italic; color: var(--gold); }
.fp-outlet-hero-sub { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 300; max-width: 520px; line-height: 1.75; margin-bottom: 20px; }
.fp-outlet-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.fp-outlet-trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.75); font-weight: 300; }
.fp-outlet-trust-item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Countdown strip */
.fp-countdown-strip { background: var(--tx); padding: 13px 0; }
.fp-countdown-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.fp-countdown-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.fp-countdown-units { display: flex; align-items: center; gap: 8px; }
.fp-cd-unit { text-align: center; }
.fp-cd-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 400; color: #fff; line-height: 1; display: block; }
.fp-cd-lbl { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.fp-cd-sep { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; color: rgba(255,255,255,.25); line-height: 1; }

/* Outlet info bar */
.fp-outlet-info { background: var(--bgs); border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); padding: 24px 0; }
.fp-outlet-info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.fp-outlet-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 0 24px; border-right: 1px solid var(--brd); }
.fp-outlet-info-item:last-child { border-right: none; }
.fp-outlet-info-item svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.fp-outlet-info-title { font-size: 12px; font-weight: 600; color: var(--tx); margin-bottom: 3px; }
.fp-outlet-info-body { font-size: 11px; color: var(--txs); font-weight: 300; line-height: 1.55; }

/* ==========================================================================
   ORDER CONFIRMATION PAGE
   ========================================================================== */

.fp-confirm { padding: 0 0 80px; background: var(--bgs); }
.fp-confirm-hero {
  background: linear-gradient(135deg, #5c2d91 0%, #7c42b8 100%);
  padding: 52px 0; position: relative; overflow: hidden; text-align: center; margin-bottom: 40px;
}
.fp-confirm-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px);
}
.fp-confirm-hero > * { position: relative; z-index: 1; }
.fp-confirm-tick { width: 64px; height: 64px; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.fp-confirm-tick svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.5; }
.fp-confirm-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px,4vw,44px); font-weight: 400; color: #fff; margin-bottom: 10px; }
.fp-confirm-hero p { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 300; max-width: 480px; margin: 0 auto 14px; line-height: 1.7; }
.fp-order-ref { display: inline-block; margin-top: 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); padding: 8px 20px; font-size: 12px; font-weight: 600; letter-spacing: .1em; color: #fff; }
.fp-del-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fp-del-block { background: var(--bgs); border: 1px solid var(--brd); padding: 16px 18px; }
.fp-del-block-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--txs); margin-bottom: 8px; }
.fp-del-block-val { font-size: 13px; font-weight: 400; color: var(--tx); line-height: 1.6; }
.fp-rec-section { padding: 52px 0; border-top: 1px solid var(--brd); margin-top: 40px; }
.fp-conf-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--brd); }
.fp-conf-item:last-child { border-bottom: none; }
.fp-conf-img { width: 64px; height: 64px; flex-shrink: 0; border: 1px solid var(--brd); background: var(--pl); overflow: hidden; }
.fp-conf-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-conf-brand { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 3px; }
.fp-conf-name { font-size: 13px; font-weight: 400; color: var(--tx); line-height: 1.35; margin-bottom: 3px; }
.fp-conf-meta { font-size: 11px; color: var(--txs); font-weight: 300; }
.fp-conf-price { font-size: 14px; font-weight: 500; color: var(--tx); margin-left: auto; flex-shrink: 0; }
.fp-next-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--brd); }
.fp-next-step { text-align: center; padding: 28px 20px; border-right: 1px solid var(--brd); }
.fp-next-step:last-child { border-right: none; }
.fp-next-step-ico { width: 44px; height: 44px; background: var(--pp); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.fp-next-step-ico svg { width: 20px; height: 20px; stroke: var(--p); fill: none; stroke-width: 1.5; }
.fp-next-step-title { font-size: 13px; font-weight: 500; color: var(--tx); margin-bottom: 6px; }
.fp-next-step-body { font-size: 12px; color: var(--txs); font-weight: 300; line-height: 1.6; }

@media (max-width: 991px) {
  .fp-outlet-info-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .fp-outlet-info-item { border-right: none; }
  .fp-next-steps { grid-template-columns: 1fr; }
  .fp-next-step { border-right: none; border-bottom: 1px solid var(--brd); }
  .fp-next-step:last-child { border-bottom: none; }
  .fp-del-info { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .fp-outlet-info-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PHASE 4 — TRADE PORTAL
   ========================================================================== */

.btn-gold { background: var(--gold); color: var(--tx); border: none; font-family: 'Montserrat',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 14px 32px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: opacity .15s; }
.btn-gold:hover { opacity: .88; color: var(--tx); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); font-family: 'Montserrat',sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 14px 32px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: border-color .15s, background .15s; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.fp-trade-hero { position: relative; overflow: hidden; padding: 88px 0; background: linear-gradient(135deg, #1a0a33 0%, #3a1a6a 55%, #6b3fa0 100%); }
.fp-trade-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px); }
.fp-trade-hero-inner { position: relative; z-index: 1; }
.fp-trade-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.fp-trade-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(38px,5.5vw,68px); font-weight: 400; color: #fff; line-height: 1.08; margin-bottom: 16px; }
.fp-trade-hero h1 em { font-style: italic; color: var(--gold); }
.fp-trade-hero-sub { font-size: 15px; color: rgba(255,255,255,.65); font-weight: 300; max-width: 580px; line-height: 1.85; margin-bottom: 32px; }
.fp-trade-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.fp-trade-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.fp-trade-stat { flex: 1; min-width: 120px; }
.fp-trade-stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 40px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.fp-trade-stat-lbl { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* Tiers section */
.fp-tiers { padding: 80px 0; background: #fff; }
.fp-tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--brd); margin-top: 40px; }
.fp-tier-col { padding: 40px 36px; border-right: 1px solid var(--brd); position: relative; }
.fp-tier-col:last-child { border-right: none; }
.fp-tier-col.highlighted { background: var(--p); }
.fp-tier-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1.5px solid var(--brd); }
.fp-tier-col.highlighted .fp-tier-icon { border-color: rgba(255,255,255,.3); }
.fp-tier-icon svg { width: 18px; height: 18px; stroke: var(--p); fill: none; stroke-width: 1.5; }
.fp-tier-col.highlighted .fp-tier-icon svg { stroke: #fff; }
.fp-tier-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 400; color: var(--tx); margin-bottom: 6px; }
.fp-tier-col.highlighted .fp-tier-name { color: #fff; }
.fp-tier-threshold { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); margin-bottom: 20px; }
.fp-tier-col.highlighted .fp-tier-threshold { color: rgba(255,255,255,.55); }
.fp-tier-discount { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 400; color: var(--p); line-height: 1; margin-bottom: 4px; }
.fp-tier-col.highlighted .fp-tier-discount { color: var(--gold); }
.fp-tier-disc-lbl { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); margin-bottom: 24px; display: block; }
.fp-tier-col.highlighted .fp-tier-disc-lbl { color: rgba(255,255,255,.55); }
.fp-tier-features { list-style: none; padding: 0; margin: 0 0 28px; }
.fp-tier-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: var(--txm); margin-bottom: 11px; line-height: 1.45; }
.fp-tier-col.highlighted .fp-tier-feature { color: rgba(255,255,255,.75); }
.fp-tier-feature svg { width: 13px; height: 13px; stroke: var(--p); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }
.fp-tier-col.highlighted .fp-tier-feature svg { stroke: var(--gold); }
.fp-tier-popular { position: absolute; top: 0; right: 0; background: var(--gold); color: var(--tx); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; }

/* How it works */
.fp-how { padding: 80px 0; background: var(--bgs); }
.fp-how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 40px; border: 1px solid var(--brd); background: #fff; }
.fp-how-step { padding: 36px 28px; border-right: 1px solid var(--brd); position: relative; }
.fp-how-step:last-child { border-right: none; }
.fp-how-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 400; color: var(--pl); line-height: 1; margin-bottom: 16px; }
.fp-how-title { font-size: 14px; font-weight: 600; color: var(--tx); margin-bottom: 8px; }
.fp-how-body { font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.7; }
.fp-how-arrow { position: absolute; top: 50%; right: -1px; width: 20px; height: 20px; background: #fff; border-right: 1px solid var(--brd); border-top: 1px solid var(--brd); transform: translateY(-50%) rotate(45deg); z-index: 1; }
.fp-how-step:last-child .fp-how-arrow { display: none; }

/* Testimonials */
.fp-testimonials { padding: 80px 0; background: var(--pl); }
.fp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.fp-testi-card { background: #fff; border: 1px solid var(--brd); padding: 28px; }
.fp-testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.fp-testi-quote { font-size: 14px; color: var(--txm); font-weight: 300; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.fp-testi-author { display: flex; align-items: center; gap: 12px; }
.fp-testi-avatar { width: 36px; height: 36px; background: var(--p); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; color: #fff; flex-shrink: 0; }
.fp-testi-name { font-size: 13px; font-weight: 500; color: var(--tx); }
.fp-testi-salon { font-size: 11px; color: var(--txs); font-weight: 300; }

/* Trade FAQ */
.fp-faq { padding: 80px 0; background: var(--bgs); }
.fp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 40px; }
.fp-faq-item { border-bottom: 1px solid var(--brd); overflow: hidden; }
.fp-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--tx); background: none; border: none; width: 100%; text-align: left; font-family: inherit; gap: 12px; }
.fp-faq-q svg { width: 16px; height: 16px; stroke: var(--p); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .2s; }
.fp-faq-q.open svg { transform: rotate(45deg); }
.fp-faq-a { display: none; padding: 0 0 18px; font-size: 13px; color: var(--txm); font-weight: 300; line-height: 1.8; }
.fp-faq-a.open { display: block; }

/* Application form section */
.fp-apply { padding: 80px 0; background: var(--bgs); border-top: 1px solid var(--brd); }
.fp-apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Trade sign-in page */
.fp-ts-page { min-height: 100vh; background: linear-gradient(135deg,#1a0a33 0%,#3a1a6a 55%,#6b3fa0 100%); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.fp-ts-wrap { width: 100%; max-width: 460px; }
.fp-ts-logo { font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; font-size: 24px; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: .18em; display: block; margin-bottom: 8px; }
.fp-ts-logo em { color: var(--gold); font-style: normal; }
.fp-ts-back { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 300; text-decoration: none; display: flex; align-items: center; gap: 4px; margin-bottom: 28px; }
.fp-ts-back:hover { color: rgba(255,255,255,.8); }
.fp-ts-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.fp-ts-card { background: #fff; border: 1px solid var(--brd); padding: 36px; }
.fp-ts-panel { display: none; }
.fp-ts-panel.active { display: block; }
.fp-ts-info { background: var(--pp); border: 1px solid var(--brdm); border-left: 3px solid var(--p); padding: 12px 16px; font-size: 12px; color: var(--p); font-weight: 400; margin-bottom: 20px; }
.fp-ts-title { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 28px; font-weight: 400; color: var(--tx); margin-bottom: 6px; }
.fp-ts-sub { font-size: 13px; color: var(--txs); font-weight: 300; margin-bottom: 24px; line-height: 1.65; }
.fp-ts-field { margin-bottom: 16px; }
.fp-ts-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tx); display: block; margin-bottom: 6px; }
.fp-ts-input { width: 100%; padding: 11px 14px; border: 1px solid var(--brd); font-family: inherit; font-size: 13px; color: var(--tx); outline: none; transition: border-color .15s; }
.fp-ts-input:focus { border-color: var(--p); }
.fp-ts-divider { text-align: center; font-size: 12px; color: var(--txs); font-weight: 300; margin: 20px 0; position: relative; }
.fp-ts-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--brd); }
.fp-ts-divider span, .fp-ts-divider { position: relative; background: #fff; padding: 0 12px; }
.fp-ts-link { background: none; border: none; color: var(--p); font-size: 12px; cursor: pointer; padding: 0; font-family: inherit; text-decoration: underline; font-weight: 400; }

/* Trade dashboard */
.fp-td-header { background: linear-gradient(135deg,#1a0a33 0%,#3a1a6a 60%,#5c2d91 100%); padding: 40px 0; position: relative; overflow: hidden; }
.fp-td-header::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 60px),repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 60px); }
.fp-td-header-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.fp-td-greeting { font-family: 'Cormorant Garamond',Georgia,serif; font-size: clamp(24px,3vw,36px); font-weight: 400; color: #fff; margin-bottom: 4px; }
.fp-td-greeting em { color: var(--gold); font-style: italic; }
.fp-td-subtitle { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 300; }
.fp-td-tier-badge { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 14px 20px; }
.fp-td-tier-name { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 1px; }
.fp-td-tier-disc { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.fp-td-tier-lbl { font-size: 10px; color: rgba(255,255,255,.45); font-weight: 300; margin-top: 1px; }
.fp-td-nav { background: #fff; border: 1px solid var(--brd); overflow: hidden; position: sticky; top: 92px; }
.fp-td-nav-hd { padding: 18px 20px; border-bottom: 1px solid var(--brd); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--txs); }
.fp-td-link { display: flex; align-items: center; gap: 12px; padding: 12px 20px; font-size: 13px; font-weight: 400; color: var(--txm); cursor: pointer; border-left: 3px solid transparent; transition: all .15s; background: none; border-top: none; border-right: none; border-bottom: none; width: 100%; text-align: left; font-family: inherit; text-decoration: none; }
.fp-td-link:hover { color: var(--p); background: var(--pp); }
.fp-td-link.active { color: var(--p); font-weight: 500; border-left-color: var(--p); background: var(--pp); }
.fp-td-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.fp-td-sep { height: 1px; background: var(--brd); margin: 4px 0; }
.fp-td { background: var(--bgs); padding: 32px 0 80px; }
.fp-td-panel { display: none; }
.fp-td-panel.active { display: block; }
.fp-td-section { background: #fff; border: 1px solid var(--brd); padding: 28px; margin-bottom: 16px; }
.fp-td-section-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--brd); }
.fp-td-section-title { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 22px; font-weight: 400; color: var(--tx); }
.fp-td-section-action { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--p); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; text-decoration: none; }
.fp-td-kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 16px; }
.fp-td-kpi { background: #fff; border: 1px solid var(--brd); padding: 22px 24px; }
.fp-td-kpi-val { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 36px; font-weight: 400; color: var(--p); line-height: 1; margin-bottom: 4px; }
.fp-td-kpi-lbl { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); }
.fp-td-kpi-sub { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 3px; }
.fp-td-tier-progress { background: #fff; border: 1px solid var(--brd); padding: 24px 28px; margin-bottom: 16px; }
.fp-td-tier-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.fp-td-tier-dot { width: 12px; height: 12px; background: var(--p); flex-shrink: 0; }
.fp-td-tier-info { font-size: 13px; font-weight: 500; color: var(--tx); }
.fp-td-tier-info span { font-size: 11px; font-weight: 300; color: var(--txs); margin-left: 6px; }
.fp-td-next-tier { font-size: 12px; color: var(--p); font-weight: 400; }
.fp-td-progress-bar { height: 8px; background: var(--brd); position: relative; margin-bottom: 8px; }
.fp-td-progress-fill { height: 8px; background: var(--p); transition: width .6s ease; }
.fp-td-progress-markers { display: flex; justify-content: space-between; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--txs); }
.fp-td-tier-compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--brd); }
.fp-td-tier-c { padding: 16px 20px; border-right: 1px solid var(--brd); text-align: center; }
.fp-td-tier-c:last-child { border-right: none; }
.fp-td-tier-c.current { background: var(--p); }
.fp-td-tier-c-name { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--txs); margin-bottom: 4px; }
.fp-td-tier-c.current .fp-td-tier-c-name { color: rgba(255,255,255,.7); }
.fp-td-tier-c-disc { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 28px; font-weight: 400; color: var(--p); line-height: 1; }
.fp-td-tier-c.current .fp-td-tier-c-disc { color: var(--gold); }
.fp-td-tier-c-sub { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 4px; }
.fp-td-tier-c.current .fp-td-tier-c-sub { color: rgba(255,255,255,.5); }
.fp-td-order-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--brd); flex-wrap: wrap; }
.fp-td-order-row:last-child { border-bottom: none; padding-bottom: 0; }
.fp-td-thumb { width: 40px; height: 40px; background: var(--pl); flex-shrink: 0; border: 1px solid var(--brd); }
.fp-td-thumb.c2 { background: #eef4ff; } .fp-td-thumb.c3 { background: #edf5ee; } .fp-td-thumb.c4 { background: #fdf3e7; }
.fp-td-order-ref { font-size: 13px; font-weight: 500; color: var(--tx); }
.fp-td-order-date { font-size: 11px; color: var(--txs); font-weight: 300; margin-top: 2px; }
.fp-td-order-status { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border: 1px solid; flex-shrink: 0; }
.fp-td-order-status.dispatched { color: var(--p); border-color: var(--p); background: var(--pp); }
.fp-td-order-status.delivered { color: var(--green); border-color: var(--green); background: #edfaf5; }
.fp-td-order-status.processing { color: var(--gold); border-color: var(--gold); background: #fdf8ee; }
.fp-td-order-total { font-size: 14px; font-weight: 500; color: var(--tx); margin-left: auto; text-align: right; flex-shrink: 0; }
.fp-td-order-saving { display: block; font-size: 10px; color: var(--green); font-weight: 300; }
.fp-td-quick-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-behavior: smooth; scrollbar-width: none; }
.fp-td-quick-scroll::-webkit-scrollbar { display: none; }
.fp-td-quick-card { background: var(--bgs); border: 1px solid var(--brd); flex-shrink: 0; width: 180px; }
.fp-td-quick-img { height: 140px; background: var(--pl); overflow: hidden; }
.fp-td-quick-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-td-quick-img.c2 { background: #eef4ff; } .fp-td-quick-img.c3 { background: #edf5ee; } .fp-td-quick-img.c4 { background: #fdf3e7; } .fp-td-quick-img.c5 { background: #fff0f0; }
.fp-td-quick-body { padding: 12px; }
.fp-td-quick-name { font-size: 12px; font-weight: 400; color: var(--tx); margin-bottom: 6px; line-height: 1.35; }
.fp-td-quick-pricing { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.fp-td-quick-price { font-size: 14px; font-weight: 600; color: var(--p); }
.fp-td-quick-rrp { font-size: 11px; color: var(--txs); text-decoration: line-through; font-weight: 300; }
.fp-td-quick-saving { font-size: 10px; font-weight: 600; color: var(--green); }
.fp-td-quick-nav { display: flex; gap: 4px; }
.fp-td-quick-btn { width: 28px; height: 28px; border: 1px solid var(--brd); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.fp-td-quick-btn svg { width: 14px; height: 14px; stroke: var(--txm); fill: none; stroke-width: 2; }
.fp-td-savings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.fp-td-saving-card { background: var(--bgs); border: 1px solid var(--brd); padding: 22px 24px; text-align: center; }
.fp-td-saving-val { font-family: 'Cormorant Garamond',Georgia,serif; font-size: 40px; font-weight: 400; color: var(--p); line-height: 1; margin-bottom: 6px; }
.fp-td-saving-lbl { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--txs); }
.fp-td-invoice-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--brd); flex-wrap: wrap; }
.fp-td-invoice-row:last-child { border-bottom: none; }
.fp-td-invoice-ico { width: 36px; height: 36px; background: var(--pp); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-td-invoice-ico svg { width: 16px; height: 16px; stroke: var(--p); fill: none; stroke-width: 1.5; }
.fp-td-invoice-ref { font-size: 13px; font-weight: 500; color: var(--tx); }
.fp-td-invoice-date { font-size: 11px; color: var(--txs); font-weight: 300; }
.fp-td-invoice-amt { font-size: 14px; font-weight: 500; color: var(--tx); margin-left: auto; flex-shrink: 0; }
.fp-td-invoice-status { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); border: 1px solid var(--green); padding: 3px 8px; flex-shrink: 0; }
.fp-td-mob-tabs { display: none; overflow-x: auto; background: #fff; border-bottom: 1px solid var(--brd); }
.fp-td-mob-tab { padding: 12px 20px; font-size: 12px; font-weight: 600; color: var(--txm); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; font-family: inherit; white-space: nowrap; }
.fp-td-mob-tab.active { color: var(--p); border-bottom-color: var(--p); }

/* Pending trade application notice */
.fp-td-pending { background: #fff8e8; border: 1px solid var(--gold); padding: 24px 28px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 16px; }
.fp-td-pending svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 991px) {
  .fp-tier-grid { grid-template-columns: 1fr; }
  .fp-tier-col { border-right: none; border-bottom: 1px solid var(--brd); }
  .fp-tier-col.highlighted { border-color: var(--p); }
  .fp-tier-col:last-child { border-bottom: none; }
  .fp-how-steps { grid-template-columns: 1fr 1fr; }
  .fp-how-step:nth-child(2) { border-right: none; }
  .fp-how-arrow { display: none; }
  .fp-apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .fp-testi-grid { grid-template-columns: 1fr; }
  .fp-faq-grid { grid-template-columns: 1fr; gap: 0; }
  .fp-trade-hero { padding: 56px 0; }
  .fp-tiers, .fp-apply { padding: 52px 0; }
  .fp-trade-stats { gap: 24px; }
  .fp-td-kpi-grid { grid-template-columns: repeat(2,1fr); }
  .fp-td-savings-grid { grid-template-columns: 1fr; }
  .fp-td-mob-tabs { display: flex; }
  .fp-td-tier-compare { grid-template-columns: 1fr; }
  .fp-td-tier-c { border-right: none; border-bottom: 1px solid var(--brd); }
}
@media (max-width: 767px) {
  .fp-td-kpi-grid { grid-template-columns: 1fr 1fr; }
  .fp-td-order-total { margin-left: 0; }
  .fp-tiers, .fp-how, .fp-apply, .fp-testimonials, .fp-faq { padding: 52px 0; }
  .fp-how-steps { grid-template-columns: 1fr; }
  .fp-how-step { border-right: none; border-bottom: 1px solid var(--brd); }
}

/* ==========================================================================
   WOOCOMMERCE NOTICES — clean strap style
   ========================================================================== */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none; margin: 0 0 20px; padding: 0;
}
.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li,
.woocommerce-error[role="alert"],
.woocommerce-message[role="alert"],
.woocommerce-info[role="alert"] {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 400; line-height: 1.5;
  padding: 12px 20px; margin-bottom: 0;
  display: flex; align-items: center; gap: 10px;
}
.woocommerce-error li,
.woocommerce-error[role="alert"] {
  background: #fef2f2; color: #991b1b; border-left: 3px solid var(--red);
}
.woocommerce-message li,
.woocommerce-message[role="alert"] {
  background: #f0fdf4; color: #166534; border-left: 3px solid var(--green);
}
.woocommerce-info li,
.woocommerce-info[role="alert"] {
  background: var(--pp); color: var(--p); border-left: 3px solid var(--p);
}
.woocommerce-error li::before,
.woocommerce-message li::before,
.woocommerce-info li::before { display: none; }
.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a { color: inherit; font-weight: 600; text-decoration: underline; }




