@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --background:210 20% 98%;
  --foreground:220 30% 10%;
  --card:0 0% 100%;
  --card-foreground:220 30% 10%;
  --popover:0 0% 100%;
  --popover-foreground:220 30% 10%;
  --primary:224 76% 32%;
  --primary-foreground:0 0% 100%;
  --secondary:220 14% 96%;
  --secondary-foreground:220 30% 10%;
  --muted:220 14% 96%;
  --muted-foreground:220 10% 46%;
  --accent:224 76% 32%;
  --accent-foreground:0 0% 100%;
  --border:220 13% 91%;
  --ring:224 76% 32%;
  --cobalt-light:224 60% 50%;
  --cobalt-dark:224 80% 22%;
  --silver:220 10% 72%;
  --silver-light:220 10% 90%;
  --radius:.75rem;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:hsl(var(--background));
  color:hsl(var(--foreground));
}

a{
  text-decoration:none;
}

.section-container{
  max-width:1280px;
  margin:0 auto;
  padding-left:1rem;
  padding-right:1rem;
}

@media(min-width:640px){
  .section-container{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
}

@media(min-width:1024px){
  .section-container{
    padding-left:2rem;
    padding-right:2rem;
  }
}

/* ---------------------------------
   Header / nav
--------------------------------- */
.top-trust-bar{
  background:#0f172a;
  color:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:12px;
  letter-spacing:.04em;
}

.top-trust-bar .trust-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  text-transform:uppercase;
  font-weight:600;
}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:hsla(var(--card),.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid hsl(var(--border));
}

.nav-row{
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}

.site-logo{
  display:inline-flex;
  align-items:center;
}

.site-logo img{
  display:block;
  width:auto;
  height:36px;
  max-height:36px;
}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
}

.desktop-nav a,
.header-icons a,
.mobile-nav a{
  color:hsl(var(--muted-foreground));
  font-size:.95rem;
  font-weight:600;
}

.desktop-nav a:hover,
.desktop-nav a.current,
.header-icons a:hover,
.mobile-nav a:hover{
  color:hsl(var(--foreground));
}

.header-icons{
  display:flex;
  align-items:center;
  gap:1rem;
}

.mobile-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid hsl(var(--border));
  border-radius:12px;
  background:#fff;
  color:hsl(var(--foreground));
  font-size:18px;
  cursor:pointer;
}

.mobile-nav{
  display:none;
  border-top:1px solid hsl(var(--border));
  background:hsl(var(--card));
}

.mobile-nav.open{
  display:block;
}

.mobile-nav-inner{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-top:16px;
  padding-bottom:16px;
}

/* ---------------------------------
   General cards / layout
--------------------------------- */
.glass-card{
  background:hsla(var(--card),.8);
  backdrop-filter:blur(6px);
  border:1px solid hsl(var(--border));
  border-radius:var(--radius);
  box-shadow:0 2px 12px rgba(15,23,42,.04);
}

.feature-card{
  background:hsla(var(--card),.95);
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  padding:1.25rem;
}

.feature-card h3{
  font-size:1rem;
  margin-bottom:.4rem;
}

.feature-card p{
  font-size:.92rem;
  line-height:1.65;
  color:hsl(var(--muted-foreground));
}

.card-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}

