/* ================================================================
   SHOPIZ PREMIUM — Product Page + Shop + My Account
   Version: 5.0.0
   ================================================================ */

/* ── TOKENS ── */
:root {
  --sz-orange:       #f57224;
  --sz-orange-dark:  #d4611a;
  --sz-orange-light: #fff3eb;
  --sz-green:        #10b981;
  --sz-green-light:  #ecfdf5;
  --sz-blue:         #3b82f6;
  --sz-blue-light:   #eff6ff;
  --sz-red:          #ef4444;
  --sz-red-light:    #fef2f2;
  --sz-yellow:       #f59e0b;
  --sz-dark:         #0f172a;
  --sz-text:         #1e293b;
  --sz-muted:        #64748b;
  --sz-border:       #e2e8f0;
  --sz-bg:           #f4f6fa;
  --sz-white:        #ffffff;
  --sz-radius:       14px;
  --sz-radius-sm:    10px;
  --sz-shadow:       0 4px 16px rgba(15,23,42,.07);
  --sz-shadow-lg:    0 12px 40px rgba(15,23,42,.12);
  --sz-trans:        .16s ease;
}

/* ================================================================
   SINGLE PRODUCT PAGE (PDP)
   ================================================================ */
.sz-pdp {
  background: var(--sz-bg);
  padding: 28px 0 60px;
}

