/** Shopify CDN: Minification failed

Line 10:0 All "@import" rules must come first

**/
html{-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}
/* ============================================================
   PawlyBuddy — Main Stylesheet v1.0
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --pb-blue: #0052CC;
  --pb-blue-dark: #003D99;
  --pb-blue-light: #EBF2FF;
  --pb-black: #111111;
  --pb-white: #FFFFFF;
  --pb-gray-bg: #F7F8FA;
  --pb-gray-border: #E5E7EB;
  --pb-gray-text: #6B7280;
  --pb-footer-bg: #050505;
  --pb-footer-text: #B8B8B8;
  --pb-star: #F59E0B;
  --pb-radius: 12px;
  --pb-radius-sm: 8px;
  --pb-radius-lg: 16px;
  --pb-shadow: 0 2px 16px rgba(0,0,0,0.07);
  --pb-shadow-md: 0 4px 28px rgba(0,0,0,0.12);
  --pb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pb-max: 1280px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--pb-font);font-size:16px;color:var(--pb-black);background:#fff;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
.pb-container{max-width:var(--pb-max);margin:0 auto;padding:0 28px}
.pb-section{padding:80px 0}
.pb-text-center{text-align:center}
.pb-text-blue{color:var(--pb-blue)}
.pb-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:8px;font-size:15px;font-weight:700;transition:all .2s;white-space:nowrap;font-family:inherit;cursor:pointer;border:none}
.pb-btn-primary{background:var(--pb-blue);color:#fff}
.pb-btn-primary:hover{background:var(--pb-blue-dark);transform:translateY(-1px);box-shadow:0 4px 14px rgba(0,82,204,.3)}
.pb-btn-lg{padding:16px 36px;font-size:16px}
.pb-btn-full{width:100%;justify-content:center}
.pb-stars{display:flex;gap:2px;align-items:center;color:var(--pb-star)}
.pb-star{color:var(--pb-star);font-size:15px}
.pb-badge{display:inline-block;padding:4px 12px;border-radius:4px;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.pb-badge-blue{background:var(--pb-blue);color:#fff}

/* TICKER */
.pb-ticker-wrap{background:var(--pb-blue);overflow:hidden;padding:10px 0}
.pb-ticker-track{display:flex;width:max-content;animation:pbTicker 28s linear infinite}
.pb-ticker-item{display:inline-flex;align-items:center;gap:10px;color:#fff;font-size:13px;font-weight:600;padding:0 48px;letter-spacing:.03em;white-space:nowrap}
@keyframes pbTicker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* HEADER */
.pb-header{position:sticky;top:0;z-index:200;background:#fff;border-bottom:1px solid var(--pb-gray-border);box-shadow:0 1px 6px rgba(0,0,0,.05)}
.pb-header-inner{display:flex;align-items:center;justify-content:space-between;height:68px;gap:20px}
.pb-logo{display:flex;align-items:center;gap:8px;font-size:20px;font-weight:900;color:var(--pb-black);flex-shrink:0}
.pb-logo svg{width:26px;height:26px;fill:var(--pb-blue)}
.pb-nav{display:flex;align-items:center;gap:2px;flex:1;justify-content:center}
.pb-nav a{padding:8px 14px;font-size:14px;font-weight:500;color:var(--pb-black);border-radius:6px;transition:color .2s;position:relative}
.pb-nav a:hover,.pb-nav a.active{color:var(--pb-blue)}
.pb-nav a.active::after{content:'';position:absolute;bottom:-4px;left:14px;right:14px;height:2px;background:var(--pb-blue);border-radius:2px}
.pb-header-icons{display:flex;align-items:center;gap:6px}
.pb-icon-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:8px;color:var(--pb-black);transition:background .2s;position:relative;text-decoration:none}
.pb-icon-btn:hover{background:var(--pb-gray-bg)}
.pb-icon-btn svg{width:20px;height:20px}
.pb-cart-count{position:absolute;top:3px;right:3px;width:18px;height:18px;background:var(--pb-blue);color:#fff;font-size:10px;font-weight:700;border-radius:50%;display:flex;align-items:center;justify-content:center}
.pb-hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;background:none;border:none}
.pb-hamburger span{display:block;width:22px;height:2px;background:var(--pb-black);border-radius:2px;transition:transform .28s ease,opacity .28s ease;transform-origin:center}
.pb-hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.pb-hamburger.is-open span:nth-child(2){opacity:0;transform:scaleX(0)}
.pb-hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.pb-mobile-menu{display:none;flex-direction:column;padding:12px 20px 20px;background:#fff;border-top:1px solid var(--pb-gray-border)}
.pb-mobile-menu.open{display:flex}
.pb-mobile-menu a{display:block;padding:11px 12px;font-size:15px;font-weight:500;color:var(--pb-black);border-radius:6px}
.pb-mobile-menu a:hover{background:var(--pb-gray-bg);color:var(--pb-blue)}

/* HERO */
.pb-hero{display:grid;grid-template-columns:55% 45%;min-height:500px;background:#fff;overflow:hidden}
.pb-hero-content{display:flex;flex-direction:column;justify-content:center;padding:60px 60px 60px 0}
.pb-hero-title{font-size:54px;font-weight:900;line-height:1.08;color:var(--pb-black);margin-bottom:18px;letter-spacing:-.02em}
.pb-hero-title .blue{color:var(--pb-blue)}
.pb-hero-sub{font-size:16px;color:#444;line-height:1.7;margin-bottom:26px;max-width:440px}
.pb-hero-features{display:flex;flex-wrap:wrap;gap:10px 22px;margin-bottom:30px}
.pb-hero-feat{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:500;color:#444}
.pb-hero-feat svg{width:18px;height:18px;color:var(--pb-blue);flex-shrink:0}
.pb-hero-cta{margin-bottom:18px}
.pb-hero-reviews{display:inline-flex;align-items:center;gap:10px;padding:9px 16px;border:1px solid var(--pb-gray-border);border-radius:50px;font-size:13px;font-weight:500;color:#555}
.pb-hero-img{position:relative;overflow:hidden}
.pb-hero-img img{width:100%;height:100%;object-fit:cover;object-position:center}
.pb-hero-img::before{content:'';position:absolute;left:0;top:0;bottom:0;width:100px;background:linear-gradient(to right,#fff,transparent);z-index:1}

/* CATEGORY CARDS */
.pb-categories{padding:60px 0;background:#fff}
.pb-cat-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.pb-cat-card{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid var(--pb-gray-border);border-radius:var(--pb-radius-lg);padding:28px 24px;box-shadow:var(--pb-shadow);transition:box-shadow .2s,transform .2s;overflow:hidden;min-height:150px}
.pb-cat-card:hover{box-shadow:var(--pb-shadow-md);transform:translateY(-2px)}
.pb-cat-content{flex:1}
.pb-cat-title{font-size:22px;font-weight:800;margin-bottom:5px}
.pb-cat-sub{font-size:14px;color:var(--pb-gray-text);margin-bottom:14px}
.pb-cat-link{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:var(--pb-blue);transition:gap .2s}
.pb-cat-link:hover{gap:10px}
.pb-cat-icon{width:80px;height:80px;background:var(--pb-blue-light);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-left:20px}
.pb-cat-icon svg{width:38px;height:38px;color:var(--pb-blue)}
.pb-cat-img-wrap{width:130px;height:110px;flex-shrink:0;border-radius:var(--pb-radius);overflow:hidden;margin-left:20px}
.pb-cat-img-wrap img{width:100%;height:100%;object-fit:cover}

/* FEATURED PRODUCT */
.pb-feat-product{padding:80px 0;background:#fff}
.pb-feat-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.pb-gallery-main{border-radius:var(--pb-radius-lg);overflow:hidden;margin-bottom:12px;background:#fff;aspect-ratio:1}
.pb-gallery-main img{width:100%;height:100%;object-fit:contain;transition:opacity .3s;background:#fff}
.pb-gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.pb-thumb{border-radius:var(--pb-radius-sm);overflow:hidden;aspect-ratio:1;border:2px solid transparent;cursor:pointer;transition:border-color .2s;background:var(--pb-gray-bg)}
.pb-thumb img{width:100%;height:100%;object-fit:cover}
.pb-thumb.active,.pb-thumb:hover{border-color:var(--pb-blue)}
.pb-prod-badge{margin-bottom:14px}
.pb-prod-title{font-size:30px;font-weight:800;line-height:1.2;margin-bottom:12px}
.pb-prod-rating{display:flex;align-items:center;gap:10px;margin-bottom:16px;font-size:14px;color:var(--pb-gray-text)}
.pb-prod-price{font-size:34px;font-weight:900;margin-bottom:24px}
.pb-prod-benefits{display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.pb-benefit{display:flex;align-items:flex-start;gap:9px;font-size:14px;color:#333;line-height:1.5}
.pb-benefit svg{width:18px;height:18px;color:var(--pb-blue);flex-shrink:0;margin-top:1px}
.pb-qty-row{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.pb-qty{display:flex;align-items:center;border:1px solid var(--pb-gray-border);border-radius:8px;overflow:hidden}
.pb-qty-btn{width:40px;height:44px;display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--pb-black);transition:background .2s;background:none;border:none;cursor:pointer;font-family:inherit}
.pb-qty-btn:hover{background:var(--pb-gray-bg)}
.pb-qty-val{width:48px;height:44px;border:none;border-left:1px solid var(--pb-gray-border);border-right:1px solid var(--pb-gray-border);text-align:center;font-size:15px;font-weight:600;font-family:inherit;outline:none}
.pb-atc{flex:1;display:flex;align-items:center;justify-content:center;gap:10px;padding:14px 24px;background:var(--pb-blue);color:#fff;border:none;border-radius:8px;font-size:15px;font-weight:700;cursor:pointer;transition:background .2s,transform .2s;font-family:inherit}
.pb-atc:hover{background:var(--pb-blue-dark);transform:translateY(-1px)}
.pb-atc svg{width:20px;height:20px}
.pb-trust{display:flex;gap:24px;margin-top:20px;padding-top:20px;border-top:1px solid var(--pb-gray-border)}
.pb-trust-item{display:flex;align-items:center;gap:8px;flex:1}
.pb-trust-item svg{width:22px;height:22px;color:var(--pb-blue);flex-shrink:0}
.pb-trust-label{font-size:12px;font-weight:700;display:block}
.pb-trust-sub{font-size:11px;color:var(--pb-gray-text);display:block}

/* PROBLEM/SOLUTION */
.pb-problem{padding:0 0 80px}
.pb-problem-grid{display:grid;grid-template-columns:1fr 1fr;border-radius:var(--pb-radius-lg);overflow:hidden;min-height:360px;box-shadow:var(--pb-shadow-md)}
.pb-problem-left{background:var(--pb-blue);padding:56px 48px;display:flex;flex-direction:column;justify-content:center}
.pb-problem-title{font-size:28px;font-weight:800;color:#fff;line-height:1.25;margin-bottom:18px}
.pb-problem-text{font-size:15px;color:rgba(255,255,255,.88);line-height:1.7;margin-bottom:26px}
.pb-problem-cta{display:inline-flex;align-items:center;gap:6px;color:#fff;font-weight:700;font-size:14px;border-bottom:2px solid rgba(255,255,255,.5);padding-bottom:2px;width:fit-content;transition:border-color .2s}
.pb-problem-cta:hover{border-color:#fff}
.pb-problem-right{background:var(--pb-gray-bg);overflow:hidden}
.pb-problem-right img{width:100%;height:100%;object-fit:cover}

/* VET TESTIMONIALS */
.pb-vets{padding:80px 0;background:#fff}
.pb-vets-title{font-size:32px;font-weight:800;text-align:center;margin-bottom:48px}
.pb-vets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pb-vet-card{background:#fff;border:1px solid var(--pb-gray-border);border-radius:var(--pb-radius-lg);padding:28px;box-shadow:var(--pb-shadow)}
.pb-vet-head{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.pb-vet-avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;flex-shrink:0;background:var(--pb-gray-bg)}
.pb-vet-avatar img{width:100%;height:100%;object-fit:cover}
.pb-vet-name{font-size:15px;font-weight:700}
.pb-vet-role{font-size:12px;color:var(--pb-gray-text);margin-top:2px}
.pb-vet-stars{margin-bottom:10px}
.pb-vet-quote{font-size:14px;color:#444;line-height:1.6;font-style:italic}

/* FAQ */
.pb-faq{padding:80px 0;background:var(--pb-gray-bg)}
.pb-faq-title{font-size:36px;font-weight:800;text-align:center;margin-bottom:48px}
.pb-faq-cols{display:grid;grid-template-columns:1fr 1fr;gap:0 36px}
.pb-faq-item{border-bottom:1px solid var(--pb-gray-border)}
.pb-faq-q{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:17px 0;cursor:pointer;font-size:14px;font-weight:500;color:var(--pb-black);width:100%;text-align:left;background:none;border:none;font-family:inherit;transition:color .2s}
.pb-faq-q:hover{color:var(--pb-blue)}
.pb-faq-icon{flex-shrink:0;width:22px;height:22px;border:1.5px solid var(--pb-gray-border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--pb-gray-text);transition:.25s}
.pb-faq-item.open .pb-faq-icon{background:var(--pb-blue);border-color:var(--pb-blue);color:#fff;transform:rotate(45deg)}
.pb-faq-a{display:none;padding:0 0 16px;font-size:14px;font-weight:600;color:var(--pb-black);line-height:1.6}
.pb-faq-item.open .pb-faq-a{display:block}

/* FOOTER */
.pb-footer{background:var(--pb-footer-bg);padding:64px 0 0;color:var(--pb-footer-text)}
.pb-footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1.2fr 1fr 1.5fr;gap:36px;margin-bottom:48px}
.pb-footer-logo{display:flex;align-items:center;gap:8px;font-size:18px;font-weight:900;color:#fff;margin-bottom:12px}
.pb-footer-logo svg{width:22px;height:22px;fill:var(--pb-blue)}
.pb-footer-desc{font-size:13px;color:var(--pb-footer-text);line-height:1.6;margin-bottom:18px;max-width:210px}
.pb-footer-socials{display:flex;gap:10px}
.pb-footer-social{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.07);display:flex;align-items:center;justify-content:center;color:var(--pb-footer-text);transition:background .2s,color .2s}
.pb-footer-social:hover{background:var(--pb-blue);color:#fff}
.pb-footer-social svg{width:16px;height:16px}
.pb-footer-col-title{font-size:12px;font-weight:700;color:#fff;letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px}
.pb-footer-links{display:flex;flex-direction:column;gap:8px}
.pb-footer-links a{font-size:13px;color:var(--pb-footer-text);transition:color .2s}
.pb-footer-links a:hover{color:#fff}
.pb-footer-nl p{font-size:13px;color:var(--pb-footer-text);line-height:1.5;margin-bottom:12px}
.pb-nl-form{display:flex;gap:8px}
.pb-nl-input{flex:1;padding:10px 14px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:8px;color:#fff;font-size:13px;font-family:inherit;outline:none;transition:border-color .2s}
.pb-nl-input::placeholder{color:rgba(255,255,255,.35)}
.pb-nl-input:focus{border-color:var(--pb-blue)}
.pb-nl-btn{padding:10px 16px;background:var(--pb-blue);color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit;white-space:nowrap;transition:background .2s}
.pb-nl-btn:hover{background:var(--pb-blue-dark)}
.pb-footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding:20px 0;display:flex;align-items:center;justify-content:space-between;gap:16px}
.pb-footer-copy{font-size:12px;color:rgba(255,255,255,.3)}
.pb-payments{display:flex;gap:8px}
.pb-payment{padding:4px 10px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:4px;font-size:11px;font-weight:700;color:rgba(255,255,255,.55)}

/* PRODUCT PAGE */
.pb-product-page{padding:48px 0 80px}
.pb-product-page-grid{display:flex;flex-direction:row;gap:48px;align-items:flex-start}
.pb-prod-desc{font-size:15px;color:#444;line-height:1.8;margin-bottom:20px}
.pb-prod-tabs{display:flex;border-bottom:2px solid var(--pb-gray-border);margin-bottom:28px}
.pb-prod-tab{padding:12px 24px;font-size:14px;font-weight:600;color:var(--pb-gray-text);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-2px;background:none;border-left:none;border-right:none;border-top:none;font-family:inherit;transition:color .2s,border-color .2s}
.pb-prod-tab.active{color:var(--pb-blue);border-bottom-color:var(--pb-blue)}
.pb-tab-panel{display:none}
.pb-tab-panel.active{display:block}
.pb-shipping-info{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.pb-ship-item{background:var(--pb-gray-bg);border-radius:var(--pb-radius);padding:20px;text-align:center}
.pb-ship-item svg{width:28px;height:28px;color:var(--pb-blue);margin:0 auto 10px}
.pb-ship-item h4{font-size:14px;font-weight:700;margin-bottom:6px}
.pb-ship-item p{font-size:13px;color:var(--pb-gray-text)}
.pb-breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--pb-gray-text);margin-bottom:32px}
.pb-breadcrumb a{color:var(--pb-gray-text)}
.pb-breadcrumb a:hover{color:var(--pb-blue)}
.pb-breadcrumb span{color:var(--pb-black);font-weight:500}

/* COLLECTION */
.pb-collection-hero{background:var(--pb-blue);padding:60px 0;text-align:center;color:#fff}
.pb-collection-hero h1{font-size:40px;font-weight:800;margin-bottom:10px}
.pb-collection-hero p{font-size:16px;opacity:.85}
.pb-collection-grid{
  display:grid;
  grid-template-columns:repeat(var(--pb-col-desktop,3),1fr);
  gap:16px;
  padding:0 0 40px
}
.pb-prod-card{background:#fff;border:1px solid var(--pb-gray-border);border-radius:10px;overflow:hidden;transition:box-shadow .2s,transform .2s;position:relative}
.pb-prod-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.1);transform:translateY(-2px)}
.pb-prod-card-img{aspect-ratio:1/1;background:var(--pb-gray-bg);overflow:hidden;display:block;position:relative}
.pb-prod-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .35s}
.pb-prod-card:hover .pb-prod-card-img img{transform:scale(1.06)}
.pb-prod-card-body{padding:10px 12px 12px}
.pb-prod-card-discount{position:absolute;top:8px;right:8px;background:#DC2626;color:#fff;font-size:11px;font-weight:800;padding:3px 7px;border-radius:5px;z-index:2}
.pb-prod-card-badge-tag{position:absolute;top:8px;left:8px;font-size:10px;font-weight:800;padding:3px 8px;border-radius:4px;z-index:2;text-transform:uppercase}
.pb-prod-card-badge-tag--green{background:#16A34A;color:#fff}
.pb-prod-card-badge-tag--blue{background:var(--pb-blue);color:#fff}
.pb-prod-card-category{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--pb-gray-text);margin-bottom:4px}
.pb-prod-card-title{font-size:13px;font-weight:700;margin-bottom:6px;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:var(--pb-black)}
.pb-prod-card-price-row{display:flex;align-items:baseline;gap:6px;margin-bottom:8px}
.pb-prod-card-price{font-size:15px;font-weight:900;color:var(--pb-black)}
.pb-prod-card-compare{font-size:12px;color:var(--pb-gray-text);text-decoration:line-through}
.pb-prod-card-stars-row{display:flex;align-items:center;gap:4px;margin-bottom:4px}
.pb-prod-card-stars{color:var(--pb-star);font-size:12px}
.pb-prod-card-review-count{font-size:11px;color:var(--pb-gray-text)}
.pb-prod-card-btn{display:block;width:100%;padding:8px;background:var(--pb-blue);color:#fff;border:none;border-radius:7px;font-size:12px;font-weight:700;text-align:center;cursor:pointer;font-family:inherit;transition:background .2s;text-decoration:none}
.pb-prod-card-btn:hover{background:var(--pb-blue-dark)}

/* STATIC PAGES */
.pb-page-hero{background:var(--pb-gray-bg);padding:56px 0;text-align:center;border-bottom:1px solid var(--pb-gray-border)}
.pb-page-hero h1{font-size:36px;font-weight:800;margin-bottom:10px}
.pb-page-hero p{font-size:16px;color:var(--pb-gray-text)}
.pb-page-body{padding:60px 28px;max-width:820px;margin:0 auto}
.pb-page-body h2{font-size:22px;font-weight:700;margin:32px 0 12px;color:var(--pb-black)}
.pb-page-body p{font-size:15px;color:#444;line-height:1.8;margin-bottom:16px}
.pb-page-body ul{padding-left:20px;margin-bottom:16px}
.pb-page-body ul li{font-size:15px;color:#444;line-height:1.7;margin-bottom:8px;list-style:disc}
.pb-form-group{margin-bottom:20px}
.pb-form-label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--pb-black)}
.pb-form-input,.pb-form-textarea,.pb-form-select{width:100%;padding:12px 16px;border:1px solid var(--pb-gray-border);border-radius:8px;font-size:14px;font-family:inherit;color:var(--pb-black);background:#fff;outline:none;transition:border-color .2s,box-shadow .2s}
.pb-form-input:focus,.pb-form-textarea:focus,.pb-form-select:focus{border-color:var(--pb-blue);box-shadow:0 0 0 3px rgba(0,82,204,.1)}
.pb-form-textarea{resize:vertical;min-height:140px}
.pb-track-box{max-width:480px;margin:0 auto;background:#fff;border:1px solid var(--pb-gray-border);border-radius:var(--pb-radius-lg);padding:40px;box-shadow:var(--pb-shadow)}
.pb-about-values{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:36px 0}
.pb-value-card{background:var(--pb-gray-bg);border-radius:var(--pb-radius);padding:28px 20px;text-align:center}
.pb-value-icon{font-size:36px;margin-bottom:10px}
.pb-value-card h3{font-size:16px;font-weight:700;margin-bottom:8px}
.pb-value-card p{font-size:13px;color:var(--pb-gray-text);line-height:1.5}

/* CUSTOM LIQUID PROMO BLOCK */
.pb-promo-block{border-radius:var(--pb-radius-lg);overflow:hidden;margin:40px 0}
.pb-promo-inner{background:linear-gradient(135deg,#0052CC 0%,#1a6fff 100%);padding:48px;display:flex;align-items:center;justify-content:space-between;gap:32px}
.pb-promo-label{font-size:11px;font-weight:700;color:rgba(255,255,255,.7);letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px}
.pb-promo-title{font-size:28px;font-weight:800;color:#fff;line-height:1.25;margin-bottom:12px}
.pb-promo-text{font-size:15px;color:rgba(255,255,255,.85);line-height:1.6}
.pb-promo-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;background:#fff;color:var(--pb-blue);border-radius:8px;font-size:15px;font-weight:700;white-space:nowrap;transition:transform .2s,box-shadow .2s}
.pb-promo-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.15)}
.pb-promo-badges{display:flex;gap:12px;margin-top:20px;flex-wrap:wrap}
.pb-promo-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);border-radius:50px;padding:5px 14px;font-size:12px;font-weight:600;color:#fff}

/* RESPONSIVE */
@media(max-width:1024px){
  .pb-hero-title{font-size:42px}
  .pb-feat-grid{gap:40px}
  .pb-footer-grid{grid-template-columns:1fr 1fr 1fr}
}
@media(max-width:768px){
  /* ── Nav / hamburger ── */
  .pb-nav{display:none}
  .pb-hamburger{display:flex}
  .pb-mobile-menu{display:block;overflow:hidden;max-height:0;transition:max-height .35s cubic-bezier(.4,0,.2,1);background:#fff;border-top:1px solid var(--pb-gray-border)}
  .pb-mobile-menu.open{max-height:600px}
  .pb-mobile-menu a{display:block;padding:13px 20px;font-size:16px!important;font-weight:600;color:var(--pb-black);border-bottom:1px solid var(--pb-gray-border);text-decoration:none}
  .pb-mobile-menu a:last-child{border-bottom:none}
  .pb-mobile-menu a:hover,.pb-mobile-menu a.active{color:var(--pb-blue);background:var(--pb-blue-light)}

  /* ══ iOS FONT FIX — DÉFINITIF ══ */
  html,body{-webkit-text-size-adjust:100%!important;text-size-adjust:100%!important}
  body{font-size:15px!important;font-family:var(--pb-font)!important}
  p,li,td,label{font-family:var(--pb-font)!important}
  h1,.pb-hero-title{font-size:30px!important;font-weight:900!important;line-height:1.1!important;letter-spacing:-.01em!important}
  h2,.pb-section-title,.pb-vets-title,.pb-faq-title,.pb-problem-title{font-size:24px!important;font-weight:900!important;line-height:1.2!important}
  h3{font-size:18px!important;font-weight:800!important}
  h4{font-size:16px!important;font-weight:700!important}
  button,input,select,textarea{font-family:var(--pb-font)!important;font-size:15px!important}
  .pb-prod-title{font-size:21px!important;font-weight:900!important}
  .pb-prod-price-sale,.pb-prod-price{font-size:24px!important;font-weight:900!important}

  /* ══ ESPACEMENT SECTIONS MOBILE RÉDUIT ══ */
  .pb-section{padding:20px 0!important}
  .pb-product-page{padding-top:12px!important;padding-bottom:28px!important}
  .pb-section-title{margin-bottom:12px!important}
  p{margin-bottom:8px!important}
  h1,h2,h3,h4{margin-bottom:8px!important;margin-top:0!important}
  .pb-prod-tabs-wrap{margin-top:16px!important}
  .pb-hero-content>*+*{margin-top:8px!important}
  .pb-vets-grid>*{margin-bottom:16px!important}
  .pb-cat-grid>*{margin-bottom:0!important}

  /* ── Hero ── */
  .pb-hero{grid-template-columns:1fr;min-height:auto}
  .pb-hero-content{padding:20px 0 16px;order:2}
  .pb-hero-img{order:1;height:210px}
  .pb-hero-img::before{display:none}

  /* ── Grilles ── */
  .pb-cat-grid,.pb-vets-grid,.pb-faq-cols,.pb-about-values{grid-template-columns:1fr}
  .pb-feat-grid,.pb-problem-grid{grid-template-columns:1fr;gap:12px}
  .pb-problem-right{height:180px}

  /* ── Page produit ── */
  .pb-product-page-grid{flex-direction:column!important;gap:16px!important}
  .pb-product-gallery{flex:none!important;width:100%!important;max-width:100%!important;display:block!important}
  .pb-gallery-main{margin-bottom:8px!important}
  .pb-gallery-thumbs{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:6px!important;margin-top:6px!important;width:auto!important}
  .pb-thumb{width:54px!important;height:54px!important}
  .pb-prod-info{width:100%}
  .pb-prod-info>*{margin-bottom:6px!important}
  .pb-offer-card-inner{flex-wrap:wrap;gap:8px}
  .pb-countdown-wrap{flex-direction:column;align-items:flex-start;gap:4px}

  /* ── Collection ── */
  .pb-collection-grid{grid-template-columns:repeat(var(--pb-col-mobile,2),1fr)!important;gap:8px!important}
  .pb-prod-card-img{aspect-ratio:1/1!important}
  .pb-prod-card-body{padding:8px 10px 10px!important}
  .pb-prod-card-title{font-size:12px!important;-webkit-line-clamp:2}
  .pb-prod-card-price{font-size:13px!important}
  .pb-prod-card-btn{padding:7px!important;font-size:11px!important}
  .pb-collection-layout{flex-direction:column;gap:10px}
  .pb-filters-sidebar{width:100%;position:static}
  .pb-collection-hero{padding:20px 0 16px!important}
  .pb-collection-hero h1{font-size:22px!important;margin-bottom:4px!important}
  .pb-collection-hero p{font-size:13px!important;margin-bottom:0!important}
  .pb-cat-tabs{overflow-x:auto;-webkit-overflow-scrolling:touch;gap:0;margin-bottom:12px!important}
  .pb-cat-tab{padding:10px 14px;font-size:13px!important}
  .pb-collection-topbar{margin-bottom:10px}

  /* ── Footer ── */
  .pb-footer-grid{grid-template-columns:1fr 1fr;gap:16px}
  .pb-shipping-info{grid-template-columns:1fr}
  .pb-footer-bottom{flex-direction:column;text-align:center;gap:8px}
  .pb-trust{flex-wrap:wrap;gap:8px}
  .pb-promo-inner{flex-direction:column;padding:20px}
  .pb-nl-form{flex-direction:column;gap:8px}

  /* ── Cart ── */
  .pb-cart-drawer{width:100vw!important}
  .pb-cart-page-grid{grid-template-columns:1fr}
  .pb-cart-page-summary{position:static}
}
@media(max-width:480px){
  .pb-container{padding:0 12px}
  .pb-hero-title{font-size:22px!important}
  .pb-section-title{font-size:20px!important}
  .pb-footer-grid{grid-template-columns:1fr}
  .pb-prod-title{font-size:19px!important}
  .pb-prod-price-sale{font-size:22px!important}
  .pb-atc-hero{font-size:15px!important;padding:13px 16px}
  .pb-cart-item-img{width:68px;height:68px}
  .pb-collection-grid{gap:6px!important}
  .pb-prod-card-body{padding:6px 8px 8px!important}
}

/* ── Skip link ── */
.pb-skip-link{position:absolute;top:-999px;left:-999px;background:var(--pb-blue);color:#fff;padding:8px 16px;border-radius:4px;font-size:14px;z-index:9999}
.pb-skip-link:focus{top:8px;left:8px}

/* ── Cart Overlay ── */
.pb-cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:399;opacity:0;pointer-events:none;transition:opacity .3s}
.pb-cart-overlay.open{opacity:1;pointer-events:all}

/* ══════════════════════════════════════════
   CART DRAWER — FIX MOBILE CHECKOUT BUTTON
   Correction visibilité bouton orange sur iOS/Android
   ══════════════════════════════════════════ */

/* 1. Hauteur dynamique : 100dvh exclut la barre du navigateur mobile,
      contrairement à 100vh qui l'ignore et provoque le décalage */
.pb-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100dvh;            /* ← FIX : remplace 100vh */
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.13);
}
.pb-cart-drawer.open { transform: translateX(0) }

/* 2. Zone de défilement du contenu : overflow-y:auto garantit que le corps
      du panier scrolle sans pousser le footer hors de l'écran */
.pb-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* défilement fluide iOS */
  padding: 16px 24px;
}

/* 3. Footer collé en bas, avec padding de sécurité pour les encoches
      (iPhone notch / Dynamic Island / Android chin) */
.pb-cart-drawer-footer {
  padding: 20px 24px;
  padding-bottom: max(20px, env(safe-area-inset-bottom)); /* ← FIX encoche */
  border-top: 1px solid var(--pb-gray-border);
  flex-shrink: 0;
}

/* ── Cart Drawer header ── */
.pb-cart-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid var(--pb-gray-border);flex-shrink:0}
.pb-cart-drawer-title{font-size:18px;font-weight:800;margin:0}
.pb-cart-close{width:36px;height:36px;border:none;background:var(--pb-gray-bg);border-radius:50%;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--pb-black);transition:background .2s}
.pb-cart-close:hover{background:var(--pb-gray-border)}
.pb-cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;text-align:center;color:var(--pb-gray-text)}
.pb-cart-item{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid var(--pb-gray-border)}
.pb-cart-item-img{width:80px;height:80px;object-fit:cover;border-radius:8px;flex-shrink:0;background:var(--pb-gray-bg)}
.pb-cart-item-info{flex:1;min-width:0}
.pb-cart-item-title{font-size:14px;font-weight:700;margin-bottom:4px;line-height:1.3}
.pb-cart-item-variant{font-size:12px;color:var(--pb-gray-text);margin-bottom:4px}
.pb-cart-item-price{font-size:15px;font-weight:700;color:var(--pb-blue);margin-bottom:8px}
.pb-cart-item-qty{display:flex;align-items:center;gap:6px}
.pb-cart-qty-btn{width:28px;height:28px;border:1.5px solid var(--pb-gray-border);border-radius:6px;background:#fff;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-weight:700;transition:border-color .2s}
.pb-cart-qty-btn:hover{border-color:var(--pb-blue);color:var(--pb-blue)}
.pb-cart-item-qty span{font-size:14px;font-weight:600;min-width:20px;text-align:center}
.pb-cart-remove{margin-left:8px;background:none;border:none;cursor:pointer;font-size:16px;opacity:.6;transition:opacity .2s}
.pb-cart-remove:hover{opacity:1}
.pb-cart-subtotal{display:flex;justify-content:space-between;font-size:17px;font-weight:800;margin-bottom:6px}
.pb-cart-note{font-size:12px;color:var(--pb-gray-text);margin-bottom:16px}
.pb-cart-view-link{display:block;text-align:center;margin-top:12px;font-size:14px;color:var(--pb-gray-text);text-decoration:underline}
.pb-cart-view-link:hover{color:var(--pb-black)}

/* ── Cart Page ── */
.pb-cart-page-title{font-size:32px;font-weight:900;margin-bottom:36px}
.pb-cart-page-grid{display:grid;grid-template-columns:1fr 360px;gap:40px;align-items:start}
.pb-cart-page-item{display:flex;gap:20px;padding:24px 0;border-bottom:1px solid var(--pb-gray-border);align-items:flex-start}
.pb-cart-page-img{width:120px;height:120px;object-fit:cover;border-radius:10px;background:var(--pb-gray-bg);flex-shrink:0}
.pb-cart-page-info{flex:1}
.pb-cart-page-name{font-size:16px;font-weight:700;margin-bottom:4px;display:block;color:var(--pb-black)}
.pb-cart-page-name:hover{color:var(--pb-blue)}
.pb-cart-page-variant{font-size:13px;color:var(--pb-gray-text);margin-bottom:6px}
.pb-cart-page-price{font-size:16px;font-weight:700;color:var(--pb-blue)}
.pb-cart-page-line-total{font-size:16px;font-weight:800;text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:12px;min-width:80px}
.pb-cart-page-remove{font-size:13px;color:var(--pb-gray-text);background:none;border:none;cursor:pointer;text-decoration:underline;padding:0}
.pb-cart-page-remove:hover{color:#dc2626}
.pb-cart-summary-title{font-size:20px;font-weight:800;margin-bottom:20px}
.pb-cart-summary-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--pb-gray-border);font-size:15px}
.pb-cart-summary-total{font-size:18px;font-weight:800;border-bottom:none}
.pb-cart-page-summary{background:var(--pb-gray-bg);border-radius:16px;padding:28px;position:sticky;top:88px}
.pb-cart-empty-page{text-align:center;padding:80px 0;display:flex;flex-direction:column;align-items:center;gap:12px;color:var(--pb-gray-text)}
.pb-cart-empty-page h2{font-size:24px;font-weight:800;color:var(--pb-black)}

@media(max-width:768px){
  .pb-cart-page-grid{grid-template-columns:1fr}
  .pb-cart-page-summary{position:static}
  .pb-cart-page-item{flex-wrap:wrap}
}

/* ══════════════════════════════════════════
   PRODUCT PAGE v2 — PAWIRA STYLE
══════════════════════════════════════════ */
.pb-product-gallery{position:relative}
.pb-gallery-sale-badge{position:absolute;top:16px;left:16px;background:#dc2626;color:#fff;font-size:13px;font-weight:800;padding:6px 12px;border-radius:6px;z-index:2;letter-spacing:.04em}
.pb-gallery-trust{display:flex;gap:20px;margin-top:16px;padding:14px 16px;background:var(--pb-gray-bg);border-radius:10px}
.pb-gallery-trust-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--pb-black)}
.pb-prod-brand{font-size:13px;font-weight:700;color:var(--pb-blue);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.pb-prod-headline{font-size:15px;color:#444;line-height:1.6;margin-bottom:16px}
.pb-prod-headline strong,.pb-prod-headline b{color:var(--pb-blue)}
.pb-prod-rating{display:flex;align-items:center;gap:8px;margin-bottom:14px;flex-wrap:wrap}
.pb-rating-score{font-weight:800;font-size:15px;color:var(--pb-black)}
.pb-rating-count{font-size:13px;color:var(--pb-gray-text)}
.pb-feat-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
.pb-feat-badge{display:inline-flex;align-items:center;gap:5px;background:var(--pb-gray-bg);border:1.5px solid var(--pb-gray-border);border-radius:20px;padding:5px 12px;font-size:12px;font-weight:600;color:var(--pb-black)}
.pb-countdown-wrap{display:flex;align-items:center;gap:14px;background:var(--pb-gray-bg);border:1.5px solid var(--pb-gray-border);border-radius:10px;padding:12px 16px;margin-bottom:14px;flex-wrap:wrap}
.pb-countdown-label{font-size:13px;font-weight:700;color:var(--pb-black)}
.pb-countdown{display:flex;align-items:center;gap:6px}
.pb-cd-unit{display:flex;flex-direction:column;align-items:center;background:#fff;border:1.5px solid var(--pb-gray-border);border-radius:8px;padding:6px 12px;min-width:48px}
.pb-cd-val{font-size:22px;font-weight:900;line-height:1;color:var(--pb-black)}
.pb-cd-lbl{font-size:9px;font-weight:700;color:var(--pb-gray-text);letter-spacing:.06em;margin-top:2px}
.pb-cd-sep{font-size:22px;font-weight:900;color:var(--pb-black);margin-bottom:12px}
.pb-stock-alert{display:flex;align-items:center;gap:8px;background:#FEF2F2;border:1.5px solid #FECACA;border-radius:8px;padding:10px 14px;margin-bottom:12px;font-size:13px;font-weight:700;color:#dc2626}
.pb-stock-dot{width:8px;height:8px;border-radius:50%;background:#dc2626;flex-shrink:0;animation:pbPulse 1.5s infinite}
@keyframes pbPulse{0%,100%{opacity:1}50%{opacity:.4}}
.pb-sale-label{font-size:15px;font-weight:800;color:var(--pb-blue);margin-bottom:16px;letter-spacing:.01em}
.pb-offer-stack{display:flex;flex-direction:column;gap:10px;margin-bottom:16px}
.pb-offer-card{display:block;border:2px solid var(--pb-gray-border);border-radius:12px;padding:14px 16px;cursor:pointer;transition:border-color .2s,box-shadow .2s;position:relative}
.pb-offer-card:hover{border-color:var(--pb-blue)}
.pb-offer-card--selected,.pb-offer-card:has(input:checked){border-color:var(--pb-blue);background:var(--pb-blue-light);box-shadow:0 0 0 3px rgba(0,82,204,.12)}
.pb-offer-radio{position:absolute;top:16px;left:16px;width:18px;height:18px;accent-color:var(--pb-blue)}
.pb-offer-card-inner{display:flex;gap:14px;align-items:center;padding-left:28px}
.pb-offer-img-wrap{flex-shrink:0}
.pb-offer-img{width:80px;height:80px;object-fit:cover;border-radius:8px;background:var(--pb-gray-bg)}
.pb-offer-img-placeholder{width:80px;height:80px;background:var(--pb-gray-bg);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:32px}
.pb-offer-details{flex:1;min-width:0}
.pb-offer-badge{display:inline-block;background:var(--pb-blue);color:#fff;font-size:10px;font-weight:800;padding:2px 8px;border-radius:4px;letter-spacing:.06em;margin-bottom:5px}
.pb-offer-title{font-size:14px;font-weight:700;margin-bottom:5px;line-height:1.3}
.pb-offer-line{font-size:12px;color:#16A34A;font-weight:600;margin-bottom:2px}
.pb-offer-pricing{display:flex;flex-direction:column;align-items:flex-end;flex-shrink:0}
.pb-offer-compare{font-size:13px;color:var(--pb-gray-text);text-decoration:line-through}
.pb-offer-price{font-size:20px;font-weight:900;color:var(--pb-black)}
.pb-upsell{border:1.5px solid var(--pb-gray-border);border-radius:10px;padding:12px 14px;margin-bottom:14px;background:#fff}
.pb-upsell-label{display:flex;cursor:pointer;gap:10px;align-items:center}
.pb-upsell-check{width:18px;height:18px;accent-color:var(--pb-blue);flex-shrink:0}
.pb-upsell-content{display:flex;align-items:center;gap:10px;flex:1}
.pb-upsell-img{width:52px;height:52px;object-fit:cover;border-radius:6px;background:var(--pb-gray-bg)}
.pb-upsell-img-placeholder{width:52px;height:52px;background:var(--pb-gray-bg);border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:24px}
.pb-upsell-info{flex:1;display:flex;flex-direction:column;gap:2px}
.pb-upsell-tag{font-size:12px;color:var(--pb-blue);font-weight:600}
.pb-upsell-title{font-size:14px;font-weight:700}
.pb-upsell-price{font-size:13px;color:var(--pb-gray-text)}
.pb-upsell-price s{margin-right:4px}
.pb-freebies{display:flex;flex-direction:column;gap:6px;margin-bottom:18px;padding:12px 14px;background:var(--pb-gray-bg);border-radius:10px}
.pb-freebie-row{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--pb-black)}
.pb-freebie-icon{font-size:14px;width:20px;text-align:center;flex-shrink:0}
.pb-atc-hero{width:100%;padding:18px 24px;background:linear-gradient(135deg,#F97316,#EA580C);color:#fff;border:none;border-radius:10px;font-size:18px;font-weight:900;cursor:pointer;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:10px;letter-spacing:.04em;transition:transform .15s,box-shadow .15s;box-shadow:0 4px 20px rgba(249,115,22,.4)}
.pb-atc-hero:hover{transform:translateY(-2px);box-shadow:0 6px 28px rgba(249,115,22,.5)}
.pb-atc-hero:active{transform:translateY(0)}
.pb-atc-sub{text-align:center;font-size:12px;color:var(--pb-gray-text);margin-top:8px;margin-bottom:0}
.pb-payment-icons{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:12px;flex-wrap:wrap}
.pb-payment-icons span{font-size:11px;font-weight:700;background:var(--pb-gray-bg);border:1px solid var(--pb-gray-border);border-radius:4px;padding:4px 8px;color:var(--pb-black)}
.pb-social-proof{text-align:center;font-size:13px;font-weight:700;color:var(--pb-gray-text);margin-top:10px}
.pb-custom-liquid-block{margin-top:16px}
.pb-reviews-summary{display:flex;align-items:center;gap:24px;padding:20px 0;border-bottom:1px solid var(--pb-gray-border);margin-bottom:20px}
.pb-reviews-big-num{font-size:52px;font-weight:900;line-height:1}
.pb-review-card{border-bottom:1px solid var(--pb-gray-border);padding:16px 0}
.pb-review-header{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.pb-review-avatar{width:38px;height:38px;border-radius:50%;background:var(--pb-blue-light);display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--pb-blue);font-size:15px;flex-shrink:0}
.pb-review-name{font-size:14px;font-weight:700}
.pb-review-text{font-size:14px;color:#444;line-height:1.6;margin:0}

/* ══════════════════════════════════════════
   CART DRAWER v2 — PAWIRA STYLE
══════════════════════════════════════════ */
.pb-cart-head{display:flex;flex-direction:column;align-items:stretch;padding:0;border-bottom:1px solid var(--pb-gray-border);flex-shrink:0}
.pb-cart-head-top{display:flex;align-items:center;justify-content:space-between;padding:14px 18px}
.pb-cart-head-center{display:flex;flex-direction:column;align-items:center;gap:4px;padding:12px 18px;border-top:1px solid var(--pb-gray-border);text-align:center}
.pb-cart-head-left{flex:1;display:flex;flex-direction:column;gap:3px}
.pb-cart-logo-img{height:34px;width:auto;object-fit:contain;display:block}
.pb-cart-logo-text{display:flex;align-items:center;gap:6px;font-size:15px;font-weight:900}
.pb-cart-logo{font-size:16px;font-weight:900;display:flex;align-items:center;gap:6px}
.pb-cart-head-stars{font-size:12px;color:var(--pb-gray-text);font-weight:600;display:flex;align-items:center;gap:4px}
.pb-cart-head-stars .pb-stars{color:var(--pb-star);font-size:13px}
.pb-cart-head-trust{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.pb-cart-head-trust span{font-size:11px;color:var(--pb-gray-text);font-weight:500;display:flex;align-items:center;gap:3px}
.pb-cart-timer-bar{background:var(--pb-blue);color:#fff;text-align:center;padding:10px 16px;font-size:14px;font-weight:700;flex-shrink:0}
.pb-cart-discount-bar{background:#F0FDF4;border-bottom:1px solid #BBF7D0;color:#15803D;text-align:center;padding:10px 16px;font-size:13px;font-weight:700;flex-shrink:0}
.pb-cart-progress-wrap{height:6px;background:#E5E7EB;flex-shrink:0}
.pb-cart-progress-bar{height:100%;background:#16A34A;border-radius:3px;transition:width .8s ease;width:0%}
.pb-cart-item{display:flex;gap:12px;padding:14px 0;border-bottom:1px solid var(--pb-gray-border);position:relative}
.pb-cart-item-img-wrap{position:relative;flex-shrink:0}
.pb-cart-item-img{width:88px;height:88px;object-fit:cover;border-radius:10px;background:var(--pb-gray-bg)}
.pb-cart-item-badge{position:absolute;top:6px;left:6px;background:#dc2626;color:#fff;font-size:10px;font-weight:800;padding:2px 6px;border-radius:4px}
.pb-cart-item-price-row{display:flex;align-items:baseline;gap:8px;margin-bottom:4px}
.pb-cart-item-compare{font-size:13px;color:var(--pb-gray-text);text-decoration:line-through}
.pb-cart-item-price{font-size:17px;font-weight:800;color:var(--pb-black)}
.pb-cart-item-savings{font-size:12px;font-weight:700;color:#16A34A;margin-bottom:8px}
.pb-cart-remove{position:absolute;bottom:14px;right:0;background:none;border:none;cursor:pointer;font-size:16px;opacity:.5;padding:0;transition:opacity .2s}
.pb-cart-remove:hover{opacity:1}
.pb-cart-mystery-gift{display:flex;gap:12px;margin:12px 0;padding:14px;border:2px dashed #BBF7D0;border-radius:12px;background:#F0FDF4}
.pb-mystery-img{font-size:48px;flex-shrink:0;display:flex;align-items:center;justify-content:center;width:72px;height:72px;background:rgba(255,255,255,.8);border-radius:8px}
.pb-mystery-info{flex:1;min-width:0}
.pb-mystery-tags{display:flex;align-items:center;gap:8px;margin-bottom:6px;flex-wrap:wrap}
.pb-mystery-unlocked{font-size:11px;font-weight:800;color:var(--pb-blue);background:var(--pb-blue-light);padding:2px 8px;border-radius:4px;letter-spacing:.03em}
.pb-mystery-included{font-size:11px;font-weight:800;color:#fff;background:#dc2626;padding:2px 8px;border-radius:4px}
.pb-mystery-title{font-size:14px;font-weight:800;margin-bottom:3px}
.pb-mystery-sub{font-size:12px;color:var(--pb-gray-text);margin-bottom:4px;line-height:1.4}
.pb-mystery-price{font-size:13px;color:var(--pb-gray-text)}
.pb-mystery-price s{margin-right:4px}
.pb-cart-footer-rows{margin-bottom:16px}
.pb-cart-footer-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;font-size:14px;border-bottom:1px solid var(--pb-gray-border)}
.pb-cart-savings-row{color:#16A34A;font-weight:700}
.pb-cart-subtotal-row{font-size:17px;border-bottom:none;padding-top:12px}
.pb-checkout-btn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:18px;background:linear-gradient(135deg,#F97316,#EA580C);color:#fff;border-radius:10px;font-size:17px;font-weight:900;letter-spacing:.04em;text-align:center;transition:transform .15s,box-shadow .15s;box-shadow:0 4px 16px rgba(249,115,22,.35);text-decoration:none}
.pb-checkout-btn:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(249,115,22,.45);color:#fff}

@media(max-width:480px){
  .pb-offer-card-inner{flex-wrap:wrap}
  .pb-countdown-wrap{flex-direction:column;align-items:flex-start}
}

/* ============================================================
   FIX FINAL — CARTES PRODUITS ALIGNÉES ET RESPONSIVES
   ============================================================ */
.pb-collection-main,
.pb-collection-grid,
.pb-prod-card,
.pb-prod-card-body {
  min-width: 0;
}

.pb-collection-grid {
  grid-template-columns: repeat(var(--pb-col-desktop, 3), minmax(0, 1fr));
  align-items: stretch;
}

.pb-prod-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pb-prod-card-img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pb-prod-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-prod-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  padding: 10px 12px 12px;
  overflow: hidden;
}

.pb-prod-card-category {
  min-height: 1.4em;
  margin-bottom: 4px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-prod-card-stars-row {
  flex-shrink: 0;
  min-height: 17px;
  overflow: hidden;
}

.pb-prod-card-title {
  display: -webkit-box;
  min-width: 0;
  min-height: 2.7em;
  max-height: 2.7em;
  margin-bottom: 6px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pb-prod-card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  min-width: 0;
  min-height: 24px;
  margin-bottom: 8px;
}

.pb-prod-card-price,
.pb-prod-card-compare {
  max-width: 100%;
  white-space: nowrap;
}

.pb-prod-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 31px;
  margin-top: auto;
  padding: 8px;
  box-sizing: border-box;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .pb-collection-grid {
    grid-template-columns: repeat(var(--pb-col-mobile, 2), minmax(0, 1fr)) !important;
    align-items: stretch;
  }

  .pb-prod-card-body {
    padding: 8px 10px 10px !important;
  }

  .pb-prod-card-category {
    min-height: 1.4em;
    font-size: 9px !important;
  }

  .pb-prod-card-stars {
    font-size: 11px !important;
  }

  .pb-prod-card-review-count {
    font-size: 10px !important;
  }

  .pb-prod-card-title {
    min-height: 2.7em;
    max-height: 2.7em;
    font-size: 12px !important;
  }

  .pb-prod-card-price-row {
    min-height: 22px;
    gap: 3px 4px;
  }

  .pb-prod-card-price {
    font-size: 13px !important;
  }

  .pb-prod-card-compare {
    font-size: 10px !important;
  }

  .pb-prod-card-btn {
    min-height: 34px;
    padding: 7px 5px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 480px) {
  .pb-prod-card-body {
    padding: 6px 8px 8px !important;
  }

  .pb-prod-card-price-row {
    gap: 2px 4px;
  }
}

