/* Powertech Trading — Shop homepage
   Brand: white + #00512e | Riyadh, Saudi Arabia */

:root {
  --primary: #00512e;
  --primary-dark: #003d23;
  --primary-deep: #002818;
  --primary-soft: #E8F5EF;
  --primary-mid: #3D9B6A;
  --primary-grad: linear-gradient(135deg, #007044 0%, #00512e 52%, #003d23 100%);
  --primary-grad-hero: linear-gradient(165deg, #00663a 0%, #00512e 46%, #003520 100%);
  --dark: #222222;
  --ink: #1A1418;
  --muted: #666666;
  --light: #F7F7F8;
  --border: #E8E8E8;
  --placeholder: #D9D9D9;
  --white: #FFFFFF;
  --footer: #141218;
  --footer-2: #1C181C;
  --shadow: 0 8px 28px rgba(26, 20, 24, 0.08);
  --shadow-sm: 0 2px 10px rgba(26, 20, 24, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 0px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Syne", "Plus Jakarta Sans", sans-serif;
  --container: 1320px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.pt-wrap {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* —— Top bar —— */
.pt-topbar {
  background: var(--ink);
  color: #d8d4d6;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.pt-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
  flex-wrap: wrap;
  padding-block: 0.35rem;
}
.pt-topbar-left,
.pt-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.pt-topbar a:hover { color: #fff; }
.pt-topbar i { color: var(--primary-mid); margin-inline-end: 0.35rem; }
.pt-topbar-sep { opacity: 0.35; }

.pt-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}
.pt-lang button {
  background: none;
  border: 0;
  color: #d8d4d6;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0;
  cursor: pointer;
}
.pt-lang button.is-active,
.pt-lang button:hover { color: #fff; }
.pt-lang span { opacity: 0.4; }

.pt-social { display: flex; gap: 0.55rem; }
.pt-social a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 0.7rem;
}
.pt-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* —— Header —— */
.pt-header {
  background: #fff;
  z-index: 1040;
}
.pt-header-sticky {
  position: relative;
  z-index: 1040;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.pt-header-sticky.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 8px 24px rgba(26, 20, 24, 0.08);
  border-bottom-color: var(--border);
}
.pt-header-spacer {
  display: none;
}
.pt-header-spacer.is-on {
  display: block;
}

.pt-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.pt-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.pt-logo img {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply;
}
.pt-logo-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.pt-logo-meta strong {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.pt-logo-meta small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pt-search {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
}
.pt-search form {
  display: flex;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.pt-search form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 81, 46, 0.12);
  background: #fff;
}
.pt-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.72rem 1.15rem;
  font-size: 0.92rem;
  outline: none;
  min-width: 0;
}
.pt-search button {
  width: 52px;
  border: 0;
  background: var(--primary-grad);
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  transition: filter .2s, background .2s;
}
.pt-search button:hover { filter: brightness(1.08); background: var(--primary-dark); }

.pt-search-panel {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  z-index: 20;
}
.pt-search-panel.is-open { display: block; }
.pt-search-panel p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pt-search-panel a {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0.4rem;
  border-radius: 8px;
  font-size: 0.88rem;
}
.pt-search-panel a:hover { background: var(--primary-soft); color: var(--primary); }

.pt-header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pt-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: 0;
  color: var(--dark);
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.86rem;
  position: relative;
}
.pt-icon-btn:hover { background: var(--light); color: var(--primary); }
.pt-icon-btn i { font-size: 1.2rem; }
.pt-cart-count {
  position: absolute;
  top: 2px;
  inset-inline-end: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 99px;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.pt-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Category nav */
.pt-nav {
  border-top: 1px solid var(--border);
}
.pt-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.pt-nav-inner::-webkit-scrollbar { display: none; }
.pt-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.78rem 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--dark);
  position: relative;
}
.pt-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.pt-nav a:hover,
.pt-nav a.is-active { color: var(--primary); }
.pt-nav a:hover::after,
.pt-nav a.is-active::after { transform: scaleX(1); }
.pt-nav a.sale { color: #c1121f; }

[dir="rtl"] .pt-nav a::after { transform-origin: right; }

/* Promo */
.pt-promo {
  background: var(--primary-grad);
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  letter-spacing: 0.02em;
}
.pt-promo a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

/* —— Hero —— */
.pt-hero {
  position: relative;
  overflow: hidden;
  background: var(--light);
}
.pt-hero-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.pt-hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  min-height: clamp(420px, 58vh, 620px);
}
.pt-hero-copy {
  background:
    radial-gradient(1200px 400px at -10% 110%, rgba(0, 122, 70, .4), transparent 55%),
    var(--primary-grad-hero);
  color: #fff;
  padding: clamp(2rem, 5vw, 4.2rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.pt-hero-copy::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    180deg,
    var(--primary) 0 18px,
    transparent 18px 28px
  );
}
.pt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8e0cc;
  margin-bottom: 1rem;
}
.pt-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary-mid);
}
.pt-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.pt-hero p.lead {
  color: #d8cdd3;
  font-size: 1.02rem;
  max-width: 38ch;
  margin-bottom: 1.6rem;
}
.pt-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.pt-hero-media {
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.pt-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.pt-hero-slide.is-active .pt-hero-media img { transform: scale(1); }

.pt-hero-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.pt-hero-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s, transform .2s;
}
.pt-hero-arrow:hover {
  background: var(--primary-grad);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.pt-hero-arrow.prev { inset-inline-start: 1rem; }
.pt-hero-arrow.next { inset-inline-end: 1rem; }

.pt-hero-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 4;
}
.pt-hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 0;
  transition: width .25s, background .25s;
}
.pt-hero-dots button.is-active {
  width: 26px;
  background: #fff;
}