/* Grid */
.sz-pdp-grid {
  display: grid;
  grid-template-columns: 480px 1fr 260px;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

/* ── Gallery ── */
.sz-gallery-main {
  position: relative;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--sz-shadow);
}
.sz-gallery-main-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .3s ease;
}
.sz-gallery-main:hover .sz-gallery-main-img { transform: scale(1.04); }
.sz-gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; background: var(--sz-bg);
}
.sz-pdp-sale-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--sz-red); color: #fff;
  font-size: 11px; font-weight: 900;
  padding: 5px 12px; border-radius: 999px;
  z-index: 1;
}
.sz-gallery-thumbs {
  display: flex; gap: 10px;
  flex-wrap: wrap; margin-top: 12px;
}
.sz-gallery-thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--sz-border);
  border-radius: var(--sz-radius-sm);
  overflow: hidden; cursor: pointer; padding: 0;
  background: var(--sz-white);
  transition: border-color var(--sz-trans);
}
.sz-gallery-thumb:hover,
.sz-gallery-thumb.active { border-color: var(--sz-orange); }
.sz-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Summary ── */
.sz-pdp-summary { display: flex; flex-direction: column; gap: 14px; }
.sz-pdp-cats { font-size: 12px; color: var(--sz-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.sz-pdp-cats a { color: var(--sz-orange); text-decoration: none; }
.sz-pdp-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; color: var(--sz-dark); margin: 0; line-height: 1.25; letter-spacing: -.03em; }

.sz-pdp-rating { display: flex; align-items: center; gap: 8px; }
.sz-pdp-stars  { display: flex; gap: 2px; }
.sz-pdp-rating-val   { font-size: 14px; font-weight: 800; color: var(--sz-yellow); }
.sz-pdp-review-count { font-size: 13px; color: var(--sz-blue); text-decoration: none; font-weight: 600; }
.sz-pdp-review-count:hover { text-decoration: underline; }

.sz-pdp-price { font-size: 28px; font-weight: 900; color: var(--sz-red); }
.sz-pdp-price del { font-size: 18px; color: var(--sz-muted); font-weight: 500; }
.sz-pdp-price ins { text-decoration: none; }
.sz-pdp-price .woocommerce-Price-amount { color: inherit; }

.sz-pdp-stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.sz-pdp-stock.instock    { color: var(--sz-green); background: var(--sz-green-light); border: 1px solid #bbf7d0; }
.sz-pdp-stock.outofstock { color: var(--sz-red);   background: var(--sz-red-light);   border: 1px solid #fecaca; }

.sz-pdp-short-desc { font-size: 14.5px; line-height: 1.7; color: var(--sz-muted); }
.sz-pdp-short-desc p { margin: 0 0 8px; }

.sz-pdp-cod {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--sz-green-light);
  border: 1px solid #bbf7d0;
  border-radius: var(--sz-radius-sm);
}
.sz-pdp-cod-icon { font-size: 28px; flex-shrink: 0; }
.sz-pdp-cod strong { display: block; font-size: 14px; font-weight: 800; color: var(--sz-dark); }
.sz-pdp-cod span { font-size: 12.5px; color: var(--sz-muted); }

/* Quantity + ATC */
.sz-pdp-atc-row { display: flex; gap: 12px; align-items: center; }
.sz-pdp-qty {
  display: flex; align-items: center;
  border: 2px solid var(--sz-border); border-radius: var(--sz-radius-sm);
  overflow: hidden; flex-shrink: 0;
  transition: border-color var(--sz-trans);
}
.sz-pdp-qty:focus-within { border-color: var(--sz-orange); }
.sz-qty-btn {
  border: 0; background: var(--sz-bg); color: var(--sz-text);
  width: 38px; height: 44px; font-size: 20px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--sz-trans);
}
.sz-qty-btn:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-qty-input {
  border: 0 !important; outline: 0 !important;
  width: 56px !important; height: 44px !important;
  text-align: center !important;
  font-size: 16px !important; font-weight: 800 !important;
  color: var(--sz-text) !important;
  background: var(--sz-white) !important;
}
.sz-pdp-atc-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 999px;
  background: var(--sz-orange); color: #fff !important;
  font-size: 15px; font-weight: 900;
  border: 0; cursor: pointer;
  transition: background var(--sz-trans), transform var(--sz-trans);
}
.sz-pdp-atc-btn:hover { background: var(--sz-orange-dark); transform: translateY(-1px); }
.sz-pdp-buy-now {
  display: flex; align-items: center; justify-content: center;
  padding: 13px; border-radius: 999px;
  border: 2px solid var(--sz-orange); color: var(--sz-orange) !important;
  font-size: 15px; font-weight: 900; text-decoration: none !important;
  transition: all var(--sz-trans);
}
.sz-pdp-buy-now:hover { background: var(--sz-orange); color: #fff !important; }

/* Variations */
.sz-pdp-variation-group { margin-bottom: 14px; }
.sz-pdp-var-label { display: block; font-size: 12px; font-weight: 800; color: var(--sz-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.sz-pdp-var-options { display: flex; gap: 8px; flex-wrap: wrap; }
.sz-var-option {
  border: 2px solid var(--sz-border); background: var(--sz-white);
  color: var(--sz-text); font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: var(--sz-radius-sm);
  cursor: pointer; transition: all var(--sz-trans);
}
.sz-var-option:hover,
.sz-var-option.active { border-color: var(--sz-orange); color: var(--sz-orange); background: var(--sz-orange-light); }

/* Meta */
.sz-pdp-meta { border-top: 1px solid var(--sz-border); padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.sz-pdp-meta-row { display: flex; gap: 10px; font-size: 13px; }
.sz-pdp-meta-row span:first-child { color: var(--sz-muted); font-weight: 700; min-width: 80px; flex-shrink: 0; }
.sz-pdp-meta-row span:last-child  { color: var(--sz-text); font-weight: 600; }
.sz-pdp-meta-row a { color: var(--sz-orange); text-decoration: none; }

/* Unavailable */
.sz-pdp-unavailable {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px; background: var(--sz-red-light);
  border: 1px solid #fecaca; border-radius: var(--sz-radius-sm);
  color: var(--sz-red); font-weight: 700; font-size: 14px;
}

/* ── Seller Panel ── */
.sz-pdp-seller-panel { display: flex; flex-direction: column; gap: 16px; }
.sz-pdp-seller-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 18px;
  box-shadow: var(--sz-shadow);
}
.sz-pdp-seller-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sz-pdp-seller-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sz-orange), #f59e0b);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff; flex-shrink: 0;
}
.sz-pdp-seller-name { display: block; font-size: 14px; font-weight: 800; color: var(--sz-dark); }
.sz-pdp-seller-badge {
  display: inline-block; font-size: 11px; font-weight: 800;
  background: var(--sz-green-light); color: var(--sz-green);
  padding: 2px 8px; border-radius: 999px; margin: 2px 0;
}
.sz-pdp-seller-city { display: block; font-size: 12px; color: var(--sz-muted); }
.sz-pdp-seller-link {
  display: block; text-align: center;
  padding: 9px; border-radius: 999px;
  border: 1.5px solid var(--sz-orange);
  color: var(--sz-orange); font-size: 13px; font-weight: 800;
  text-decoration: none;
  transition: all var(--sz-trans);
}
.sz-pdp-seller-link:hover { background: var(--sz-orange); color: #fff; }

.sz-pdp-delivery-card {
  background: var(--sz-white); border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius); padding: 18px; box-shadow: var(--sz-shadow);
}
.sz-pdp-delivery-card h4 { font-size: 13px; font-weight: 800; color: var(--sz-dark); margin: 0 0 14px; text-transform: uppercase; letter-spacing: .06em; }
.sz-delivery-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.sz-delivery-row:last-child { margin-bottom: 0; }
.sz-delivery-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sz-delivery-row strong { display: block; font-size: 13px; font-weight: 800; color: var(--sz-dark); }
.sz-delivery-row span { font-size: 12px; color: var(--sz-muted); }

/* ── Tabs ── */
.sz-pdp-tabs-wrap {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  box-shadow: var(--sz-shadow);
  margin-bottom: 40px;
}
.sz-pdp-tabs {
  display: flex;
  border-bottom: 1px solid var(--sz-border);
  background: var(--sz-bg);
}
.sz-pdp-tab {
  border: 0; background: transparent;
  padding: 14px 24px;
  font-size: 14px; font-weight: 700; color: var(--sz-muted);
  cursor: pointer; position: relative;
  transition: color var(--sz-trans);
  display: flex; align-items: center; gap: 7px;
}
.sz-pdp-tab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sz-orange); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform var(--sz-trans);
}
.sz-pdp-tab:hover  { color: var(--sz-dark); }
.sz-pdp-tab.active { color: var(--sz-orange); }
.sz-pdp-tab.active::after { transform: scaleX(1); }
.sz-tab-badge {
  background: var(--sz-orange); color: #fff;
  font-size: 10px; font-weight: 900;
  padding: 2px 7px; border-radius: 999px;
}

