/*
Theme Name: PurePeptides
Author: Jeremy Ratliff
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth;overflow-x:hidden}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{appearance:none;border-radius:0}input[type="search"]{appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

body{
font-family:"Open Sans","Helvetica Neue",Arial,sans-serif;
font-size:15px;
color:#111827;
background:#f0f2f5;
min-height:100vh;
display:flex;
flex-direction:column;
}
p,
li{
font-size:15px;
}
:root{
--purepeptides-page-gutter:32px;
--purepeptides-link-color:#0ea5e9;
--purepeptides-link-hover-color:#0284c7;
--color-message-success-bg:#e3fcec;
--color-message-success-text:#1f9d55;
--color-message-success-border:#51d88a;
--color-message-warning-bg:#fffabc;
--color-message-warning-text:#8d7b00;
--color-message-warning-border:#d3b800;
--color-message-error-bg:#fcebea;
--color-message-error-text:#cc1f1a;
--color-message-error-border:#ef5753;
--color-message-info-bg:#eff8ff;
--color-message-info-text:#2779bd;
--color-message-info-border:#6cb2eb;
}
@media (max-width: 640px){
:root{
--purepeptides-page-gutter:20px;
}
}
a{
text-decoration:none;
transition:color .2s ease;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) a:not(.purepeptides-hero-slide__cta):not(.product-card__button):not(.purepeptides-cart-page__continue):not(.purepeptides-checkout-page__primary-link):not(.purepeptides-checkout-page__secondary-link):not(.button):not(.btn):not([class*="btn-"]):not([class*="button"]):not([role="button"]){
color:var(--purepeptides-link-color);
text-decoration-color:currentColor;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) a:not(.purepeptides-hero-slide__cta):not(.product-card__button):not(.purepeptides-cart-page__continue):not(.purepeptides-checkout-page__primary-link):not(.purepeptides-checkout-page__secondary-link):not(.button):not(.btn):not([class*="btn-"]):not([class*="button"]):not([role="button"]):hover,
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) a:not(.purepeptides-hero-slide__cta):not(.product-card__button):not(.purepeptides-cart-page__continue):not(.purepeptides-checkout-page__primary-link):not(.purepeptides-checkout-page__secondary-link):not(.button):not(.btn):not([class*="btn-"]):not([class*="button"]):not([role="button"]):focus{
color:var(--purepeptides-link-hover-color);
}
.flash-messages{
width:100%;
}
.message{
background:var(--color-message-info-bg);
color:var(--color-message-info-text);
border-color:var(--color-message-info-border);
border:1px;
border-style:solid;
border-radius:4px;
padding:15px;
margin:0 0 20px;
cursor:pointer;
z-index:900;
width:100%;
}
.message.hidden{
display:none;
}
.message.success{
background:var(--color-message-success-bg);
color:var(--color-message-success-text);
border-color:var(--color-message-success-border);
position:relative;
}
.message.warning{
background:var(--color-message-warning-bg);
color:var(--color-message-warning-text);
border-color:var(--color-message-warning-border);
}
.message.error{
background:var(--color-message-error-bg);
color:var(--color-message-error-text);
border-color:var(--color-message-error-border);
}
.message p{
margin:0;
}
.entry-content{
font-size:.92rem;
line-height:1.75;
color:#374151;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) p{
margin:0 0 16px;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) p:last-child{
margin-bottom:0;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) ul{
list-style:disc;
margin:0 0 16px;
padding-left:1.3em;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) ol{
list-style:decimal;
margin:0 0 16px;
padding-left:1.3em;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) li{
margin:0 0 8px;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) li:last-child{
margin-bottom:0;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) strong,
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) b{
font-weight:700;
}
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) em,
:where(.entry-content,.purepeptides-product__top-content,.purepeptides-product__description-content) i{
font-style:italic;
}
h1,h2,h3,h4,h5,h6{
font-family:"Raleway","Helvetica Neue",Arial,sans-serif;
}
.site-shell{
max-width:1304px;
margin:0 auto;
padding:0 var(--purepeptides-page-gutter) 24px;
}
body > .site-shell.hfeed:not(.site-shell--header){
flex:1 0 auto;
width:100%;
display:flex;
flex-direction:column;
}
body > .site-shell.hfeed:not(.site-shell--header) #container{
flex:1 1 auto;
}
.site-shell--header{
padding-bottom:14px;
}
.site-shell.site-shell--header.hfeed{
max-width:100%;
width:100%;
margin:0;
padding:0 0 14px;
border-bottom:1px solid #c4c4c4;
margin-bottom:30px;
}
.home .site-shell.site-shell--header.hfeed,
.front-page .site-shell.site-shell--header.hfeed{
border-bottom:0;
margin-bottom:0;
padding-bottom:0;
background:#fff;
}
body:not(.home):not(.front-page) .site-shell.site-shell--header.hfeed{
border-bottom:0;
margin-bottom:40px;
padding-bottom:0;
background:#fff;
}
#header{
max-width:1304px;
margin:0 auto;
padding:20px var(--purepeptides-page-gutter) 0;
background:#fff;
}
.site-shell.site-shell--header.hfeed #header{
margin-bottom:0;
}
.site-disclaimer{
width:100%;
margin:40px 0 0;
border-top:1px solid rgba(15,23,42,.08);
font-size:13px;
color:#606c76;
background: #fff;
}
.site-disclaimer__inner{
max-width:1304px;
margin:0 auto;
padding:40px var(--purepeptides-page-gutter);
color:inherit;
font-family:"Open Sans","Helvetica Neue",Arial,sans-serif;
font-size:inherit;
line-height:1.65;
}
.site-disclaimer__inner p{
margin:0 0 10px;
font-size:13px;
}
.site-disclaimer__inner p:last-child{
margin-bottom:0;
}
.site-disclaimer__inner strong{
font-weight:700;
color:#1f2937;
}
.footer-main{
width:100%;
margin:0;
padding:0;
color:#fff;
font-family:"Open Sans","Helvetica Neue",Arial,sans-serif;
background:
radial-gradient(620px 300px at 90% -20%,rgba(255,255,255,.2) 0%,rgba(255,255,255,0) 72%),
linear-gradient(128deg,#183c60,#0b6193 55%,#237b91);
}
.footer-main--with-top-gap{
margin-top:40px;
}
.footer-inner{
max-width:1304px;
margin:0 auto;
padding:24px var(--purepeptides-page-gutter);
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:40px;
}
.footer-col{
width:100%;
padding:20px 0;
}
.footer-col h3{
margin:0 0 20px;
font-size:22px;
line-height:1.3;
letter-spacing:-1px;
color:#fff;
}
.footer-col p,
.footer-col ul,
.footer-col li{
margin:0;
font-family:"Open Sans","Helvetica Neue",Arial,sans-serif;
font-size:15px;
font-weight:400;
line-height:30px;
color:#fff;
}
.footer-col p{
margin-bottom:15px;
}
.footer-col a{
color:inherit;
text-decoration:none;
}
.footer-list{
margin:0;
padding:0;
list-style:none;
}
.footer-list li{
display:flex;
align-items:center;
gap:14px;
padding:0 0 16px;
}
.footer-list li::before{
content:"▶";
display:block;
flex:0 0 auto;
font-size:12px;
line-height:1;
color:rgba(255,255,255,.5);
}
.footer-social{
display:flex;
align-items:center;
}
.footer-social .round-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
margin-right:20px;
border-radius:50%;
background:rgba(255,255,255,.5);
color:#0c6092;
}
.footer-social .round-icon:last-child{
margin-right:0;
}
.footer-social .round-icon svg{
display:block;
width:auto !important;
height:15px !important;
max-width:none !important;
}
.footer-social .round-icon:hover{
background:rgba(255,255,255,.75);
}
.copywright-wrap{
width:100%;
height:50px;
background:#183e62;
color:#fff;
}
.copywright-inner{
max-width:1304px;
height:100%;
margin:0 auto;
padding:0 var(--purepeptides-page-gutter);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
font-family:"Open Sans","Helvetica Neue",Arial,sans-serif;
font-size:15px;
line-height:1;
}
.copywright-wrap a{
color:#fff;
}
@media (max-width: 980px){
.footer-inner{
padding:24px var(--purepeptides-page-gutter);
grid-template-columns:repeat(2,minmax(0,1fr));
gap:24px;
}
.footer-inner .footer-col:nth-child(3){
grid-column:1 / -1;
justify-self:center;
max-width:420px;
text-align:center;
}
.footer-inner .footer-col:nth-child(3) .footer-social{
justify-content:center;
}
.copywright-inner{
padding:0 var(--purepeptides-page-gutter);
}
}
@media (max-width: 620px){
.footer-inner{
grid-template-columns:minmax(0,1fr);
}
.footer-col h3{
text-align:center;
}
.footer-col{
text-align:center;
}
.footer-inner .footer-col:nth-child(3){
max-width:none;
}
.footer-social{
justify-content:center;
}
.footer-list li{
justify-content:center;
padding:0 0 12px;
}
.footer-list li::before{
margin-right:0;
}
}
.site-header-inner{
display:flex;
flex-direction:column;
gap:14px;
}
.header-top{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
}
.menu-toggle{
display:none;
}
@media (min-width: 1464px){
.header-top,
#menu{
width:calc(100% + 160px);
margin-left:-80px;
margin-right:-80px;
}
}
#site-title a{
color:#0f172a;
font-size:1.4rem;
font-weight:700;
text-decoration:none;
}
#site-description{
margin-top:6px;
font-size:.9rem;
color:#64748b;
}
.custom-logo{
max-height:56px;
width:auto;
}
.site-logo-link{
display:inline-flex;
align-items:center;
}
.header-actions{
display:flex;
align-items:center;
gap:12px;
min-width:0;
flex-wrap:nowrap;
justify-content:flex-end;
}
.header-search{
flex:1 1 260px;
max-width:320px;
min-width:0;
}
.header-search .search-form{
position:relative;
display:block;
width:100%;
}
.header-search .search-form label{
display:block;
margin:0;
}
.header-search .search-field{
width:100%;
min-width:0;
height:44px;
padding:0 60px 0 18px;
border:1px solid #dbe3ea;
border-radius:999px;
background:#fff;
color:#0f172a;
font-size:14px;
box-shadow:none;
}
.header-search .search-field::placeholder{
color:#a8afb7;
}
.header-search .search-field:focus{
border-color:#0f172a;
outline:0;
box-shadow:none;
}
.header-search .search-submit{
position:absolute;
top:0;
right:0;
display:inline-flex;
align-items:center;
justify-content:center;
width:44px;
height:44px;
padding:0;
border:1px solid #183e62;
border-radius:999px;
background:#fff;
color:#183e62;
line-height:1;
cursor:pointer;
transition:background-color .2s ease,border-color .2s ease,color .2s ease;
}
.header-search .search-submit:hover,
.header-search .search-submit:focus{
background:#183e62;
border-color:#183e62;
color:#fff;
}
.header-search .search-submit i,
.header-search .search-submit svg{
width:17px;
height:17px;
font-size:17px;
display:block;
fill:currentColor;
}
.header-icon-btn{
position:relative;
display:inline-flex;
flex:0 0 44px;
align-items:center;
justify-content:center;
width:44px;
height:44px;
border:1px solid #183e62;
border-radius:999px;
background:#fff;
color:#183e62;
text-decoration:none;
transition:all .2s ease;
}
.header-icon-btn:hover{
background:#183e62;
color:#fff;
}
.header-icon-btn svg{
width:20px;
height:20px;
fill:currentColor;
}
.cart-count{
position:absolute;
top:-6px;
right:-6px;
display:grid;
place-items:center;
min-width:20px;
height:20px;
padding:0 5px;
border-radius:999px;
font-size:11px;
font-weight:700;
line-height:1.1;
font-variant-numeric:tabular-nums;
color:#fff;
background:#dc2626;
border:2px solid #f8fafc;
}
#menu{
border-top:0;
position:relative;
margin-top:20px;
}
#menu.menu--empty{
min-height:56px;
}
.menu-toggle{
position:relative;
z-index:1;
align-items:center;
justify-content:center;
width:56px;
min-height:56px;
padding:0;
border:0;
background:#234d74;
color:#fff;
cursor:pointer;
transition:background-color .2s ease;
}
.menu-toggle:hover{
background:#2a5a86;
}
.menu-toggle:focus-visible{
outline:none;
background:#2a5a86;
}
.menu-toggle__box{
position:relative;
display:block;
width:22px;
height:16px;
}
.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after{
position:absolute;
left:0;
width:100%;
height:2px;
border-radius:999px;
background:currentColor;
transition:transform .2s ease,opacity .2s ease,top .2s ease;
content:"";
}
.menu-toggle__line{
top:7px;
}
.menu-toggle__line::before{
top:-7px;
}
.menu-toggle__line::after{
top:7px;
}
#menu.is-open .menu-toggle{
background:#234d74;
}
#menu.is-open .menu-toggle__line{
background:transparent;
}
#menu.is-open .menu-toggle__line::before{
top:0;
transform:rotate(45deg);
}
#menu.is-open .menu-toggle__line::after{
top:0;
transform:rotate(-45deg);
}
#menu::before{
content:"";
position:absolute;
top:0;
bottom:0;
left:50%;
width:100vw;
transform:translateX(-50%);
background:#183e62;
z-index:0;
pointer-events:none;
}
#menu ul{
display:flex;
align-items:stretch;
flex-wrap:wrap;
gap:0;
min-height:56px;
padding:0;
position:relative;
z-index:1;
}
#menu li{
display:flex;
align-items:stretch;
}
#menu a{
color:#fff;
font-weight:400;
font-size:.95rem;
text-decoration:none;
display:flex;
align-items:center;
height:100%;
padding:0 22px;
transition:background-color .2s ease,color .2s ease;
}
#menu a:hover{
color:#fff;
background:#2a5a86;
}
#menu .current-menu-item > a,
#menu .current_page_item > a,
#menu .current-menu-ancestor > a{
color:#fff;
background:#234d74;
}
@media (max-width: 1180px){
.menu-toggle{
display:inline-flex;
}
#menu{
display:flex;
flex-direction:column;
align-items:flex-start;
margin-left:calc(-1 * var(--purepeptides-page-gutter));
margin-right:calc(-1 * var(--purepeptides-page-gutter));
padding:0;
overflow:hidden;
}
.menu-toggle{
margin-left:var(--purepeptides-page-gutter);
}
#menu ul{
display:none;
width:100%;
min-height:0;
margin-left:0;
padding:8px 0 0;
flex-direction:column;
align-items:stretch;
}
#menu.is-open ul{
display:flex;
}
#menu li{
display:block;
width:100%;
}
#menu li + li{
border-top:1px solid rgba(255,255,255,.08);
}
#menu a{
width:100%;
min-height:52px;
padding:0 var(--purepeptides-page-gutter);
}
}
@media (max-width: 720px){
.header-top{
align-items:flex-start;
flex-wrap:wrap;
}
#site-title a{
font-size:1.2rem;
}
.header-actions{
width:100%;
gap:8px;
}
.header-search{
flex:1 1 auto;
max-width:none;
}
.header-icon-btn{
flex-basis:40px;
width:40px;
height:40px;
}
#menu ul{
min-height:56px;
}
#menu a{
padding:0 var(--purepeptides-page-gutter);
}
}
@media (max-width: 600px){
#branding{
width:100%;
text-align:center;
}
}

.purepeptides-hero-slider{
position:relative;
width:100%;
max-width:100%;
margin-left:0;
margin-right:0;
margin-top:0;
margin-bottom:26px;
--purepeptides-hero-transition:600ms;
}
.purepeptides-hero-slider__track{
position:relative;
height:460px;
border-radius:0;
overflow:hidden;
background:#0f172a;
box-shadow:0 18px 24px -20px rgba(15,23,42,.22);
}
.purepeptides-hero-slide{
position:absolute;
inset:0;
opacity:0;
pointer-events:none;
transition:opacity var(--purepeptides-hero-transition) ease;
overflow:hidden;
}
.purepeptides-hero-slide.is-active{
opacity:1;
pointer-events:auto;
z-index:2;
}
.purepeptides-hero-slide__bg{
position:absolute;
inset:-1px;
width:calc(100% + 2px);
height:calc(100% + 2px);
object-fit:cover;
display:block;
transform:translateZ(0);
-webkit-transform:translateZ(0);
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
}
.purepeptides-hero-slide__bg-picture{
display:block;
position:absolute;
inset:0;
width:100%;
height:100%;
}
.purepeptides-hero-slide__overlay{
position:absolute;
inset:0;
background:transparent;
}
.purepeptides-hero-slide__content-wrap{
position:relative;
z-index:3;
display:flex;
align-items:center;
height:100%;
padding:clamp(16px,4.5vw,48px);
}
.purepeptides-hero-slide__panel{
width:min(1040px,100%);
margin:0 auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:22px;
padding:clamp(20px,3vw,42px);
border-radius:24px;
background:rgba(245,248,251,.76);
backdrop-filter:blur(3px);
}
.purepeptides-hero-slide__copy{
flex:1 1 52%;
max-width:540px;
}
.purepeptides-hero-slide__title{
margin:0;
}
.purepeptides-hero-slide__body{
margin:18px 0 0;
color:#0f172a;
font-size:clamp(.96rem,1.65vw,1.05rem);
line-height:1.5;
max-width:44ch;
}
.purepeptides-hero-slide__cta{
display:inline-flex;
align-items:center;
justify-content:center;
margin-top:22px;
padding:13px 26px;
border-radius:10px;
background:#e7461e;
color:#fff;
font-size:1.05rem;
font-weight:700;
text-decoration:none;
transition:transform .2s ease,background-color .2s ease;
}
.purepeptides-hero-slide__cta:hover{
background:#d23e1a;
transform:translateY(-1px);
}
.purepeptides-hero-slide__media{
flex:0 0 min(35vw,350px);
display:flex;
justify-content:center;
align-items:center;
}
.purepeptides-hero-slide__media img{
display:block;
width:min(100%,320px);
height:auto;
filter:drop-shadow(0 20px 28px rgba(15,23,42,.26));
}
.purepeptides-hero-slider__pagination{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
padding-top:20px;
}
.purepeptides-hero-slider__bullet{
width:11px;
height:11px;
border:0;
border-radius:999px;
cursor:pointer;
background:rgba(100,116,139,.55);
transition:transform .2s ease,background-color .2s ease;
}
.purepeptides-hero-slider__bullet.is-active{
background:#ea580c;
transform:scale(1.08);
}
.purepeptides-hero-slider__bullet:focus-visible{
outline:2px solid #0ea5e9;
outline-offset:3px;
}
@media (max-width: 980px){
.purepeptides-hero-slider__track{
height:460px;
}
.purepeptides-hero-slide__bg{
object-position:50% 40%;
}
.purepeptides-hero-slide__panel{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(210px,300px);
align-items:center;
gap:18px;
}
.purepeptides-hero-slide__copy{
max-width:none;
}
.purepeptides-hero-slide__media{
width:auto;
flex-basis:auto;
justify-content:flex-end;
}
.purepeptides-hero-slide__media img{
width:min(100%,240px);
}
}
@media (max-width: 760px){
.purepeptides-hero-slider__track{
height:440px;
}
.purepeptides-hero-slide__bg{
object-position:50% 36%;
}
.purepeptides-hero-slide__panel{
display:flex;
flex-direction:column;
align-items:center;
background:rgba(245,248,251,.76);
backdrop-filter:blur(3px);
padding:14px 16px;
border-radius:16px;
gap:12px;
}
.purepeptides-hero-slide__media{
width:100%;
justify-content:center;
}
.purepeptides-hero-slide__copy{
width:100%;
text-align:center;
background:transparent;
backdrop-filter:none;
border-radius:0;
padding:0;
}
.purepeptides-hero-slide__body{
margin-left:auto;
margin-right:auto;
font-size:.9rem;
line-height:1.42;
}
.purepeptides-hero-slide__cta{
margin-left:auto;
margin-right:auto;
}
.purepeptides-hero-slide__media img{
width:min(74%,200px);
}
}
@media (max-width: 640px){
.purepeptides-hero-slider{
margin-bottom:18px;
}
.purepeptides-hero-slider__track{
height:400px;
border-radius:0;
}
.purepeptides-hero-slide__bg{
object-position:50% 32%;
}
.purepeptides-hero-slide__panel{
padding:12px 14px;
border-radius:12px;
gap:10px;
}
.purepeptides-hero-slide__copy{
padding:0;
border-radius:0;
}
.purepeptides-hero-slide__body{
margin-top:12px;
font-size:.88rem;
}
.purepeptides-hero-slide__cta{
width:100%;
margin-top:16px;
}
.purepeptides-hero-slide__media{
justify-content:center;
}
.purepeptides-hero-slide__media img{
width:min(68%,180px);
}
}

/* Shared page shell + blank sidebar layout */
.purepeptides-layout-sidebar #container{
display:flex;
align-items:stretch;
gap:24px;
}
.purepeptides-layout-sidebar #content{
flex:0 0 calc(100% - 288px);
max-width:calc(100% - 288px);
min-width:0;
}
.purepeptides-layout-sidebar #sidebar{
flex:0 0 264px;
max-width:264px;
min-height:420px;
}
.purepeptides-layout-sidebar #sidebar .widget-area{
min-height:inherit;
}
.purepeptides-page-full-width #content{
width:100%;
max-width:100%;
flex:0 0 100%;
}
.purepeptides-page-full-width #sidebar{
display:none;
}
.purepeptides-content-panel-page__inner{
background:#fff;
border:1px solid #e2e8f0;
border-radius:12px;
padding:24px;
}
.single-post .purepeptides-post-page{
width:100%;
}
.single-post .purepeptides-post-page__header{
margin-bottom:18px;
}
.single-post .purepeptides-post-page__inner{
padding:28px;
}
.single-post .purepeptides-post-page__inner .entry-content{
font-size:16px;
line-height:1.8;
color:#334155;
}
.single-post .purepeptides-post-page__inner .entry-content img{
border-radius:12px;
}
.single-post .entry-footer{
margin-top:28px;
padding-top:24px;
border-top:1px solid #e2e8f0;
}
.single-post .purepeptides-post-taxonomy{
display:grid;
gap:16px;
}
.single-post .purepeptides-post-taxonomy__section{
display:grid;
gap:10px;
}
.single-post .purepeptides-post-taxonomy__label{
font-size:12px;
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;
color:#64748b;
}
.single-post .purepeptides-post-taxonomy__items{
display:flex;
flex-wrap:wrap;
gap:10px;
}
.single-post .purepeptides-post-taxonomy__pill{
display:inline-flex;
align-items:center;
min-height:36px;
padding:8px 14px;
border:1px solid #e2e8f0;
border-radius:999px;
background:#f8fafc;
color:#0f172a;
font-size:14px;
font-weight:600;
line-height:1.35;
transition:border-color .2s ease,background-color .2s ease,color .2s ease;
}
.single-post .purepeptides-post-taxonomy__pill:hover,
.single-post .purepeptides-post-taxonomy__pill:focus{
background:#fff;
border-color:#cbd5e1;
color:#0f172a;
}
.purepeptides-post-archive{
	width:100%;
}
.purepeptides-post-archive__header{
	margin-bottom:18px;
}
.purepeptides-post-archive__description{
	max-width:760px;
	color:#64748b;
	font-size:16px;
	line-height:1.7;
}
.purepeptides-post-archive__list{
	display:grid;
	gap:18px;
}
.purepeptides-post-archive__post{
	display:block;
	padding:26px 28px;
	border:1px solid #e2e8f0;
	border-radius:12px;
	background:#fff;
	box-shadow:0 1px 2px rgba(15,23,42,.04);
}
.purepeptides-post-archive__post-title{
	margin:0 0 12px;
	font-size:24px;
	line-height:1.2;
	letter-spacing:-.02em;
	color:#0f172a;
}
.purepeptides-post-archive__summary{
	width:100%;
	color:#475569;
	font-size:16px;
	line-height:1.8;
}
.purepeptides-post-archive__summary p{
	margin:0;
}
.purepeptides-post-archive__actions{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	margin-top:18px;
}
.purepeptides-post-archive__read-more{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:148px;
	min-height:44px;
	padding:10px 18px;
	border:2px solid #e7461e;
	border-radius:8px;
	background:#e7461e;
	color:#fff;
	font-size:14px;
	font-weight:700;
	line-height:1.2;
	text-decoration:none;
	transition:background-color .2s ease,border-color .2s ease,transform .2s ease;
}
.purepeptides-post-archive__read-more:visited{
	color:#fff;
}
.purepeptides-post-archive__read-more:hover,
.purepeptides-post-archive__read-more:focus{
	background:#d23e1a;
	border-color:#d23e1a;
	color:#fff;
	transform:translateY(-1px);
}
.purepeptides-post-archive__empty{
	padding:24px 28px;
	border:1px solid #e2e8f0;
	border-radius:12px;
	background:#fff;
	color:#64748b;
	font-size:16px;
	line-height:1.7;
}
.purepeptides-post-archive__empty p{
	margin:0;
}
.purepeptides-post-archive__search{
	margin-top:20px;
}
.purepeptides-post-archive__search .search-form{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	align-items:flex-start;
}
.purepeptides-post-archive__search .search-form label{
	flex:1 1 320px;
	margin:0;
}
.purepeptides-post-archive__search .search-field{
	width:100%;
	min-height:48px;
	padding:0 14px;
	border:1px solid #cbd5e1;
	border-radius:8px;
	background:#fff;
	color:#0f172a;
	font-size:16px;
}
.purepeptides-post-archive__search .search-field:focus{
	border-color:#f97316;
	outline:0;
	box-shadow:0 0 0 3px rgba(249,115,22,.15);
}
.purepeptides-post-archive__search .search-submit{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:48px;
	padding:0 20px;
	border:2px solid #e7461e;
	border-radius:8px;
	background:#e7461e;
	color:#fff;
	font-size:14px;
	font-weight:700;
	line-height:1.2;
	transition:background-color .2s ease,border-color .2s ease,transform .2s ease;
}
.purepeptides-post-archive__search .search-submit:hover,
.purepeptides-post-archive__search .search-submit:focus{
	background:#d23e1a;
	border-color:#d23e1a;
	color:#fff;
	transform:translateY(-1px);
}
.purepeptides-post-archive .paginator{
	margin-top:32px;
}
.purepeptides-search-results .products__items{
	margin-top:0;
}
@media (max-width: 700px){
.purepeptides-content-panel-page__inner{
padding:20px;
}
.single-post .purepeptides-post-page__inner{
padding:20px;
}
.purepeptides-post-archive__post{
padding:22px 20px;
}
.purepeptides-post-archive__post-title{
font-size:22px;
}
.purepeptides-post-archive__actions{
margin-top:16px;
}
.purepeptides-post-archive__read-more{
min-width:136px;
}
.purepeptides-post-archive__empty{
padding:20px;
}
}
@media (max-width: 640px){
.purepeptides-post-archive__read-more{
width:100%;
}
.purepeptides-post-archive__search .search-form{
display:block;
}
.purepeptides-post-archive__search .search-submit{
width:100%;
margin-top:12px;
}
}
.home article{
padding:0;
}
h2,
h3,
h1.entry-title{
margin:0 0 14px;
line-height:1.2;
letter-spacing:-.01em;
font-weight:700;
color:#0f172a;
text-align:left;
}
h2,
h1.entry-title{
font-size:30px;
}
h3{
font-size:24px;
}
body:not(.home):not(.front-page) h1.entry-title{
text-align:left !important;
margin-left:0;
margin-right:0;
}
body:not(.home):not(.front-page) article > .entry-header{
text-align:left;
}
.entry-content > * + *{
margin-top:14px;
}
@media (max-width: 1120px){
.purepeptides-layout-sidebar #container{
display:block;
}
.purepeptides-layout-sidebar #content,
.purepeptides-layout-sidebar #sidebar{
max-width:100%;
width:100%;
}
.purepeptides-layout-sidebar #content{
flex:0 0 100%;
}
.purepeptides-layout-sidebar #sidebar{
flex:0 0 100%;
margin-top:24px;
}
}

