/* =============================================
   ZIPPLO — MAIN STYLESHEET v1.0
   Amazon-style design system
   ============================================= */

/* ---------- TOKENS ---------- */
:root {
  --zp-orange:      #FF9900;
  --zp-orange-d:    #E47911;
  --zp-orange-btn:  #FFD814;
  --zp-orange-btn-d:#F7CA00;
  --zp-navy:        #131921;
  --zp-navy-mid:    #232F3E;
  --zp-navy-light:  #37475A;
  --zp-blue:        #007185;
  --zp-blue-d:      #C7511F;
  --zp-bg:          #EAEDED;
  --zp-white:       #FFFFFF;
  --zp-border:      #D5D9D9;
  --zp-border-light:#E3E6E6;
  --zp-text:        #0F1111;
  --zp-muted:       #565959;
  --zp-star:        #FFA41C;
  --zp-green:       #007600;
  --zp-red:         #CC0C39;
  --zp-radius:      4px;
  --zp-radius-lg:   8px;
  --zp-shadow:      0 2px 5px rgba(15,17,17,.15);
  --zp-shadow-lg:   0 4px 14px rgba(15,17,17,.2);
  --zp-shadow-card: 0 1px 3px rgba(15,17,17,.13);
  --zp-max:         1500px;
  --zp-header:      60px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Amazon Ember", Arial, Verdana, sans-serif; font-size: 14px; color: var(--zp-text); background: var(--zp-bg); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; line-height: 1.2; }
p { margin: 0; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ---------- UTILITY ---------- */
.zp-container { max-width: var(--zp-max); margin: 0 auto; padding: 0 16px; }
.zp-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* =============================================
   PROMO BAR
   ============================================= */
.zp-promo-bar {
  background: var(--zp-navy-light);
  color: var(--zp-white);
  text-align: center;
  font-size: 13px;
  padding: 7px 16px;
  font-weight: 500;
}
.zp-promo-bar a { color: var(--zp-orange); margin-left: 6px; }
.zp-promo-bar a:hover { text-decoration: underline; }

/* =============================================
   STICKY HEADER
   ============================================= */
.zp-header {
  background: var(--zp-navy);
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--zp-header);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

/* Logo */
.zp-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--zp-white);
  border: 2px solid transparent;
  border-radius: var(--zp-radius);
  padding: 5px 8px;
  flex-shrink: 0;
  transition: border-color .15s;
  line-height: 1;
}
.zp-logo:hover { border-color: var(--zp-white); }
.zp-logo em { color: var(--zp-orange); font-style: normal; }