.sz-pdp-tab-content { display: none; padding: 28px; }
.sz-pdp-tab-content.active { display: block; }
.sz-pdp-description { font-size: 15px; line-height: 1.75; color: var(--sz-text); }
.sz-pdp-description h2, .sz-pdp-description h3 { font-weight: 800; color: var(--sz-dark); margin: 20px 0 10px; }
.sz-pdp-description ul, .sz-pdp-description ol { padding-left: 20px; margin: 12px 0; }
.sz-pdp-description li { margin-bottom: 6px; }
.sz-pdp-no-desc { color: var(--sz-muted); font-style: italic; }

.sz-pdp-shipping-info { display: flex; flex-direction: column; gap: 20px; }
.sz-shi-row { display: flex; align-items: flex-start; gap: 16px; }
.sz-shi-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.sz-shi-row strong { display: block; font-size: 15px; font-weight: 800; color: var(--sz-dark); margin-bottom: 6px; }
.sz-shi-row p { margin: 0; font-size: 13.5px; color: var(--sz-muted); line-height: 1.6; }

/* Related */
.sz-pdp-related { margin-bottom: 40px; }

/* ================================================================
   SHOP ARCHIVE PAGE
   ================================================================ */
.sz-shop-page { background: var(--sz-bg); padding: 28px 0 60px; }
.sz-shop-wrap { max-width: 1320px; }
.sz-shop-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar */
.sz-shop-sidebar {
  position: sticky; top: 24px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  box-shadow: var(--sz-shadow);
}
.sz-filter-card { padding: 18px; border-bottom: 1px solid var(--sz-border); }
.sz-filter-card:last-child { border-bottom: 0; }
.sz-filter-title {
  font-size: 12px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--sz-muted); margin: 0 0 12px;
}
.sz-filter-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.sz-filter-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: var(--sz-radius-sm);
  font-size: 13.5px; font-weight: 600; color: var(--sz-text);
  text-decoration: none; transition: all var(--sz-trans);
}
.sz-filter-cat:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-filter-cat.active { background: var(--sz-orange); color: #fff; font-weight: 800; }
.sz-filter-cat.active .sz-filter-count { background: rgba(255,255,255,.25); color: #fff; }
.sz-filter-count {
  font-size: 11px; font-weight: 800;
  background: var(--sz-bg); color: var(--sz-muted);
  padding: 2px 7px; border-radius: 999px;
  flex-shrink: 0;
}

/* Price filter */
.sz-price-form { display: flex; flex-direction: column; gap: 12px; }
.sz-price-inputs { display: flex; align-items: center; gap: 8px; }
.sz-price-input-wrap { flex: 1; }
.sz-price-input-wrap label { display: block; font-size: 11px; font-weight: 700; color: var(--sz-muted); margin-bottom: 4px; }
.sz-price-input {
  width: 100%; padding: 9px 10px; border: 1.5px solid var(--sz-border);
  border-radius: var(--sz-radius-sm); font: inherit; font-size: 13px;
  color: var(--sz-text); outline: 0;
  transition: border-color var(--sz-trans);
}
.sz-price-input:focus { border-color: var(--sz-orange); }
.sz-price-sep { color: var(--sz-muted); font-weight: 700; flex-shrink: 0; }
.sz-price-filter-btn {
  border: 0; background: var(--sz-orange); color: #fff;
  padding: 10px; border-radius: var(--sz-radius-sm);
  font: inherit; font-size: 13px; font-weight: 800;
  cursor: pointer; transition: background var(--sz-trans);
}
.sz-price-filter-btn:hover { background: var(--sz-orange-dark); }

/* Quick filters */
.sz-quick-filters { display: flex; flex-direction: column; gap: 4px; }
.sz-quick-filter {
  display: block; padding: 8px 10px;
  border-radius: var(--sz-radius-sm);
  font-size: 13px; font-weight: 600; color: var(--sz-text);
  text-decoration: none; transition: all var(--sz-trans);
  border: 1.5px solid transparent;
}
.sz-quick-filter:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-quick-filter.active { border-color: var(--sz-orange); color: var(--sz-orange); background: var(--sz-orange-light); font-weight: 800; }

.sz-sidebar-close {
  display: none; width: 100%;
  padding: 14px; border: 0; background: var(--sz-dark); color: #fff;
  font: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; align-items: center; justify-content: center; gap: 8px;
}

/* Shop Toolbar */
.sz-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 12px 16px;
  margin-bottom: 18px;
  box-shadow: var(--sz-shadow);
}
.sz-shop-toolbar-left { display: flex; align-items: center; gap: 12px; }
.sz-filter-toggle {
  display: none; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--sz-radius-sm);
  border: 1.5px solid var(--sz-border); background: var(--sz-white);
  font: inherit; font-size: 13px; font-weight: 700; color: var(--sz-text);
  cursor: pointer; transition: all var(--sz-trans);
}
.sz-filter-toggle:hover { border-color: var(--sz-orange); color: var(--sz-orange); }
.sz-shop-count { font-size: 14px; font-weight: 600; color: var(--sz-muted); }
.sz-shop-count strong { color: var(--sz-dark); font-weight: 800; }
.sz-sort-form { display: flex; align-items: center; gap: 8px; }
.sz-sort-label { font-size: 13px; font-weight: 700; color: var(--sz-muted); white-space: nowrap; }
.sz-sort-select {
  padding: 8px 14px; border: 1.5px solid var(--sz-border);
  border-radius: var(--sz-radius-sm); font: inherit; font-size: 13.5px;
  font-weight: 700; color: var(--sz-text); outline: 0; cursor: pointer;
  background: var(--sz-white);
  transition: border-color var(--sz-trans);
}
.sz-sort-select:focus { border-color: var(--sz-orange); }