/* Buttons */
.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s, background .18s, color .18s, border-color .18s, gap .18s;
}
.pt-btn:hover { gap: 0.75rem; transform: translateY(-1px); }
.pt-btn-primary {
  background: var(--primary-grad);
  color: #fff;
}
.pt-btn-primary:hover { filter: brightness(1.08); color: #fff; }
.pt-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.pt-btn-ghost:hover { background: #fff; color: var(--ink); }
.pt-btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}
.pt-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.pt-btn-solid {
  background: var(--primary-grad);
  color: #fff;
  border-radius: 999px;
}
.pt-btn-solid:hover { filter: brightness(1.08); color: #fff; }

/* Section heads */
.pt-section { padding: clamp(2.4rem, 5vw, 4.2rem) 0; }
.pt-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.pt-section-head h2 {
  font-family: var(--display);
  font-weight: 750;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0;
  position: relative;
  display: inline-block;
}
.pt-section-head h2 em {
  font-style: normal;
  box-shadow: inset 0 -6px 0 var(--primary-soft);
}
.pt-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.pt-link:hover { gap: 0.55rem; }

/* Category cards — 2nd section */
.pt-cats .row { --bs-gutter-x: 0.9rem; --bs-gutter-y: 0.9rem; }
.pt-cat-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4.05;
  background: #dedede;
  isolation: isolate;
}
.pt-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pt-cat-card:hover img { transform: scale(1.06); }
.pt-cat-card .label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: #fff;
  padding: 0.7rem 0.95rem 0.62rem;
  min-width: 58%;
  max-width: calc(100% - 1.7rem);
  box-shadow: var(--shadow-sm);
}
.pt-cat-card .label h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.pt-cat-card .label span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

[dir="rtl"] .pt-cat-card .label { left: auto; right: 0.85rem; }