@media(min-width:768px){
  .card-grid.two{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .card-grid.three{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .card-grid.four{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

.notice-box{
  display:flex;
  gap:.85rem;
  padding:1rem;
  border:1px solid hsl(var(--border));
  background:hsla(var(--secondary),.7);
  border-radius:.9rem;
}

.icon-circle{
  width:2.8rem;
  height:2.8rem;
  border-radius:.9rem;
  background:hsla(var(--primary),.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:hsl(var(--primary));
  flex-shrink:0;
  font-size:1.1rem;
}

.text-center{
  text-align:center;
}

.text-muted{
  color:hsl(var(--muted-foreground));
}

/* ---------------------------------
   Buttons / forms
--------------------------------- */
.pepta-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-proceed-to-checkout a.checkout-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.25rem;
  border-radius:.75rem;
  background:hsl(var(--primary));
  color:#fff !important;
  font-weight:600;
  border:none;
  transition:.2s ease;
  cursor:pointer;
}

.pepta-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-proceed-to-checkout a.checkout-button:hover{
  background:hsl(var(--cobalt-light));
}

.pepta-btn.secondary{
  background:transparent;
  color:hsl(var(--foreground)) !important;
  border:1px solid hsl(var(--border));
}

.search-input,
.woocommerce form .input-text,
.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="password"],
.woocommerce form input[type="tel"],
.woocommerce form textarea,
.woocommerce form select{
  width:100%;
  padding:.8rem 1rem;
  background:hsl(var(--secondary));
  border:1px solid hsl(var(--border));
  border-radius:.75rem;
  font-size:.94rem;
  color:hsl(var(--foreground));
}

/* ---------------------------------
   Hero / gate
--------------------------------- */
.hero-gate{
  min-height:100vh;
  background:linear-gradient(to bottom,hsl(var(--background)),hsl(var(--background)),hsla(var(--secondary),.4));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
  position:relative;
  overflow:hidden;
}

.hero-gate .dots{
  position:absolute;
  inset:0;
  opacity:.025;
  background-image:radial-gradient(circle at 1px 1px,hsl(var(--primary)) 1px,transparent 0);
  background-size:32px 32px;
}

.hero-gate .gate-card{
  max-width:34rem;
  width:100%;
  position:relative;
  z-index:2;
}

.gate-panel{
  background:hsl(var(--card));
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(15,23,42,.06);
}

.gate-panel .bar{
  height:4px;
  background:linear-gradient(to right,hsl(var(--primary)),hsl(var(--cobalt-light)),hsl(var(--primary)));
}

.gate-checks{
  display:grid;
  gap:.875rem;
  margin-bottom:2rem;
}

.gate-check{
  display:flex;
  gap:.75rem;
  padding:.9rem;
  border:1px solid hsl(var(--border));
  border-radius:.75rem;
  background:hsla(var(--secondary),.4);
  cursor:pointer;
}

.gate-check input{
  margin-top:.15rem;
  width:1rem;
  height:1rem;
  accent-color:hsl(var(--primary));
}

.page-hero{
  background:linear-gradient(135deg,hsl(var(--cobalt-dark)),hsl(var(--primary)),hsl(var(--primary)));
  color:#fff;
  position:relative;
  overflow:hidden;
}

.page-hero .inner{
  padding:5rem 1rem;
  text-align:center;
  position:relative;
  z-index:2;
}

.page-hero .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .9rem;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.8);
  font-weight:600;
}

.page-hero h1{
  font-size:2.4rem;
  line-height:1.1;
  margin-top:1rem;
  color:#fff;
}

.page-hero p{
  max-width:42rem;
  margin:1rem auto 0;
  color:rgba(255,255,255,.75);
  font-size:1.05rem;
  line-height:1.7;
}

.page-section{
  padding:4rem 0;
}

.page-section-sm{
  padding:2.5rem 0;
}

/* ---------------------------------
   Product detail
--------------------------------- */
.vial{
  width:48px;
  height:100px;
  border-radius:12px;
  background:linear-gradient(to bottom,#fff,rgba(226,232,240,.8));
  border:1px solid rgba(148,163,184,.3);
  position:relative;
  box-shadow:0 4px 10px rgba(15,23,42,.06);
}

.vial:before{
  content:"";
  position:absolute;
  top:-7px;
  left:50%;
  transform:translateX(-50%);
  width:36px;
  height:12px;
  background:linear-gradient(to bottom,rgba(226,232,240,1),rgba(203,213,225,1));
  border:1px solid rgba(148,163,184,.4);
  border-radius:4px 4px 0 0;
}

.vial-label{
  position:absolute;
  top:18px;
  left:0;
  right:0;
  padding:0 4px;
  text-align:center;
}

.vial-label .brand{
  font-size:4px;
  font-weight:700;
  letter-spacing:.12em;
  color:hsla(var(--primary),.55);
}

.vial-label .name{
  font-size:6px;
  font-weight:600;
  color:rgba(15,23,42,.55);
  margin-top:5px;
  line-height:1.1;
}

.product-detail-wrap{
  padding:3rem 0;
}

.product-detail-grid{
  display:grid;
  gap:2rem;
}

@media(min-width:992px){
  .product-detail-grid{
    grid-template-columns:1.1fr .9fr;
  }
}

.product-visual-card,
.product-info-card{
  background:hsl(var(--card));
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  padding:1.5rem;
}

.product-specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.9rem;
  margin-top:1rem;
}

.product-spec{
  padding:.85rem;
  border:1px solid hsl(var(--border));
  border-radius:.8rem;
  background:hsla(var(--secondary),.55);
}

.product-spec strong{
  display:block;
  font-size:.72rem;
  letter-spacing:.08em;
  color:hsl(var(--muted-foreground));
  text-transform:uppercase;
  margin-bottom:.3rem;
}

.breadcrumbs{
  font-size:.85rem;
  color:hsl(var(--muted-foreground));
  margin-bottom:1rem;
}

.breadcrumbs a{
  color:hsl(var(--muted-foreground));
}

.breadcrumbs a:hover{
  color:hsl(var(--foreground));
}

/* ---------------------------------
   FAQ / legal / tables
--------------------------------- */
.legal-copy{
  max-width:48rem;
  margin:0 auto;
}

.legal-copy section{
  margin-bottom:1.5rem;
}

.legal-copy h2{
  font-size:1.1rem;
  margin-bottom:.45rem;
}

.legal-copy p,
.legal-copy li{
  color:hsl(var(--muted-foreground));
  line-height:1.75;
}

.faq-item{
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  background:hsl(var(--card));
  overflow:hidden;
}

.faq-q{
  width:100%;
  text-align:left;
  padding:1rem 1.1rem;
  background:none;
  border:none;
  font-size:1rem;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-a{
  padding:0 1.1rem 1rem;
  color:hsl(var(--muted-foreground));
  line-height:1.75;
  display:none;
}

.faq-item.open .faq-a{
  display:block;
}

.faq-item.open .faq-q span:last-child{
  transform:rotate(45deg);
}

.table-card{
  background:hsl(var(--card));
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  overflow:hidden;
}

.coa-row,
.coa-head{
  display:grid;
  grid-template-columns:2fr 1.1fr .8fr .9fr;
  gap:1rem;
  padding:.95rem 1rem;
  align-items:center;
}

.coa-head{
  background:hsl(var(--secondary));
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:700;
  color:hsl(var(--muted-foreground));
}

.coa-row{
  border-top:1px solid hsl(var(--border));
  font-size:.93rem;
}

/* ---------------------------------
   Stats / workflow
--------------------------------- */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

@media(min-width:768px){
  .stats-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

.stat{
  text-align:center;
}

.stat strong{
  display:block;
  font-size:2rem;
  color:hsl(var(--primary));
}

.workflow{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

@media(min-width:768px){
  .workflow{
    grid-template-columns:repeat(5,minmax(0,1fr));
  }
}

.workflow .step{
  background:hsla(var(--card),.8);
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  padding:1rem;
  text-align:center;
}

/* ---------------------------------
   WooCommerce general
--------------------------------- */
.woocommerce .woocommerce-breadcrumb,
.woocommerce nav.woocommerce-pagination ul{
  border:none;
}

.woocommerce div.product div.images img{
  background:linear-gradient(to bottom,#fff,hsla(var(--secondary),.3));
  padding:2rem;
  border-radius:1rem;
  border:1px solid hsl(var(--border));
}

.woocommerce div.product .summary{
  background:hsl(var(--card));
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  padding:1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  border-top-color:hsl(var(--primary));
  background:hsl(var(--card));
  border-radius:.9rem;
}

.woocommerce ul.products li.product a img{
  box-shadow:none !important;
}

/* ---------------------------------
   Account page
--------------------------------- */
.woocommerce-account .woocommerce-MyAccount-navigation ul{
  list-style:none;
  padding:0;
  margin:0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a{
  display:block;
  padding:.8rem 1rem;
  border:1px solid hsl(var(--border));
  border-radius:.8rem;
  margin-bottom:.65rem;
  color:hsl(var(--muted-foreground));
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .is-active a{
  color:hsl(var(--foreground));
  border-color:hsla(var(--primary),.2);
}

.woocommerce-account .woocommerce-MyAccount-content{
  background:hsl(var(--card));
  border:1px solid hsl(var(--border));
  border-radius:1rem;
  padding:1.25rem;
}

/* ---------------------------------
   Shop cards
--------------------------------- */
.peptalux-shop-page .products{
  margin-top:0 !important;
}

.woocommerce ul.products{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  margin:0 !important;
  padding:0;
  list-style:none;
}

.woocommerce ul.products li.product.peptalux-product-card{
  width:auto !important;
  float:none !important;
  margin:0 !important;
  padding:0 !important;
  background:transparent;
  border:none;
  box-shadow:none;
}

.peptalux-product-card{
  position:relative;
}

.peptalux-product-card__inner{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border:1px solid hsl(var(--border));
  border-radius:20px;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.peptalux-product-card__inner:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(15,23,42,.08);
  border-color:rgba(29,78,216,.18);
}

.peptalux-product-card__link{
  display:flex;
  flex-direction:column;
  color:inherit;
}

.peptalux-product-card__badge{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 8px 16px rgba(15,23,42,.18);
}

.peptalux-product-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:260px;
  padding:28px 24px;
  background:linear-gradient(to bottom,#fff,hsla(var(--secondary),.5));
  border-bottom:1px solid hsl(var(--border));
}

.peptalux-product-card__media img{
  width:auto !important;
  max-width:100%;
  max-height:180px;
  height:auto !important;
  margin:0 auto !important;
  object-fit:contain;
  box-shadow:none !important;
}

.peptalux-product-card__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px 18px 12px;
}

.peptalux-product-card__eyebrow{
  font-size:11px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:hsl(var(--primary));
}

.peptalux-product-card__title{
  margin:0 !important;
  padding:0 !important;
  font-size:20px !important;
  line-height:1.3;
  font-weight:700;
  color:#111827;
}

.peptalux-product-card__meta{
  font-size:13px;
  color:hsl(var(--muted-foreground));
  line-height:1.5;
}

.peptalux-product-card__blend{
  font-size:13px;
  color:#475569;
  line-height:1.55;
}

.peptalux-product-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0 18px 18px;
}

.peptalux-product-card__price .price{
  margin:0 !important;
  padding:0 !important;
  font-size:22px !important;
  font-weight:700 !important;
  color:#0f172a !important;
}

.peptalux-product-card__price .amount{
  color:#0f172a !important;
}

.peptalux-product-card__actions{
  flex-shrink:0;
}

.peptalux-product-card__actions .button{
  margin:0 !important;
  min-width:124px;
  justify-content:center;
  width:auto;
}

.peptalux-product-card .button{
  width:100%;
}

@media (max-width: 1199px){
  .woocommerce ul.products{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 899px){
  .woocommerce ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .woocommerce ul.products{
    grid-template-columns:1fr;
  }

  .peptalux-product-card__media{
    min-height:220px;
  }

  .peptalux-product-card__footer{
    flex-direction:column;
    align-items:stretch;
  }

  .peptalux-product-card__actions .button{
    width:100%;
  }
}

/* ---------------------------------
   Cart layout rebuild
--------------------------------- */
.woocommerce-cart .coupon{
  display:none !important;
}

.peptalux-cart-shell{
  max-width:1280px;
  margin:0 auto;
}

.peptalux-cart-intro{
  margin:0 0 24px;
  padding:20px 22px;
  border:1px solid hsl(var(--border));
  border-radius:18px;
  background:#fff;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.peptalux-cart-intro__copy h2{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}

.peptalux-cart-intro__copy p{
  margin:0;
  color:hsl(var(--muted-foreground));
  line-height:1.6;
}

.peptalux-cart-intro__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.peptalux-cart-intro__badges span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid hsl(var(--border));
  background:hsl(var(--secondary));
  font-size:12px;
  font-weight:600;
  color:#334155;
}

.peptalux-cart-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border:1px solid hsl(var(--border));
  border-radius:18px;
  overflow:hidden;
}

.peptalux-cart-table thead th{
  background:#f8fafc;
  color:#64748b;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding:18px 16px;
  border-bottom:1px solid hsl(var(--border));
}

.peptalux-cart-table td{
  padding:20px 16px;
  vertical-align:middle;
  border-top:1px solid #eef2f7;
  background:#fff;
}

.peptalux-cart-table tr:first-child td{
  border-top:none;
}

.peptalux-cart-table td.product-remove{
  width:56px;
  text-align:center;
}

.peptalux-cart-table td.product-thumbnail{
  width:120px;
}

.peptalux-cart-table td.product-price,
.peptalux-cart-table td.product-quantity,
.peptalux-cart-table td.product-subtotal{
  width:130px;
}

.peptalux-cart-table td.product-thumbnail img{
  width:96px;
  height:96px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  border:1px solid hsl(var(--border));
  padding:8px;
}

.peptalux-cart-product{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.peptalux-cart-product__eyebrow{
  font-size:11px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:hsl(var(--primary));
}

.peptalux-cart-product__title a{
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#111827;
  text-decoration:none;
}

.peptalux-cart-product__meta{
  font-size:13px;
  color:hsl(var(--muted-foreground));
}

.peptalux-cart-product__extra{
  font-size:13px;
  color:#475569;
}

.peptalux-cart-table td.product-price,
.peptalux-cart-table td.product-subtotal{
  font-weight:700;
  color:#111827;
  white-space:nowrap;
}

.peptalux-cart-table .quantity .qty{
  width:64px;
  min-width:64px;
  height:40px;
  min-height:40px;
  border-radius:12px;
  border:1px solid #d1d5db;
  padding:6px 8px;
  text-align:center;
  background:#fff;
}

.peptalux-cart-table .product-remove a{
  width:34px;
  height:34px;
  line-height:32px;
  border-radius:999px;
  background:#f3f4f6;
  color:#111827 !important;
  text-align:center;
  font-size:20px;
  font-weight:400;
  display:inline-block;
}

.peptalux-cart-table .product-remove a:hover{
  background:#e5e7eb;
}

.peptalux-cart-actions-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.peptalux-cart-actions-note{
  font-size:13px;
  color:hsl(var(--muted-foreground));
}

/* 2-column cart + summary */
.woocommerce-cart .cart-collaterals{
  margin-top:28px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:28px;
  align-items:start;
}

.woocommerce-cart .cross-sells{
  order:1;
  margin-top:0;
}

.woocommerce-cart .cart_totals,
.peptalux-cart-totals{
  order:2;
  width:100%;
  max-width:none;
  margin:0;
  background:#fff;
  border:1px solid hsl(var(--border));
  border-radius:20px;
  padding:28px;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
  position:sticky;
  top:120px;
}

.peptalux-cart-summary-heading{
  margin-bottom:16px;
}

.peptalux-cart-summary-heading h3{
  margin:0 0 4px;
  font-size:22px;
  color:#0f172a;
}

.peptalux-cart-summary-heading p{
  margin:0;
  font-size:14px;
  color:hsl(var(--muted-foreground));
  line-height:1.6;
}

.peptalux-cart-summary-shipping{
  margin-bottom:18px;
}

.woocommerce-cart .cart_totals h2{
  margin:0 0 18px;
  font-size:22px;
  color:#111827;
}

.woocommerce-cart .cart_totals .shop_table,
.peptalux-cart-totals .shop_table{
  width:100%;
  border-collapse:collapse;
  margin-top:14px;
}

.woocommerce-cart .cart_totals .shop_table th,
.woocommerce-cart .cart_totals .shop_table td,
.peptalux-cart-totals .shop_table th,
.peptalux-cart-totals .shop_table td{
  padding:14px 0;
  border-top:1px solid #e8edf3;
}

.woocommerce-cart .cart_totals .shop_table th,
.peptalux-cart-totals .shop_table th{
  text-align:left;
  color:#334155;
  font-weight:600;
}

.woocommerce-cart .cart_totals .shop_table td,
.peptalux-cart-totals .shop_table td{
  text-align:right;
  color:#0f172a;
  font-weight:600;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td,
.peptalux-cart-totals .order-total th,
.peptalux-cart-totals .order-total td{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
}

.woocommerce-cart .wc-proceed-to-checkout{
  margin-top:18px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
  width:100%;
  min-height:50px;
  font-size:16px;
}

.peptalux-cart-summary-trust{
  display:grid;
  gap:8px;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid #e8edf3;
  font-size:13px;
  color:#475569;
}

.peptalux-cart-summary-note{
  margin-top:12px;
  font-size:12px;
  line-height:1.6;
  color:#64748b;
}

.cart-summary-coupon{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}

.cart-summary-coupon .input-text,
.cart-summary-coupon input{
  width:100% !important;
  min-height:46px;
  border-radius:12px;
  border:1px solid #d1d5db;
  padding:0 14px;
  background:#fff;
}

.cart-summary-coupon .button,
.cart-summary-coupon button{
  width:100%;
  min-height:46px;
  border-radius:12px !important;
  justify-content:center;
}

.woocommerce-cart .woocommerce-message{
  margin:0 0 18px;
}

.woocommerce-cart .cross-sells > h2{
  margin:0 0 16px;
  font-size:24px;
  color:#0f172a;
}

.woocommerce-cart .cross-sells ul.products{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.woocommerce-cart .cross-sells ul.products li.product{
  width:auto !important;
  float:none !important;
  margin:0 !important;
}

/* free shipping */
.peptalux-free-shipping-box{
  margin:0 0 20px;
  padding:14px 16px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:12px;
}

.peptalux-free-shipping-text{
  margin:0 0 10px;
  font-size:14px;
  color:#0f172a;
  line-height:1.4;
}

.peptalux-free-shipping-text.success{
  color:#166534;
}

.peptalux-free-shipping-bar{
  width:100%;
  height:10px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
}

.peptalux-free-shipping-bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#1d4ed8,#2563eb);
  border-radius:999px;
  transition:width .3s ease;
}

/* toast */
.peptalux-cart-toast{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  width:min(420px,calc(100vw - 24px));
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
}

.peptalux-cart-toast.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.peptalux-cart-toast__inner{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(15,23,42,.18);
  padding:18px;
  position:relative;
}

.peptalux-cart-toast__close{
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
  height:32px;
  border:none;
  background:#f3f4f6;
  color:#111827;
  border-radius:999px;
  font-size:18px;
  line-height:1;
}

.peptalux-cart-toast__content{
  padding-right:30px;
}

.peptalux-cart-toast__title{
  font-size:16px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:4px;
}

.peptalux-cart-toast__text{
  font-size:14px;
  line-height:1.55;
  color:#475569;
}

.peptalux-cart-toast__actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.peptalux-cart-toast__button{
  flex:1;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:hsl(var(--primary));
  color:#fff !important;
  font-weight:600;
  padding:10px 14px;
}

.peptalux-cart-toast__button--secondary{
  background:#eef2ff;
  color:#1e3a8a !important;
}

/* ---------------------------------
   Mobile
--------------------------------- */
@media(max-width:1023px){
  .desktop-nav{
    display:none;
  }

  .mobile-menu-toggle{
    display:inline-flex;
  }
}

@media(max-width:980px){
  .woocommerce-cart .cart-collaterals{
    grid-template-columns:1fr;
  }

  .woocommerce-cart .cart_totals,
  .peptalux-cart-totals{
    position:static;
    top:auto;
  }

  .peptalux-cart-table thead{
    display:none;
  }

  .peptalux-cart-table tr{
    display:block;
    border-bottom:1px solid #eef2f7;
    padding:14px 16px;
  }

  .peptalux-cart-table td{
    display:block;
    width:100% !important;
    border:none;
    padding:10px 0;
    text-align:left !important;
  }

  .peptalux-cart-table td.product-remove{
    text-align:left !important;
  }

  .peptalux-cart-table td.product-thumbnail img{
    width:88px;
    height:88px;
  }

  .peptalux-cart-actions-row{
    flex-direction:column;
    align-items:stretch;
  }

  .woocommerce-cart .cross-sells ul.products{
    grid-template-columns:1fr;
  }
}

@media(max-width:767px){
  .top-trust-bar .trust-inner{
    gap:10px 14px;
    padding-top:8px;
    padding-bottom:8px;
    justify-content:flex-start;
  }

  .nav-row{
    min-height:70px;
    gap:14px;
  }

  .header-icons{
    gap:.7rem;
  }

  .header-icons a{
    font-size:.88rem;
  }

  .site-logo img{
    height:30px;
    max-height:30px;
  }

  .coa-row,
  .coa-head{
    grid-template-columns:1.5fr .95fr .7fr .8fr;
    gap:.6rem;
    font-size:.82rem;
  }

  .page-hero h1{
    font-size:2rem;
  }

  .page-hero p{
    font-size:.98rem;
  }

  .peptalux-cart-toast{
    right:12px;
    bottom:12px;
    width:calc(100vw - 24px);
  }

  .peptalux-cart-toast__actions{
    flex-direction:column;
  }
}
/* ===== CART 2-COLUMN LAYOUT FIX ===== */
.peptalux-cart-layout{
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(320px,430px);
  gap:28px;
  align-items:start;
}

.peptalux-cart-main{
  min-width:0;
}

.peptalux-cart-side{
  min-width:0;
}

.peptalux-cart-side .cart-collaterals{
  margin-top:0;
}

.peptalux-cart-side .cross-sells{
  margin-top:24px;
}

.peptalux-cart-side .cross-sells ul.products{
  grid-template-columns:1fr !important;
}

.peptalux-cart-totals,
.cart_totals{
  width:100%;
  max-width:430px;
  margin-left:auto;
}

@media (max-width: 980px){
  .peptalux-cart-layout{
    grid-template-columns:1fr;
  }

  .peptalux-cart-totals,
  .cart_totals{
    max-width:100%;
    margin-left:0;
  }
}
/* ===== FINAL CART SIDEBAR LAYOUT FIX ===== */
.peptalux-cart-layout{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) 380px;
  gap:32px;
  align-items:start;
}

.peptalux-cart-main{
  min-width:0;
}

.peptalux-cart-side{
  min-width:0;
}

.peptalux-cart-side .cart-collaterals{
  margin-top:0 !important;
}

.peptalux-cart-side .cart_totals,
.peptalux-cart-side .peptalux-cart-totals{
  width:100%;
  max-width:none;
  margin:0;
}

.peptalux-cart-side .cross-sells{
  margin-top:24px;
}

.peptalux-cart-side .cross-sells ul.products{
  grid-template-columns:1fr !important;
}

@media (max-width: 980px){
  .peptalux-cart-layout{
    grid-template-columns:1fr;
  }
}
/* ===== FINAL CART SIDEBAR LAYOUT FIX ===== */
.peptalux-cart-layout{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) 380px;
  gap:32px;
  align-items:start;
}

.peptalux-cart-main{
  min-width:0;
}

.peptalux-cart-side{
  min-width:0;
}

.peptalux-cart-side .cart-collaterals{
  margin-top:0 !important;
}

.peptalux-cart-side .cart_totals,
.peptalux-cart-side .peptalux-cart-totals{
  width:100%;
  max-width:none;
  margin:0;
}

.peptalux-cart-side .cross-sells{
  margin-top:24px;
}

.peptalux-cart-side .cross-sells ul.products{
  grid-template-columns:1fr !important;
}

@media (max-width: 980px){
  .peptalux-cart-layout{
    grid-template-columns:1fr;
  }
}
/* ===== CART GRID LAYOUT FIX ===== */

.peptalux-cart-layout{
    display:grid !important;
    grid-template-columns: minmax(0,1fr) 380px !important;
    gap:40px;
    align-items:start;
}

/* main cart area */
.peptalux-cart-main{
    width:100%;
    min-width:0;
}

/* sidebar */
.peptalux-cart-side{
    width:380px !important;
    min-width:380px !important;
}

/* make summary full width inside sidebar */
.peptalux-cart-side .cart_totals,
.peptalux-cart-side .peptalux-cart-totals{
    width:100% !important;
    max-width:100% !important;
    margin:0;
}

/* prevent WooCommerce shrinking */
.cart-collaterals{
    width:100%;
}

/* mobile */
@media (max-width: 980px){
    .peptalux-cart-layout{
        grid-template-columns:1fr;
    }

    .peptalux-cart-side{
        width:100%;
        min-width:0;
    }
}
.cart-collaterals{
    float:none !important;
}
/* ===== FINAL CART SIDEBAR OVERRIDE ===== */
.peptalux-cart-layout{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) 380px !important;
  gap:40px !important;
  align-items:start !important;
}

.peptalux-cart-main{
  min-width:0 !important;
  width:100% !important;
}

.peptalux-cart-side{
  display:block !important;
  width:380px !important;
  min-width:380px !important;
  max-width:380px !important;
}

.peptalux-cart-side .cart-collaterals{
  display:block !important;
  float:none !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
}

.peptalux-cart-side .cart_totals,
.peptalux-cart-side .peptalux-cart-totals{
  display:block !important;
  float:none !important;
  width:100% !important;
  min-width:380px !important;
  max-width:380px !important;
  margin:0 !important;
  box-sizing:border-box !important;
}

.peptalux-cart-side .cross-sells{
  display:none !important;
}

@media (max-width: 980px){
  .peptalux-cart-layout{
    grid-template-columns:1fr !important;
  }

  .peptalux-cart-side,
  .peptalux-cart-side .cart_totals,
  .peptalux-cart-side .peptalux-cart-totals{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
  }
}
/* ===== CART WIDTH / PROPORTION FINAL TUNING ===== */
.peptalux-cart-shell{
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.peptalux-cart-layout{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 32px !important;
  align-items: start !important;
}

.peptalux-cart-main{
  min-width: 0 !important;
  width: 100% !important;
}

.peptalux-cart-side{
  width: 360px !important;
  min-width: 360px !important;
  max-width: 360px !important;
}

.peptalux-cart-table{
  width: 100% !important;
}

.peptalux-cart-intro{
  width: 100% !important;
}

.woocommerce-cart .page-section,
.woocommerce-cart .section-container{
  max-width: 1440px !important;
}

@media (max-width: 1100px){
  .peptalux-cart-layout{
    grid-template-columns: 1fr !important;
  }

  .peptalux-cart-side{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
.peptalux-cart-shell{
  padding-bottom: 80px !important;
}
/* ===== CART SIDEBAR / FOOTER COLLISION FIX ===== */
.peptalux-cart-shell{
  padding-bottom: 110px !important;
}

.peptalux-cart-layout{
  align-items: start !important;
}

.peptalux-cart-side{
  align-self: start !important;
}

.peptalux-cart-totals{
  position: sticky !important;
  top: 140px !important;
}

.site-footer{
  position: relative;
  z-index: 5;
}

/* stop weird overlap feeling near footer */
.woocommerce-cart .cart-collaterals{
  margin-bottom: 40px !important;
}

@media (max-width: 980px){
  .peptalux-cart-totals{
    position: static !important;
    top: auto !important;
  }

  .peptalux-cart-shell{
    padding-bottom: 80px !important;
  }
}
/* ===== FOOTER REBUILD ===== */
.site-footer{
  margin-top:72px;
  background:#ffffff;
  border-top:1px solid hsl(var(--border));
}

.site-footer .footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:48px;
  padding-top:56px;
  padding-bottom:40px;
}

.footer-brand{
  max-width:420px;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  margin-bottom:18px;
}

.footer-logo img{
  width:auto;
  height:52px;
  display:block;
}

.footer-copy{
  margin:0 0 18px;
  color:#475569;
  line-height:1.75;
  font-size:15px;
}

.footer-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  font-size:14px;
  color:#334155;
  font-weight:500;
}

.footer-col h4{
  margin:0 0 16px;
  font-size:13px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:#0f172a;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:#475569;
  font-size:15px;
  line-height:1.5;
  transition:color .18s ease;
}

.footer-links a:hover{
  color:hsl(var(--primary));
}

.footer-research{
  border-top:1px solid hsl(var(--border));
  background:#f8fafc;
}

.footer-research .section-container{
  padding-top:22px;
  padding-bottom:22px;
}

.footer-research strong{
  display:block;
  margin-bottom:8px;
  color:#0f172a;
  font-size:14px;
}

.footer-research p{
  margin:0;
  color:#64748b;
  line-height:1.7;
  font-size:14px;
}

.footer-research p + p{
  margin-top:6px;
}

.footer-bottom{
  border-top:1px solid hsl(var(--border));
  background:#fff;
}

.footer-bottom-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
  color:#64748b;
}

.footer-bottom a{
  color:#475569;
  font-weight:600;
}

.footer-bottom a:hover{
  color:hsl(var(--primary));
}

@media (max-width: 1023px){
  .site-footer .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:36px 28px;
  }
}

@media (max-width: 767px){
  .site-footer .footer-grid{
    grid-template-columns:1fr;
    padding-top:42px;
    padding-bottom:28px;
    gap:28px;
  }

  .footer-logo img{
    height:46px;
  }

  .footer-bottom-inner{
    min-height:auto;
    padding-top:18px;
    padding-bottom:18px;
    flex-direction:column;
    align-items:flex-start;
  }
}
.research-welcome{
margin-bottom:40px;
}

.research-welcome h3{
font-size:26px;
margin-bottom:8px;
}

.research-welcome p{
color:#64748b;
font-size:15px;
}

.research-portal-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:20px;
}

.portal-card{
background:#ffffff;
border:1px solid #e5e7eb;
padding:24px;
border-radius:10px;
transition:all .2s ease;
}

.portal-card:hover{
box-shadow:0 8px 20px rgba(0,0,0,0.06);
transform:translateY(-2px);
}

.portal-card h4{
margin-bottom:6px;
}

.portal-card p{
font-size:14px;
color:#64748b;
margin-bottom:10px;
}

.portal-card a{
font-weight:600;
color:#2563eb;
}
.woocommerce-MyAccount-content > p:first-of-type{
  display:none;
}
.woocommerce-account .woocommerce{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:32px;
  align-items:start;
}

.woocommerce-account .woocommerce-MyAccount-navigation{
  position:sticky;
  top:120px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li{
  list-style:none;
  margin:0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a{
  display:block;
  padding:14px 16px;
  border:1px solid hsl(var(--border));
  border-radius:14px;
  background:#fff;
  color:#334155;
  font-weight:600;
  transition:all .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover{
  border-color:rgba(37,99,235,.25);
  box-shadow:0 6px 18px rgba(15,23,42,.05);
  color:#0f172a;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a{
  background:hsl(var(--primary));
  color:#fff;
  border-color:hsl(var(--primary));
}

.woocommerce-account .woocommerce-MyAccount-content{
  background:#fff;
  border:1px solid hsl(var(--border));
  border-radius:18px;
  padding:28px;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}
@media (max-width: 980px){
  .woocommerce-account .woocommerce{
    grid-template-columns:1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation{
    position:static;
  }
}


.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}
/* Improve product card spacing */
/* remove WooCommerce default spacing */

.woocommerce ul.products li.product{
padding:0;
margin:0;
border:none;
background:transparent;
}
/* Clean scientific image background */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
}
/* Increase product image area */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    padding: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


}
/* Remove WooCommerce image restrictions */
.woocommerce ul.products li.product a img {
    width: auto !important;
    max-width: 100%;

}
/* ===== MY ACCOUNT LOGGED-OUT PAGE REBUILD ===== */
.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 1280px;
  margin: 0 auto;
}

.woocommerce-account:not(.logged-in) .woocommerce::before,
.woocommerce-account:not(.logged-in) .woocommerce::after {
  content: "";
  display: table;
}

.woocommerce-account:not(.logged-in) .woocommerce::after {
  clear: both;
}

.woocommerce-account:not(.logged-in) .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-account:not(.logged-in) .u-column1,
.woocommerce-account:not(.logged-in) .u-column2 {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.woocommerce-account:not(.logged-in) .u-column1 {
  position: relative;
}

.woocommerce-account:not(.logged-in) .u-column1::before {
  content: "Researcher Access";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: hsl(var(--primary));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce-account:not(.logged-in) .u-column1 > h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #0f172a;
}

.woocommerce-account:not(.logged-in) .u-column1 > h2::after {
  content: "Create your PeptaLux research account to access orders, COA records, account settings, and future batch-level documentation.";
  display: block;
  margin-top: 18px;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 560px;
}

.woocommerce-account:not(.logged-in) .u-column1 form.login {
  background: #ffffff !important;
  border: 1px solid hsl(var(--border)) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  margin: 22px 0 0 !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08) !important;
}

.woocommerce-account:not(.logged-in) .u-column1 form.register {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login {
  display: block !important;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login p {
  margin-bottom: 14px;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login input[type="text"],
.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login input[type="email"],
.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  box-shadow: none;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login .button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 14px;
  font-size: 14px;
  color: #475569;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-LostPassword {
  margin-top: 10px;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-LostPassword a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.woocommerce-account:not(.logged-in) .u-column1,
.woocommerce-account:not(.logged-in) .u-column2 {
  align-self: start;
}

.woocommerce-account:not(.logged-in) .u-column2 {
  background: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-login {
  display: block !important;
  background: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  padding: 34px 34px 28px !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  margin-top: 24px !important;
}

.woocommerce-account:not(.logged-in) .u-column1 .woocommerce-form-register {
  display: none !important;
}

.woocommerce-account:not(.logged-in) .u-column1::after {
  content: "• Secure researcher portal\A• Order history and account access\A• Certificate of Analysis library\A• Research-use-only compliance";
  white-space: pre-line;
  display: block;
  margin-top: 28px;
  padding: 24px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.woocommerce-account:not(.logged-in) .u-column2 {
  background: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  padding: 34px 34px 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.woocommerce-account:not(.logged-in) .u-column2 h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #0f172a;
}

.woocommerce-account:not(.logged-in) .u-column2 form {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-account:not(.logged-in) .u-column2 p {
  margin-bottom: 16px;
}

.woocommerce-account:not(.logged-in) .u-column2 label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.woocommerce-account:not(.logged-in) .u-column2 input[type="text"],
.woocommerce-account:not(.logged-in) .u-column2 input[type="email"],
.woocommerce-account:not(.logged-in) .u-column2 input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  box-shadow: none;
}

.woocommerce-account:not(.logged-in) .u-column2 input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-button,
.woocommerce-account:not(.logged-in) .u-column2 button.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.woocommerce-account:not(.logged-in) .u-column2 .show-password-input {
  top: 14px;
}

.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-LostPassword {
  margin-top: 10px;
}

.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-LostPassword a {
  color: hsl(var(--primary));
  font-weight: 600;
}

.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 14px;
  font-size: 14px;
  color: #475569;
}

.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-password-strength,
.woocommerce-account:not(.logged-in) .u-column2 .woocommerce-password-hint {
  font-size: 13px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .woocommerce-account:not(.logged-in) .u-columns {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .woocommerce-account:not(.logged-in) .u-column1 h2 {
    font-size: 32px;
  }

  .woocommerce-account:not(.logged-in) .u-column2 {
    padding: 24px 20px;
  }
}
/* Keep login + register aligned at the top */
.woocommerce-account:not(.logged-in) .u-columns {
  align-items: start !important;
}

.woocommerce-account:not(.logged-in) .u-column1,
.woocommerce-account:not(.logged-in) .u-column2 {
  align-self: start !important;
}

/* Make the WooCommerce notices span full width above both columns */
.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 20px 0;
}

/* Clean up notice styling */
.woocommerce-account:not(.logged-in) .woocommerce-error,
.woocommerce-account:not(.logged-in) .woocommerce-info,
.woocommerce-account:not(.logged-in) .woocommerce-message {
  margin: 0 0 20px 0 !important;
  border-radius: 14px;
}
/* ===== SINGLE PRODUCT UPGRADE ===== */
.woocommerce div.product {
  max-width: 1280px;
  margin: 0 auto;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  background: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.woocommerce div.product div.images {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.woocommerce div.product div.images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product .flex-control-thumbs {
  margin-top: 18px !important;
  display: flex;
  gap: 12px;
}

.woocommerce div.product .flex-control-thumbs li {
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.woocommerce div.product .summary .product_title {
  font-size: 44px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #0f172a;
}

.woocommerce div.product .summary p.price,
.woocommerce div.product .summary span.price {
  font-size: 42px !important;
  font-weight: 800;
  color: #0f172a !important;
  margin-bottom: 12px;
}

.woocommerce div.product form.cart {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e8edf3;
}

.woocommerce div.product form.cart .quantity .qty {
  min-height: 52px;
  width: 110px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  text-align: center;
  font-weight: 600;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
}

.peptalux-tier-pricing {
  margin: 22px 0 10px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
}

.peptalux-tier-pricing h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
}

.peptalux-tier-pricing table {
  width: 100%;
  border-collapse: collapse;
}

.peptalux-tier-pricing th,
.peptalux-tier-pricing td {
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
  text-align: left;
  font-size: 14px;
}

.peptalux-tier-pricing th {
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.peptalux-tier-pricing td strong {
  color: hsl(var(--primary));
}

.peptalux-product-trust {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #475569;
}

@media (max-width: 980px) {
  .woocommerce div.product .summary .product_title {
    font-size: 34px;
  }

  .woocommerce div.product .summary p.price,
  .woocommerce div.product .summary span.price {
    font-size: 34px !important;
  }
}
/* ===== SINGLE PRODUCT GALLERY FIX ===== */
.woocommerce div.product div.images {
  width: 100%;
}

.woocommerce div.product .woocommerce-product-gallery {
  width: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product .woocommerce-product-gallery__image {
  text-align: center;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 420px !important;
  height: auto !important;
  object-fit: contain;
  margin: 0 auto;
}

.woocommerce div.product .flex-control-thumbs {
  display: flex !important;
  gap: 12px;
  margin-top: 18px !important;
  padding: 0;
}

.woocommerce div.product .flex-control-thumbs li {
  list-style: none;
  width: 84px !important;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.woocommerce div.product .flex-control-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  opacity: 1 !important;
}
/* ===== VOLUME PRICING BOX ===== */
.peptalux-tier-pricing {
  margin: 22px 0 18px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.peptalux-tier-pricing h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
}

.peptalux-tier-pricing table {
  width: 100%;
  border-collapse: collapse;
}

.peptalux-tier-pricing th,
.peptalux-tier-pricing td {
  padding: 10px 0;
  border-top: 1px solid #eef2f7;
  text-align: left;
  font-size: 14px;
}

.peptalux-tier-pricing th {
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.peptalux-tier-pricing td strong {
  color: hsl(var(--primary));
}

.peptalux-tier-pricing-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
}
/* =====================================================
PRODUCT PAGE UPGRADE
===================================================== */


.woocommerce div.product{

max-width:1200px;
margin:auto;

}


.woocommerce div.product div.images,
.woocommerce div.product div.summary{

background:white;
border-radius:20px;
padding:28px;
border:1px solid #e6edf5;

box-shadow:0 15px 40px rgba(0,0,0,0.04);

}


.woocommerce div.product div.images{

background:linear-gradient(180deg,#ffffff,#f8fafc);

}



/* PRODUCT IMAGE */

.woocommerce div.product div.images img{

max-height:420px;
width:auto;
margin:auto;
object-fit:contain;

}



/* GALLERY THUMBNAILS */

.woocommerce div.product .flex-control-thumbs{

display:flex;
gap:12px;
margin-top:16px;

}

.woocommerce div.product .flex-control-thumbs li{

border-radius:12px;
border:1px solid #e6edf5;
background:white;
padding:6px;

box-shadow:0 5px 15px rgba(0,0,0,0.05);

}

.woocommerce div.product .flex-control-thumbs img{

height:70px;
object-fit:contain;

}



/* PRODUCT TITLE */

.woocommerce div.product .product_title{
font-size:44px;
line-height:1.1;
margin-bottom:14px;
font-weight:700;
color:#0f172a;
}


/* PRODUCT PRICE */

.woocommerce div.product p.price{
font-size:38px;
font-weight:800;
color:#0f172a;
margin-bottom:16px;
}



/* QUANTITY INPUT */

.woocommerce div.product .qty{

height:48px;
width:90px;

border-radius:12px;
border:1px solid #e6edf5;

text-align:center;

}



/* ADD TO CART */

.single_add_to_cart_button{

height:48px;
border-radius:12px;

font-weight:600;

}



/* =====================================================
VOLUME PRICING BOX
===================================================== */


.peptalux-tier-pricing{

margin:25px 0;
padding:20px;

border-radius:16px;

border:1px solid #e6edf5;

background:linear-gradient(180deg,#ffffff,#f8fafc);

box-shadow:0 10px 30px rgba(0,0,0,0.04);

}


.peptalux-tier-pricing h4{

margin-bottom:12px;

font-size:18px;

}



.peptalux-tier-pricing table{

width:100%;

border-collapse:collapse;

}



.peptalux-tier-pricing th,
.peptalux-tier-pricing td{

padding:10px 0;

border-top:1px solid #eef3f8;

text-align:left;

font-size:14px;

}



.peptalux-tier-pricing th{

font-size:12px;

text-transform:uppercase;

letter-spacing:.06em;

color:#64748b;

}



.peptalux-tier-note{

margin-top:12px;

font-size:13px;

color:#64748b;

}
/* ===== SHOP PRODUCT IMAGE SYSTEM ===== */

.woocommerce ul.products li.product img{
max-height:260px;
width:auto;
margin:auto;
display:block;
object-fit:contain;
filter:drop-shadow(0px 20px 30px rgba(0,0,0,0.15));
transition:transform .3s ease;
}

.woocommerce ul.products li.product:hover img{
transform:scale(1.05);
}
/* ===== BIGGER PRODUCT IMAGES ===== */

.peptalux-product-card__media img{
max-height:220px;
}

.woocommerce div.product div.images img{
max-height:520px;
width:auto;
object-fit:contain;
margin:auto;
}
/* ===== PRODUCT TRUST BADGES ===== */

.peptalux-product-trust{
margin-top:18px;
display:grid;
gap:8px;
font-size:14px;
color:#475569;
}

.peptalux-product-trust span{
display:flex;
gap:8px;
align-items:center;
}
/* =====================================================
   PEPTALUX CUSTOM SINGLE PRODUCT LAYOUT
===================================================== */

.peptalux-single-product{
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 0 48px;
}

.peptalux-product-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.peptalux-product-copy{
  order: 1;
}

.peptalux-product-media{
  order: 2;
}

.peptalux-product-title{
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  color: #0f172a;
}

.peptalux-product-price-row{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.peptalux-product-price .price{
  margin: 0 !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.peptalux-product-cart form.cart{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}

.peptalux-product-cart .quantity .qty{
  width: 72px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  background: #fff;
  text-align: center;
  font-weight: 600;
}

.peptalux-product-cart .single_add_to_cart_button{
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.peptalux-product-section{
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
}

.peptalux-product-section:first-of-type{
  border-top: 1px solid #e5e7eb;
}

.peptalux-accordion-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.peptalux-accordion-icon{
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: #64748b;
}

.peptalux-accordion-content{
  display: none;
  padding-top: 14px;
}

.peptalux-accordion-content.is-open{
  display: block;
}

.peptalux-product-description,
.peptalux-static-copy{
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.peptalux-product-description p,
.peptalux-static-copy p{
  margin: 0 0 14px;
}

.peptalux-product-media .woocommerce-product-gallery{
  width: 100% !important;
}

.peptalux-product-media .woocommerce-product-gallery__wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.peptalux-product-media .woocommerce-product-gallery__image{
  text-align: center;
}

.peptalux-product-media .woocommerce-product-gallery__image img{
  width: auto !important;
  max-width: 100% !important;
  max-height: 560px !important;
  height: auto !important;
  object-fit: contain;
  margin: 0 auto;
}

.peptalux-product-media .flex-control-thumbs{
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px !important;
  padding: 0 !important;
}

.peptalux-product-media .flex-control-thumbs li{
  list-style: none;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.peptalux-product-media .flex-control-thumbs img{
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1 !important;
}

@media (max-width: 1024px){
  .peptalux-product-layout{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .peptalux-product-copy{
    order: 2;
  }

  .peptalux-product-media{
    order: 1;
  }

  .peptalux-product-title{
    font-size: 36px;
  }

  .peptalux-product-media .flex-control-thumbs{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .peptalux-product-media .flex-control-thumbs li{
    width: 88px;
  }
}


/* =====================================================
   PEPTALUX EDEN-STYLE SINGLE PRODUCT LAYOUT
===================================================== */
.peptalux-single-main{
  max-width:1280px;
  margin:0 auto;
  padding-top:32px;
  padding-bottom:56px;
}

.peptalux-product-breadcrumbs{
  margin-bottom:18px;
  color:#64748b;
  font-size:13px;
}

.peptalux-product-breadcrumbs a{
  color:#64748b;
}

.peptalux-product-layout{
  display:grid;
  grid-template-columns:minmax(0,0.9fr) minmax(420px,0.95fr);
  gap:52px;
  align-items:start;
}

.peptalux-product-copy{
  order:1;
}

.peptalux-product-media{
  order:2;
}

.peptalux-product-title{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.06;
  font-weight:700;
  color:#0f172a;
}

.peptalux-product-price-row{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.peptalux-product-price .price{
  margin:0 !important;
  font-size:30px !important;
  font-weight:700 !important;
  color:#0f172a !important;
}

.peptalux-product-cart form.cart{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 !important;
}

.peptalux-product-cart .quantity .qty{
  width:72px;
  height:44px;
  border-radius:10px;
  border:1px solid #dbe2ea;
  background:#fff;
  text-align:center;
  font-weight:600;
}

.peptalux-product-cart .single_add_to_cart_button{
  min-height:44px;
  padding:0 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.peptalux-product-section{
  border-top:1px solid #e5e7eb;
  padding:16px 0;
}

.peptalux-accordion-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0;
  border:none;
  background:transparent;
  color:#0f172a;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}

.peptalux-accordion-icon{
  flex-shrink:0;
  font-size:18px;
  line-height:1;
  color:#64748b;
}

.peptalux-accordion-content{
  display:none;
  padding-top:14px;
}

.peptalux-accordion-content.is-open{
  display:block;
}

.peptalux-product-description,
.peptalux-static-copy{
  color:#475569;
  font-size:14px;
  line-height:1.85;
}

.peptalux-product-description p,
.peptalux-static-copy p{
  margin:0 0 14px;
}

.peptalux-media-stack{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.peptalux-media-card{
  border:1px solid #e5e7eb;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.peptalux-media-card--primary{
  min-height:520px;
  padding:28px;
}

.peptalux-media-card--secondary{
  min-height:320px;
  padding:22px;
}

.peptalux-product-main-image,
.peptalux-product-gallery-image{
  display:block;
  width:auto !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain;
  margin:0 auto;
}

.peptalux-product-main-image{
  max-height:460px;
}

.peptalux-product-gallery-image{
  max-height:280px;
}

@media (max-width: 1024px){
  .peptalux-product-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

  .peptalux-product-copy{
    order:2;
  }

  .peptalux-product-media{
    order:1;
  }

  .peptalux-product-title{
    font-size:36px;
  }

  .peptalux-media-card--primary{
    min-height:420px;
  }
}

/* =====================================================

/* =====================================================
   PEPTALUX — JARVIS CONSOLIDATED ADDITIONS
   Single clean block. Replaces all prior appended CSS.
===================================================== */

/* ─────────────────────────────────────────────────
   1. PRE-GATE LANDING PAGE
───────────────────────────────────────────────── */
.peptalux-landing-hero {
  padding: 88px 0 80px;
  background: linear-gradient(180deg, #f0f5ff 0%, #eef4ff 50%, #f9fbff 100%);
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.peptalux-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(29,78,216,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.peptalux-landing-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.peptalux-landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.16);
  color: hsl(var(--primary));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.peptalux-landing-hero__headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  max-width: 700px;
}
.peptalux-landing-hero__sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}
.peptalux-landing-hero__cta {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(29,78,216,.22);
}
.peptalux-landing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-top: 4px;
}
.peptalux-landing-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Featured Compounds */
.peptalux-landing-compounds {
  padding: 72px 0;
  background: #fff;
  border-bottom: 1px solid hsl(var(--border));
}
.peptalux-landing-compounds__header {
  text-align: center;
  margin-bottom: 48px;
}
.peptalux-landing-compounds__header h2 {
  font-size: 2rem;
  color: #0f172a;
  margin: 8px 0;
}
.peptalux-landing-compounds__header p {
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.peptalux-landing-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.peptalux-landing-compounds__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.peptalux-lc {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.peptalux-lc:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.peptalux-lc__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: linear-gradient(180deg, #fff, hsla(var(--secondary), .5));
  border-bottom: 1px solid hsl(var(--border));
  padding: 24px;
}
.peptalux-lc__img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}
.peptalux-lc__body { padding: 18px; }
.peptalux-lc__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  display: block;
  margin-bottom: 6px;
}
.peptalux-lc__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.peptalux-lc__lock {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* Social Proof */
.peptalux-landing-proof {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-bottom: 1px solid hsl(var(--border));
  padding: 44px 0;
}
.peptalux-landing-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.peptalux-landing-proof__stat {
  text-align: center;
  padding: 16px 40px;
  flex: 1;
  min-width: 160px;
}
.peptalux-landing-proof__stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.peptalux-landing-proof__stat span {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.peptalux-landing-proof__divider {
  width: 1px;
  height: 48px;
  background: hsl(var(--border));
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   2. MY ACCOUNT / LOGIN PAGE
───────────────────────────────────────────────── */
.peptalux-login-page {
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f0f5ff 0%, #fff 320px);
}
.peptalux-login-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.peptalux-login-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.peptalux-login-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.16);
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.peptalux-login-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}
.peptalux-login-hero__sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* Kill ALL old pseudo-element hacks — nuclear */
.woocommerce-account:not(.logged-in) .u-column1::before,
.woocommerce-account:not(.logged-in) .u-column1::after,
.woocommerce-account:not(.logged-in) .u-columns::before,
.woocommerce-account:not(.logged-in) .u-columns::after {
  display: none !important;
  content: '' !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
  position: static !important;
}

/* Wrapper */
.peptalux-myaccount-wrap {
  max-width: 960px !important;
  margin: 0 auto 48px !important;
  padding-top: 0 !important;
}

/* Grid */
.peptalux-myaccount-wrap .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.peptalux-myaccount-wrap .u-column1,
.peptalux-myaccount-wrap .u-column2 {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  align-self: start !important;
}

/* Section headings */
.peptalux-myaccount-wrap .u-column1 h2,
.peptalux-myaccount-wrap .u-column2 h2 {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  padding: 28px 28px 4px !important;
}

/* Cards */
.peptalux-myaccount-wrap .u-column1 .woocommerce-form-login,
.peptalux-myaccount-wrap .u-column2 .woocommerce-form-register {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 40px rgba(15,23,42,.07) !important;
  padding: 0 0 24px !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.peptalux-myaccount-wrap .u-column1 .woocommerce-form-login p,
.peptalux-myaccount-wrap .u-column2 .woocommerce-form-register p {
  padding: 0 28px !important;
  margin-bottom: 14px !important;
}

.peptalux-myaccount-wrap .u-column1 .woocommerce-form-login .form-row,
.peptalux-myaccount-wrap .u-column2 .woocommerce-form-register .form-row {
  padding: 0 28px !important;
  margin-bottom: 10px !important;
}

/* Inputs */
.peptalux-myaccount-wrap input[type="text"],
.peptalux-myaccount-wrap input[type="email"],
.peptalux-myaccount-wrap input[type="password"] {
  width: 100% !important;
  padding: .8rem 1rem !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: .95rem !important;
  background: #f8fafc !important;
  box-sizing: border-box !important;
  transition: border-color .15s, box-shadow .15s !important;
}
.peptalux-myaccount-wrap input:focus {
  border-color: hsl(var(--primary)) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1) !important;
  outline: none !important;
  background: #fff !important;
}

/* Submit buttons */
.peptalux-myaccount-wrap .woocommerce-form-login__submit,
.peptalux-myaccount-wrap .woocommerce-form-register__submit,
.peptalux-myaccount-wrap button[type="submit"],
.peptalux-myaccount-wrap .woocommerce-Button {
  display: block !important;
  width: calc(100% - 56px) !important;
  margin: 8px 28px 0 !important;
  padding: .9rem 1.5rem !important;
  background: hsl(var(--primary)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: opacity .15s !important;
  text-align: center !important;
}
.peptalux-myaccount-wrap button[type="submit"]:hover { opacity: .88 !important; }

/* Lost password */
.peptalux-myaccount-wrap .woocommerce-LostPassword {
  padding: 14px 28px 0 !important;
  font-size: .82rem !important;
  text-align: center !important;
  display: block !important;
}
.peptalux-myaccount-wrap .woocommerce-LostPassword a {
  color: #64748b !important;
  text-decoration: none !important;
}

/* Privacy policy text */
.peptalux-myaccount-wrap .woocommerce-privacy-policy-text {
  font-size: .78rem !important;
  color: #94a3b8 !important;
  padding: 0 28px 4px !important;
  line-height: 1.5 !important;
}

/* Notices full width */
.peptalux-myaccount-wrap .woocommerce-notices-wrapper {
  grid-column: 1 / -1 !important;
}

/* Benefits */
#peptalux-register-benefits {
  padding: 16px 28px 20px !important;
  border-top: 1px solid #f1f5f9 !important;
  background: #f8faff !important;
  border-radius: 0 0 22px 22px !important;
}
#peptalux-register-benefits ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
#peptalux-register-benefits li {
  font-size: .85rem !important;
  color: #374151 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 500 !important;
}

/* Trust bar */
.peptalux-login-trust {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8faff;
}
.peptalux-login-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: .85rem;
  font-weight: 600;
  color: #475569;
  max-width: 900px !important;
  margin: 0 auto !important;
}
.peptalux-login-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────────
   3. CART PAGE
───────────────────────────────────────────────── */
.peptalux-cart-shell { padding: 32px 0 80px; }
.peptalux-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}
.peptalux-cart-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid hsl(var(--border));
}
.peptalux-cart-intro h2 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.peptalux-cart-intro p { color: #64748b; margin: 4px 0 0; font-size: .9rem; }
.peptalux-cart-intro__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.peptalux-cart-intro__badges span {
  font-size: .78rem;
  font-weight: 600;
  color: #475569;
  background: #f0f5ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 4px 12px;
}
.peptalux-cart-table-wrap { border: 1px solid hsl(var(--border)); border-radius: 18px; overflow: hidden; background: #fff; }
.peptalux-cart-table { width: 100%; border-collapse: collapse; }
.peptalux-cart-table thead th {
  background: #f8fafc;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  border-bottom: 1px solid hsl(var(--border));
  text-align: left;
}
.peptalux-cart-row td {
  padding: 18px 16px;
  vertical-align: middle;
  border-top: 1px solid #f1f5f9;
}
.peptalux-cart-row:first-child td { border-top: none; }
.peptalux-cart-img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  padding: 6px !important;
  display: block !important;
}
.peptalux-cart-thumb { display: block; width: 80px; height: 80px; flex-shrink: 0; }
.peptalux-cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  transition: background .15s;
  text-decoration: none;
}
.peptalux-cart-remove:hover { background: #fee2e2; color: #dc2626; }
.peptalux-cart-product__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  display: block;
  margin-bottom: 4px;
}
.peptalux-cart-product__title { font-weight: 600; color: #0f172a; text-decoration: none; font-size: .95rem; }
.peptalux-cart-product__title:hover { color: hsl(var(--primary)); }
.peptalux-cart-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid hsl(var(--border));
  background: #f8fafc;
}
.peptalux-cart-actions-note { font-size: .8rem; color: #94a3b8; }

/* BAC upsell */
.peptalux-cart-bac {
  margin-bottom: 20px;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  background: #fff;
  padding: 20px 22px;
}
.peptalux-cart-bac h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.peptalux-cart-bac p { font-size: .88rem; color: #64748b; margin: 0 0 16px; }
.peptalux-checkout-upsell__items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.peptalux-checkout-upsell__item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
}
.peptalux-checkout-upsell__item strong { font-size: .88rem; display: block; }
.peptalux-checkout-upsell__item span { font-size: .82rem; color: #64748b; }
.peptalux-bac-thumb { width: 52px; height: 52px; flex-shrink: 0; }
.peptalux-bac-thumb img {
  width: 52px !important; height: 52px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
}

/* Empty cart */
.peptalux-cart-empty { display: flex; align-items: center; justify-content: center; min-height: 40vh; padding: 60px 0; }
.peptalux-cart-empty__inner { text-align: center; max-width: 400px; }
.peptalux-cart-empty__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #eef2ff; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; color: hsl(var(--primary));
}
.peptalux-cart-empty h2 { font-size: 1.5rem; margin: 0 0 10px; }
.peptalux-cart-empty p { color: #64748b; margin: 0 0 20px; }

/* Volume note */
.peptalux-cart-volume-note {
  padding: 14px 20px;
  background: #f0f5ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  font-size: .85rem;
  color: #1e40af;
  margin-bottom: 40px !important;
}

/* ─────────────────────────────────────────────────
   4. GLOBAL FIXES
───────────────────────────────────────────────── */
.site-footer { margin-top: 80px !important; }
.page-section { padding: 52px 0 !important; }

/* ─────────────────────────────────────────────────
   5. RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .peptalux-landing-compounds__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .peptalux-landing-proof__divider { display: none; }
  .peptalux-landing-proof__stat { min-width: 140px; }
  .peptalux-cart-layout { grid-template-columns: 1fr; }
  .peptalux-cart-side { width: 100%; }
  .peptalux-checkout-upsell__items { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .peptalux-landing-hero { padding: 52px 0 48px; }
  .peptalux-landing-hero__headline { font-size: 1.9rem; }
  .peptalux-landing-compounds__grid { grid-template-columns: 1fr; }
  .peptalux-landing-proof__stat { padding: 12px 20px; }
  .peptalux-myaccount-wrap .u-columns { grid-template-columns: 1fr !important; }
  .peptalux-login-trust__inner { gap: 14px; font-size: .8rem; }
  .peptalux-cart-table thead { display: none; }
  .peptalux-cart-row { display: block; padding: 14px 16px; border-top: 1px solid #f1f5f9; }
  .peptalux-cart-row td { display: inline-block; border: none; padding: 4px 0; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .site-footer .footer-grid, .site-footer .footer-cols { grid-template-columns: 1fr !important; gap: 28px !important; }
}


/* ─────────────────────────────────────────────────
   MY ACCOUNT — FINAL ALIGNMENT FIX
   The h2 "Login" heading sits OUTSIDE .woocommerce-form-login
   so we need to wrap the whole u-column1 as a card
───────────────────────────────────────────────── */

/* Make the entire column a card, not just the form inside */
.peptalux-myaccount-wrap .u-column1,
.peptalux-myaccount-wrap .u-column2 {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 40px rgba(15,23,42,.07) !important;
  overflow: hidden !important;
  padding: 0 !important;
}

/* Remove double-card effect — flatten the inner form */
.peptalux-myaccount-wrap .u-column1 .woocommerce-form-login,
.peptalux-myaccount-wrap .u-column2 .woocommerce-form-register {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 0 24px !important;
  margin: 0 !important;
}

/* h2 headings — part of the card now */
.peptalux-myaccount-wrap .u-column1 > h2,
.peptalux-myaccount-wrap .u-column2 > h2 {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  padding: 28px 28px 0 !important;
  background: #fff !important;
}

/* Any description text WC puts between h2 and form */
.peptalux-myaccount-wrap .u-column1 > p,
.peptalux-myaccount-wrap .u-column2 > p {
  padding: 6px 28px 0 !important;
  margin: 0 !important;
  font-size: .9rem !important;
  color: #64748b !important;
}

/* Remove margin/padding from WC form itself at top since h2 is above it */
.peptalux-myaccount-wrap .woocommerce-form-login,
.peptalux-myaccount-wrap .woocommerce-form-register {
  margin-top: 16px !important;
}

/* Both columns same top alignment — no pseudo-element interference */
.peptalux-myaccount-wrap .u-columns {
  align-items: start !important;
}


/* =====================================================
   PLX AUTH PAGE — Full Rebuild
===================================================== */
.plx-auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f5ff 0%, #fff 400px);
  padding-bottom: 80px;
}

/* Hero */
.plx-auth-hero {
  padding: 56px 0 36px;
  text-align: center;
}
.plx-auth-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plx-auth-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.1;
}
.plx-auth-hero p {
  color: #475569;
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Grid */
.plx-auth-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 860px !important;
  margin: 0 auto !important;
}

/* Divider */
.plx-auth-divider {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  width: 48px;
}
.plx-auth-divider span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: .75rem;
  font-weight: 700;
  color: #94a3b8;
  flex-shrink: 0;
}

/* Cards */
.plx-auth-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(15,23,42,.07);
  overflow: hidden;
}

.plx-auth-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbff;
}
.plx-auth-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.plx-auth-card__icon--register {
  background: rgba(16,185,129,.08);
  color: #059669;
}
.plx-auth-card__head h2 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 3px !important;
  padding: 0 !important;
}
.plx-auth-card__head p {
  font-size: .82rem !important;
  color: #64748b !important;
  margin: 0 !important;
  padding: 0 !important;
}

.plx-auth-card__body {
  padding: 24px 28px;
}

/* Fields */
.plx-field {
  margin-bottom: 16px;
}
.plx-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.plx-field input[type="text"],
.plx-field input[type="email"],
.plx-field input[type="password"] {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .92rem;
  background: #f8fafc;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s, background .15s;
  color: #0f172a;
}
.plx-field input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  outline: none;
  background: #fff;
}
.plx-field__pw-wrap {
  position: relative;
}
.plx-field__pw-wrap input {
  padding-right: 3rem !important;
}
.plx-pw-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plx-pw-toggle:hover { color: hsl(var(--primary)); }

/* Remember me */
.plx-field--remember { margin-top: 4px; }
.plx-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: .82rem;
  color: #475569;
}
.plx-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: hsl(var(--primary));
  cursor: pointer;
  flex-shrink: 0;
}

/* Buttons */
.plx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .9rem 1.5rem;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  border: none;
  text-decoration: none;
}
.plx-btn--primary {
  background: hsl(var(--primary));
  color: #fff;
  box-shadow: 0 8px 20px rgba(29,78,216,.2);
}
.plx-btn--primary:hover {
  opacity: .9;
  box-shadow: 0 12px 28px rgba(29,78,216,.28);
  transform: translateY(-1px);
}
.plx-btn--register {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  box-shadow: 0 8px 20px rgba(5,150,105,.2);
}
.plx-btn--register:hover {
  box-shadow: 0 12px 28px rgba(5,150,105,.28);
}
.plx-btn--full {
  width: 100%;
  margin-top: 8px;
}

/* Footer link */
.plx-auth-card__footer {
  text-align: center;
  padding: 14px 28px 4px;
  border-top: 1px solid #f8fafc;
}
.plx-link {
  font-size: .82rem;
  color: #64748b;
  text-decoration: none;
}
.plx-link:hover { color: hsl(var(--primary)); }

/* Benefits */
.plx-benefits {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 20px;
  background: #f0fdf4;
  border-radius: 12px;
  border: 1px solid #d1fae5;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plx-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  color: #065f46;
}
.plx-benefits li svg { color: #059669; flex-shrink: 0; }

/* Privacy note */
.plx-privacy-note {
  font-size: .75rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 8px 0 4px;
}
.plx-privacy-note a { color: #64748b; }

/* Trust bar */
.plx-auth-trust {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  background: #f8faff;
}
.plx-auth-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  max-width: 860px !important;
  margin: 0 auto !important;
}
.plx-auth-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* WC notices above cards */
.plx-auth-wrap > .woocommerce-error,
.plx-auth-wrap > .woocommerce-message,
.plx-auth-wrap > .woocommerce-info {
  grid-column: 1 / -1;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .plx-auth-wrap {
    grid-template-columns: 1fr !important;
  }
  .plx-auth-divider {
    padding: 0;
    height: 32px;
    align-items: center;
  }
  .plx-auth-hero { padding: 40px 0 24px; }
  .plx-auth-card__body,
  .plx-auth-card__head { padding-left: 20px; padding-right: 20px; }
  .plx-auth-trust__inner { gap: 14px; }
}


/* =====================================================
   PLX ACCESS SECTION — Landing page bottom CTA
===================================================== */
.plx-access-section {
  padding: 88px 0 96px;
  background: linear-gradient(160deg, #f8faff 0%, #eef4ff 100%);
  border-top: 1px solid hsl(var(--border));
}
.plx-access-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  max-width: 1100px !important;
}

/* Left copy */
.plx-access-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.16);
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.plx-access-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin: 0 0 16px;
}
.plx-access-sub {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 480px;
}

/* Benefits list */
.plx-access-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plx-access-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.plx-access-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,23,42,.06);
}
.plx-access-benefits strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.plx-access-benefits span {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.5;
}
.plx-access-legal {
  font-size: .78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* Right cards */
.plx-access-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plx-access-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(15,23,42,.07);
  transition: box-shadow .18s, transform .18s;
}
.plx-access-card:hover {
  box-shadow: 0 16px 48px rgba(15,23,42,.12);
  transform: translateY(-2px);
}
.plx-access-card--register {
  border-color: rgba(37,99,235,.2);
  background: linear-gradient(145deg, #fff 0%, #f0f5ff 100%);
}
.plx-access-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 8px;
}
.plx-access-card--login .plx-access-card__label {
  color: #64748b;
}
.plx-access-card h3 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px !important;
}
.plx-access-card p {
  font-size: .85rem !important;
  color: #64748b !important;
  margin: 0 0 18px !important;
  line-height: 1.55 !important;
}
.plx-access-card__note {
  text-align: center;
  font-size: .75rem;
  color: #94a3b8;
  margin-top: 10px;
}

/* Outline button variant */
.plx-btn--outline {
  background: #fff !important;
  color: hsl(var(--primary)) !important;
  border: 1.5px solid rgba(37,99,235,.3) !important;
  box-shadow: none !important;
}
.plx-btn--outline:hover {
  background: #f0f5ff !important;
  border-color: hsl(var(--primary)) !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

/* Mobile */
@media (max-width: 900px) {
  .plx-access-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .plx-access-section { padding: 60px 0 72px; }
}

/* =====================================================
   INNER PAGES — Premium pass
===================================================== */

/* Page hero */
.plx-page-hero {
  background: linear-gradient(160deg, #f0f5ff 0%, #eef4ff 60%, #fff 100%);
  border-bottom: 1px solid hsl(var(--border));
  padding: 56px 0 48px;
  text-align: center;
}
.plx-page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.16);
  color: hsl(var(--primary)); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.plx-page-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #0f172a; margin: 0 0 12px; line-height: 1.1;
}
.plx-page-hero__sub {
  color: #475569; font-size: 1rem; max-width: 520px;
  margin: 0 auto; line-height: 1.7;
}

/* Generic page wrapper */
.plx-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

/* ── ABOUT ── */
.plx-about-intro {
  font-size: 1.1rem; color: #334155; line-height: 1.85;
  margin-bottom: 48px; max-width: 680px;
}
.plx-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.plx-about-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 28px;
  transition: box-shadow .18s, transform .18s;
}
.plx-about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.plx-about-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(37,99,235,.08); display: flex;
  align-items: center; justify-content: center;
  color: hsl(var(--primary)); margin-bottom: 16px;
}
.plx-about-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 6px; }
.plx-about-card p { font-size: .85rem; color: #64748b; margin: 0; line-height: 1.6; }

/* ── CONTACT ── */
.plx-contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.plx-contact-info {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(15,23,42,.06);
}
.plx-contact-info h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 24px; }
.plx-contact-line { margin-bottom: 20px; }
.plx-contact-line strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; margin-bottom: 4px; }
.plx-contact-line a, .plx-contact-line span { font-size: .95rem; color: #334155; text-decoration: none; font-weight: 500; }
.plx-contact-line a:hover { color: hsl(var(--primary)); }
.plx-contact-notice {
  margin-top: 24px; padding: 16px; background: #fffbeb;
  border: 1px solid #fde68a; border-radius: 12px;
  font-size: .8rem; color: #92400e; line-height: 1.6;
}
.plx-contact-notice strong { display: block; margin-bottom: 4px; font-size: .8rem; }

.plx-contact-form-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(15,23,42,.06);
}
.plx-contact-form-card h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 24px; }
.plx-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plx-form-grid input,
.plx-form-grid textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: .92rem; background: #f8fafc;
  box-sizing: border-box; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  color: #0f172a;
}
.plx-form-grid input:focus,
.plx-form-grid textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  outline: none; background: #fff;
}
.plx-form-grid .plx-field-full { grid-column: 1 / -1; }
.plx-form-grid textarea { resize: vertical; }

