/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme - Pixie PK
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ── Variables ── */
:root {
  --pink:       #E8177A;
  --pink-dark:  #C01265;
  --pink-pale:  #FFF0F7;
  --pink-light: #F7B8D8;
  --black:      #111111;
  --dark:       #1A1A2E;
  --grey:       #EEEEEE;
  --grey-light: #F8F8F8;
  --text:       #333333;
  --muted:      #888888;
  --white:      #FFFFFF;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-pink:0 8px 28px rgba(232,23,122,0.28);
  --trans:      all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

#pixie-home { overflow-x: hidden; }

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

.pxk-section { padding: 60px 0; }

.pxk-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.pxk-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  margin: 6px 0 10px;
  line-height: 1.2;
}

.pxk-section__head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.pxk-section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 4px 14px;
  border-radius: 50px;
}

.pxk-section__foot { text-align: center; margin-top: 40px; }

/* BUTTONS */
.pxk-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 32px;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.pxk-btn--primary { background: var(--pink); color: var(--white) !important; box-shadow: var(--shadow-pink); }
.pxk-btn--primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,23,122,0.38); color: var(--white) !important; }
.pxk-btn--outline { background: transparent; color: var(--pink) !important; border-color: var(--pink); }
.pxk-btn--outline:hover { background: var(--pink); color: var(--white) !important; transform: translateY(-2px); }
.pxk-btn--white { background: var(--white); color: var(--pink) !important; border-color: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.pxk-btn--white:hover { background: var(--pink-pale); transform: translateY(-2px); }

/* HERO */
.pxk-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
  background: linear-gradient(135deg, #fff5fa 0%, #ffe0f0 100%);
  padding: 60px 60px 60px 80px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.pxk-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,23,122,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.pxk-hero__badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); background: var(--white);
  padding: 6px 16px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(232,23,122,0.15);
  margin-bottom: 20px;
}
.pxk-hero__title { font-size: clamp(2rem,4.5vw,3.2rem) !important; color: var(--black) !important; line-height: 1.15 !important; margin-bottom: 18px !important; }
.pxk-hero__title em { color: var(--pink); font-style: normal; }
.pxk-hero__sub { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.pxk-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.pxk-hero__trust { display: flex; gap: 20px; flex-wrap: wrap; }
.pxk-hero__trust span { font-size: 12px; color: var(--text); font-weight: 500; }
.pxk-hero__image { display: flex; align-items: center; justify-content: center; }
.pxk-hero__img { max-height: 500px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18)); animation: heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* TRUST STRIP */
.pxk-trust { background: var(--white); border-bottom: 1px solid var(--grey); border-top: 1px solid var(--grey); padding: 40px 0; }
.pxk-trust__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.pxk-trust__item { display: flex; align-items: flex-start; gap: 18px; padding: 0 20px; border-right: 1px solid var(--grey); }
.pxk-trust__item:last-child { border-right: none; }
.pxk-trust__icon { flex-shrink:0; width:48px; height:48px; background:var(--pink-pale); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--pink); }
.pxk-trust__icon svg { width:22px; height:22px; }
.pxk-trust__item h4 { font-size:14px !important; font-weight:700 !important; color:var(--black) !important; margin:0 0 4px !important; }
.pxk-trust__item p { font-size:13px !important; color:var(--muted) !important; line-height:1.6 !important; margin:0 !important; }

/* PRODUCT CARDS */
.pxk-products { background: var(--grey-light); }
.pxk-trending { background: var(--white); }

/* Force 4-column grid in best sellers section */
.pxk-products .woocommerce ul.products,
.pxk-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.pxk-products .woocommerce ul.products li.product,
.pxk-products ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}
.woocommerce ul.products li.product, ul.products li.product {
  background: var(--white) !important; border-radius: var(--radius) !important;
  border: 1px solid var(--grey) !important; overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  padding: 0 !important; text-align: center !important;
}
.woocommerce ul.products li.product:hover, ul.products li.product:hover {
  transform: translateY(-6px) !important; box-shadow: 0 16px 36px rgba(0,0,0,0.12) !important; border-color: var(--pink-light) !important;
}
.woocommerce ul.products li.product a img, ul.products li.product a img {
  background: var(--grey-light) !important; display: block !important; width: 100% !important; transition: transform 0.4s ease !important;
}
.woocommerce ul.products li.product:hover a img, ul.products li.product:hover a img { transform: scale(1.05) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__link, ul.products li.product .woocommerce-loop-product__link { display: block !important; border-bottom: 1px solid var(--grey) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, ul.products li.product h2 { text-align: center !important; padding: 14px 16px 4px !important; font-size: 13.5px !important; line-height: 1.5 !important; }
.woocommerce ul.products li.product .price, ul.products li.product .price { text-align: center !important; display: block !important; padding: 4px 16px !important; }
.woocommerce ul.products li.product .star-rating, ul.products li.product .star-rating { margin: 4px auto 8px !important; float: none !important; display: inline-block !important; }
.woocommerce ul.products li.product .button, ul.products li.product .button {
  border-radius: 50px !important; display: block !important; width: calc(100% - 32px) !important;
  margin: 8px 16px 16px !important; text-align: center !important; padding: 11px 20px !important;
  font-size: 12px !important; font-weight: 700 !important; letter-spacing: 0.06em !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.woocommerce ul.products li.product .button:hover, ul.products li.product .button:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(232,23,122,0.35) !important; }
.woocommerce ul.products li.product .onsale, ul.products li.product .onsale {
  background: var(--pink) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  top: 10px !important;
  left: 10px !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1.6 !important;
  box-shadow: 0 2px 10px rgba(232,23,122,0.40) !important;
}

/* ── Mobile: move sale badge below the image, above the title ── */
@media (max-width: 768px) {
  /* Give the image link extra bottom space to house the badge */
  .woocommerce ul.products li.product .woocommerce-loop-product__link,
  ul.products li.product .woocommerce-loop-product__link {
    padding-bottom: 18px !important;
    position: relative !important;
  }

  /* Reposition badge: centered at the bottom of the image area */
  .woocommerce ul.products li.product .onsale,
  ul.products li.product .onsale {
    top: auto !important;
    bottom: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
    z-index: 2 !important;
  }

  /* Nudge the title down slightly so badge doesn't clip it */
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  ul.products li.product h2 {
    padding-top: 20px !important;
  }
}

/* WHY CHOOSE US */
.pxk-why { background: var(--white); }
.pxk-why__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pxk-why__card { background: var(--grey-light); border-radius: var(--radius); padding: 32px 24px; border: 1px solid var(--grey); transition: var(--trans); text-align: center; }
.pxk-why__card:hover { border-color: var(--pink-light); background: var(--pink-pale); transform: translateY(-4px); box-shadow: var(--shadow); }
.pxk-why__emoji { font-size: 36px; margin-bottom: 16px; display: block; }
.pxk-why__card h3 { font-size:15px !important; font-weight:700 !important; color:var(--black) !important; margin-bottom:10px !important; }
.pxk-why__card p { font-size:13px !important; color:var(--muted) !important; line-height:1.7 !important; margin:0 !important; }

/* CATEGORIES — 4 column grid */
.pxk-categories { background: var(--dark); }

.pxk-categories .pxk-section__head h2 { color: var(--white); }
.pxk-categories .pxk-section__head p { color: rgba(255,255,255,0.6); }
.pxk-categories .pxk-section__label { color: var(--pink-light); background: rgba(232,23,122,0.15); border-color: rgba(232,23,122,0.3); }

.pxk-cat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  height: auto;
}

.pxk-cat__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 260px;
  transition: var(--trans);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.pxk-cat__item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }

/* Vibrant gradient backgrounds */
.pxk-cat__item:nth-child(1) { background: linear-gradient(145deg, #E8177A 0%, #c01265 100%); }
.pxk-cat__item:nth-child(2) { background: linear-gradient(145deg, #7c3aed 0%, #5b21b6 100%); }
.pxk-cat__item:nth-child(3) { background: linear-gradient(145deg, #059669 0%, #047857 100%); }
.pxk-cat__item:nth-child(4) { background: linear-gradient(145deg, #0284c7 0%, #0369a1 100%); }

/* Subtle pattern overlay */
.pxk-cat__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
  transition: var(--trans);
}
.pxk-cat__item:hover .pxk-cat__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
}

/* Big centred icon */
.pxk-cat__icon {
  position: relative; z-index: 2;
  font-size: 60px; line-height: 1;
  margin-bottom: 12px; transition: var(--trans);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.pxk-cat__item:hover .pxk-cat__icon { transform: scale(1.12) translateY(-4px); }

.pxk-cat__info {
  position: relative; z-index: 2;
  text-align: center; padding: 0 16px 20px;
}
.pxk-cat__info h3 { font-size: 15px !important; font-weight: 800 !important; color: #fff !important; margin: 0 0 4px !important; }
.pxk-cat__info p  { font-size: 12px !important; color: rgba(255,255,255,0.8) !important; margin: 0 0 8px !important; }
.pxk-cat__arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(6px);
  transition: var(--trans); display: inline-block;
  background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 99px;
}
.pxk-cat__item:hover .pxk-cat__arrow { opacity: 1; transform: translateY(0); }

/* Tablet — 2 columns */
@media (max-width: 1024px) and (min-width: 481px) {
  .pxk-cat__grid { grid-template-columns: repeat(2, 1fr) !important; }
  .pxk-cat__item { height: 220px !important; }
}

/* Mobile — smaller icon */
@media (max-width: 480px) {
  .pxk-cat__icon { font-size: 48px; }
}

/* NEW ARRIVALS */
.pxk-arrival { background: linear-gradient(135deg,var(--dark) 0%,#2d1040 100%); padding: 70px 0; }
.pxk-arrival__inner { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.pxk-arrival__badge { display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--pink-light); border:1px solid rgba(232,23,122,0.4); padding:5px 14px; border-radius:50px; margin-bottom:18px; }
.pxk-arrival__content h2 { font-size:clamp(1.8rem,3vw,2.6rem) !important; color:var(--white) !important; margin-bottom:16px !important; line-height:1.15 !important; }
.pxk-arrival__content p { font-size:15px !important; color:rgba(255,255,255,0.65) !important; line-height:1.75 !important; margin-bottom:28px !important; }
.pxk-arrival__products { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.pxk-arrival__card { background:rgba(255,255,255,0.07); border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,0.1); transition:var(--trans); }
.pxk-arrival__card:hover { background:rgba(255,255,255,0.12); border-color:rgba(232,23,122,0.4); transform:translateY(-4px); }
.pxk-arrival__card a { text-decoration:none; display:block; }
.pxk-arrival__img { width:100% !important; height:160px !important; object-fit:contain !important; background:rgba(255,255,255,0.05) !important; padding:16px !important; }
.pxk-arrival__card-info { padding:12px 14px; display:flex; flex-direction:column; gap:4px; }
.pxk-arrival__card-info span { font-size:12px; color:rgba(255,255,255,0.7); line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.pxk-arrival__card-info strong { font-size:14px; color:var(--pink-light); font-weight:700; }

/* HOW IT WORKS */
.pxk-steps { background: var(--grey-light); }
.pxk-steps__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.pxk-steps__grid::before { content:''; position:absolute; top:36px; left:12.5%; width:75%; height:2px; background:linear-gradient(to right,var(--pink),var(--pink-light)); z-index:0; }
.pxk-steps__item { text-align:center; position:relative; z-index:1; background:var(--white); border-radius:var(--radius); padding:32px 20px 28px; border:1px solid var(--grey); transition:var(--trans); }
.pxk-steps__item:hover { border-color:var(--pink-light); box-shadow:var(--shadow); transform:translateY(-4px); }
.pxk-steps__num { width:56px; height:56px; background:var(--pink); color:var(--white); font-size:18px; font-weight:800; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; box-shadow:var(--shadow-pink); }
.pxk-steps__item h3 { font-size:15px !important; font-weight:700 !important; color:var(--black) !important; margin-bottom:10px !important; }
.pxk-steps__item p { font-size:13px !important; color:var(--muted) !important; line-height:1.7 !important; margin:0 !important; }

/* REVIEWS */
.pxk-reviews { background: var(--white); }
.pxk-reviews__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:48px; }
.pxk-review__card { background:var(--grey-light); border-radius:var(--radius); padding:28px 22px; border:1px solid var(--grey); transition:var(--trans); position:relative; }
.pxk-review__card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--pink-light); }
.pxk-review__card--featured { background:var(--pink-pale); border-color:var(--pink-light); }
.pxk-review__card::before { content:'"'; font-size:80px; color:var(--pink); opacity:0.12; position:absolute; top:8px; left:18px; line-height:1; font-family:Georgia,serif; }
.pxk-review__stars { color:var(--pink); font-size:16px; letter-spacing:2px; margin-bottom:14px; }
.pxk-review__text { font-size:13.5px !important; color:var(--text) !important; line-height:1.75 !important; margin-bottom:20px !important; font-style:italic; }
.pxk-review__author { display:flex; align-items:center; gap:12px; }
.pxk-review__avatar { width:40px; height:40px; background:var(--pink); color:var(--white); font-size:16px; font-weight:700; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pxk-review__author strong { display:block; font-size:13px; font-weight:700; color:var(--black); }
.pxk-review__author span { font-size:11px; color:var(--muted); }
.pxk-reviews__stats { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:linear-gradient(135deg,var(--pink) 0%,var(--pink-dark) 100%); border-radius:var(--radius); padding:48px 30px; box-shadow: var(--shadow-pink); }
.pxk-reviews__stat { text-align:center; color:var(--white); border-right:1px solid rgba(255,255,255,0.2); padding:0 20px; }
.pxk-reviews__stat:last-child { border-right:none; }
.pxk-reviews__stat strong { display:block; font-size:2.8rem; font-weight:800; line-height:1; margin-bottom:8px; }
.pxk-reviews__stat span { font-size:13px; opacity:0.85; letter-spacing:0.04em; font-weight:600; }

/* NEWSLETTER */
.pxk-newsletter { background:var(--grey-light); padding:80px 0; border-top:1px solid var(--grey); }
.pxk-newsletter__inner { display:grid; grid-template-columns:1fr auto; gap:60px; align-items:center; }
.pxk-newsletter__badge { display:inline-block; font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--pink); margin-bottom:14px; }
.pxk-newsletter__content h2 { font-size:clamp(1.5rem,2.5vw,2rem) !important; color:var(--black) !important; margin-bottom:10px !important; }
.pxk-newsletter__content p { font-size:14px !important; color:var(--muted) !important; margin-bottom:24px !important; max-width:520px; }
.pxk-newsletter__form { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:10px; }
.pxk-newsletter__form input { flex:1; min-width:260px; border:1px solid var(--grey); border-radius:50px; padding:13px 22px; font-size:14px; color:var(--text); background:var(--white); transition:var(--trans); outline:none; }
.pxk-newsletter__form input:focus { border-color:var(--pink); box-shadow:0 0 0 3px rgba(232,23,122,0.08); }
.pxk-newsletter__form button { background:var(--pink); color:var(--white); border:none; border-radius:50px; padding:13px 28px; font-size:13px; font-weight:700; letter-spacing:0.06em; cursor:pointer; transition:var(--trans); white-space:nowrap; }
.pxk-newsletter__form button:hover { background:var(--pink-dark); transform:translateY(-2px); box-shadow:var(--shadow-pink); }
.pxk-newsletter__content small { font-size:12px; color:var(--muted); }
.pxk-newsletter__image { text-align:center; position:relative; }
.pxk-newsletter__blob { width:160px; height:160px; background:linear-gradient(135deg,var(--pink) 0%,var(--pink-dark) 100%); border-radius:50%; opacity:0.1; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.pxk-newsletter__number { display:block; font-size:3.5rem; font-weight:800; color:var(--pink); line-height:1; position:relative; }
.pxk-newsletter__numberlabel { font-size:13px; color:var(--muted); position:relative; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.pxk-why__card,.pxk-steps__item,.pxk-review__card { animation:fadeUp 0.5s ease both; }
.pxk-why__card:nth-child(1),.pxk-steps__item:nth-child(1),.pxk-review__card:nth-child(1) { animation-delay:0.05s }
.pxk-why__card:nth-child(2),.pxk-steps__item:nth-child(2),.pxk-review__card:nth-child(2) { animation-delay:0.12s }
.pxk-why__card:nth-child(3),.pxk-steps__item:nth-child(3),.pxk-review__card:nth-child(3) { animation-delay:0.19s }
.pxk-why__card:nth-child(4),.pxk-steps__item:nth-child(4),.pxk-review__card:nth-child(4) { animation-delay:0.26s }

/* RESPONSIVE */
@media(max-width:1024px){
  .pxk-why__grid,.pxk-reviews__grid,.pxk-reviews__stats { grid-template-columns:repeat(2,1fr); }
  .pxk-steps__grid { grid-template-columns:repeat(2,1fr); }
  .pxk-steps__grid::before { display:none; }
  .pxk-arrival__inner { grid-template-columns:1fr; gap:32px; }
}
@media(max-width:768px){
  .pxk-section { padding:50px 0; }
  .pxk-hero { grid-template-columns:1fr; padding:40px 24px; text-align:center; }
  .pxk-hero__image { display:none; }
  .pxk-hero__buttons,.pxk-hero__trust { justify-content:center; }
  .pxk-trust__grid,.pxk-why__grid,.pxk-steps__grid,.pxk-reviews__grid,.pxk-cat__grid { grid-template-columns:1fr; }
  .pxk-trust__item { border-right:none; border-bottom:1px solid var(--grey); padding:16px 0; }
  .pxk-trust__item:last-child { border-bottom:none; }
  .pxk-newsletter__inner { grid-template-columns:1fr; gap:24px; }
  .pxk-newsletter__image { display:none; }
  .pxk-arrival__products { grid-template-columns:1fr; }

  /* 2-column product grid on mobile */
  .pxk-products .woocommerce ul.products,
  .pxk-products ul.products,
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}
@media(max-width:480px){
  .pxk-hero__buttons { flex-direction:column; align-items:center; }
  .pxk-reviews__stats { grid-template-columns:1fr 1fr; }
  .pxk-newsletter__form { flex-direction:column; }
  .pxk-newsletter__form input { min-width:unset; }
}

/* ════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.pxk-topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pxk-topbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pxk-topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pxk-topbar__left a {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  transition: color 0.2s;
}
.pxk-topbar__left a:hover { color: var(--pink-light) !important; }
.pxk-topbar__left svg { width: 13px; height: 13px; }
.pxk-topbar__divider { color: rgba(255,255,255,0.2); font-size: 11px; }
.pxk-topbar__center {
  text-align: center;
  flex: 1;
}
.pxk-topbar__promo {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.pxk-topbar__promo strong { color: var(--pink-light); }
.pxk-topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pxk-topbar__right a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  transition: var(--trans);
}
.pxk-topbar__right a:hover { background: var(--pink); color: var(--white) !important; transform: translateY(-2px); }
.pxk-topbar__right svg { width: 13px; height: 13px; }

/* ════════════════════════════════════════════════
   MAIN HEADER
════════════════════════════════════════════════ */
.pxk-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  position: relative;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}
.pxk-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
/* Prevent layout jump when header becomes fixed */
body.pxk-sticky-active {
  padding-top: 72px;
}
.pxk-header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.pxk-header__logo a { text-decoration: none; display: block; }
.pxk-logo { max-height: 44px; width: auto; }
.pxk-logo-text { font-size: 22px; font-weight: 800; color: var(--pink); letter-spacing: -0.02em; }

/* Nav */
.pxk-nav { display: flex; }
.pxk-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.pxk-nav__list li a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black) !important;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.pxk-nav__list li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}
.pxk-nav__list li a:hover { color: var(--pink) !important; }
.pxk-nav__list li a:hover::after,
.pxk-nav__list li.current-menu-item > a::after { width: 100%; }
.pxk-nav__list li.current-menu-item > a { color: var(--pink) !important; }

/* Header Actions */
.pxk-header__actions { display: flex; align-items: center; gap: 6px; }
.pxk-header__action {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  transition: var(--trans);
  position: relative;
  text-decoration: none;
}
.pxk-header__action svg { width: 20px; height: 20px; }
.pxk-header__action:hover { background: var(--pink-pale); color: var(--pink); }

/* Cart count badge */
.pxk-cart__count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--pink);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Mini-Cart Hover Dropdown ── */
.pxk-cart-wrap {
  position: relative;
}
.pxk-mini-cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Instant show, delayed hide */
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  /* Invisible bridge fills the gap so mouse doesn't leave wrap */
  padding-top: 8px;
}
.pxk-cart-wrap:hover .pxk-mini-cart-dropdown,
.pxk-cart-wrap--open .pxk-mini-cart-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.pxk-mini-cart-inner {
  padding: 16px;
  max-height: 420px;
  overflow-y: auto;
}
/* WooCommerce mini-cart resets inside dropdown */
.pxk-mini-cart-inner .woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.pxk-mini-cart-inner .woocommerce-mini-cart__empty-message { text-align: center; color: var(--muted); padding: 24px 0; font-size: 14px; }
.pxk-mini-cart-inner .mini_cart_item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--grey); }
.pxk-mini-cart-inner .mini_cart_item:last-child { border-bottom: none; }
.pxk-mini-cart-inner .mini_cart_item img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.pxk-mini-cart-inner .mini_cart_item a { font-size: 13px; font-weight: 600; color: var(--black); text-decoration: none; display: block; margin-bottom: 4px; }
.pxk-mini-cart-inner .mini_cart_item .quantity { font-size: 12px; color: var(--muted); }
.pxk-mini-cart-inner .woocommerce-mini-cart__total { padding: 12px 0 0; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; }
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons a {
  display: block; text-align: center; padding: 10px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; text-decoration: none; transition: var(--trans);
}
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons .button.wc-forward {
  background: var(--white); color: var(--pink); border: 2px solid var(--pink);
  font-weight: 700; letter-spacing: 0.01em; border-radius: var(--radius-sm);
}
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons .button.wc-forward:hover {
  background: var(--pink); color: var(--white);
}

/* Return to shop — empty cart state (rendered outside __buttons wrapper) */
.pxk-mini-cart-inner .wc-forward:not(.checkout) {
  display: block; text-align: center; padding: 10px 16px;
  background: var(--white); color: var(--pink);
  border: 2px solid var(--pink); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: var(--trans); letter-spacing: 0.01em; margin-top: 12px;
}
.pxk-mini-cart-inner .wc-forward:not(.checkout):hover {
  background: var(--pink); color: var(--white);
}
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons .checkout.wc-forward {
  background: var(--pink); color: var(--white); border: 1px solid var(--pink);
}
.pxk-mini-cart-inner .woocommerce-mini-cart__buttons .checkout.wc-forward:hover { background: var(--pink-dark); }

/* Search Bar */
.pxk-search-bar {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.pxk-search-bar.open { max-height: 120px; }
.pxk-search-bar .pxk-header__container { height: auto; padding: 14px 20px; }

/* Inner wrapper */
.pxk-search-bar__inner { display: flex; flex-direction: column; gap: 10px; }
.pxk-search-bar__top {
  display: flex; align-items: center; gap: 12px;
}

/* Left icon */
.pxk-search-bar__icon-wrap {
  flex-shrink: 0;
  color: var(--muted);
  display: flex; align-items: center;
}

/* Input form */
.pxk-search-bar .search-form {
  flex: 1; display: flex; align-items: center;
  position: relative;
  background: #f6f6f8;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pxk-search-bar .search-form:focus-within {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232,23,122,0.10);
}
.pxk-search-bar .search-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 16px;
  font-size: 15px;
  outline: none;
  color: var(--black);
  min-width: 0;
}
.pxk-search-bar .search-field::placeholder { color: #aaa; }
.pxk-search-bar .search-submit {
  flex-shrink: 0;
  background: var(--pink); color: #fff;
  border: none;
  padding: 0 20px;
  height: 100%;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.pxk-search-bar .search-submit::before {
  content: '';
  display: block; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.pxk-search-bar .search-submit:hover { background: var(--pink-dark); }

/* Close button */
.pxk-search-close {
  flex-shrink: 0;
  background: #f0f0f2; border: none; border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #888;
  transition: background 0.2s, color 0.2s;
}
.pxk-search-close:hover { background: var(--pink); color: #fff; }

/* Popular searches hints */
.pxk-search-bar__hints {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; padding-left: 32px;
}
.pxk-search-bar__hints > span { color: #aaa; font-weight: 500; }
.pxk-search-bar__hints a {
  color: var(--dark); background: #f0f0f2;
  border-radius: 50px; padding: 3px 12px;
  font-size: 12px; font-weight: 500; text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.pxk-search-bar__hints a:hover { background: var(--pink); color: #fff; }

/* Hamburger */
.pxk-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
  transition: var(--trans);
}
.pxk-hamburger:hover { background: var(--pink-pale); }
.pxk-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px; transition: var(--trans);
}

/* Mobile Nav */
.pxk-mobile-nav {
  position: fixed; top: 0; left: -300px;
  width: 280px; height: 100vh;
  background: var(--white);
  box-shadow: 4px 0 32px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: left 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.pxk-mobile-nav.open { left: 0; }
.pxk-mobile-nav__header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--grey);
}
.pxk-mobile-nav__close {
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: var(--muted); transition: color 0.2s;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.pxk-mobile-nav__close:hover { color: var(--pink); background: var(--pink-pale); }
.pxk-mobile-nav__list { list-style: none; margin: 0; padding: 16px 0; flex: 1; }
.pxk-mobile-nav__list li a {
  display: block; padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  color: var(--black) !important; text-decoration: none;
  border-bottom: 1px solid var(--grey);
  transition: var(--trans);
}
.pxk-mobile-nav__list li a:hover { color: var(--pink) !important; background: var(--pink-pale); padding-left: 32px; }
.pxk-mobile-nav__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--grey);
  display: flex; flex-direction: column; gap: 10px;
}
.pxk-mobile-nav__footer a {
  font-size: 13px; color: var(--text) !important;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.pxk-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.pxk-overlay.open { opacity: 1; pointer-events: all; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.pxk-footer { background: var(--dark); color: rgba(255,255,255,0.7); }

.pxk-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Footer Top */
.pxk-footer__top { padding: 64px 0 48px; }
.pxk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.pxk-footer__heading {
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  margin: 0 0 20px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Brand col */
.pxk-footer__logo { display: inline-block; margin-bottom: 16px; text-decoration: none; }
.pxk-footer__logo-img { max-height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.pxk-footer__logo-text { font-size: 22px; font-weight: 800; color: var(--pink-light); }
.pxk-footer__tagline { font-size: 14px !important; color: var(--white) !important; font-weight: 500 !important; line-height: 1.6 !important; margin-bottom: 12px !important; }
.pxk-footer__about { font-size: 13px !important; color: rgba(255,255,255,0.5) !important; line-height: 1.75 !important; margin-bottom: 24px !important; }

/* Social */
.pxk-footer__social { display: flex; gap: 10px; }
.pxk-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  transition: var(--trans); text-decoration: none;
}
.pxk-footer__social a:hover { background: var(--pink); color: var(--white) !important; transform: translateY(-3px); }
.pxk-footer__social svg { width: 15px; height: 15px; }

/* Links */
.pxk-footer__links { list-style: none; margin: 0; padding: 0; }
.pxk-footer__links li { margin-bottom: 2px; }
.pxk-footer__links li a {
  font-size: 13px; color: rgba(255,255,255,0.55) !important;
  text-decoration: none; padding: 5px 0; display: block;
  transition: var(--trans); line-height: 1.5;
}
.pxk-footer__links li a:hover { color: var(--pink-light) !important; padding-left: 6px; }

/* Badges */
.pxk-footer__badge-row { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.pxk-footer__badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.pxk-footer__badge span:first-child { font-size: 20px; }
.pxk-footer__badge strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); }
.pxk-footer__badge small { font-size: 11px; color: rgba(255,255,255,0.45); }

/* Contact */
.pxk-footer__contact { list-style: none; margin: 0; padding: 0; }
.pxk-footer__contact li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.pxk-footer__contact li:last-child { border-bottom: none; }
.pxk-footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--pink-light); }
.pxk-footer__contact a { color: rgba(255,255,255,0.6) !important; text-decoration: none; transition: color 0.2s; }
.pxk-footer__contact a:hover { color: var(--pink-light) !important; }

/* Newsletter */
.pxk-footer__newsletter-text { font-size: 13px !important; color: rgba(255,255,255,0.5) !important; margin-bottom: 12px !important; }
.pxk-footer__newsletter {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 4px 4px 4px 16px;
  overflow: hidden;
}
.pxk-footer__newsletter input {
  flex: 1; background: none; border: none;
  color: var(--white); font-size: 13px; outline: none;
}
.pxk-footer__newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.pxk-footer__newsletter button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--trans);
}
.pxk-footer__newsletter button:hover { background: var(--pink-dark); transform: scale(1.05); }
.pxk-footer__newsletter button svg { width: 15px; height: 15px; color: var(--white); }

/* Footer Bottom */
.pxk-footer__bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.pxk-footer__bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.pxk-footer__bottom p {
  font-size: 12px !important; color: rgba(255,255,255,0.4) !important; margin: 0 !important;
}
.pxk-footer__bottom strong { color: rgba(255,255,255,0.65); }
.pxk-footer__payment { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pxk-footer__payment span { font-size: 12px; color: rgba(255,255,255,0.4); }
.pxk-footer__payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pxk-pay-badge {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 3px 10px;
}
.pxk-footer__credit { font-size: 12px !important; color: rgba(255,255,255,0.35) !important; }

/* ════════════════════════════════════════════════
   HEADER / FOOTER RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pxk-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .pxk-topbar__left,
  .pxk-topbar__right { display: none; }
  .pxk-topbar__center { text-align: center; }
  .pxk-nav { display: none; }
  .pxk-hamburger { display: flex; }
  .pxk-header__container { height: 60px; }
  .pxk-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .pxk-footer__top { padding: 40px 0 32px; }
  .pxk-footer__bottom-inner { flex-direction: column; text-align: center; }
  .pxk-footer__payment { justify-content: center; }
}

/* ════════════════════════════════════════════════
   BEAUTY TOOLS SECTION
════════════════════════════════════════════════ */
.pxk-beauty-tools { background: var(--white); }

/* ════════════════════════════════════════════════
   GOOGLE REVIEWS
════════════════════════════════════════════════ */
.pxk-google-reviews { background: var(--grey-light); }

.pxk-google__overall {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 16px;
  box-shadow: var(--shadow-card);
}

.pxk-google__score { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.pxk-google__score strong { font-size: 22px; font-weight: 800; color: var(--black); line-height: 1; }
.pxk-google__score .pxk-google__stars { color: #FBBC05; font-size: 14px; letter-spacing: 2px; }
.pxk-google__score span { font-size: 11px; color: var(--muted); }

.pxk-google__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pxk-google__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--grey);
  box-shadow: var(--shadow-card);
  transition: var(--trans);
}

.pxk-google__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: #4285F4;
}

.pxk-google__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pxk-google__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}

.pxk-google__card-top > div:nth-child(2) { flex: 1; }
.pxk-google__card-top strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); }
.pxk-google__card-top span { font-size: 11px; color: var(--muted); }