/* Products — 3rd section */
.pt-products { background: #fff; }
.pt-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}
.pt-product {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
}
.pt-product:hover {
  border-color: #b7dcc9;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pt-badge {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
}
.pt-product-media {
  aspect-ratio: 1 / 1;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.pt-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform .4s ease;
}
.pt-product:hover .pt-product-media img { transform: scale(1.06); }
.pt-product h3 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.45rem;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pt-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.pt-price strong {
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 800;
}
.pt-price s {
  color: #999;
  font-size: 0.8rem;
}
.pt-product-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pt-add {
  width: 100%;
  border: 1.5px solid var(--primary);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.pt-add:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.pt-quote {
  width: 100%;
  border: 0;
  background: var(--primary-grad);
  color: #fff;
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.4rem;
  border-radius: 6px;
  text-align: center;
  transition: background .2s;
}
.pt-quote:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* 3-panel hover — 4th section */
.pt-panels {
  display: flex;
  align-items: stretch;
  height: min(72vh, 640px);
  min-height: 520px;
  background: #111;
  overflow: hidden;
}
.pt-panel {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
  transition: flex-grow 0.55s cubic-bezier(.22, .61, .36, 1);
}
.pt-panels:hover .pt-panel,
.pt-panels.has-open .pt-panel {
  flex-grow: 0.62;
}
.pt-panels:hover .pt-panel:hover,
.pt-panels.has-open .pt-panel.is-open {
  flex-grow: 1.76;
}
.pt-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.08);
  transition: transform .7s ease, filter .45s ease;
}
.pt-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 10%, rgba(0,0,0,.55) 100%);
  z-index: 1;
  transition: background .4s;
}
.pt-panel:hover img,
.pt-panel.is-open img {
  transform: scale(1.02);
  filter: grayscale(0.12) contrast(1.05);
}
.pt-panel:hover::before,
.pt-panel.is-open::before {
  background: linear-gradient(180deg, rgba(0,0,0,.08) 10%, rgba(0,0,0,.58) 100%);
}
.pt-panel-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(5.5rem, 11vw, 9.5rem);
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.38);
  z-index: 2;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.pt-panel-body {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.2rem;
}
.pt-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
  white-space: nowrap;
}
.pt-plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-grad);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform .25s, background .2s;
}
.pt-panel:hover .pt-plus,
.pt-panel.is-open .pt-plus { transform: rotate(45deg); }

.pt-panel-extra {
  position: absolute;
  left: 50%;
  bottom: 16%;
  z-index: 3;
  width: min(36ch, calc(100% - 2.4rem));
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #ece7ea;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.pt-panel:hover .pt-panel-extra,
.pt-panel.is-open .pt-panel-extra {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Service areas — 5th section */
.pt-areas {
  background: var(--primary-grad);
  color: #fff;
}
.pt-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.pt-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--primary);
}
.pt-areas .pt-eyebrow {
  color: #b8e0cc;
}
.pt-areas .pt-eyebrow::before {
  background: #fff;
}
.pt-title {
  font-family: var(--display);
  font-weight: 750;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: #2c2c2c;
}
.pt-areas h2 {
  font-family: var(--display);
  font-weight: 750;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: #fff;
}
.pt-areas .copy {
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}
.pt-areas .pt-btn-light {
  background: #fff;
  color: var(--primary);
}
.pt-areas .pt-btn-light:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.pt-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.pt-chip i { color: var(--primary); font-size: 0.95rem; }
.pt-chip:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-1px);
}

/* Why strip */
.pt-why {
  background: var(--light);
  border-block: 1px solid var(--border);
}
.pt-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.pt-why-item {
  padding: 0.4rem 0.2rem;
}
.pt-why-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.pt-why-item h3 {
  font-size: 0.98rem;
  font-weight: 750;
  margin: 0 0 0.3rem;
}
.pt-why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* SEO + popular searches — before footer */
.pt-seo {
  background: #fff;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0 3rem;
  border-top: 1px solid var(--border);
}
.pt-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.4rem;
}
.pt-seo-block h2 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 0.7rem;
}
.pt-seo-block p {
  color: #5c5c5c;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 0.55rem;
}
.pt-seo-block.is-collapsed .pt-seo-extra { display: none; }
.pt-readmore {
  background: none;
  border: 0;
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  font-size: 0.86rem;
}
.pt-readmore:hover { text-decoration: underline; text-underline-offset: 3px; }

.pt-popular {
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.pt-popular h2 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 750;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}
.pt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pt-tag {
  background: var(--light);
  color: #333;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.pt-tag:hover {
  background: var(--primary-soft);
  border-color: #b7dcc9;
  color: var(--primary);
}

.pt-cta {
  background: var(--primary-grad);
  color: #fff;
}

/* Footer */
.pt-footer {
  background: var(--footer);
  color: #d7d2d5;
  padding-top: 3rem;
}
.pt-footer a:hover { color: #fff; }
.pt-footer h3 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 750;
  margin: 0 0 1rem;
}
.pt-footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
}
.pt-footer-brand p {
  font-size: 0.88rem;
  color: #b7b0b4;
  max-width: 28ch;
}
.pt-footer-list li { margin-bottom: 0.45rem; }
.pt-footer-list a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.pt-footer-list a i { color: var(--primary-mid); font-size: 0.7rem; }
.pt-contact-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}
.pt-contact-row i { color: var(--primary-mid); margin-top: 0.2rem; }