@media (max-width: 980px){
h2,
h1.entry-title{
font-size:26px;
}
h3{
font-size:22px;
}
.purepeptides-layout-sidebar #container{
display:block;
}
.purepeptides-layout-sidebar #content,
.purepeptides-layout-sidebar #sidebar{
max-width:100%;
}
.purepeptides-layout-sidebar #content{
width:100%;
}
.purepeptides-layout-sidebar #sidebar{
display:none;
}
}

/* Homepage Popular Peptides */
.purepeptides-popular-peptides{
--purepeptides-popular-gap:20px;
--purepeptides-popular-columns:4;
position:relative;
width:100%;
margin:0;
padding:40px 0;
border:0;
border-radius:0;
background:transparent;
box-shadow:none;
overflow:hidden;
}
.purepeptides-popular-peptides__top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:30px;
}
.purepeptides-popular-peptides__top-controls{
display:flex;
align-items:center;
justify-content:flex-end;
gap:10px;
}
.home .purepeptides-popular-peptides__top h2{
margin:0;
}
.home .entry-content > .purepeptides-popular-peptides{
margin-top:40px;
}
.purepeptides-popular-peptides__viewport{
position:relative;
overflow:hidden;
width:100%;
margin:0;
padding-bottom:40px;
touch-action:pan-y;
}
.purepeptides-popular-peptides__track{
display:flex;
align-items:stretch;
gap:var(--purepeptides-popular-gap);
transition:transform .32s ease;
will-change:transform;
}
.purepeptides-popular-peptides__slide{
flex:0 0 calc((100% - ((var(--purepeptides-popular-columns) - 1) * var(--purepeptides-popular-gap))) / var(--purepeptides-popular-columns));
width:calc((100% - ((var(--purepeptides-popular-columns) - 1) * var(--purepeptides-popular-gap))) / var(--purepeptides-popular-columns));
display:flex;
min-width:0;
}
/* Shared Product Cards */
.product-card{
width:100%;
min-width:100%;
max-width:100%;
margin:0 auto;
display:flex;
flex-direction:column;
height:100%;
border:1px solid #e2e8f0;
border-radius:8px;
background:#fff;
overflow:hidden;
}
.product-card__image-wrap{
height:270px;
display:flex;
align-items:flex-end;
justify-content:center;
padding:22px 12px 0;
background:#fff;
box-sizing:border-box;
}
.product-card__image{
flex:0 0 auto;
width:100%;
height:248px;
min-width:0;
min-height:0;
max-width:100%;
max-width:180px;
max-height:248px;
object-fit:contain;
object-position:center bottom;
display:block;
}
.product-card__image-placeholder{
	width:100%;
	height:100%;
	align-self:stretch;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:12px;
	font-size:.85rem;
	font-weight:600;
	color:#64748b;
	text-align:center;
}
.product-card__image-placeholder::before{
	content:"";
	width:56px;
	height:56px;
	border-radius:14px;
	border:1px solid #dbe6f1;
	background-color:#f0f5fa;
	background-repeat:no-repeat;
	background-position:center;
	background-size:30px 30px;
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='8.5' cy='9' r='1.5'/%3E%3Cpath d='M4.5 17l5-5 3.2 3.2 2.3-2.3 4 4'/%3E%3C/svg%3E");
}
.product-card__body{
display:flex;
flex-direction:column;
flex:1 1 auto;
padding:10px 15px 8px;
text-align:center;
}
.product-card__title{
margin:0;
display:block;
min-height:54px;
overflow:hidden;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:3;
line-clamp:3;
text-overflow:ellipsis;
overflow-wrap:anywhere;
text-align:center;
font-size:13px;
line-height:18px;
font-weight:700;
color:#000;
}
.product-card__unit{
margin:6px 0 0;
height:18px;
overflow:hidden;
font-size:13px;
line-height:18px;
font-weight:600;
color:#475569;
}
.product-card__actions{
margin-top:auto;
padding:12px 19px 19px;
display:flex;
flex-direction:column;
align-items:center;
gap:8px;
}
.product-card__button{
display:inline-flex;
align-items:center;
justify-content:center;
width:180px;
height:40px;
padding:0 5px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:700;
line-height:14px;
cursor:pointer;
transition:opacity .2s ease;
}
.product-card__button:hover{
opacity:.92;
}
.product-card__button--learn{
border:1px solid #e7461e;
background:#fff;
color:#e7461e;
}
.product-card__button--cart{
border:2px solid #e7461e;
background:#e7461e;
color:#fff;
}
.purepeptides-popular-peptides__nav{
position:relative;
z-index:1;
width:40px;
height:40px;
padding:0;
border:1px solid #a9adb1;
border-radius:999px;
background:#fff;
color:#a9adb1;
font-size:0;
line-height:0;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:background-color .2s ease,color .2s ease,opacity .2s ease;
}
.purepeptides-popular-peptides__nav i{
display:inline-flex;
align-items:center;
justify-content:center;
font-size:18px;
line-height:1;
width:1em;
height:1em;
pointer-events:none;
}
.purepeptides-popular-peptides__nav:hover:not(:disabled){
background:#f7f7f8;
color:#93979c;
border-color:#93979c;
}
.purepeptides-popular-peptides__nav:disabled{
opacity:.35;
cursor:default;
background:#fff;
color:#c3c7cb;
border-color:#d4d7db;
}
.purepeptides-popular-peptides__status,
.purepeptides-popular-peptides__controls{
display:none;
}
.purepeptides-popular-peptides.is-static .purepeptides-popular-peptides__nav{
display:none;
}
@media (max-width: 1120px){
.purepeptides-popular-peptides{
--purepeptides-popular-columns:3;
}
}
@media (max-width: 820px){
.purepeptides-popular-peptides{
--purepeptides-popular-columns:2;
}
}
@media (max-width: 540px){
.purepeptides-popular-peptides{
--purepeptides-popular-columns:1;
}
.purepeptides-popular-peptides__slide{
justify-content:center;
}
.purepeptides-popular-peptides__slide .product-card{
width:100%;
min-width:0;
max-width:250px;
}
}
@media (max-width: 700px){
h2,
h1.entry-title{
font-size:22px;
}
h3{
font-size:20px;
}
.purepeptides-popular-peptides{
padding:24px 0;
}
.purepeptides-popular-peptides__top{
margin-bottom:20px;
}
}