.pxk-google__badge { flex-shrink: 0; }

.pxk-google__stars-sm {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pxk-google__card p {
  font-size: 13px !important;
  color: var(--text) !important;
  line-height: 1.75 !important;
  margin-bottom: 12px !important;
}

.pxk-google__date {
  font-size: 11px;
  color: var(--muted);
}

/* ════════════════════════════════════════════════
   SOCIAL PROOF SCREENSHOTS
════════════════════════════════════════════════ */
.pxk-social-proof { background: var(--white); }

.pxk-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pxk-proof__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey);
  box-shadow: var(--shadow-card);
  transition: var(--trans);
}

.pxk-proof__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.pxk-proof__platform {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pxk-proof__platform--whatsapp { background: #25D366; color: var(--white); }
.pxk-proof__platform--instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.pxk-proof__platform--facebook { background: #1877F2; color: var(--white); }

.pxk-proof__img-box {
  width: 100%;
  min-height: 280px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pxk-proof__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pxk-proof__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  height: 280px;
}

.pxk-proof__placeholder svg { color: var(--grey); }
.pxk-proof__placeholder span { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.pxk-proof__placeholder small { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.pxk-faq { background: var(--grey-light); }

.pxk-faq__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.pxk-faq__head { position: sticky; top: 100px; }
.pxk-faq__head h2 { font-size: clamp(1.5rem, 2.5vw, 2rem) !important; color: var(--black) !important; margin: 8px 0 12px !important; }
.pxk-faq__head p { font-size: 14px !important; color: var(--muted) !important; line-height: 1.7 !important; }

.pxk-faq__list { display: flex; flex-direction: column; gap: 10px; }

.pxk-faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey);
  overflow: hidden;
  transition: var(--trans);
}

.pxk-faq__item.open { border-color: var(--pink); box-shadow: 0 4px 20px rgba(232,23,122,0.08); }

.pxk-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: var(--trans);
}

.pxk-faq__question:hover { color: var(--pink); }
.pxk-faq__item.open .pxk-faq__question { color: var(--pink); }

.pxk-faq__icon {
  width: 28px; height: 28px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  flex-shrink: 0;
  color: var(--muted);
  transition: var(--trans);
  line-height: 1;
}

.pxk-faq__item.open .pxk-faq__icon {
  background: var(--pink);
  color: var(--white);
}

.pxk-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.pxk-faq__item.open .pxk-faq__answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.pxk-faq__answer p {
  font-size: 13.5px !important;
  color: var(--text) !important;
  line-height: 1.8 !important;
  margin: 0 !important;
  border-top: 1px solid var(--grey);
  padding-top: 14px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pxk-google__grid { grid-template-columns: repeat(2, 1fr); }
  .pxk-proof__grid  { grid-template-columns: repeat(2, 1fr); }
  .pxk-faq__inner   { grid-template-columns: 1fr; gap: 32px; }
  .pxk-faq__head    { position: static; }
}

@media (max-width: 768px) {
  .pxk-google__grid { grid-template-columns: 1fr; }
  .pxk-proof__grid  { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   TRUST STRIP — 4 COLUMNS + HIGHLIGHT
════════════════════════════════════════════════ */
.pxk-trust__grid--4 { grid-template-columns: repeat(4, 1fr); }

.pxk-trust__icon--highlight {
  background: var(--pink) !important;
  color: var(--white) !important;
}

.pxk-trust__item h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  margin: 0 0 4px !important;
}

@media (max-width: 1024px) {
  .pxk-trust__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pxk-trust__grid--4 { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════
   FIX: REVIEWS GRID FORCE 4 COLUMNS
════════════════════════════════════════════════ */
.pxk-reviews__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 48px !important;
}

.pxk-review__card {
  min-width: 0 !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .pxk-reviews__grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  .pxk-reviews__grid { grid-template-columns: 1fr !important; }
}
/* ════════════════════════════════════════════════
   FIX: ADD TO CART → VIEW CART BUTTON
════════════════════════════════════════════════ */

/* Hide the separate "View Cart" button that appears after adding */
.woocommerce ul.products li.product .added_to_cart,
ul.products li.product .added_to_cart {
  display: none !important;
}

/* When product is added - change Add to Cart button style */
.woocommerce ul.products li.product .button.added,
ul.products li.product .button.added {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
  pointer-events: none !important;
}

/* Loading state */
.woocommerce ul.products li.product .button.loading,
ul.products li.product .button.loading {
  opacity: 0.7 !important;
  pointer-events: none !important;
}

/* Override the button text via JS to show "View Cart" and make it clickable */
.woocommerce ul.products li.product .button.added::after,
ul.products li.product .button.added::after {
  content: '' !important;
}

/* ════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON — SINGLE CLICK
════════════════════════════════════════════════ */
.pxk-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white) !important;
  text-decoration: none !important;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  animation: waPulse 2.5s infinite;
}

.pxk-wa-btn:hover {
  background: #20b558;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
  animation: none;
}

.pxk-wa-btn span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%  { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
}

@media (max-width: 768px) {
  .pxk-wa-btn {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
  }
  .pxk-wa-btn span { display: none; }
}

/* WhatsApp button is icon-only (text hidden globally) */
.pxk-wa-btn span { display: none !important; }
.pxk-wa-btn { border-radius: 50% !important; padding: 16px !important; }


/* Hide back to top button */
.ct-back-to-top,
[class*="back-to-top"],
[class*="scroll-top"],
#scroll-to-top,
.scrolltop { display: none !important; }

/* ════════════════════════════════════════════════
   FIX: PRODUCT CARD SPACING
════════════════════════════════════════════════ */
.woocommerce ul.products li.product .star-rating,
ul.products li.product .star-rating {
  margin: 4px auto 4px !important;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button {
  margin: 4px 16px 14px !important;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
  margin-bottom: 2px !important;
}

/* ════════════════════════════════════════════════
   SALE BANNER — Seasonal / Eid / Ramadan
════════════════════════════════════════════════ */
.pxk-sale-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Theme: Eid */
.pxk-sale__theme--eid {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1040 50%, #1A1A2E 100%);
}

/* Theme: Ramadan — swap class to activate */
.pxk-sale__theme--ramadan {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a50 50%, #0d2137 100%);
}

/* Theme: Summer */
.pxk-sale__theme--summer {
  background: linear-gradient(135deg, #7a1845 0%, #C01265 50%, #7a1845 100%);
}

.pxk-sale-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pxk-sale-banner__decor {
  position: absolute;
  color: rgba(232,23,122,0.18);
  font-size: 80px;
  line-height: 1;
  user-select: none;
}
.pxk-sale-banner__decor--1 { top: -10px;  left: 3%;   font-size: 120px; }
.pxk-sale-banner__decor--2 { bottom: -20px; right: 2%; font-size: 140px; opacity: .12; }
.pxk-sale-banner__decor--3 { top: 10px;   right: 30%; font-size: 60px;  opacity: .15; }

.pxk-sale-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

/* Left: text + CTA */
.pxk-sale-banner__left {
  flex: 1;
  min-width: 280px;
}

.pxk-sale-banner__tag {
  display: inline-block;
  background: rgba(232,23,122,0.25);
  color: #F7B8D8;
  border: 1px solid rgba(232,23,122,0.4);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .03em;
}

.pxk-sale-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.pxk-sale-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 22px;
  line-height: 1.5;
}

.pxk-sale-banner__sub strong {
  color: #F7B8D8;
}

.pxk-sale-banner__btn {
  display: inline-block;
  background: var(--pink);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(232,23,122,0.4);
}

.pxk-sale-banner__btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,23,122,0.5);
}

/* Right: countdown */
.pxk-sale-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pxk-sale-banner__label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

.pxk-sale-banner__countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pxk-sale-banner__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 16px 8px;
  min-width: 62px;
}