/* Active filters */
.sz-active-filters {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 14px;
  font-size: 13px; color: var(--sz-muted); font-weight: 600;
}
.sz-active-filter-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--sz-orange-light); color: var(--sz-orange);
  font-weight: 800; font-size: 12.5px;
  border: 1px solid #fed7aa;
}
.sz-active-filter-tag a { color: var(--sz-orange); text-decoration: none; font-weight: 900; }

/* Pagination */
.sz-shop-pagination { display: flex; justify-content: center; margin-top: 32px; }
.sz-shop-pagination .page-numbers {
  display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.sz-shop-pagination .page-numbers li { }
.sz-shop-pagination .page-numbers a,
.sz-shop-pagination .page-numbers span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--sz-radius-sm);
  font-size: 13.5px; font-weight: 700;
  border: 1.5px solid var(--sz-border); background: var(--sz-white);
  color: var(--sz-text); text-decoration: none;
  transition: all var(--sz-trans);
}
.sz-shop-pagination .page-numbers a:hover { border-color: var(--sz-orange); color: var(--sz-orange); }
.sz-shop-pagination .page-numbers .current { background: var(--sz-orange); border-color: var(--sz-orange); color: #fff; }
.sz-shop-pagination .prev,
.sz-shop-pagination .next { width: auto !important; padding: 0 14px; font-size: 13px !important; }

/* Empty shop */
.sz-shop-empty {
  text-align: center; padding: 80px 20px;
  background: var(--sz-white); border-radius: var(--sz-radius);
  border: 1px solid var(--sz-border); box-shadow: var(--sz-shadow);
}

/* ================================================================
   MY ACCOUNT
   ================================================================ */
.sz-myaccount {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--sz-bg);
  padding: 28px;
  min-height: 70vh;
}