.pt-footer-mid {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.2rem;
  padding: 1.8rem 0 2rem;
}
.pt-news {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 0.85rem;
  max-width: 420px;
  background: #0e0c10;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  overflow: hidden;
}
.pt-news:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 81, 46, 0.25);
}
.pt-news input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0.78rem 1rem;
  outline: none;
  font-size: 0.9rem;
}
.pt-news input::placeholder { color: #8a8388; }
.pt-news button {
  background: var(--primary-grad);
  color: #fff;
  border: 0;
  padding: 0 1.15rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pt-news button:hover { background: var(--primary-dark); }

.pt-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
}
.pt-pay img {
  height: 34px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  display: block;
}
.pt-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.pt-app {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.7rem;
  max-width: 148px;
}
.pt-app a {
  display: block;
  line-height: 0;
  background: none;
  border: 0;
  padding: 0;
  min-width: 0;
  height: auto;
}
.pt-app img {
  width: 100%;
  height: auto;
  display: block;
}
.pt-maroof {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  max-width: 280px;
}
.pt-maroof strong { display: block; font-size: 0.85rem; }
.pt-maroof small { color: var(--muted); font-size: 0.72rem; line-height: 1.35; }
.pt-maroof-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.pt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #9b9498;
}
.pt-footer-bottom a { margin-inline-start: 0.85rem; }
.pt-trust-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.pt-trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Floating */
.pt-wa,
.pt-chat-toggle {
  position: fixed;
  z-index: 1080;
  border: 0;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.pt-wa {
  left: 1.15rem;
  bottom: 1.15rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  font-size: 1.7rem;
  display: grid;
  place-items: center;
  animation: pt-pulse 2.6s ease-in-out infinite;
}
.pt-wa:hover { transform: translateY(-2px) scale(1.04); color: #fff; }
.pt-chat-toggle {
  right: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 58px;
  padding: 0 1.1rem 0 0.55rem;
  border-radius: 999px;
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.pt-chat-toggle:hover {
  background: var(--primary-grad);
  color: #fff;
}
.pt-chat-toggle .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-grad);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  position: relative;
  flex-shrink: 0;
}
.pt-chat-toggle .dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
}

.pt-tip {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.pt-wa:hover .pt-tip { opacity: 1; }

@keyframes pt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

.pt-chat {
  position: fixed;
  right: 1.15rem;
  bottom: 5.4rem;
  width: min(360px, calc(100vw - 1.6rem));
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  z-index: 1081;
  overflow: hidden;
  transform-origin: bottom right;
  animation: pt-pop .22s ease;
  display: none;
}
.pt-chat.is-open { display: flex; flex-direction: column; }
.pt-chat-head {
  background: var(--ink);
  color: #fff;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pt-chat-head .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  position: relative;
}
.pt-chat-head .avatar::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.pt-chat-head strong { display: block; font-size: 0.92rem; }
.pt-chat-head small { opacity: .7; font-size: 0.72rem; }
.pt-chat-close {
  margin-inline-start: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.pt-chat-body { padding: 1rem; background: #f6f5f6; min-height: 180px; }
.pt-bubble {
  background: #fff;
  border-radius: 4px 14px 14px 14px;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}
.pt-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.pt-quick button {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 650;
  cursor: pointer;
}
.pt-quick button:hover { border-color: var(--primary); color: var(--primary); }
.pt-chat-foot {
  display: flex;
  border-top: 1px solid var(--border);
}
.pt-chat-foot input {
  flex: 1;
  border: 0;
  padding: 0.85rem 1rem;
  outline: none;
  font-size: 0.88rem;
}
.pt-chat-foot button {
  background: none;
  border: 0;
  color: var(--primary);
  padding: 0 1rem;
  cursor: pointer;
  font-size: 1.15rem;
}

@keyframes pt-pop {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: none; }
}

/* Cart drawer */
.pt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,18,.45);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.pt-overlay.is-on { opacity: 1; pointer-events: auto; }
.pt-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(400px, 100%);
  background: #fff;
  z-index: 1091;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}
.pt-drawer.is-open { transform: none; }
[dir="rtl"] .pt-drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .pt-drawer.is-open { transform: none; }
.pt-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 750;
}
.pt-drawer-body {
  padding: 1.5rem 1.2rem;
  color: var(--muted);
  flex: 1;
}