.pxk-sale-banner__num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.pxk-sale-banner__unit-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pxk-sale-banner__sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.pxk-sale-banner__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pxk-sale-banner__badges span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .pxk-sale-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 32px 0;
  }
  .pxk-sale-banner__left { min-width: unset; }
  .pxk-sale-banner__right { width: 100%; }
  .pxk-sale-banner__unit { min-width: 54px; padding: 8px 12px 6px; }
}




/* ════════════════════════════════════════════════
   PIXIE PK vs OTHERS — Two-column comparison
════════════════════════════════════════════════ */
.pxk-versus { background: #fff; }

.pxk-versus__wrap { max-width: 960px; margin: 0 auto; }

.pxk-versus__headers {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-bottom: 16px;
  align-items: center;
}

.pxk-versus__col-head {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  letter-spacing: -.01em;
}

.pxk-versus__col-head--us {
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pxk-versus__crown {
  font-size: 16px;
  opacity: .85;
}

.pxk-versus__col-head--them {
  background: var(--grey);
  color: var(--text);
}

.pxk-versus__divider-head {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
}

.pxk-versus__row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-bottom: 10px;
  align-items: stretch;
}

.pxk-versus__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}

.pxk-versus__card--us {
  background: rgba(232,23,122,0.05);
  border: 1.5px solid rgba(232,23,122,0.2);
}