/* Products Grid */
.products{
padding:0;
}
.entry-content > .products{
margin-top:0;
}
.products__items{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:20px;
}
.products__item{
display:flex;
justify-content:center;
min-width:0;
}
.products__item .product-card{
max-width:220px;
margin:0 auto;
}
.products__item .product-card__image-wrap{
height:284px;
padding:22px 15px 0;
}
.products__item .product-card__image{
max-width:none;
height:262px;
max-height:262px;
}
.products__item .product-card__actions{
padding:12px 0 18px;
}
.products__item .product-card__button{
width:100%;
max-width:none;
}
.paginator{
--text:#475569;
--bg:#fff;
--form-heading-color:#fff;
--form-heading-bg:#1f7ec8;
--muted:#94a3b8;
}

.paginator {
    padding-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.pagination li {
    display: inline-block;
    margin: 0.25em;
    text-align: center;
}

.pagination a {
    display: inline-block;
    font-size: 12px;
    line-height: 36px;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: background .3s, color .3s, border .3s;
    border: 1px solid #e2e8f0;
    color: var(--text);
    border-radius: 6px;
    text-align: center;
    min-width: 38px;
    min-height: 38px;
    background: var(--bg);
}

.pagination button {
	display: inline-block;
	font: inherit;
	font-size: 12px;
	line-height: 36px;
	padding: 0;
	position: relative;
	text-decoration: none;
	transition: background .3s, color .3s, border .3s, opacity .2s;
	border: 1px solid #e2e8f0;
	color: var(--text);
	border-radius: 6px;
	text-align: center;
	min-width: 38px;
	min-height: 38px;
	background: var(--bg);
	cursor: pointer;
}

.pagination a:hover {
    background-color: #ebedef;
    border-color: #c4c4c4;
}

.pagination button:hover {
	background-color: #ebedef;
	border-color: #c4c4c4;
}

.pagination li.active a {
    color: var(--form-heading-color);
    border-color: var(--form-heading-bg);
    background-color: var(--form-heading-bg);
}

.pagination li.active button {
	color: var(--form-heading-color);
	border-color: var(--form-heading-bg);
	background-color: var(--form-heading-bg);
}

.pagination li.active a:hover {
    color: var(--form-heading-color);
    border-color: var(--form-heading-bg);
    background-color: var(--form-heading-bg);
}

.pagination li.active button:hover {
	color: var(--form-heading-color);
	border-color: var(--form-heading-bg);
	background-color: var(--form-heading-bg);
}

.pagination .disabled a {
    cursor: not-allowed;
    color: var(--muted);
    text-decoration: none;
    display: none;
}

.pagination button:disabled {
	cursor: default;
	opacity: 1;
}

.pagination__ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	color: var(--muted);
}