/* Deliver */
.zp-deliver {
  display: flex;
  flex-direction: column;
  color: var(--zp-white);
  font-size: 11px;
  line-height: 1.35;
  flex-shrink: 0;
}
.zp-deliver .top { color: #aaa; }
.zp-deliver .bot { font-weight: 700; font-size: 13px; }

/* Search */
.zp-search-wrap {
  flex: 1;
  display: flex;
  border-radius: var(--zp-radius);
  overflow: visible;
  position: relative;
  min-width: 0;
}
.zp-search {
  flex: 1;
  display: flex;
  border-radius: var(--zp-radius);
  overflow: hidden;
}
.zp-search-cat {
  background: #f3f3f3;
  border: none;
  padding: 0 10px;
  font-size: 12px;
  border-right: 1px solid #c8c8c8;
  flex-shrink: 0;
  max-width: 130px;
  height: 40px;
  cursor: pointer;
}
.zp-search-input {
  flex: 1;
  border: none;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  height: 40px;
  min-width: 0;
}
.zp-search-btn {
  background: var(--zp-orange);
  border: none;
  padding: 0 18px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  border-radius: 0 var(--zp-radius) var(--zp-radius) 0;
}
.zp-search-btn:hover { background: var(--zp-orange-d); }
.zp-search-btn svg { width: 18px; height: 18px; fill: var(--zp-navy); }

/* Autosuggest */
.zp-suggest {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  background: var(--zp-white);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  box-shadow: var(--zp-shadow-lg);
  z-index: 1100;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}
.zp-suggest.active { display: block; }
.zp-suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--zp-border-light);
  transition: background .12s;
}
.zp-suggest-item:hover { background: #f6f6f6; }
.zp-suggest-item img { width: 40px; height: 40px; object-fit: contain; border: 1px solid var(--zp-border); border-radius: 2px; }
.zp-suggest-name { font-size: 13px; flex: 1; }
.zp-suggest-price { color: var(--zp-red); font-weight: 600; font-size: 13px; }

/* Header right */
.zp-header-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.zp-hbtn {
  color: var(--zp-white);
  border: 2px solid transparent;
  border-radius: var(--zp-radius);
  padding: 5px 8px;
  line-height: 1.35;
  transition: border-color .15s;
  background: none;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.zp-hbtn:hover { border-color: var(--zp-white); }
.zp-hbtn .top { color: #aaa; font-size: 11px; }
.zp-hbtn .bot { font-weight: 700; font-size: 13px; color: var(--zp-white); }

.zp-cart-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--zp-white);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  border-radius: var(--zp-radius);
  padding: 5px 8px;
  transition: border-color .15s;
  position: relative;
}
.zp-cart-link:hover { border-color: var(--zp-white); }
.zp-cart-count {
  background: var(--zp-orange);
  color: var(--zp-navy);
  font-weight: 700;
  font-size: 13px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.zp-cart-svg { width: 28px; height: 28px; fill: var(--zp-white); }

/* =============================================
   NAV BAR
   ============================================= */
.zp-navbar {
  background: var(--zp-navy-mid);
  display: flex;
  align-items: center;
  padding: 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 2px;
}
.zp-navbar::-webkit-scrollbar { display: none; }
.zp-nav-item {
  color: var(--zp-white);
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 13px;
  border: 2px solid transparent;
  border-radius: var(--zp-radius);
  transition: border-color .12s;
  display: block;
}
.zp-nav-item:hover { border-color: var(--zp-white); }
.zp-nav-all { font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* =============================================
   BREADCRUMBS
   ============================================= */
.zp-breadcrumbs {
  background: var(--zp-white);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--zp-muted);
  border-bottom: 1px solid var(--zp-border-light);
}
.zp-breadcrumbs a { color: var(--zp-blue); }
.zp-breadcrumbs a:hover { color: var(--zp-blue-d); text-decoration: underline; }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.zp-hero {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.zp-slides { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.zp-slide {
  min-width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  padding: 48px 72px;
  position: relative;
  overflow: hidden;
}
.zp-slide-1 { background: linear-gradient(120deg, #131921 0%, #1f3a5f 100%); }
.zp-slide-2 { background: linear-gradient(120deg, #1c2e1c 0%, #2e5e2e 100%); }
.zp-slide-3 { background: linear-gradient(120deg, #2e1c1c 0%, #5e2e2e 100%); }
.zp-slide-content { z-index: 2; max-width: 520px; }
.zp-slide-eye { color: var(--zp-orange); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.zp-slide-h1 { color: var(--zp-white); font-size: 44px; font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.zp-slide-sub { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 32px; }
.zp-slide-btn {
  display: inline-block;
  background: var(--zp-orange);
  color: var(--zp-navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--zp-radius);
  transition: background .15s, transform .1s;
  border: none;
}
.zp-slide-btn:hover { background: var(--zp-orange-d); transform: translateY(-1px); }
.zp-slide-deco { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); font-size: 160px; opacity: .07; pointer-events: none; }

.zp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--zp-shadow);
  z-index: 10;
  transition: background .15s, box-shadow .15s;
}
.zp-arrow:hover { background: var(--zp-white); box-shadow: var(--zp-shadow-lg); }
.zp-arrow-l { left: 14px; }
.zp-arrow-r { right: 14px; }
.zp-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.zp-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); padding: 0; transition: background .2s; }
.zp-dot.active { background: var(--zp-white); }

/* =============================================
   SECTION COMMON
   ============================================= */
.zp-section {
  background: var(--zp-white);
  border-radius: var(--zp-radius);
  padding: 20px;
  margin-top: 16px;
  box-shadow: var(--zp-shadow-card);
}
.zp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.zp-section-title { font-size: 21px; font-weight: 700; }
.zp-see-all { color: var(--zp-blue); font-size: 13px; }
.zp-see-all:hover { color: var(--zp-blue-d); text-decoration: underline; }

/* =============================================
   PROMO STRIP
   ============================================= */
.zp-promo-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; margin-top: 16px; }
.zp-promo-card {
  background: var(--zp-white);
  border-radius: var(--zp-radius);
  padding: 18px;
  box-shadow: var(--zp-shadow-card);
  border-top: 3px solid var(--zp-orange);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .15s, box-shadow .15s;
}
.zp-promo-card:hover { transform: translateY(-2px); box-shadow: var(--zp-shadow); }
.zp-promo-icon { font-size: 28px; }
.zp-promo-title { font-size: 15px; font-weight: 700; }
.zp-promo-sub { font-size: 12px; color: var(--zp-muted); }
.zp-promo-link { color: var(--zp-blue); font-size: 13px; font-weight: 600; margin-top: 4px; }
.zp-promo-link:hover { text-decoration: underline; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.zp-cat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 14px; }
.zp-cat-card {
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  overflow: hidden;
  transition: box-shadow .18s, transform .15s;
  background: var(--zp-white);
}
.zp-cat-card:hover { box-shadow: var(--zp-shadow); transform: translateY(-2px); }
.zp-cat-img { width: 100%; height: 120px; object-fit: cover; }
.zp-cat-placeholder { width: 100%; height: 120px; background: linear-gradient(135deg,#EAF4FB,#BDD7EE); display: flex; align-items: center; justify-content: center; font-size: 38px; }
.zp-cat-name { padding: 10px 12px 4px; font-weight: 700; font-size: 13px; }
.zp-cat-count { padding: 0 12px 10px; font-size: 12px; color: var(--zp-muted); }

/* =============================================
   DEALS GRID
   ============================================= */
.zp-deals-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; }
.zp-deal-card {
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  background: var(--zp-white);
  transition: box-shadow .18s, transform .15s;
  overflow: hidden;
}
.zp-deal-card:hover { box-shadow: var(--zp-shadow-lg); transform: translateY(-2px); }
.zp-deal-img {
  position: relative;
  background: #F7FAFA;
  padding: 18px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zp-deal-img img { max-height: 155px; object-fit: contain; }
.zp-badge { position: absolute; top: 10px; left: 10px; background: var(--zp-red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 2px; }
.zp-deal-body { padding: 12px; }
.zp-deal-title { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.zp-price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.zp-price { font-size: 19px; font-weight: 700; color: var(--zp-red); }
.zp-price-orig { font-size: 13px; color: var(--zp-muted); text-decoration: line-through; }
.zp-discount { font-size: 12px; color: var(--zp-green); font-weight: 600; }
.zp-stars .full { color: var(--zp-star); }
.zp-stars .half { color: var(--zp-star); opacity: .6; }
.zp-stars .empty { color: #ccc; }
.zp-rc { color: var(--zp-blue); font-size: 12px; margin-left: 3px; }
.zp-deal-actions { padding: 0 12px 12px; }

/* =============================================
   BUTTONS
   ============================================= */
.zp-btn-add {
  display: block;
  width: 100%;
  background: var(--zp-orange-btn);
  border: 1px solid #FCD200;
  border-radius: var(--zp-radius);
  padding: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--zp-navy);
  text-align: center;
  transition: background .15s;
}
.zp-btn-add:hover { background: var(--zp-orange-btn-d); }
.zp-btn-buy {
  display: block;
  width: 100%;
  background: var(--zp-orange);
  border: 1px solid var(--zp-orange-d);
  border-radius: var(--zp-radius);
  padding: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--zp-navy);
  text-align: center;
  margin-top: 8px;
  transition: background .15s;
}
.zp-btn-buy:hover { background: var(--zp-orange-d); }
.zp-btn-primary {
  background: var(--zp-orange-btn);
  border: 1px solid #FCD200;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--zp-navy);
  display: inline-block;
  transition: background .15s;
}
.zp-btn-primary:hover { background: var(--zp-orange-btn-d); }

/* =============================================
   PRODUCT CAROUSEL
   ============================================= */
.zp-carousel-wrap { position: relative; }
.zp-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.zp-carousel::-webkit-scrollbar { display: none; }
.zp-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--zp-white);
  border: 1px solid var(--zp-border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--zp-shadow);
  z-index: 5;
  transition: box-shadow .15s;
}
.zp-carousel-nav:hover { box-shadow: var(--zp-shadow-lg); }
.zp-carousel-nav.left  { left: -18px; }
.zp-carousel-nav.right { right: -18px; }

/* Product card */
.zp-prod-card {
  min-width: 186px;
  max-width: 186px;
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  background: var(--zp-white);
  padding: 12px;
  transition: box-shadow .18s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zp-prod-card:hover { box-shadow: var(--zp-shadow-lg); transform: translateY(-2px); }
.zp-prod-card-img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  background: #F7FAFA;
  border-radius: 2px;
}
.zp-prod-card-ph { width: 100%; height: 155px; background: linear-gradient(135deg,#F0F4F8,#D6E4F0); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.zp-prod-card-title { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zp-prod-card-price { font-size: 16px; font-weight: 700; color: var(--zp-red); }
.zp-prod-card .zp-stars { font-size: 12px; }

/* =============================================
   SHOP / ARCHIVE PAGE
   ============================================= */
.zp-woo-wrap { display: flex; gap: 20px; max-width: var(--zp-max); margin: 16px auto; padding: 0 16px; }
.zp-shop-sidebar { width: 240px; flex-shrink: 0; }
.zp-woo-main { flex: 1; min-width: 0; }
.zp-widget { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 16px; margin-bottom: 14px; }
.zp-widget-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--zp-orange); }

/* =============================================
   PRODUCT CARD IMAGE — FORCED CONSISTENT SIZING
   (high specificity, overrides any WooCommerce/plugin default)
   ============================================= */
li.product .zp-card-img-wrap {
  position: relative !important;
  width: 100% !important;
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #F7FAFA !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}
li.product img.zp-card-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}
li.product .zp-card-img-placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 48px !important;
  color: #ddd !important;
}

/* WooCommerce loop grid */
ul.products { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; list-style: none; margin: 0; padding: 0; }
ul.products li.product { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 14px; transition: box-shadow .18s, transform .15s; display: flex; flex-direction: column; }
ul.products li.product:hover { box-shadow: var(--zp-shadow-lg); transform: translateY(-2px); }
ul.products li.product img { width: 100%; height: 180px; object-fit: contain; background: #F7FAFA; border-radius: 2px; }
ul.products li.product .woocommerce-loop-product__title { font-size: 13px; padding: 8px 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
ul.products li.product .price { font-size: 16px; font-weight: 700; color: var(--zp-red); }
ul.products li.product .price del { color: var(--zp-muted); font-size: 13px; font-weight: 400; text-decoration: line-through; }
.zp-loop-meta { margin: 4px 0 8px; display: flex; flex-direction: column; gap: 2px; }
.zp-loop-stars { font-size: 13px; }
.zp-loop-price { font-size: 16px; font-weight: 700; color: var(--zp-red); }
.zp-loop-actions { margin-top: auto; }
.zp-loop-actions .button { display: block; width: 100%; background: var(--zp-orange-btn); border: 1px solid #FCD200; border-radius: var(--zp-radius); padding: 9px; font-size: 13px; font-weight: 500; color: var(--zp-navy); text-align: center; transition: background .15s; }
.zp-loop-actions .button:hover { background: var(--zp-orange-btn-d); }

/* Ordering / results count */
.woocommerce-result-count { font-size: 13px; color: var(--zp-muted); }
.woocommerce-ordering select { border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 6px 10px; font-size: 13px; }

/* =============================================
   SINGLE PRODUCT PAGE
   ============================================= */
.zp-single-wrap { display: grid; grid-template-columns: 1fr 1fr 300px; gap: 24px; max-width: var(--zp-max); margin: 16px auto; padding: 0 16px; align-items: start; }

/* Gallery */
.zp-gallery { position: sticky; top: 76px; }
.zp-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  overflow: hidden;
  position: relative;
  background: #F7FAFA;
}
.zp-gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; cursor: zoom-in; }
.zp-gallery-main:hover img { transform: scale(1.6); }
.zp-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.zp-thumb {
  width: 62px;
  height: 62px;
  border: 2px solid var(--zp-border);
  border-radius: var(--zp-radius);
  overflow: hidden;
  cursor: pointer;
  background: #F7FAFA;
  padding: 4px;
  transition: border-color .15s;
}
.zp-thumb:hover, .zp-thumb.active { border-color: var(--zp-orange); }
.zp-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Product info */
.zp-prod-info {}
.zp-prod-title { font-size: 22px; font-weight: 400; line-height: 1.3; margin-bottom: 8px; }
.zp-prod-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 10px; }
.zp-prod-rating .zp-stars { font-size: 15px; }
.zp-prod-rating a { color: var(--zp-blue); }
.zp-prod-rating a:hover { text-decoration: underline; }
.zp-prod-divider { height: 1px; background: var(--zp-border-light); margin: 12px 0; }
.zp-prod-price-block { margin-bottom: 14px; }
.zp-prod-price-label { font-size: 12px; color: var(--zp-muted); }
.zp-prod-price { font-size: 28px; font-weight: 400; color: var(--zp-red); }
.zp-prod-price-orig { font-size: 14px; color: var(--zp-muted); text-decoration: line-through; margin-left: 8px; }
.zp-prod-discount { color: var(--zp-red); font-size: 14px; margin-left: 8px; }
.zp-prod-about { font-size: 14px; line-height: 1.6; color: var(--zp-text); margin-bottom: 14px; }
.zp-prod-about ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }

/* Variants */
.zp-variants { margin-bottom: 16px; }
.zp-variant-label { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.zp-variant-label span { font-weight: 400; color: var(--zp-muted); }
.zp-variant-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.zp-variant-btn {
  border: 2px solid var(--zp-border);
  border-radius: var(--zp-radius);
  padding: 6px 14px;
  font-size: 13px;
  background: var(--zp-white);
  cursor: pointer;
  transition: border-color .15s;
}
.zp-variant-btn:hover, .zp-variant-btn.selected { border-color: var(--zp-orange); background: #FFF8EE; }
.zp-variant-btn.out { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* Swatch (color) */
.zp-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.zp-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--zp-border);
  cursor: pointer;
  transition: border-color .15s, transform .1s;
}
.zp-swatch:hover, .zp-swatch.selected { border-color: var(--zp-orange); transform: scale(1.15); }

/* Buy box sidebar */
.zp-buy-box {
  background: var(--zp-white);
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  padding: 20px;
  position: sticky;
  top: 76px;
}
.zp-buy-price { font-size: 28px; color: var(--zp-red); margin-bottom: 10px; }
.zp-buy-stock { font-size: 16px; margin-bottom: 10px; }
.zp-buy-stock.in { color: var(--zp-green); }
.zp-buy-stock.low { color: var(--zp-red); }
.zp-buy-stock.out { color: var(--zp-muted); }
.zp-qty-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 13px; }
.zp-qty-select { border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 6px 10px; font-size: 13px; }
.zp-buy-actions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.zp-buy-info { font-size: 12px; color: var(--zp-muted); display: flex; flex-direction: column; gap: 4px; }
.zp-buy-info span { display: flex; align-items: center; gap: 6px; }
.zp-wishlist-btn {
  background: none;
  border: none;
  color: var(--zp-blue);
  font-size: 13px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-top: 8px;
}
.zp-wishlist-btn:hover { text-decoration: underline; }

/* Product Tabs */
.zp-tabs { margin: 24px 0; background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); overflow: hidden; }
.zp-tab-nav { display: flex; border-bottom: 1px solid var(--zp-border); overflow-x: auto; scrollbar-width: none; }
.zp-tab-nav::-webkit-scrollbar { display: none; }
.zp-tab-btn {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  color: var(--zp-muted);
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.zp-tab-btn.active, .zp-tab-btn:hover { color: var(--zp-navy); border-bottom-color: var(--zp-orange); }
.zp-tab-content { display: none; padding: 22px; }
.zp-tab-content.active { display: block; }

/* Reviews */
.zp-review-summary { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; margin-bottom: 24px; }
.zp-review-big { font-size: 60px; font-weight: 700; color: var(--zp-text); line-height: 1; }
.zp-review-bars { display: flex; flex-direction: column; gap: 5px; }
.zp-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--zp-blue); }
.zp-bar { flex: 1; height: 14px; background: var(--zp-border-light); border-radius: 2px; overflow: hidden; }
.zp-bar-fill { height: 100%; background: var(--zp-orange); border-radius: 2px; }
.zp-review-list { display: flex; flex-direction: column; gap: 20px; }
.zp-review { border-bottom: 1px solid var(--zp-border-light); padding-bottom: 18px; }
.zp-review-name { font-weight: 700; font-size: 13px; }
.zp-review-date { color: var(--zp-muted); font-size: 12px; }
.zp-review-text { font-size: 14px; line-height: 1.6; margin-top: 8px; }
.zp-verified { color: var(--zp-green); font-size: 12px; margin-top: 4px; }

/* Spec table */
.zp-spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.zp-spec-table tr:nth-child(even) { background: #f6f6f6; }
.zp-spec-table td { padding: 9px 14px; border: 1px solid var(--zp-border-light); }
.zp-spec-table td:first-child { font-weight: 600; width: 200px; }

/* =============================================
   CART PAGE
   ============================================= */
.zp-cart-wrap { max-width: 1200px; margin: 20px auto; padding: 0 16px; display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.zp-cart-main { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 20px; }
.zp-cart-head { font-size: 24px; font-weight: 400; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--zp-border); }
.zp-cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--zp-border-light); align-items: start; }
.zp-ci-img { border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 6px; width: 100px; height: 100px; object-fit: contain; }
.zp-ci-title { font-size: 14px; color: var(--zp-blue); margin-bottom: 6px; }
.zp-ci-title:hover { color: var(--zp-blue-d); text-decoration: underline; }
.zp-ci-stock { color: var(--zp-green); font-size: 13px; margin-bottom: 10px; }
.zp-ci-actions { display: flex; align-items: center; gap: 12px; font-size: 13px; flex-wrap: wrap; }
.zp-ci-qty select { border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 4px 8px; }
.zp-ci-del, .zp-ci-save { color: var(--zp-blue); cursor: pointer; background: none; border: none; padding: 0; font-size: 13px; }
.zp-ci-del:hover, .zp-ci-save:hover { text-decoration: underline; }
.zp-ci-del::before { content: "| "; color: var(--zp-border); }
.zp-ci-price { font-size: 18px; font-weight: 700; text-align: right; white-space: nowrap; }

/* Cart summary */
.zp-cart-summary { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 20px; position: sticky; top: 76px; }
.zp-cart-summary .zp-total { font-size: 18px; margin-bottom: 16px; }
.zp-cart-summary .zp-total strong { font-size: 22px; }
.zp-cart-summary .zp-free { color: var(--zp-green); font-size: 13px; margin-bottom: 14px; }

/* Coupon */
.zp-coupon { display: flex; gap: 8px; margin-bottom: 16px; }
.zp-coupon input { flex: 1; border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 8px 12px; font-size: 13px; }
.zp-coupon button { background: var(--zp-orange-btn); border: 1px solid #FCD200; border-radius: var(--zp-radius); padding: 8px 14px; font-size: 13px; font-weight: 500; }
.zp-coupon button:hover { background: var(--zp-orange-btn-d); }

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.zp-checkout-wrap { max-width: 1100px; margin: 20px auto; padding: 0 16px; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.zp-checkout-main { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 24px; }
.zp-checkout-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.zp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.zp-form-row.full { grid-template-columns: 1fr; }
.zp-form-group { display: flex; flex-direction: column; gap: 5px; }
.zp-form-group label { font-size: 13px; font-weight: 600; }
.zp-form-group input,
.zp-form-group select,
.zp-form-group textarea {
  border: 1px solid var(--zp-border);
  border-radius: var(--zp-radius);
  padding: 10px 12px;
  font-size: 14px;
  transition: border-color .15s;
}
.zp-form-group input:focus,
.zp-form-group select:focus { outline: none; border-color: var(--zp-orange); box-shadow: 0 0 0 3px rgba(255,153,0,.15); }
.zp-section-sub { font-size: 16px; font-weight: 700; margin: 20px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--zp-border-light); }
.zp-payment-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.zp-pay-opt { border: 2px solid var(--zp-border); border-radius: var(--zp-radius); padding: 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; font-size: 14px; transition: border-color .15s; }
.zp-pay-opt:hover, .zp-pay-opt.selected { border-color: var(--zp-orange); background: #FFF8EE; }
.zp-pay-opt input[type=radio] { accent-color: var(--zp-orange); width: 16px; height: 16px; flex-shrink: 0; }
.zp-pay-icon-tag { background: var(--zp-navy); color: var(--zp-white); font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 3px; margin-left: auto; }

.zp-order-summary { background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 20px; position: sticky; top: 76px; }
.zp-os-title { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.zp-os-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.zp-os-item img { width: 52px; height: 52px; object-fit: contain; border: 1px solid var(--zp-border); border-radius: 2px; padding: 3px; }
.zp-os-item-info { flex: 1; font-size: 13px; }
.zp-os-item-price { font-weight: 700; font-size: 14px; }
.zp-os-totals { border-top: 1px solid var(--zp-border); margin-top: 14px; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.zp-os-totals .row { display: flex; justify-content: space-between; }
.zp-os-totals .total { font-size: 17px; font-weight: 700; color: var(--zp-red); }

/* WooCommerce form overrides */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields { max-width: none; }
.woocommerce-checkout .form-row { margin-bottom: 14px; }
.woocommerce-checkout .form-row label { font-size: 13px; font-weight: 600; margin-bottom: 5px; display: block; }
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select { border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 10px 12px; font-size: 14px; width: 100%; }
.woocommerce-checkout #place_order { background: var(--zp-orange); border: 1px solid var(--zp-orange-d); color: var(--zp-navy); font-weight: 700; font-size: 17px; padding: 14px 0; width: 100%; border-radius: var(--zp-radius); cursor: pointer; transition: background .15s; margin-top: 16px; }
.woocommerce-checkout #place_order:hover { background: var(--zp-orange-d); }

/* =============================================
   MY ACCOUNT
   ============================================= */
.woocommerce-MyAccount-navigation { width: 220px; flex-shrink: 0; }
.woocommerce-MyAccount-navigation ul { list-style: none; background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); overflow: hidden; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; font-size: 14px; color: var(--zp-text); border-bottom: 1px solid var(--zp-border-light); transition: background .12s, color .12s; }
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a { background: var(--zp-orange-btn); color: var(--zp-navy); font-weight: 600; }
.woocommerce-MyAccount-content { flex: 1; background: var(--zp-white); border: 1px solid var(--zp-border); border-radius: var(--zp-radius); padding: 24px; }

/* =============================================
   FOOTER
   ============================================= */
.zp-footer-back { background: var(--zp-navy-mid); }
.zp-footer-back-btn { width: 100%; background: var(--zp-navy-mid); border: none; color: var(--zp-white); padding: 15px; font-size: 13px; cursor: pointer; transition: background .15s; }
.zp-footer-back-btn:hover { background: var(--zp-navy-light); }
.zp-footer { background: var(--zp-navy); color: #ccc; padding: 32px 16px 20px; }
.zp-footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(175px,1fr)); gap: 24px; max-width: 1200px; margin: 0 auto 28px; }
.zp-footer-col h4 { color: var(--zp-white); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.zp-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.zp-footer-col ul li a { color: #ccc; font-size: 13px; transition: color .15s; }
.zp-footer-col ul li a:hover { color: var(--zp-white); }
.zp-footer-bottom { border-top: 1px solid #3A4553; padding-top: 18px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.zp-footer-logo { font-size: 20px; font-weight: 700; color: var(--zp-white); }
.zp-footer-logo em { color: var(--zp-orange); font-style: normal; }
.zp-footer-copy { font-size: 12px; color: #888; }
.zp-pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.zp-pay-badge { background: var(--zp-white); border-radius: 3px; padding: 3px 8px; font-size: 11px; font-weight: 700; color: var(--zp-navy); }

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.zp-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--zp-navy);
  color: var(--zp-white);
  padding: 14px 22px;
  border-radius: var(--zp-radius-lg);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--zp-shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zp-toast.show { transform: translateY(0); opacity: 1; }
.zp-toast-icon { font-size: 18px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .zp-single-wrap { grid-template-columns: 1fr 1fr; }
  .zp-buy-box { grid-column: span 2; position: static; }
}
@media (max-width: 900px) {
  .zp-single-wrap { grid-template-columns: 1fr; }
  .zp-buy-box { grid-column: 1; }
  .zp-woo-wrap { flex-direction: column; }
  .zp-shop-sidebar { width: 100%; }
  .zp-cart-wrap { grid-template-columns: 1fr; }
  .zp-checkout-wrap { grid-template-columns: 1fr; }
  .zp-slide { height: 260px; padding: 24px 26px; }
  .zp-slide-h1 { font-size: 28px; }
  .zp-slide-deco { display: none; }
}
@media (max-width: 600px) {
  .zp-deliver { display: none; }
  .zp-search-cat { display: none; }
  .zp-cart-item { grid-template-columns: 80px 1fr; }
  .zp-ci-price { grid-column: span 2; text-align: left; }
  .zp-form-row { grid-template-columns: 1fr; }
  .zp-review-summary { grid-template-columns: 1fr; }
}

/* =============================================
   WC NOTICES / MESSAGES
   ============================================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border-radius: var(--zp-radius); padding: 12px 16px; margin-bottom: 16px; font-size: 14px; }
.woocommerce-message { background: #D7ECD4; border-left: 4px solid var(--zp-green); }
.woocommerce-info { background: #D9EAF4; border-left: 4px solid var(--zp-blue); }
.woocommerce-error { background: #FAD7D7; border-left: 4px solid var(--zp-red); }