.pxk-versus__card--us:hover { background: rgba(232,23,122,0.09); }

.pxk-versus__card--them {
  background: var(--grey-light);
  border: 1.5px solid rgba(0,0,0,0.07);
}

.pxk-versus__card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--dark);
  line-height: 1.3;
}

.pxk-versus__card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.pxk-versus__card--us h3 { color: var(--pink-dark); }

.pxk-versus__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.pxk-versus__icon--yes {
  background: var(--pink);
  color: #fff;
}

.pxk-versus__icon--no {
  background: #eee;
  color: #999;
}

.pxk-versus__mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pxk-versus__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey);
  display: block;
}

.pxk-versus__cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 680px) {
  .pxk-versus__headers { grid-template-columns: 1fr 36px 1fr; }
  .pxk-versus__row     { grid-template-columns: 1fr 36px 1fr; }
  .pxk-versus__card    { padding: 14px 12px; gap: 10px; }
  .pxk-versus__card h3 { font-size: 13px; }
  .pxk-versus__card p  { font-size: 12px; }
  .pxk-versus__col-head { font-size: .95rem; padding: 12px; }
  .pxk-versus__icon { width: 22px; height: 22px; font-size: 11px; }
}



/* ════════════════════════════════════════════════
   HAIR REDUCTION PROGRESS TIMELINE — 4 horizontal cards
════════════════════════════════════════════════ */
.pxk-progress { background: var(--grey-light); }