.results-data p{
    font-size: 1.25rem;
}

.products__counter{
	font-size: 13px;
	color: #606c76;
	text-align: left;
	margin: 0 0 20px;
}

.products__filters{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:12px;
	margin:0 0 18px;
}

.products__filters-label{
	font-size:13px;
	font-weight:700;
	letter-spacing:.04em;
	text-transform:uppercase;
	color:#475569;
}

.products__filter-list{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

.products__filter-link,
.entry-content .products__filter-link,
.entry-content .products__filter-link:visited{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:38px;
	padding:8px 14px;
	border:1px solid #d7e0ea;
	border-radius:999px;
	background:#fff;
	color:#475569 !important;
	font-size:13px;
	font-weight:600;
	line-height:1;
	text-decoration:none;
	transition:background .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;
}

.products__filter-link:hover,
.entry-content .products__filter-link:hover,
.products__filter-link:focus,
.entry-content .products__filter-link:focus{
	border-color:#1f7ec8;
	box-shadow:0 0 0 1px rgba(31,126,200,.14);
	color:#1f7ec8 !important;
}

.products__filter-link.is-active,
.entry-content .products__filter-link.is-active,
.products__filter-link[aria-current="page"],
.entry-content .products__filter-link[aria-current="page"]{
	border-color:#1f7ec8;
	background:#1f7ec8;
	color:#fff !important;
	box-shadow:none;
}

.products__empty{
	padding:28px 20px;
	border:1px solid #d7e0ea;
	border-radius:16px;
	background:#f8fbfd;
	text-align:center;
}

.products__empty p{
	margin:0;
	color:#475569;
	font-size:15px;
}

.paginator p{
	font-size: 13px;
	color: #606c76;
	text-align: center;
	margin: 0 0 200px;
}

.entry-content .pagination a,
.entry-content .pagination a:visited,
.entry-content .pagination a:hover,
.entry-content .pagination a:focus{
	color: var(--text) !important;
}

.entry-content .pagination button,
.entry-content .pagination button:hover,
.entry-content .pagination button:focus{
	color: var(--text) !important;
}

.entry-content .pagination li.active a,
.entry-content .pagination li.active a:visited,
.entry-content .pagination li.active a:hover,
.entry-content .pagination li.active a:focus{
	color: var(--form-heading-color) !important;
}

.entry-content .pagination li.active button,
.entry-content .pagination li.active button:hover,
.entry-content .pagination li.active button:focus{
	color: var(--form-heading-color) !important;
}

.entry-content .pagination .disabled a,
.entry-content .pagination .disabled a:visited,
.entry-content .pagination .disabled a:hover,
.entry-content .pagination .disabled a:focus{
	color: var(--muted) !important;
}

[data-async-pagination-root].is-loading [data-async-pagination-items]{
	opacity:.55;
}

@media (max-width: 1120px){
.products__items{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}

@media (max-width: 820px){
.products{
padding-bottom:24px;
}
.products__filters{
	align-items:flex-start;
}
.products__items{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}

@media (max-width: 540px){
.products__items{
grid-template-columns:minmax(0,1fr);
}
.products__item .product-card{
width:100%;
min-width:0;
max-width:250px;
}
}

/* Single product template */
.single-products #container{
display:block;
}
.single-products #content{
max-width:100%;
width:100%;
}
.single-products #sidebar{
display:none;
}
.purepeptides-product{
padding:0;
border:0;
border-radius:0;
background:transparent;
font-size:15px;
}
.purepeptides-product__hero{
display:grid;
grid-template-columns:minmax(320px,384px) minmax(0,1fr) minmax(170px,220px);
grid-template-areas:"media content summary";
align-items:start;
gap:12px;
margin-bottom:24px;
}
.purepeptides-product__details-layout{
display:flex;
align-items:flex-start;
gap:16px;
}
.purepeptides-product__media{
grid-area:media;
--purepeptides-product-image-width:351px;
--purepeptides-product-image-offset:20px;
background:transparent;
border:0;
border-radius:0;
padding:0;
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-start;
gap:8px;
min-height:320px;
max-width:384px;
width:100%;
}
.purepeptides-product__image-frame{
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-start;
width:calc(var(--purepeptides-product-image-width) + var(--purepeptides-product-image-offset));
max-width:100%;
padding:var(--purepeptides-product-image-offset) 0 0 var(--purepeptides-product-image-offset);
background:#fff;
border-radius:20px;
overflow:hidden;
}
.purepeptides-product__image-frame.is-empty{
width:calc(var(--purepeptides-product-image-width) + var(--purepeptides-product-image-offset));
padding:var(--purepeptides-product-image-offset);
}
.purepeptides-product__image{
display:block;
width:var(--purepeptides-product-image-width);
max-width:100%;
height:auto;
}
.purepeptides-product__image.is-hidden{
display:none;
}
.purepeptides-product__sku{
width:var(--purepeptides-product-image-width);
max-width:100%;
margin:0 0 0 var(--purepeptides-product-image-offset);
font-size:13px;
line-height:1.4;
text-align:left;
color:#4b5563;
}
.purepeptides-product__sku.is-hidden{
display:none;
}
.purepeptides-product__stock-badge{
display:inline-flex;
align-items:center;
justify-content:center;
align-self:stretch;
width:100%;
max-width:100%;
margin:0;
padding:8px 14px;
border:1px solid transparent;
border-radius:999px;
font-size:13px;
font-weight:700;
line-height:1.35;
text-align:left;
}
.purepeptides-product__stock-badge[data-stock-state="warning"]{
background:var(--color-message-warning-bg);
color:var(--color-message-warning-text);
border-color:var(--color-message-warning-border);
}
.purepeptides-product__stock-badge[data-stock-state="error"]{
background:var(--color-message-error-bg);
color:var(--color-message-error-text);
border-color:var(--color-message-error-border);
}
.purepeptides-product__image-placeholder{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
width:100%;
max-width:100%;
aspect-ratio:1 / 1;
padding:22px;
border:1px solid #d6e1eb;
border-radius:12px;
background:linear-gradient(180deg,#fbfdff 0%,#f5f8fb 100%);
font-size:14px;
font-weight:600;
line-height:1.4;
color:#94a3b8;
text-align:center;
}
.purepeptides-product__image-placeholder::before{
content:"";
width:72px;
height:72px;
border-radius:16px;
border:1px solid #dbe6f1;
background-color:#f0f5fa;
background-repeat:no-repeat;
background-position:center;
background-size:38px 38px;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='8.5' cy='9' r='1.5'/%3E%3Cpath d='M4.5 17l5-5 3.2 3.2 2.3-2.3 4 4'/%3E%3C/svg%3E");
}
.purepeptides-product__image-placeholder.is-hidden{
display:none;
}
.purepeptides-product__content{
grid-area:content;
min-width:0;
}
.purepeptides-product__top-content{
margin-top:12px;
font-size:15px;
line-height:1.62;
color:#111827;
}
.purepeptides-product__top-content p{
margin:0 0 16px;
}
.purepeptides-product__top-content p:last-child{
margin-bottom:0;
}
.purepeptides-product__top-content ul,
.purepeptides-product__description-content ul{
list-style:disc;
margin:0 0 16px;
padding-left:1.3em;
}
.purepeptides-product__top-content ol,
.purepeptides-product__description-content ol{
list-style:decimal;
margin:0 0 16px;
padding-left:1.3em;
}
.purepeptides-product__top-content li,
.purepeptides-product__description-content li{
margin:0 0 8px;
}
.purepeptides-product__top-content li:last-child,
.purepeptides-product__description-content li:last-child{
margin-bottom:0;
}
.purepeptides-product__top-content strong,
.purepeptides-product__top-content b,
.purepeptides-product__description-content strong,
.purepeptides-product__description-content b{
font-weight:700;
}
.purepeptides-product__top-content em,
.purepeptides-product__top-content i,
.purepeptides-product__description-content em,
.purepeptides-product__description-content i{
font-style:italic;
}
.purepeptides-product__summary{
grid-area:summary;
width:100%;
max-width:352px;
}
.purepeptides-product__units{
margin-top:20px;
}
.purepeptides-product__units-label{
font-size:13px;
font-weight:600;
color:#475569;
margin-bottom:10px;
text-transform:uppercase;
letter-spacing:.04em;
}
.purepeptides-product__unit-list{
display:flex;
flex-wrap:wrap;
gap:8px;
}
.purepeptides-product__unit-btn{
border:1px solid #cbd5e1;
background:#fff;
color:#0f172a;
border-radius:999px;
padding:8px 14px;
font-size:14px;
font-weight:600;
cursor:pointer;
transition:all .2s ease;
}
.purepeptides-product__unit-btn:hover{
border-color:#e7461e;
color:#e7461e;
}
.purepeptides-product__unit-btn.is-active{
border-color:#e7461e;
background:#e7461e;
color:#fff;
}
.purepeptides-product__pricing{
margin-top:0;
}
.purepeptides-product__price{
font-size:2rem;
font-weight:700;
line-height:1;
color:#e7461e;
min-height:0;
margin:0;
}
.purepeptides-product__purchase{
margin-top:22px;
display:flex;
flex-direction:column;
align-items:stretch;
gap:10px;
}
.purepeptides-product__qty{
display:flex;
align-items:center;
border:1px solid #cbd5e1;
border-radius:10px;
overflow:hidden;
align-self:flex-start;
}
.purepeptides-product__qty-btn{
width:36px;
height:36px;
border:0;
background:#f8fafc;
color:#0f172a;
font-size:20px;
line-height:1;
cursor:pointer;
}
.purepeptides-product__qty-input{
width:54px;
height:36px;
border:0;
text-align:center;
font-size:15px;
font-weight:600;
color:#0f172a;
appearance:textfield;
-moz-appearance:textfield;
}
.purepeptides-product__qty-input::-webkit-outer-spin-button,
.purepeptides-product__qty-input::-webkit-inner-spin-button{
-webkit-appearance:none;
margin:0;
}
.purepeptides-product__cart-btn{
height:38px;
border:0;
background:#e7461e;
color:#fff;
border-radius:10px;
padding:0 16px;
font-size:14px;
font-weight:700;
cursor:pointer;
}
.purepeptides-product__cart-btn:hover{
background:#d23e1a;
}
.purepeptides-product__tabs{
flex:1 1 auto;
min-width:0;
border-top:1px solid #e5e7eb;
padding-top:22px;
}
.purepeptides-product__tabs-sidebar{
flex:0 0 264px;
max-width:264px;
min-height:420px;
}
.purepeptides-product__tab-nav{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:8px;
margin-bottom:18px;
}
.purepeptides-product__tab-btn{
border:1px solid #cbd5e1;
background:#fff;
color:#0f172a;
border-radius:8px;
padding:9px 13px;
font-size:14px;
font-weight:700;
cursor:pointer;
}
.purepeptides-product__tab-btn.is-active{
border-color:#0f172a;
background:#0f172a;
color:#fff;
}
.purepeptides-product__tab-panel{
display:none;
}
.purepeptides-product__tab-panel.is-active{
display:block;
}
.purepeptides-product__description-section + .purepeptides-product__description-section{
margin-top:26px;
padding-top:22px;
border-top:1px solid #e5e7eb;
}
.purepeptides-product__description-title{
font-size:1.28rem;
font-weight:700;
line-height:1.2;
color:#0f172a;
margin-bottom:12px;
}
.purepeptides-product__description-body::after{
content:"";
display:block;
clear:both;
}
.purepeptides-product__description-image{
float:right;
max-width:min(320px,46%);
height:auto;
border-radius:10px;
margin:0 0 20px 20px;
}
.purepeptides-product__description-content{
font-size:15px;
line-height:1.68;
color:#334155;
}
.purepeptides-product__description-content > * + *{
margin-top:14px;
}
#purepeptides-panel-coa{
min-height:140px;
}
.purepeptides-product__coa-content{
margin-bottom:18px;
}
.purepeptides-product__coa-pdfs{
display:grid;
gap:18px;
}
.purepeptides-product__coa-pdf{
padding:14px;
border:1px solid #e5e7eb;
border-radius:10px;
background:#fff;
}
.purepeptides-product__coa-pdf-title{
margin:0 0 10px;
font-size:1rem;
font-weight:700;
line-height:1.3;
color:#0f172a;
}
.purepeptides-product__coa-pdf-frame{
display:block;
width:100%;
min-height:560px;
border:1px solid #cbd5e1;
border-radius:8px;
background:#fff;
}
.purepeptides-product__coa-pdf-link{
margin-top:10px;
font-size:14px;
}
.purepeptides-product__coa-empty{
color:#64748b;
}
@media (max-width: 760px){
.purepeptides-product__coa-pdf-frame{
min-height:420px;
}
}
@media (max-width: 1320px){
.purepeptides-product__hero{
grid-template-columns:minmax(280px,340px) minmax(0,1fr) minmax(170px,220px);
}
.purepeptides-product__media{
max-width:340px;
--purepeptides-product-image-width:320px;
}
}
@media (max-width: 1200px){
.purepeptides-product__hero{
grid-template-columns:minmax(250px,300px) minmax(0,1fr) minmax(170px,220px);
}
.purepeptides-product__media{
max-width:300px;
--purepeptides-product-image-width:280px;
}
}
@media (max-width: 1024px){
.purepeptides-product__hero{
grid-template-columns:minmax(0,1fr) minmax(0,1fr);
grid-template-areas:
"media summary"
"content content";
gap:12px 18px;
}
.purepeptides-product__media{
max-width:none;
width:100%;
}
.purepeptides-product__summary{
max-width:none;
width:100%;
}
.purepeptides-product__units{
margin-top:14px;
}
.purepeptides-product__purchase{
margin-top:14px;
}
}
@media (max-width: 980px){
.single-products #container{
display:block;
}
.single-products #content,
.single-products #sidebar{
max-width:100%;
width:100%;
}
.single-products #sidebar{
display:none;
}
.purepeptides-product{
padding:0;
}
.purepeptides-product__hero{
grid-template-columns:minmax(0,1fr) minmax(0,1fr);
grid-template-areas:
"media summary"
"content content";
gap:12px;
}
.purepeptides-product__media{
max-width:none;
}
.purepeptides-product__summary{
max-width:none;
}
.purepeptides-product__units,
.purepeptides-product__purchase{
margin-top:14px;
}
.purepeptides-product__details-layout{
display:block;
}
.purepeptides-product__tabs-sidebar{
display:none;
}
.purepeptides-product__description-image{
max-width:min(260px,52%);
}
}
@media (max-width: 700px){
.purepeptides-product{
padding:0;
}
.purepeptides-product__hero{
grid-template-columns:minmax(0,1fr);
grid-template-areas:
"media"
"summary"
"content";
gap:14px;
}
.purepeptides-product__media{
max-width:100%;
justify-content:flex-start;
}
.purepeptides-product__summary{
max-width:100%;
}
.purepeptides-product__price{
font-size:1.6rem;
}
.purepeptides-product__purchase{
flex-direction:column;
align-items:stretch;
}
.purepeptides-product__cart-btn{
width:100%;
}
.purepeptides-product__description-image{
float:none;
display:block;
max-width:100%;
margin:0 0 20px;
}
}
.purepeptides-cart-page{
margin:0;
}
.purepeptides-cart-page__header{
margin:0 0 18px;
}
.purepeptides-cart-page__content{
display:block;
}
.purepeptides-cart-page__empty{
padding:24px;
border:1px solid #e2e8f0;
border-radius:12px;
background:#fff;
}
.purepeptides-cart-page__continue{
display:inline-flex;
align-items:center;
justify-content:center;
height:40px;
padding:0 16px;
border-radius:10px;
background:#e7461e;
color:#fff;
text-decoration:none;
font-weight:700;
font-size:14px;
}
.purepeptides-cart-page__continue:visited,
.purepeptides-cart-page__continue:focus{
color:#fff;
}
.purepeptides-cart-page__continue:hover{
background:#d23e1a;
color:#fff;
}
.purepeptides-commerce-page__layout{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(280px,340px);
gap:20px;
align-items:start;
}
.purepeptides-commerce-page__main{
display:block;
}
.purepeptides-cart-page__form{
display:block;
}
.purepeptides-cart-page__table-wrap{
border:1px solid #e2e8f0;
border-radius:12px;
overflow:auto;
background:#fff;
}
.purepeptides-cart-page__table{
width:100%;
border-collapse:collapse;
min-width:660px;
}
.purepeptides-cart-page__table th{
padding:12px 14px;
font-size:13px;
text-transform:uppercase;
letter-spacing:.04em;
color:#475569;
background:#f8fafc;
text-align:left;
border-bottom:1px solid #e2e8f0;
}
.purepeptides-cart-page__table td{
padding:14px;
border-bottom:1px solid #e2e8f0;
vertical-align:middle;
font-size:14px;
}
.purepeptides-cart-page__table tbody tr:last-child td{
border-bottom:0;
}
.purepeptides-cart-page__product{
display:flex;
flex-direction:column;
gap:4px;
}
.purepeptides-cart-page__product-link{
font-weight:700;
color:#0f172a;
text-decoration:none;
}
.purepeptides-cart-page__product-link:hover{
color:#e7461e;
}
.purepeptides-cart-page__unit{
font-size:13px;
color:#64748b;
}
.purepeptides-cart-page__qty{
margin:0;
}
.purepeptides-cart-page__qty.purepeptides-product__qty{
width:auto;
display:inline-flex;
}
.purepeptides-cart-page__qty .purepeptides-product__qty-btn{
width:32px;
height:34px;
}
.purepeptides-cart-page__qty .purepeptides-product__qty-input{
width:42px;
height:34px;
padding:0;
}
.purepeptides-cart-page__remove-btn{
height:34px;
padding:0 12px;
border:1px solid #f1c5bc;
border-radius:8px;
background:#fff4f2;
color:#b0361f;
font-size:13px;
font-weight:700;
cursor:pointer;
}
.purepeptides-cart-page__remove-btn:hover{
background:#ffe6e1;
}
.purepeptides-cart-page__actions{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:12px;
}
.purepeptides-cart-page__action-btn{
height:38px;
padding:0 16px;
border:0;
border-radius:10px;
background:#e7461e;
color:#fff;
font-size:14px;
font-weight:700;
cursor:pointer;
}
.purepeptides-cart-page__action-btn:hover{
background:#d23e1a;
}
.purepeptides-cart-page__action-btn--ghost{
background:#fff;
border:1px solid #cbd5e1;
color:#0f172a;
}
.purepeptides-cart-page__action-btn--ghost:hover{
background:#f8fafc;
}
.purepeptides-commerce-sidebar-summary{
border:1px solid #e2e8f0;
border-radius:12px;
padding:16px;
background:#fff;
position:sticky;
top:18px;
}
.purepeptides-cart-page__summary-row{
display:flex;
justify-content:space-between;
gap:12px;
padding:8px 0;
font-size:14px;
}
.purepeptides-cart-page__summary-row + .purepeptides-cart-page__summary-row{
border-top:1px solid #e2e8f0;
}
.purepeptides-cart-page__summary-row--total{
font-size:16px;
font-weight:700;
}
.purepeptides-cart-page__summary-note{
margin:0 0 14px;
font-size:14px;
line-height:1.5;
color:#64748b;
}
.purepeptides-cart-page__summary .purepeptides-cart-page__continue{
margin-top:14px;
width:100%;
}
.purepeptides-cart-page__continue--checkout{
background:#0f172a;
}
.purepeptides-cart-page__continue--checkout:hover{
background:#1e293b;
}
.purepeptides-checkout-page{
margin:0;
}
.purepeptides-checkout-page__header{
margin:0 0 18px;
}
.purepeptides-checkout-page__content{
display:block;
}
.purepeptides-checkout-page__empty,
.purepeptides-checkout-page__success{
padding:24px;
border:1px solid #e2e8f0;
border-radius:12px;
background:#fff;
}
.purepeptides-checkout-page__success-actions{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:18px;
}
.purepeptides-checkout-page__primary-link,
.purepeptides-checkout-page__secondary-link{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:40px;
padding:0 16px;
border-radius:10px;
text-decoration:none;
font-size:14px;
font-weight:700;
}
.purepeptides-checkout-page__primary-link{
background:#e7461e;
color:#fff;
}
.purepeptides-checkout-page__primary-link:visited{
color:#fff;
background:#e7461e;
}
.purepeptides-checkout-page__primary-link:hover,
.purepeptides-checkout-page__primary-link:focus{
color:#fff;
background:#d23e1a;
}
.purepeptides-checkout-page__secondary-link{
border:1px solid #cbd5e1;
background:#fff;
color:#0f172a;
}
.purepeptides-checkout-page__secondary-link:visited{
color:#0f172a;
background:#fff;
}
.purepeptides-checkout-page__secondary-link:hover,
.purepeptides-checkout-page__secondary-link:focus{
color:#0f172a;
background:#f8fafc;
}
.purepeptides-checkout-page__form{
display:grid;
gap:16px;
}
.purepeptides-checkout-page__card{
border:1px solid #e2e8f0;
border-radius:12px;
background:#fff;
}
.purepeptides-checkout-page__card{
padding:18px;
}
.purepeptides-checkout-page__card--ship-toggle{
padding:14px 18px;
}
.purepeptides-checkout-page__card--shipping[hidden]{
display:none !important;
}
.purepeptides-checkout-page__ship-toggle{
display:flex;
align-items:center;
gap:10px;
}
.purepeptides-checkout-page__checkbox{
width:18px;
height:18px;
margin:0;
accent-color:#e7461e;
}
.purepeptides-checkout-page__checkbox-label{
font-size:15px;
font-weight:600;
color:#0f172a;
cursor:pointer;
}
.purepeptides-checkout-page__account-row{
display:flex;
justify-content:space-between;
gap:16px;
align-items:flex-start;
font-size:14px;
}
.purepeptides-checkout-page__fields{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px 12px;
}
.purepeptides-checkout-page__field--full{
grid-column:1 / -1;
}
.purepeptides-checkout-page__label{
display:block;
margin-bottom:6px;
font-size:13px;
font-weight:700;
color:#0f172a;
}
.purepeptides-checkout-page__required{
color:#e7461e;
}
input.purepeptides-checkout-page__input,
select.purepeptides-checkout-page__input,
textarea.purepeptides-checkout-page__input{
width:100%;
min-height:42px;
padding:0 12px;
border:1px solid #cbd5e1;
border-radius:10px;
background:#fff;
color:#0f172a;
font-size:14px;
}
.purepeptides-inline-error-field{
margin-bottom:10px !important;
}
.purepeptides-checkout-page__payment-note{
margin:0 0 14px;
font-size:13px;
color:#475569;
}
.purepeptides-checkout-page__payment-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px 12px;
}
.purepeptides-checkout-page__payment-field--full{
grid-column:1 / -1;
}
.purepeptides-checkout-page__payment-host{
width:100%;
min-height:42px;
margin-bottom:10px;
border-radius:10px;
overflow:hidden;
background:#fff;
}
.purepeptides-checkout-page__payment-host iframe{
width:100% !important;
min-height:42px;
border-radius:10px;
}
.purepeptides-checkout-page__card--error .purepeptides-checkout-page__payment-host{
box-shadow:0 0 0 1px rgba(217,45,32,0.12);
}
select.purepeptides-checkout-page__input{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
padding-right:36px;
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-position:right 12px center;
	background-size:14px 14px;
	line-height:1.4;
}
.purepeptides-checkout-page__items{
	list-style:none;
	margin:0;
padding:0;
}
.purepeptides-checkout-page__item{
display:flex;
justify-content:space-between;
gap:12px;
padding:10px 0;
font-size:14px;
}
.purepeptides-checkout-page__item + .purepeptides-checkout-page__item{
border-top:1px solid #e2e8f0;
}
.purepeptides-checkout-page__item-meta{
margin-top:4px;
font-size:13px;
color:#64748b;
}
.purepeptides-checkout-page__summary-row{
display:flex;
justify-content:space-between;
gap:12px;
padding:8px 0;
font-size:14px;
}
.purepeptides-checkout-page__summary-row:first-of-type{
margin-top:8px;
border-top:1px solid #e2e8f0;
}
.purepeptides-checkout-page__summary-row + .purepeptides-checkout-page__summary-row{
border-top:1px solid #e2e8f0;
}
.purepeptides-checkout-page__summary-row--total{
font-size:16px;
font-weight:700;
}
.purepeptides-checkout-page__summary-note{
margin:12px 0 0;
font-size:13px;
line-height:1.5;
color:#64748b;
}
.element-error {
	position: relative;
	margin-bottom: 20px;
	clear: both;
	line-height: 24px;
}