.sz-account-nav {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  overflow: hidden;
  box-shadow: var(--sz-shadow);
  position: sticky; top: 24px;
}
.sz-account-nav-user {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--sz-dark), #1a2744);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sz-account-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sz-orange), #f59e0b);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff; flex-shrink: 0;
}
.sz-account-name  { display: block; font-size: 14px; font-weight: 800; color: #fff; }
.sz-account-email { display: block; font-size: 12px; color: #64748b; margin-top: 2px; word-break: break-all; }

.sz-account-menu { list-style: none; margin: 0; padding: 8px; }
.sz-account-menu-item { }
.sz-account-menu-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--sz-radius-sm);
  font-size: 13.5px; font-weight: 600; color: var(--sz-text);
  text-decoration: none; transition: all var(--sz-trans);
}
.sz-account-menu-link:hover { background: var(--sz-orange-light); color: var(--sz-orange); }
.sz-account-menu-item.active .sz-account-menu-link { background: var(--sz-orange); color: #fff; font-weight: 800; }
.sz-account-seller-link .sz-account-menu-link { color: var(--sz-orange); font-weight: 800; border-top: 1px solid var(--sz-border); margin-top: 4px; padding-top: 14px; }

.sz-account-content { }
.sz-account-panel {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 28px;
  box-shadow: var(--sz-shadow);
  min-height: 400px;
}

/* WooCommerce account content overrides */
.sz-account-panel .woocommerce-MyAccount-content h2 { font-size: 20px; font-weight: 900; color: var(--sz-dark); margin: 0 0 20px; }
.sz-account-panel table.shop_table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sz-account-panel table.shop_table th { padding: 11px 14px; background: var(--sz-bg); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--sz-muted); border-bottom: 1px solid var(--sz-border); }
.sz-account-panel table.shop_table td { padding: 13px 14px; border-bottom: 1px solid var(--sz-border); color: var(--sz-text); }
.sz-account-panel table.shop_table tr:last-child td { border-bottom: 0; }
.sz-account-panel .button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--sz-orange); color: #fff !important;
  font-size: 12.5px; font-weight: 800; text-decoration: none !important;
  border: 0; cursor: pointer; transition: background var(--sz-trans);
}
.sz-account-panel .button:hover { background: var(--sz-orange-dark); }
.sz-account-panel .woocommerce-form input[type=text],
.sz-account-panel .woocommerce-form input[type=email],
.sz-account-panel .woocommerce-form input[type=password],
.sz-account-panel .woocommerce-form textarea {
  width: 100% !important; padding: 11px 14px !important;
  border: 1.5px solid var(--sz-border) !important;
  border-radius: var(--sz-radius-sm) !important;
  font: inherit !important; font-size: 14px !important;
  outline: 0 !important; margin-bottom: 8px !important;
}
.sz-account-panel .woocommerce-form input:focus { border-color: var(--sz-orange) !important; box-shadow: 0 0 0 3px rgba(245,114,36,.12) !important; }