/* 4-column card grid */
.pxk-progress__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* Individual card */
.pxk-progress__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}

.pxk-progress__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}

.pxk-progress__card--best  { border-color: rgba(232,23,122,0.25); }
.pxk-progress__card--mid   { border-color: rgba(232,23,122,0.12); }

/* Image / placeholder wrapper */
.pxk-progress__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background: var(--grey-light);
  overflow: hidden;
}

.pxk-progress__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder */
.pxk-progress__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
  color: var(--muted);
  border-bottom: 2px dashed rgba(232,23,122,0.15);
}

.pxk-progress__placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.pxk-progress__placeholder small {
  font-size: 11px;
  color: var(--muted);
  background: var(--grey);
  padding: 2px 8px;
  border-radius: 20px;
}

/* Reduction badge over image */
.pxk-progress__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.pxk-progress__badge--start { background: rgba(0,0,0,0.55);       color: #fff; }
.pxk-progress__badge--early { background: rgba(255,255,255,0.9);   color: var(--text); border: 1px solid rgba(0,0,0,0.1); }
.pxk-progress__badge--mid   { background: rgba(232,23,122,0.15);   color: var(--pink-dark); }
.pxk-progress__badge--best  { background: var(--pink);             color: #fff; box-shadow: 0 2px 8px rgba(232,23,122,0.35); }

/* Card body */
.pxk-progress__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pxk-progress__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pxk-progress__week-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 3px 10px;
  border-radius: 20px;
}

.pxk-progress__session-pill {
  font-size: 11px;
  color: var(--muted);
  background: var(--grey);
  padding: 3px 8px;
  border-radius: 20px;
}

.pxk-progress__body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.3;
}