.element-error::before {
	content: '';
	position: absolute;
	display: block;
	width: 15px;
	height: 15px;
	background: #FF9494;
	border: 0;
	top: -7px;
	left: 12px;
	transform: rotate(45deg);
	z-index: 0;
	-webkit-border-radius: 2px 0 2px;
	-moz-border-radius: 2px 0 2px;
	-ms-border-radius: 2px 0 2px;
	border-radius: 2px 0 2px;
}

.error-message {
	background: #FF9494;
	padding: 10px 13px;
	color: #cc1f1a;
	border: 0;
	font-size: 14px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	line-height: 24px;
}

.error-message ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.error-message li {
	margin: 0 0 6px;
	padding: 0;
}

.error-message li:last-of-type {
	margin: 0;
	padding: 0;
}

.error-message .icon {
	line-height: 24px;
	float: left;
	display: block;
	margin-right: 10px;
	color: inherit;
	font-size: inherit;
}
.purepeptides-checkout-page__submit{
width:100%;
min-height:42px;
margin-top:16px;
border:0;
border-radius:10px;
background:#e7461e;
color:#fff;
font-size:15px;
font-weight:700;
cursor:pointer;
}
.purepeptides-checkout-page__submit:hover{
background:#d23e1a;
}
.purepeptides-checkout-page__submit[disabled]{
opacity:.55;
cursor:not-allowed;
}
.purepeptides-checkout-page__summary .purepeptides-checkout-page__secondary-link{
width:100%;
margin-top:10px;
}
.purepeptides-checkout-page__summary .purepeptides-checkout-page__primary-link{
width:100%;
margin-top:10px;
}
button.purepeptides-registration-page__submit{
border:0;
cursor:pointer;
}
.purepeptides-registration-page__submit-row{
display:flex;
justify-content:flex-end;
margin-top:18px;
}
@media (max-width: 980px){
.purepeptides-commerce-page__layout{
grid-template-columns:minmax(0,1fr);
}
.purepeptides-commerce-sidebar-summary{
position:static;
}
}
@media (max-width: 800px), (min-width: 981px) and (max-width: 1160px){
.purepeptides-cart-page__table{
min-width:0;
}
.purepeptides-cart-page__table thead{
display:none;
}
.purepeptides-cart-page__table tbody tr{
display:block;
border-bottom:1px solid #e2e8f0;
padding:8px 0;
}
.purepeptides-cart-page__table tbody tr:last-child{
border-bottom:0;
}
.purepeptides-cart-page__table td{
display:grid;
grid-template-columns:110px minmax(0,1fr);
gap:10px;
border:0;
padding:8px 12px;
}
.purepeptides-cart-page__table td::before{
content:attr(data-label);
font-size:12px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.04em;
color:#64748b;
}
.purepeptides-cart-page__actions{
flex-direction:column;
}
.purepeptides-cart-page__action-btn{
width:100%;
}
.purepeptides-checkout-page__fields{
grid-template-columns:minmax(0,1fr);
}
.purepeptides-checkout-page__payment-grid{
grid-template-columns:minmax(0,1fr);
}
.purepeptides-checkout-page__field--full{
grid-column:auto;
}
.purepeptides-checkout-page__payment-field--full{
grid-column:auto;
}
.purepeptides-checkout-page__account-row,
.purepeptides-checkout-page__item,
.purepeptides-checkout-page__success-actions{
flex-direction:column;
}
.purepeptides-checkout-page__ship-toggle{
align-items:flex-start;
}
.purepeptides-checkout-page__primary-link,
.purepeptides-checkout-page__secondary-link{
width:100%;
}
}