/* ── FAQ ── */
.plx-faq-list { max-width: 720px; margin: 0 auto; }
.plx-faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.plx-faq-item.open { box-shadow: 0 8px 24px rgba(15,23,42,.07); }
.plx-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 600;
  font-size: .95rem; color: #0f172a; user-select: none;
  gap: 12px;
}
.plx-faq-q svg { flex-shrink: 0; color: #94a3b8; transition: transform .2s; }
.plx-faq-item.open .plx-faq-q svg { transform: rotate(180deg); color: hsl(var(--primary)); }
.plx-faq-a {
  display: none; padding: 0 22px 18px;
  font-size: .88rem; color: #475569; line-height: 1.75;
}
.plx-faq-item.open .plx-faq-a { display: block; }

/* ── LEGAL PAGES (terms, privacy, refund, shipping) ── */
.plx-legal {
  max-width: 720px; margin: 0 auto;
  padding: 56px 0 80px;
}
.plx-legal h2 {
  font-size: 1.1rem; font-weight: 800; color: #0f172a;
  margin: 32px 0 10px; padding-top: 32px;
  border-top: 1px solid hsl(var(--border));
}
.plx-legal h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.plx-legal p { font-size: .92rem; color: #475569; line-height: 1.8; margin: 0 0 14px; }
.plx-legal ul { padding-left: 20px; color: #475569; font-size: .92rem; line-height: 1.8; }
.plx-legal-meta { font-size: .78rem; color: #94a3b8; padding-top: 24px; border-top: 1px solid hsl(var(--border)); margin-top: 40px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .plx-about-grid { grid-template-columns: 1fr !important; }
  .plx-contact-grid { grid-template-columns: 1fr !important; }
  .plx-form-grid { grid-template-columns: 1fr !important; }
  .plx-page-hero { padding: 40px 0 32px; }
}

/* =============================================================
   PEPTALUX REDESIGN — CONSOLIDATED STYLES
   ============================================================= */

/* ── TRUST BAR ─────────────────────────────────────────────── */
.top-trust-bar { background: #0f172a; padding: 8px 0; }
.trust-inner { display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; }
.trust-inner span { display:flex; align-items:center; gap:6px; font-size:11px; color:rgba(255,255,255,.8); font-weight:500; }
.trust-inner svg { opacity:.7; flex-shrink:0; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  height: 68px; display:flex; align-items:center;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,.08); }
.nav-row { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:24px; height:68px; width:100%; }
.site-logo img { height:32px; display:block; }
.desktop-nav { display:flex; align-items:center; justify-content:center; gap:4px; }
.desktop-nav a { padding:8px 14px; border-radius:8px; font-size:.88rem; font-weight:500; color:#374151; text-decoration:none; transition:all .15s; }
.desktop-nav a:hover, .desktop-nav a.current { color:hsl(var(--primary)); background:rgba(37,99,235,.06); }
.header-icons { display:flex; align-items:center; gap:8px; }
.header-account-btn, .header-cart-btn {
  width:40px; height:40px; border-radius:10px; border:1px solid hsl(var(--border));
  display:inline-flex; align-items:center; justify-content:center;
  color:#374151; text-decoration:none; transition:all .15s; background:#fff; cursor:pointer;
}
.header-account-btn:hover, .header-cart-btn:hover { border-color:hsl(var(--primary)); color:hsl(var(--primary)); background:#f0f5ff; }
.header-cart-btn { position:relative; }
.header-cart__badge { position:absolute; top:-5px; right:-5px; min-width:18px; height:18px; padding:0 4px; border-radius:999px; background:hsl(var(--primary)); color:#fff; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; }
.header-cart__badge[hidden] { display:none; }
.mobile-menu-toggle { display:none; }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:#fff; z-index:300; flex-direction:column; padding:80px 24px 40px; gap:4px; overflow-y:auto; }
.mobile-nav.open { display:flex !important; }
.mobile-nav a { padding:14px 16px; font-size:1.1rem; font-weight:600; color:#0f172a; text-decoration:none; border-radius:12px; border-bottom:1px solid #f1f5f9; }
.mobile-nav a:hover { background:#f0f5ff; color:hsl(var(--primary)); }
.mobile-nav-icon-link { display:flex !important; align-items:center; gap:10px; }
.mobile-nav-divider { height:1px; background:#e2e8f0; margin:8px 0; }
.mobile-nav-close { position:absolute; top:20px; right:20px; background:none; border:1px solid #e2e8f0; border-radius:10px; cursor:pointer; width:40px; height:40px; font-size:20px; color:#64748b; display:flex; align-items:center; justify-content:center; transition:all .15s; }
.mobile-nav-close:hover { color:#0f172a; border-color:#cbd5e1; }

@media (max-width:900px) {
  .site-header { height:60px; }
  .nav-row { height:60px; }
  .desktop-nav { display:none; }
  .mobile-menu-toggle { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:10px; border:1px solid hsl(var(--border)); background:#fff; cursor:pointer; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background:#0f172a; color:rgba(255,255,255,.7); margin-top:0 !important; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; padding:64px 0 48px; }
.footer-logo img { height:28px; filter:brightness(0) invert(1); opacity:.9; margin-bottom:16px; display:block; }
.footer-copy { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,.5); margin:0 0 20px; max-width:260px; }
.footer-trust { display:flex; flex-direction:column; gap:6px; }
.footer-trust span { font-size:.78rem; color:rgba(255,255,255,.4); display:flex; align-items:center; gap:6px; }
.footer-col h4 { font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin:0 0 16px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.85rem; color:rgba(255,255,255,.6); text-decoration:none; transition:color .15s; }
.footer-links a:hover { color:#fff; }
.footer-research-notice { margin-top:20px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); }
.footer-research-notice strong { font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.4); display:block; margin-bottom:8px; }
.footer-research-notice p { font-size:.78rem; color:rgba(255,255,255,.3); line-height:1.6; margin:0; }
.footer-badges { border-top:1px solid rgba(255,255,255,.08); padding:24px 0; }
.footer-badges-inner { display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; }
.footer-badge { display:flex; align-items:center; gap:7px; font-size:.78rem; color:rgba(255,255,255,.4); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:20px 0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; }
.footer-bottom-inner span, .footer-bottom-inner a { font-size:.78rem; color:rgba(255,255,255,.35); text-decoration:none; }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a:hover { color:rgba(255,255,255,.7); }
@media (max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; gap:32px; padding:48px 0 36px; } }
@media (max-width:600px) { .footer-grid { grid-template-columns:1fr; } .footer-bottom-inner { flex-direction:column; gap:8px; text-align:center; } .footer-bottom-links { justify-content:center; } }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.peptalux-shop-breadcrumb, .peptalux-product-breadcrumbs { padding:14px 0; }
.peptalux-shop-breadcrumb nav, .peptalux-product-breadcrumbs { display:flex; align-items:center; gap:6px; font-size:.82rem; color:#94a3b8; }
.peptalux-shop-breadcrumb nav a, .peptalux-product-breadcrumbs a { color:#64748b; text-decoration:none; }
.peptalux-shop-breadcrumb nav a:hover, .peptalux-product-breadcrumbs a:hover { color:hsl(var(--primary)); }
.breadcrumb-sep { color:#cbd5e1; display:flex; align-items:center; }

/* ── SHOP / CATALOG ─────────────────────────────────────────── */
.peptalux-catalog-section { padding:0 0 80px; }
.peptalux-catalog-header { text-align:center; padding:40px 0 32px; }
.peptalux-catalog-title { font-size:2.5rem; font-weight:800; color:#0f172a; margin:0 0 10px; }
.peptalux-catalog-subtitle { font-size:1rem; color:#64748b; margin:0; }
.peptalux-catalog-pills { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:28px; }
.peptalux-filter-pill { padding:7px 16px; border-radius:999px; border:1px solid hsl(var(--border)); background:#fff; font-size:.82rem; font-weight:600; color:#64748b; cursor:pointer; transition:all .15s; }
.peptalux-filter-pill:hover { border-color:hsl(var(--primary)); color:hsl(var(--primary)); }
.peptalux-filter-pill.is-active { background:hsl(var(--primary)); border-color:hsl(var(--primary)); color:#fff; }
.peptalux-catalog-toolbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.peptalux-catalog-count { font-size:.88rem; color:#64748b; }
.peptalux-catalog-count strong { color:#0f172a; }
.peptalux-catalog-search-wrap { margin-bottom:28px; }
.peptalux-catalog-search-inner { position:relative; max-width:480px; }
.peptalux-search-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#94a3b8; pointer-events:none; }
.peptalux-catalog-search-input { width:100%; padding:10px 14px 10px 40px; border:1px solid hsl(var(--border)); border-radius:12px; font-size:.9rem; color:#0f172a; background:#fff; outline:none; transition:border-color .15s; box-sizing:border-box; }
.peptalux-catalog-search-input:focus { border-color:hsl(var(--primary)); box-shadow:0 0 0 3px rgba(37,99,235,.08); }
.peptalux-catalog-pagination { margin-top:40px; display:flex; justify-content:center; }
.peptalux-catalog-empty-full { text-align:center; padding:80px 24px; }

/* ── PRODUCT CARDS ──────────────────────────────────────────── */
.woocommerce ul.products { display:grid !important; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)) !important; gap:24px !important; margin:0 !important; padding:0 !important; list-style:none !important; }
.woocommerce ul.products li.product { background:#fff; border:1px solid hsl(var(--border)); border-radius:18px; overflow:hidden; transition:transform .18s,box-shadow .18s; margin:0 !important; padding:0 !important; }
.woocommerce ul.products li.product:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(15,23,42,.1); }
.woocommerce ul.products li.product a img { display:block; width:100%; height:220px; object-fit:contain; padding:20px; background:#f8fafc; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size:.95rem !important; font-weight:700 !important; padding:12px 16px 4px !important; color:#0f172a !important; }
.woocommerce ul.products li.product .price { padding:0 16px 12px !important; color:hsl(var(--primary)) !important; font-weight:700 !important; font-size:1rem !important; }
.woocommerce ul.products li.product .button { margin:0 16px 16px !important; width:calc(100% - 32px) !important; border-radius:10px !important; font-size:.85rem !important; padding:.65rem !important; }

/* ── SINGLE PRODUCT ─────────────────────────────────────────── */
.peptalux-single-wrap { padding-bottom:80px; }
.peptalux-product-layout { display:grid; grid-template-columns:1.2fr 1fr; gap:56px; align-items:start; padding:32px 0 48px; }
.peptalux-product-gallery {}
.peptalux-gallery-main { display:block; position:relative; border-radius:20px; border:1px solid hsl(var(--border)); overflow:hidden; background:#f8fafc; }
.peptalux-gallery-main-img { width:100%; height:auto; display:block; transition:transform .4s ease; }
.peptalux-gallery-main:hover .peptalux-gallery-main-img { transform:scale(1.03); }
.peptalux-gallery-zoom-hint { position:absolute; bottom:12px; right:12px; background:rgba(15,23,42,.6); color:#fff; font-size:11px; font-weight:600; padding:5px 10px; border-radius:999px; display:flex; align-items:center; gap:4px; opacity:0; transition:opacity .2s; }
.peptalux-gallery-main:hover .peptalux-gallery-zoom-hint { opacity:1; }
.peptalux-gallery-thumbs { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.peptalux-gallery-thumb { width:72px; height:72px; border-radius:10px; border:1px solid hsl(var(--border)); overflow:hidden; background:#f8fafc; display:block; }
.peptalux-gallery-thumb img { width:100%; height:100%; object-fit:contain; padding:6px; }
.peptalux-gallery-thumb:hover { border-color:hsl(var(--primary)); }
.peptalux-product-cat { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:hsl(var(--primary)); margin-bottom:10px; display:inline-block; text-decoration:none; }
.peptalux-product-title { font-size:2rem; font-weight:800; color:#0f172a; line-height:1.15; margin:0 0 14px; }
.peptalux-product-price { font-size:1.6rem; font-weight:800; color:hsl(var(--primary)); margin:0 0 20px; }
.peptalux-product-price .price { font-size:1.6rem !important; font-weight:800 !important; color:hsl(var(--primary)) !important; }
.peptalux-volume-box { background:linear-gradient(135deg,#f0f5ff,#eef4ff); border:1px solid rgba(37,99,235,.2); border-radius:14px; padding:16px 18px; margin:0 0 20px; }
.peptalux-volume-box h4 { font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:hsl(var(--primary)); margin:0 0 12px; }
.peptalux-volume-tiers { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.peptalux-volume-tier { background:#fff; border:1px solid rgba(37,99,235,.15); border-radius:10px; padding:10px 14px; display:flex; flex-direction:column; gap:2px; }
.peptalux-tier-label { font-size:.75rem; color:#64748b; font-weight:500; }
.peptalux-tier-discount { font-size:.88rem; font-weight:800; color:#1e40af; }
.peptalux-volume-note { font-size:.75rem; color:#64748b; margin:0; }
.peptalux-short-desc { font-size:.9rem; color:#475569; line-height:1.7; margin-bottom:16px; }
.peptalux-atc-wrap .single_add_to_cart_button, .peptalux-atc-wrap button[type="submit"] { width:100% !important; padding:1rem 1.5rem !important; font-size:1rem !important; font-weight:700 !important; border-radius:14px !important; box-shadow:0 12px 28px rgba(29,78,216,.2) !important; margin-top:16px !important; }
.peptalux-product-trust { display:flex; gap:8px; flex-wrap:wrap; margin-top:18px; }
.peptalux-trust-pill { display:flex; align-items:center; gap:5px; padding:6px 11px; background:#f0f5ff; border-radius:999px; font-size:.74rem; font-weight:600; color:#1e40af; }

/* Tabs */
.peptalux-product-tabs { margin-top:60px; border-top:1px solid hsl(var(--border)); padding-top:0; }
.peptalux-tabs-nav { display:flex; gap:0; border-bottom:1px solid hsl(var(--border)); margin-bottom:32px; }
.peptalux-tab-btn { padding:14px 20px; font-size:.88rem; font-weight:600; color:#64748b; background:none; border:none; border-bottom:2px solid transparent; cursor:pointer; transition:all .15s; margin-bottom:-1px; }
.peptalux-tab-btn:hover { color:#0f172a; }
.peptalux-tab-btn.is-active { color:hsl(var(--primary)); border-bottom-color:hsl(var(--primary)); }
.peptalux-tab-panel { display:none; }
.peptalux-tab-panel.is-active { display:block; }
.peptalux-coa-panel, .peptalux-research-notes-panel { text-align:center; padding:48px 24px; }
.peptalux-coa-icon { width:72px; height:72px; background:#f0f5ff; border-radius:18px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; color:hsl(var(--primary)); }
.peptalux-coa-panel h3, .peptalux-research-notes-panel h3 { font-size:1.25rem !important; font-weight:700 !important; color:#0f172a !important; margin:0 0 10px !important; }
.peptalux-coa-panel p, .peptalux-research-notes-panel p { color:#64748b !important; font-size:.9rem !important; margin:0 0 20px !important; }

/* Related Products */
.peptalux-related-products { margin-top:60px; }
.peptalux-related-title { font-size:1.5rem; font-weight:800; color:#0f172a; margin:0 0 24px; }
.peptalux-related-grid.products { display:grid !important; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)) !important; gap:20px !important; }

@media (max-width:900px) {
  .peptalux-product-layout { grid-template-columns:1fr !important; gap:32px; }
  .peptalux-catalog-title { font-size:1.75rem; }
}

/* =====================================================
   HEADER & FOOTER — Full rebuild
===================================================== */

/* ── TRUST BAR ── */
.plx-trust-bar {
  background: #0f172a;
  padding: 9px 0;
}
.plx-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.plx-trust-bar__inner span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}
.plx-trust-bar__inner svg { opacity: .6; flex-shrink: 0; }

/* ── HEADER ── */
.plx-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  transition: box-shadow .2s;
}
.plx-header.scrolled {
  box-shadow: 0 4px 24px rgba(15,23,42,.08);
}
.plx-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 68px;
  width: 100%;
}
.plx-header__logo img {
  height: 30px;
  display: block;
}
.plx-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.plx-header__nav a {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.plx-header__nav a:hover,
.plx-header__nav a.current {
  color: hsl(var(--primary));
  background: rgba(37,99,235,.06);
}
.plx-header__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}
.plx-header__icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid hsl(var(--border));
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  cursor: pointer;
}
.plx-header__icon-btn:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
  background: #f0f5ff;
}
.plx-header__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.plx-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid hsl(var(--border));
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
}

/* ── MOBILE NAV ── */
.plx-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  max-width: 320px;
  box-shadow: 4px 0 40px rgba(15,23,42,.15);
}
.plx-mobile-nav.open {
  transform: translateX(0);
}
.plx-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.4);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.plx-mobile-nav__overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.plx-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid hsl(var(--border));
}
.plx-mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.plx-mobile-nav__close:hover { background: #f1f5f9; }
.plx-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  overflow-y: auto;
  flex: 1;
}
.plx-mobile-nav__links a {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  transition: background .15s, color .15s;
}
.plx-mobile-nav__links a:hover {
  background: #f0f5ff;
  color: hsl(var(--primary));
}

/* ── FOOTER ── */
.plx-footer {
  background: #0f172a;
  margin-top: 80px;
}
.plx-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.plx-footer__logo {
  display: block;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 16px;
}
.plx-footer__tagline {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 240px;
}
.plx-footer__badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plx-footer__badges span {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.plx-footer__col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: 0 0 16px;
}
.plx-footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plx-footer__col nav a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.plx-footer__col nav a:hover { color: #fff; }

.plx-footer__notice {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}
.plx-footer__notice strong {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.plx-footer__notice p {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.plx-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.plx-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.plx-footer__bottom-inner > span {
  font-size: .73rem;
  color: rgba(255,255,255,.25);
}
.plx-footer__bottom-links {
  display: flex;
  gap: 16px;
}
.plx-footer__bottom-links a {
  font-size: .73rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
}
.plx-footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .plx-header__nav a { padding: 8px 10px; font-size: .82rem; }
}
@media (max-width: 900px) {
  .plx-header__nav { display: none; }
  .plx-header__burger { display: inline-flex; }
  .plx-header__inner { grid-template-columns: auto auto; }
  .plx-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 36px; }
  .plx-trust-bar__inner { gap: 14px; }
}
@media (max-width: 600px) {
  .plx-header { height: 60px; }
  .plx-header__inner { height: 60px; }
  .plx-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .plx-footer__bottom-inner { flex-direction: column; text-align: center; }
  .plx-trust-bar__inner { gap: 10px; }
  .plx-trust-bar__inner span { font-size: 10px; }
}

/* =====================================================
   SHOP + PRODUCT PAGES — Full CSS pass
===================================================== */

/* ── BREADCRUMB ── */
.peptalux-shop-breadcrumb,
.peptalux-product-breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid hsl(var(--border));
  background: #fafbfc;
}
.peptalux-shop-breadcrumb nav,
.peptalux-product-breadcrumbs .section-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #94a3b8;
}
.peptalux-shop-breadcrumb a,
.peptalux-product-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color .15s;
}
.peptalux-shop-breadcrumb a:hover,
.peptalux-product-breadcrumbs a:hover { color: hsl(var(--primary)); }
.breadcrumb-sep { color: #cbd5e1; }

/* ── CATALOG PAGE ── */
.peptalux-catalog-section { padding: 40px 0 80px; }
.peptalux-catalog-header { text-align: center; margin-bottom: 32px; }
.peptalux-catalog-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: #0f172a; margin: 0 0 8px;
}
.peptalux-catalog-subtitle { color: #64748b; font-size: .95rem; margin: 0; }

/* Filter pills */
.peptalux-catalog-pills {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.peptalux-filter-pill {
  padding: 7px 16px; border-radius: 999px; border: 1.5px solid hsl(var(--border));
  background: #fff; font-size: .82rem; font-weight: 600; color: #475569;
  cursor: pointer; transition: all .15s;
}
.peptalux-filter-pill:hover,
.peptalux-filter-pill.is-active {
  background: hsl(var(--primary)); border-color: hsl(var(--primary));
  color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,.2);
}

/* Toolbar */
.peptalux-catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding: 12px 0;
  border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border));
}
.peptalux-catalog-count { font-size: .85rem; color: #64748b; }
.peptalux-catalog-count strong { color: #0f172a; font-weight: 700; }
.woocommerce-ordering select {
  padding: 7px 12px; border: 1.5px solid hsl(var(--border));
  border-radius: 8px; font-size: .82rem; background: #fff;
  color: #374151; cursor: pointer;
}

/* Search */
.peptalux-catalog-search-wrap { margin-bottom: 28px; }
.peptalux-catalog-search-inner {
  position: relative; max-width: 480px; margin: 0 auto;
}
.peptalux-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #94a3b8; pointer-events: none;
}
.peptalux-catalog-search-input {
  width: 100%; padding: .75rem 1rem .75rem 42px;
  border: 1.5px solid hsl(var(--border)); border-radius: 12px;
  font-size: .92rem; background: #fff; box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.peptalux-catalog-search-input:focus {
  border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  outline: none;
}

/* ── PRODUCT CARDS (WooCommerce override) ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 22px !important;
  margin: 0 !important; padding: 0 !important; list-style: none !important;
}
.woocommerce ul.products li.product {
  background: #fff !important;
  border: 1px solid hsl(var(--border)) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: transform .18s, box-shadow .18s !important;
  margin: 0 !important; padding: 0 !important;
  display: flex !important; flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(15,23,42,.1) !important;
}
.woocommerce ul.products li.product a img {
  display: block !important; width: 100% !important;
  height: 210px !important; object-fit: contain !important;
  padding: 20px !important; background: #f8fafc !important;
  border-bottom: 1px solid hsl(var(--border)) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: .95rem !important; font-weight: 700 !important;
  padding: 14px 16px 6px !important; color: #0f172a !important;
  line-height: 1.35 !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 16px 10px !important;
  color: hsl(var(--primary)) !important;
  font-weight: 700 !important; font-size: .95rem !important;
}
.woocommerce ul.products li.product .button {
  display: block !important;
  margin: 0 16px 16px !important;
  width: calc(100% - 32px) !important;
  border-radius: 10px !important;
  font-size: .84rem !important;
  padding: .65rem 1rem !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
.peptalux-catalog-empty {
  text-align: center; padding: 48px 24px; color: #64748b;
}
.peptalux-catalog-pagination { margin-top: 40px; text-align: center; }

/* ── SINGLE PRODUCT ── */
.peptalux-single-wrap { padding-bottom: 80px; }
.peptalux-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  padding: 36px 0 48px;
}

/* Gallery */
.peptalux-gallery-main {
  display: block; position: relative; border-radius: 18px;
  overflow: hidden; border: 1px solid hsl(var(--border));
  background: #f8fafc;
}
.peptalux-gallery-main-img {
  width: 100% !important; height: auto !important;
  display: block !important; transition: transform .3s;
}
.peptalux-gallery-main:hover .peptalux-gallery-main-img { transform: scale(1.02); }
.peptalux-gallery-zoom-hint {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(15,23,42,.55); color: #fff;
  font-size: .75rem; padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s;
}
.peptalux-gallery-main:hover .peptalux-gallery-zoom-hint { opacity: 1; }
.peptalux-gallery-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.peptalux-gallery-thumb {
  display: block; width: 64px; height: 64px; border-radius: 10px;
  overflow: hidden; border: 1.5px solid hsl(var(--border));
  background: #f8fafc; transition: border-color .15s;
}
.peptalux-gallery-thumb:hover { border-color: hsl(var(--primary)); }
.peptalux-gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }

/* Product info */
.peptalux-product-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: hsl(var(--primary)); margin-bottom: 10px;
  text-decoration: none;
}
.peptalux-product-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 800 !important; color: #0f172a !important;
  line-height: 1.15 !important; margin: 0 0 14px !important;
}
.peptalux-product-price .price {
  font-size: 1.6rem !important; font-weight: 800 !important;
  color: hsl(var(--primary)) !important;
}

/* Volume pricing */
.peptalux-volume-box {
  background: linear-gradient(135deg, #f0f5ff, #eef4ff);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 14px; padding: 18px 20px; margin: 20px 0;
}
.peptalux-volume-box h4 {
  font-size: .75rem !important; font-weight: 700 !important;
  letter-spacing: .09em; text-transform: uppercase;
  color: hsl(var(--primary)) !important; margin: 0 0 12px !important;
}
.peptalux-volume-tiers { display: flex; gap: 10px; flex-wrap: wrap; }
.peptalux-volume-tier {
  background: #fff; border: 1px solid rgba(37,99,235,.15);
  border-radius: 8px; padding: 8px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.peptalux-tier-label { font-size: .75rem; color: #64748b; font-weight: 500; }
.peptalux-tier-discount { font-size: .88rem; font-weight: 800; color: #1e40af; }
.peptalux-volume-note { font-size: .75rem; color: #64748b; margin: 10px 0 0; }

/* Short desc */
.peptalux-short-desc { font-size: .9rem; color: #475569; line-height: 1.75; margin: 16px 0; }

/* ATC button */
.peptalux-atc-wrap .single_add_to_cart_button,
.peptalux-atc-wrap .button {
  width: 100% !important; padding: 1rem 1.5rem !important;
  font-size: 1rem !important; font-weight: 700 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(29,78,216,.2) !important;
}
.peptalux-atc-wrap form.cart { display: flex; flex-direction: column; gap: 10px; }
.peptalux-atc-wrap .quantity input {
  width: 80px; padding: .7rem 1rem; border: 1.5px solid hsl(var(--border));
  border-radius: 10px; font-size: 1rem; text-align: center;
}

/* Trust pills */
.peptalux-product-trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.peptalux-trust-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; background: #f0f5ff;
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 999px; font-size: .73rem; font-weight: 600; color: #1e40af;
}

/* Tabs */
.peptalux-product-tabs { margin-top: 56px; border-top: 1px solid hsl(var(--border)); padding-top: 8px; }
.peptalux-tabs-nav { display: flex; gap: 4px; border-bottom: 1px solid hsl(var(--border)); margin-bottom: 28px; }
.peptalux-tab-btn {
  padding: 12px 20px; font-size: .88rem; font-weight: 600;
  color: #64748b; background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.peptalux-tab-btn:hover { color: hsl(var(--primary)); }
.peptalux-tab-btn.is-active { color: hsl(var(--primary)); border-bottom-color: hsl(var(--primary)); }
.peptalux-tab-panel { display: none; }
.peptalux-tab-panel.is-active { display: block; }

/* Accordions */
.peptalux-product-section { border: 1px solid hsl(var(--border)); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.peptalux-accordion-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; background: #fff; border: none; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: #0f172a; text-align: left;
  transition: background .15s;
}
.peptalux-accordion-toggle:hover { background: #f8fafc; }
.peptalux-accordion-icon { font-size: 1.2rem; color: #94a3b8; }
.peptalux-accordion-content { display: none; padding: 0 18px 16px; }
.peptalux-accordion-content.open { display: block; }
.peptalux-static-copy p { font-size: .85rem; color: #475569; line-height: 1.75; margin: 0; }

/* COA / Research Notes panels */
.peptalux-coa-panel, .peptalux-research-notes-panel {
  text-align: center; padding: 40px 24px;
}
.peptalux-coa-icon { color: hsl(var(--primary)); margin-bottom: 16px; }
.peptalux-coa-panel h3, .peptalux-research-notes-panel h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 10px; }
.peptalux-coa-panel p, .peptalux-research-notes-panel p { font-size: .88rem; color: #64748b; margin: 0 0 20px; }

/* Related products */
.peptalux-related-products { margin-top: 56px; }
.peptalux-related-title { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: 24px; }
.peptalux-related-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .peptalux-product-layout { grid-template-columns: 1fr !important; gap: 28px; }
  .peptalux-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .woocommerce ul.products { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important; }
}
@media (max-width: 600px) {
  .peptalux-related-grid { grid-template-columns: 1fr !important; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; }
  .peptalux-tabs-nav { gap: 0; }
  .peptalux-tab-btn { padding: 10px 12px; font-size: .8rem; }
}

/* ── PRODUCT CARD IMAGE SWAP ON HOVER ── */
.peptalux-product-card__media {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid hsl(var(--border));
}
.peptalux-product-card__image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  transition: opacity .3s ease;
}
.peptalux-product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.peptalux-product-card__media.has-secondary-image:hover .peptalux-product-card__image--primary {
  opacity: 0;
}
.peptalux-product-card__media.has-secondary-image:hover .peptalux-product-card__image--secondary {
  opacity: 1;
}

/* ── FOOTER FONT UNIFORMITY ── */
.plx-footer,
.plx-footer h4,
.plx-footer p,
.plx-footer a,
.plx-footer span,
.plx-footer nav a,
.plx-footer__tagline,
.plx-footer__badges span,
.plx-footer__notice strong,
.plx-footer__notice p,
.plx-footer__bottom-inner span,
.plx-footer__bottom-links a {
  font-family: inherit !important;
  -webkit-font-smoothing: antialiased;
}
.plx-footer__col h4 {
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.3) !important;
  margin: 0 0 16px !important;
}
.plx-footer__col nav a,
.plx-footer__tagline {
  font-size: .84rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
}
.plx-footer__badges span {
  font-size: .78rem !important;
  font-weight: 400 !important;
}
.plx-footer__notice strong {
  font-size: .72rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
}
.plx-footer__notice p,
.plx-footer__bottom-inner > span,
.plx-footer__bottom-links a {
  font-size: .75rem !important;
  font-weight: 400 !important;
}

/* ── LIVE SEARCH VISIBILITY FIX ── */
/* Ensure display:none applied by JS search works on both card types */
.peptalux-product-card[style*="display: none"],
.woocommerce ul.products li.product[style*="display: none"] {
  display: none !important;
}
/* Keep grid from collapsing with gaps on hidden items */
.woocommerce ul.products li.product[style*="display: none"] {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* ── PRODUCT GALLERY ── */
.plx-gallery-main {
  border-radius: 18px; overflow: hidden;
  border: 1px solid hsl(var(--border)); background: #f8fafc;
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
}
.plx-gallery-main__img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 24px; box-sizing: border-box;
  transition: opacity .2s ease;
}
.plx-gallery-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.plx-gallery-thumb {
  width: 68px; height: 68px; border-radius: 10px;
  overflow: hidden; border: 2px solid hsl(var(--border));
  background: #f8fafc; cursor: pointer; padding: 0;
  transition: border-color .15s, box-shadow .15s;
}
.plx-gallery-thumb:hover { border-color: hsl(var(--primary)); }
.plx-gallery-thumb.is-active { border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.plx-gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; display: block; }

/* ── DISCLAIMER BOX ── */
.plx-disclaimer {
  background: #f8fafc; border: 1px solid hsl(var(--border));
  border-radius: 12px; padding: 16px 20px; margin-bottom: 12px;
}
.plx-disclaimer p { font-size: .82rem !important; color: #64748b !important; line-height: 1.75 !important; margin: 0 !important; }
.plx-disclaimer strong { color: #475569; }

/* ── SHOP CARD: remove image shadow, fill box fully ── */
.woocommerce ul.products li.product a img,
.peptalux-product-card__image {
  box-shadow: none !important;
  padding: 0 !important;
  object-fit: cover !important;
}

/* ── SHOP CARD IMAGE: no shadow, no padding, proportional fill ── */
.peptalux-product-card__media {
  height: 220px !important;
  overflow: hidden !important;
}
.peptalux-product-card__image--primary,
.peptalux-product-card__image--secondary {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  background: #f8fafc !important;
}
.peptalux-product-card__image--primary { position: relative !important; }
.peptalux-product-card__image--secondary { position: absolute !important; top: 0 !important; left: 0 !important; }
.woocommerce ul.products li.product a img {
  padding: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
  height: 220px !important;
}

/* ── SHOP CARD: NUCLEAR SHADOW + PADDING RESET ── */
.peptalux-product-card .peptalux-product-card__media,
.peptalux-product-card .peptalux-product-card__media * {
  box-shadow: none !important;
  filter: none !important;
}
.peptalux-product-card__media {
  position: relative !important;
  height: 220px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  border-bottom: 1px solid hsl(var(--border)) !important;
}
.peptalux-product-card__image--primary,
.peptalux-product-card__image--secondary {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  filter: none !important;
  display: block !important;
  background: transparent !important;
}
.peptalux-product-card__image--secondary {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  opacity: 0 !important;
}
.peptalux-product-card__media.has-secondary-image:hover .peptalux-product-card__image--primary {
  opacity: 0 !important;
}
.peptalux-product-card__media.has-secondary-image:hover .peptalux-product-card__image--secondary {
  opacity: 1 !important;
}

/* ── SECONDARY IMAGE: force contained, no zoom ── */
.peptalux-product-card__image--secondary[width],
.peptalux-product-card__image--secondary[height],
.peptalux-product-card__image--secondary {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  inset: 0 !important;
}

/* ── IMAGE SWAP: hide secondary entirely, JS swaps src on hover ── */
.peptalux-product-card__image--secondary { display: none !important; }