.pxk-progress__body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
}

/* Hair density bar */
.pxk-progress__bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.pxk-progress__bar-track {
  flex: 1;
  height: 6px;
  background: var(--grey);
  border-radius: 3px;
  overflow: hidden;
}

.pxk-progress__bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.pxk-progress__bar-fill--start { background: #333; }
.pxk-progress__bar-fill--early { background: #888; }
.pxk-progress__bar-fill--mid   { background: var(--pink-light); }
.pxk-progress__bar-fill--best  { background: var(--pink); }

.pxk-progress__bar-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* Footer */
.pxk-progress__footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.pxk-progress__footer p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .pxk-progress__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .pxk-progress__grid { grid-template-columns: 1fr; }
}



/* ════════════════════════════════════════════════
   HOW IT WORKS — Compact strip
════════════════════════════════════════════════ */
.pxk-steps-strip {
  background: var(--dark);
  padding: 20px 0;
}

.pxk-steps-strip__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pxk-steps-strip__head {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.pxk-steps-strip__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.pxk-steps-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pxk-steps-strip__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pxk-steps-strip__item--last .pxk-steps-strip__num {
  background: #fff;
  color: var(--pink);
}

.pxk-steps-strip__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.pxk-steps-strip__arrow {
  color: rgba(255,255,255,0.25);
  font-size: 16px;
}

@media (max-width: 640px) {
  .pxk-steps-strip__inner { gap: 16px; }
  .pxk-steps-strip__head  { border-right: none; padding-right: 0; }
  .pxk-steps-strip__steps { gap: 8px; }
  .pxk-steps-strip__label { font-size: 13px; }
}

/* ════════════════════════════════════════════════
   MOBILE EXPERIENCE IMPROVEMENTS
   90% of Pixie PK traffic is mobile — all fixes
   below are applied last for highest specificity.
════════════════════════════════════════════════ */

/* ── FIX 1: Prevent horizontal scroll site-wide ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── FIX 2: Increase tap targets to 44px minimum (Google standard) ── */
.pxk-header__action {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.pxk-mobile-nav__close {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.pxk-hamburger {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

/* ── FIX 3: Bump 11px font sizes to 12px minimum ──
   11px is below Google's recommended readable size on mobile */
.pxk-section__label  { font-size: 12px; }
.pxk-footer__heading { font-size: 12px !important; }
.pxk-review__author span { font-size: 12px; }
.pxk-progress__bar-num { font-size: 12px; }
.pxk-progress__session-pill { font-size: 12px; }
.pxk-progress__badge { font-size: 12px; }

/* ── FIX 4: Sale banner countdown — prevent squeeze at 360px ── */
@media (max-width: 400px) {
  .pxk-sale-banner__unit {
    min-width: 48px;
    padding: 8px 10px 6px;
  }
  .pxk-sale-banner__num {
    font-size: 1.4rem;
  }
  .pxk-sale-banner__sep {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .pxk-sale-banner__countdown { gap: 4px; }
  .pxk-sale-banner__left { min-width: unset; }
  .pxk-sale-banner__title { font-size: 1.6rem; }
  .pxk-sale-banner__inner { gap: 20px; padding: 28px 0; }
}

/* ── FIX 5: Versus section — side-by-side on mobile, headings only ──
   Keep the 2-col layout but hide description text to reduce height.
   User can scan ✓ vs ✕ at a glance without scrolling. */
@media (max-width: 680px) {

  .pxk-versus__wrap { max-width: 100%; }

  /* Tighten the column headers */
  .pxk-versus__headers {
    grid-template-columns: 1fr 32px 1fr;
    margin-bottom: 10px;
  }
  .pxk-versus__col-head {
    font-size: 0.85rem;
    padding: 10px 10px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .pxk-versus__divider-head {
    font-size: 11px;
    font-weight: 800;
  }

  /* Each row */
  .pxk-versus__row {
    grid-template-columns: 1fr 32px 1fr;
    margin-bottom: 8px;
    align-items: stretch;
  }
  .pxk-versus__mid {
    align-items: center;
    justify-content: center;
  }
  .pxk-versus__dot {
    width: 6px;
    height: 6px;
  }

  /* Cards — compact, heading only */
  .pxk-versus__card {
    padding: 12px 10px;
    gap: 8px;
    align-items: flex-start;
    flex-direction: row;
  }

  /* Hide description on mobile — heading is enough to compare */
  .pxk-versus__card p {
    display: none !important;
  }

  .pxk-versus__card h3 {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    font-weight: 700 !important;
  }

  .pxk-versus__card--us h3 { color: var(--pink-dark) !important; }
  .pxk-versus__card--them h3 { color: var(--text) !important; }

  .pxk-versus__icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
  }
}

/* ── FIX 6: Category grid — 2-column on mobile with shorter cards ── */
@media (max-width: 480px) {
  .pxk-cat__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .pxk-cat__item {
    height: 150px !important;
    border-radius: 10px !important;
  }
  .pxk-cat__info {
    padding: 12px !important;
  }
  .pxk-cat__info h3 {
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }
  /* Hide tagline — overlaps image on small cards */
  .pxk-cat__info p {
    display: none !important;
  }
  .pxk-cat__arrow {
    font-size: 10px !important;
  }
}

/* ── FIX 7: Steps strip — fix label overflow & wrapping ──
   white-space: nowrap + flex-wrap causes awkward mid-label breaks */
@media (max-width: 600px) {
  .pxk-steps-strip { padding: 24px 0; }

  .pxk-steps-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .pxk-steps-strip__head {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-right: 0;
    padding-bottom: 10px;
    width: 100%;
  }
  .pxk-steps-strip__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .pxk-steps-strip__arrow { display: none; }
  .pxk-steps-strip__label {
    white-space: normal; /* Remove the nowrap — allow clean wrapping */
    font-size: 13px;
    line-height: 1.4;
  }
  .pxk-steps-strip__item { align-items: flex-start; }
}

/* ── FIX 8: Progress timeline — 2-column mobile with image shown ── */
@media (max-width: 640px) {

  .pxk-progress__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .pxk-progress__card {
    border-radius: var(--radius);
  }

  /* Image wrap: fixed height, shows placeholder properly */
  .pxk-progress__img-wrap {
    aspect-ratio: unset !important;
    height: 130px !important;
  }

  /* Placeholder — centred, compact */
  .pxk-progress__placeholder {
    height: 130px !important;
    padding: 12px 8px !important;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .pxk-progress__placeholder svg {
    width: 28px;
    height: 24px;
    opacity: 0.4;
  }

  .pxk-progress__placeholder span {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
  }

  .pxk-progress__placeholder small {
    display: none; /* hide "Add via Media Library" hint on mobile */
  }

  /* Badge stays top-left over the image */
  .pxk-progress__badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
  }

  /* Real photo if present */
  .pxk-progress__photo {
    height: 130px !important;
    width: 100%;
    object-fit: cover;
  }

  /* Card body — tighter padding in smaller columns */
  .pxk-progress__body {
    padding: 10px 12px 12px;
  }

  .pxk-progress__meta { margin-bottom: 6px; }

  .pxk-progress__week-pill {
    font-size: 11px;
    padding: 2px 8px;
  }

  .pxk-progress__session-pill {
    font-size: 10px;
    padding: 2px 6px;
  }

  .pxk-progress__body h3 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.3;
  }

  .pxk-progress__body p {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pxk-progress__bar-track { height: 6px; }
  .pxk-progress__bar-num { font-size: 11px; }
}

/* ── FIX 9: WooCommerce product grid — enforce 2 columns on mobile ──
   shortcodes [columns="3"] and [columns="4"] don't auto-collapse;
   parent theme CSS may float products at unexpected widths */
@media (max-width: 640px) {
  .woocommerce ul.products,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .woocommerce ul.products li.product,
  ul.products li.product {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
  }
  /* Tighten text inside smaller cards */
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  ul.products li.product h2 {
    font-size: 12px !important;
    padding: 10px 10px 4px !important;
    line-height: 1.4 !important;
  }
  .woocommerce ul.products li.product .button,
  ul.products li.product .button {
    font-size: 11px !important;
    padding: 9px 10px !important;
    width: calc(100% - 20px) !important;
    margin: 4px 10px 10px !important;
    letter-spacing: 0.03em !important;
  }
  .woocommerce ul.products li.product .price,
  ul.products li.product .price {
    font-size: 13px !important;
    padding: 2px 10px !important;
  }
}

/* ── FIX 10: Container padding on very small screens (360px phones) ── */
@media (max-width: 380px) {
  .pxk-container {
    padding: 0 16px;
  }
  .pxk-header__container {
    padding: 0 16px;
    gap: 12px;
  }
  .pxk-footer__container {
    padding: 0 16px;
  }
}

/* ── FIX 11: Hero section — tighten spacing & text on small mobile ── */
@media (max-width: 480px) {
  .pxk-hero {
    padding: 36px 20px;
    gap: 24px;
  }
  .pxk-hero__sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .pxk-hero__trust {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
  .pxk-hero__trust span { font-size: 12px; }
  .pxk-section { padding: 40px 0; }
  .pxk-section__head { margin-bottom: 28px; }
  .pxk-section__head p { font-size: 13px; }
  .pxk-section__head h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
}

/* ── FIX 12: Reviews stats bar — clean 2x2 grid on mobile ── */
@media (max-width: 768px) {
  .pxk-reviews__stats {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    border-radius: var(--radius) !important;
    margin: 0 24px !important;
  }
  .pxk-reviews__stat {
    border-right: none !important;
    border-bottom: none !important;
    padding: 22px 16px !important;
    position: relative !important;
  }
  /* Right divider — odd cells only */
  .pxk-reviews__stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.2) !important;
  }
  /* Bottom divider — top row only */
  .pxk-reviews__stat:nth-child(1),
  .pxk-reviews__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  }
  .pxk-reviews__stat strong {
    font-size: 1.7rem !important;
    margin-bottom: 4px !important;
  }
  .pxk-reviews__stat span {
    font-size: 12px !important;
  }
}

/* ── FIX 13: Trust strip — 2-column grid on mobile, compact items ── */
@media (max-width: 768px) {

  /* Override the 1-col rule set at line 318 */
  .pxk-trust__grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .pxk-trust { padding: 28px 0; }

  .pxk-trust__item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 16px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--grey) !important;
  }

  /* Right border between the 2 columns */
  .pxk-trust__item:nth-child(odd) {
    border-right: 1px solid var(--grey) !important;
  }

  /* Remove bottom border on last 2 items */
  .pxk-trust__item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  /* Smaller icon box */
  .pxk-trust__icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }
  .pxk-trust__icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .pxk-trust__item h3,
  .pxk-trust__item h4 {
    font-size: 13px !important;
    margin-bottom: 3px !important;
  }

  .pxk-trust__item p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

/* ── FIX 14: Reviews section — horizontal swipe carousel on mobile ── */
@media (max-width: 768px) {

  .pxk-reviews { padding-bottom: 0; }

  /* Swipeable horizontal row */
  .pxk-reviews__grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    margin-bottom: 28px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding: 4px 24px 16px !important;
    /* Hide scrollbar visually but keep it functional */
    scrollbar-width: none !important;
  }
  .pxk-reviews__grid::-webkit-scrollbar { display: none; }

  /* Each card snaps into place */
  .pxk-review__card {
    flex: 0 0 80vw !important;
    max-width: 300px !important;
    width: 80vw !important;
    scroll-snap-align: start !important;
    padding: 20px 18px !important;
    min-width: 0 !important;
  }

  /* Last card has right padding so it doesn't sit flush at edge */
  .pxk-review__card:last-child {
    margin-right: 24px !important;
  }

  /* Tighten card internals */
  .pxk-review__stars {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .pxk-review__text {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pxk-review__avatar {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }

  .pxk-review__author strong { font-size: 13px !important; }
  .pxk-review__author span   { font-size: 11px !important; }

  /* Swipe hint */
  .pxk-reviews__swipe-hint {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    padding: 0 0 20px;
    letter-spacing: 0.04em;
  }

  .pxk-reviews__stat strong { font-size: 1.6rem !important; }
}


/* ── Camera section — top/bottom pink border only ── */
.pxk-cameras-section {
  border-top: none !important;
  border-bottom: 4px solid var(--pink) !important;
}

/* ── Section Divider ── */
.pxk-section-divider {
  padding: 20px 0;
  background: var(--dark);
}
.pxk-section-divider__inner {
  display: flex; align-items: center; gap: 16px;
}
.pxk-section-divider__line {
  flex: 1; height: 1px; background: rgba(255,255,255,0.1);
}
.pxk-section-divider__label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; padding: 7px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
}