/* Auth modal */
.pt-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 1rem;
}
.pt-modal.is-open { display: grid; }
.pt-modal-card {
  background: #fff;
  width: min(420px, 100%);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}
.pt-modal-card h2 { font-family: var(--display); margin-bottom: 0.4rem; }
.pt-modal-card p { color: var(--muted); font-size: 0.9rem; }
.pt-field {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0.85rem 0 0.3rem;
}
.pt-modal-card input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  outline: none;
}
.pt-modal-card input:focus { border-color: var(--primary); }
.pt-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: 0;
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Toast */
.pt-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 650;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.pt-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
.pt-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1070;
}
.pt-mobile.is-open { display: block; }
.pt-mobile-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(340px, 86vw);
  background: #fff;
  padding: 1.1rem 1.2rem 2rem;
  overflow: auto;
  animation: pt-slide .25s ease;
}
[dir="rtl"] .pt-mobile-panel { left: auto; right: 0; }
.pt-mobile-panel a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 650;
  font-size: 1rem;
}
@keyframes pt-slide {
  from { transform: translateX(-18px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* Reveal */
.pt-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: pt-fadeup .7s ease forwards;
}
.pt-d1 { animation-delay: .1s; }
.pt-d2 { animation-delay: .18s; }
.pt-d3 { animation-delay: .26s; }
.pt-d4 { animation-delay: .34s; }

@keyframes pt-fadeup {
  to { opacity: 1; transform: none; }
}

/* Image placeholder fallback */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: #e6e6e8;
  border: 1px dashed #cfcfd4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8a8a90;
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.image-placeholder small { display: block; margin-top: 0.25rem; opacity: .8; }

/* RTL extras */
[dir="rtl"] body { font-family: "Noto Sans Arabic", var(--font); }
[dir="rtl"] .pt-hero-dots { transform: translateX(50%); }

/* Responsive */
@media (max-width: 1199.98px) {
  .pt-product h3 { min-height: 2.4em; }
  .pt-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .pt-header-main {
    grid-template-columns: auto 1fr auto;
  }
  .pt-header-main .pt-search { display: none; }
  .pt-search-mobile { display: block !important; margin: 0 0 0.75rem; }
  .pt-logo-meta { display: none; }
  .pt-nav, .pt-topbar-left span.pt-hide-md { display: none; }
  .pt-menu-toggle { display: inline-flex; }
  .pt-icon-btn span.lbl { display: none; }
  .pt-hero-slide { grid-template-columns: 1fr; min-height: auto; }
  .pt-hero-media { min-height: 280px; }
  .pt-hero-copy::after { display: none; }
  .pt-panels {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .pt-panel,
  .pt-panels:hover .pt-panel,
  .pt-panels:hover .pt-panel:hover,
  .pt-panels.has-open .pt-panel,
  .pt-panels.has-open .pt-panel.is-open {
    flex-grow: 0;
    min-height: 280px;
  }
  .pt-panel h3 { white-space: normal; }
  .pt-why-grid { grid-template-columns: 1fr 1fr; }
  .pt-cat-card { aspect-ratio: 4 / 5; }
  .pt-seo-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 767.98px) {
  .pt-topbar { font-size: 0.72rem; }
  .pt-hero h1 { max-width: none; }
  .pt-why-grid { grid-template-columns: 1fr; }
  .pt-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pt-footer-bottom { flex-direction: column; }
  .pt-wa { left: 0.85rem; bottom: 0.85rem; width: 52px; height: 52px; }
  .pt-chat-toggle {
    right: 0.85rem;
    bottom: 0.85rem;
    height: 50px;
    padding: 0 0.9rem 0 0.4rem;
    font-size: 0.78rem;
    gap: 0.5rem;
  }
  .pt-chat-toggle .ico { width: 36px; height: 36px; font-size: 1rem; }
  .pt-chat { right: 0.85rem; bottom: 4.8rem; }
}

@media (max-width: 575.98px) {
  .pt-wrap { width: min(100% - 1.25rem, var(--container)); }
  .pt-hero-copy { padding: 2rem 1.25rem 2.2rem; }
  .pt-hero-arrow { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pt-reveal,
  .pt-hero-track,
  .pt-product,
  .pt-cat-card img,
  .pt-wa {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