/* ================================================================
   SHARED — Buttons, section heads, product grid (used everywhere)
   ================================================================ */
.sz-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sz-section-head h2 { font-size: clamp(20px,2.5vw,28px); font-weight: 900; color: var(--sz-dark); margin: 0; letter-spacing: -.03em; }
.sz-view-all { display: inline-flex; align-items: center; gap: 4px; font-size: 13.5px; font-weight: 800; color: var(--sz-orange); text-decoration: none; padding: 7px 16px; border: 1.5px solid var(--sz-orange); border-radius: 999px; transition: all var(--sz-trans); flex-shrink: 0; }
.sz-view-all:hover { background: var(--sz-orange); color: #fff; }
.sz-btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: 999px; font-size: 14px; font-weight: 800; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all var(--sz-trans); }
.sz-btn-orange { background: var(--sz-orange); color: #fff; border-color: var(--sz-orange); }
.sz-btn-orange:hover { background: var(--sz-orange-dark); border-color: var(--sz-orange-dark); color: #fff; }
.sz-btn-outline { background: transparent; color: var(--sz-orange); border-color: var(--sz-orange); }
.sz-btn-outline:hover { background: var(--sz-orange); color: #fff; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .sz-pdp-grid { grid-template-columns: 400px 1fr; }
  .sz-pdp-seller-panel { display: none; }
}
@media (max-width: 960px) {
  .sz-pdp-grid { grid-template-columns: 1fr; }
  .sz-pdp-seller-panel { display: flex; flex-direction: row; gap: 16px; }
  .sz-pdp-seller-card, .sz-pdp-delivery-card { flex: 1; }
  .sz-shop-grid { grid-template-columns: 1fr; }
  .sz-shop-sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 280px; z-index: 999; transform: translateX(-100%); transition: transform var(--sz-trans); border-radius: 0; overflow-y: auto; }
  .sz-shop-sidebar.open { transform: translateX(0); box-shadow: 4px 0 40px rgba(15,23,42,.2); }
  .sz-sidebar-close { display: flex; }
  .sz-filter-toggle { display: flex; }
  .sz-myaccount { grid-template-columns: 1fr; }
  .sz-account-nav { position: static; }
}
@media (max-width: 640px) {
  .sz-pdp-grid { gap: 20px; }
  .sz-pdp-atc-row { flex-direction: column; }
  .sz-pdp-atc-btn, .sz-pdp-buy-now { width: 100%; }
  .sz-pdp-seller-panel { flex-direction: column; }
  .sz-pdp-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .sz-pdp-tab { white-space: nowrap; }
  .sz-myaccount { padding: 16px; gap: 16px; }
  .sz-account-panel { padding: 18px; }
}
