/*
Theme Name: PoultryGear
Description: Bilingual Arabic/English WooCommerce theme
Version: 1778732620
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cairo:wght@400;500;600;700;800&display=swap');

/* ── RESET & VARIABLES ─────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --green:#1a5c2a;--green2:#2d7a40;--green3:#3d9e55;
  --gold:#c8961a;--gold2:#e0ab2a;
  --dark:#0d1f12;--light:#f5f9f5;--white:#fff;
  --gray:#6b7280;--border:#e5e7eb;
  --shadow:0 4px 24px rgba(26,92,42,.10);
  --radius:14px;
}

html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:var(--white);color:#1a2e1e;
  line-height:1.6;overflow-x:hidden;
}

/* ── ARABIC / RTL BASE ─────────────────────────────────────── */
[dir="rtl"],
[dir="rtl"] body,
html[dir="rtl"]{
  font-family:'Cairo',sans-serif !important;
  direction:rtl;
  text-align:right;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ── TOPBAR ────────────────────────────────────────────────── */
.pg-topbar{
  background:var(--dark);color:#acd4b2;
  font-size:13px;padding:8px 0;
}
.tb-inner{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;
  justify-content:space-between;flex-wrap:wrap;gap:6px;
}
[dir="rtl"] .tb-inner{flex-direction:row-reverse}
.pg-topbar a{color:var(--gold2)}

/* ── NAVBAR ────────────────────────────────────────────────── */
.pg-nav{
  background:var(--white);border-bottom:2px solid var(--border);
  position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,.07);
}
.nav-inner{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;
  justify-content:space-between;height:70px;gap:20px;
}
[dir="rtl"] .nav-inner{flex-direction:row-reverse}

.pg-logo{
  display:flex;align-items:center;gap:10px;
  font-weight:800;font-size:20px;color:var(--green);
}
[dir="rtl"] .pg-logo{flex-direction:row-reverse}

.pg-logo .logo-icon{
  width:42px;height:42px;
  background:linear-gradient(135deg,var(--green),var(--green3));
  border-radius:10px;display:flex;align-items:center;
  justify-content:center;font-size:22px;
  box-shadow:0 3px 10px rgba(26,92,42,.3);
  flex-shrink:0;
}
.logo-sub{font-size:11px;color:var(--gray);font-weight:400}

.pg-nav-links{
  display:flex;align-items:center;gap:4px;
}
[dir="rtl"] .pg-nav-links{flex-direction:row-reverse}

.pg-nav-links a{
  padding:8px 14px;border-radius:8px;
  font-size:14px;font-weight:500;color:#374151;transition:all .2s;
}
.pg-nav-links a:hover,.pg-nav-links a.active{
  background:var(--light);color:var(--green);
}

.pg-nav-right{
  display:flex;align-items:center;gap:10px;
}
[dir="rtl"] .pg-nav-right{flex-direction:row-reverse}

.pg-lang-btn{
  background:var(--light);border:1px solid var(--border);
  border-radius:8px;padding:6px 14px;font-size:13px;
  cursor:pointer;font-weight:600;transition:all .2s;
  font-family:inherit;
}
.pg-lang-btn:hover{background:var(--green);color:white;border-color:var(--green)}

.pg-cart-btn{
  background:var(--green);color:white;border-radius:10px;
  padding:8px 18px;font-size:14px;font-weight:600;
  display:flex;align-items:center;gap:6px;transition:all .2s;
}
.pg-cart-btn:hover{background:var(--green2);transform:translateY(-1px)}
.cart-count{
  background:var(--gold);color:white;border-radius:50%;
  width:20px;height:20px;font-size:11px;
  display:inline-flex;align-items:center;justify-content:center;font-weight:700;
}

/* ── HERO ─────────────────────────────────────────────────── */
/* ── HERO ────────────────────────────────────────────── */
.pg-hero{
  min-height:92vh;display:flex;align-items:center;
  background:radial-gradient(ellipse 120% 100% at 60% 0%,#052e16 0%,#071a0d 45%,#030f07 100%);
  position:relative;overflow:hidden;padding:80px 0 60px;
}
/* Layered background effects */
.pg-hero::before{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:48px 48px;pointer-events:none;
}
.pg-hero::after{
  content:"";position:absolute;
  width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(21,128,61,.15) 0%,transparent 70%);
  top:-200px;right:-100px;pointer-events:none;
}
/* Floating orb */
.pg-hero .hero-orb{
  position:absolute;width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,150,26,.08) 0%,transparent 70%);
  bottom:-100px;left:5%;pointer-events:none;
}
.hero-inner{
  max-width:1200px;margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:1fr 480px;
  grid-template-areas:"content card";
  gap:64px;align-items:center;position:relative;z-index:1;
}
[dir="rtl"] .hero-inner{grid-template-columns:480px 1fr;grid-template-areas:"card content";direction:ltr}
.hero-content{grid-area:content}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(200,150,26,.1);border:1px solid rgba(200,150,26,.25);
  color:#f6c343;padding:7px 16px;border-radius:99px;
  font-size:12.5px;font-weight:700;margin-bottom:22px;
  letter-spacing:.4px;text-transform:uppercase;
  backdrop-filter:blur(8px);
}
[dir="rtl"] .hero-badge{letter-spacing:0;text-transform:none;font-family:"Cairo",sans-serif;font-size:13px}
/* Title */
.hero-title{
  font-size:clamp(36px,4.5vw,64px);font-weight:900;
  color:#fff;line-height:1.1;margin-bottom:20px;
  letter-spacing:-1.5px;
}
[dir="rtl"] .hero-title{text-align:right;letter-spacing:0;font-family:"Cairo",sans-serif;line-height:1.2}
.hero-title span{
  background:linear-gradient(135deg,#f6c343,#fbbf24,#f59e0b);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  display:inline-block;
}
.hero-title .line2{
  display:block;font-size:.75em;font-weight:700;
  color:rgba(255,255,255,.7);letter-spacing:-.5px;margin-top:4px;
}
[dir="rtl"] .hero-title .line2{letter-spacing:0}
/* Subtitle */
.hero-sub{
  color:rgba(255,255,255,.55);font-size:16px;
  margin-bottom:36px;line-height:1.75;max-width:480px;
}
[dir="rtl"] .hero-sub{text-align:right;font-family:"Cairo",sans-serif;max-width:100%}
/* Buttons */
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}
[dir="rtl"] .hero-btns{flex-direction:row-reverse}
/* Stats */
.hero-stats{
  display:flex;gap:0;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;padding:20px 28px;
  backdrop-filter:blur(12px);
}
.hero-stat{
  flex:1;text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
  padding:0 20px;
}
[dir="rtl"] .hero-stat{border-right:none;border-left:1px solid rgba(255,255,255,.08)}
.hero-stat:last-child{border-right:none}
[dir="rtl"] .hero-stat:last-child{border-left:none}
.hero-stat:first-child{padding-left:0}
[dir="rtl"] .hero-stat:first-child{padding-left:20px;padding-right:0}
.hero-stat:last-child{padding-right:0}
[dir="rtl"] .hero-stat:last-child{padding-right:20px;padding-left:0}
.hero-stat .val{font-size:26px;font-weight:900;color:#f6c343;letter-spacing:-1px;line-height:1}
.hero-stat .lbl{font-size:11px;color:rgba(255,255,255,.45);margin-top:5px;font-weight:600;letter-spacing:.3px;text-transform:uppercase}
[dir="rtl"] .hero-stat .lbl{letter-spacing:0;text-transform:none;font-family:"Cairo",sans-serif;font-size:12px}
/* Right visual panel */
/* Product card in hero */
.hero-visual{grid-area:card;display:flex;align-items:stretch}
.hero-product-card{
  position:relative;overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;padding:28px;
  width:100%;backdrop-filter:blur(16px);
  display:flex;flex-direction:column;gap:0;
  transition:transform .3s,box-shadow .3s;
}
.hero-product-card:hover{transform:translateY(-4px);box-shadow:0 32px 80px rgba(0,0,0,.4),0 0 0 1px rgba(246,195,67,.2)}
.hpc-glow{position:absolute;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(21,128,61,.2),transparent 70%);top:-80px;right:-80px;pointer-events:none}
.hpc-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
[dir=rtl] .hpc-top{flex-direction:row-reverse}
.hpc-badge{font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;color:#f6c343;background:rgba(246,195,67,.1);border:1px solid rgba(246,195,67,.25);padding:5px 12px;border-radius:99px}
[dir=rtl] .hpc-badge{letter-spacing:0;text-transform:none;font-family:"Cairo",sans-serif;font-size:12px}
.hpc-new{font-size:10.5px;font-weight:700;color:#4ade80;background:rgba(74,222,128,.1);border:1px solid rgba(74,222,128,.2);padding:4px 10px;border-radius:99px;letter-spacing:.3px}
[dir=rtl] .hpc-new{letter-spacing:0;font-family:"Cairo",sans-serif}
.hpc-img{height:200px;display:flex;align-items:center;justify-content:center;margin-bottom:22px;
  background:rgba(255,255,255,.03);border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.06)}
.hpc-img img{width:100%;height:100%;object-fit:contain;padding:12px}
.hpc-emoji{font-size:80px;line-height:1}
.hpc-cat{font-size:11px;font-weight:700;color:rgba(255,255,255,.4);letter-spacing:.5px;text-transform:uppercase;margin-bottom:8px}
[dir=rtl] .hpc-cat{letter-spacing:0;text-transform:none;font-family:"Cairo",sans-serif;text-align:right}
.hpc-name{font-size:18px;font-weight:800;color:#fff;line-height:1.3;margin-bottom:14px}
[dir=rtl] .hpc-name{font-family:"Cairo",sans-serif;text-align:right}
.hpc-price-row{display:flex;align-items:baseline;gap:10px;margin-bottom:20px}
[dir=rtl] .hpc-price-row{flex-direction:row-reverse}
.hpc-price{font-size:28px;font-weight:900;color:#f6c343;letter-spacing:-1px;line-height:1}
.hpc-price small{font-size:14px;font-weight:600;color:rgba(255,255,255,.5);letter-spacing:0}
.hpc-old{font-size:16px;color:rgba(255,255,255,.3);text-decoration:line-through}
.hpc-actions{display:flex;gap:10px;margin-top:auto}
[dir=rtl] .hpc-actions{flex-direction:row-reverse}
.hpc-btn-cart{flex:1;padding:13px 18px;background:linear-gradient(135deg,#15803d,#16a34a);color:#fff;border:none;border-radius:14px;font-size:14px;font-weight:700;text-align:center;cursor:pointer;text-decoration:none;transition:all .25s;display:flex;align-items:center;justify-content:center;gap:6px;font-family:"Cairo",sans-serif}
.hpc-btn-cart:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(21,128,61,.5);color:#fff}
.hpc-btn-detail{padding:13px 16px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.7);border-radius:14px;font-size:13.5px;font-weight:600;text-decoration:none;transition:all .25s;display:flex;align-items:center;justify-content:center;font-family:"Cairo",sans-serif;white-space:nowrap}
.hpc-btn-detail:hover{background:rgba(255,255,255,.12);color:#fff}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.pg-trust{
  background:linear-gradient(90deg,var(--green),var(--green2));
  padding:20px 0;
}
.trust-inner{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-around;
  gap:20px;flex-wrap:wrap;
}
[dir="rtl"] .trust-inner{flex-direction:row-reverse}
.trust-item{display:flex;align-items:center;gap:10px;color:white;font-size:14px;font-weight:500}
[dir="rtl"] .trust-item{flex-direction:row-reverse}

/* ── SECTION COMMONS ───────────────────────────────────────── */
.pg-section{padding:70px 0}
.pg-section.bg-light{background:var(--light)}
.section-inner{max-width:1200px;margin:0 auto;padding:0 20px}
.section-head{text-align:center;margin-bottom:50px}
[dir="rtl"] .section-head{text-align:center}
.section-head h2{
  font-size:clamp(26px,3vw,36px);font-weight:800;
  color:var(--dark);margin-bottom:10px;
}
.section-head p{color:var(--gray);font-size:16px}
.section-head .tag{
  display:inline-block;background:rgba(26,92,42,.1);
  color:var(--green);padding:4px 14px;border-radius:50px;
  font-size:13px;font-weight:600;margin-bottom:12px;
}

/* ── CATEGORIES ────────────────────────────────────────────── */
.cats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.cat-card{
  background:white;border:2px solid var(--border);
  border-radius:var(--radius);padding:30px 20px;
  text-align:center;cursor:pointer;transition:all .3s;
  position:relative;overflow:hidden;display:block;
}
.cat-card::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,var(--green),var(--green3));
  opacity:0;transition:opacity .3s;
}
.cat-card:hover{border-color:var(--green);transform:translateY(-5px);box-shadow:var(--shadow)}
.cat-card:hover::before{opacity:1}
.cat-card:hover .cat-icon,
.cat-card:hover h3,
.cat-card:hover h3 .ar-name,
.cat-card:hover p{color:white !important;position:relative;z-index:1}
.cat-icon{font-size:44px;margin-bottom:14px;display:block;position:relative;z-index:1}
.cat-card h3{
  font-size:16px;font-weight:700;color:var(--dark);
  margin-bottom:6px;position:relative;z-index:1;
}
.cat-card h3 .ar-name{
  display:block;font-family:'Cairo',sans-serif;
  font-size:13px;color:var(--gray);margin-top:2px;
}
.cat-card p{font-size:13px;color:var(--gray);position:relative;z-index:1}

/* ── PRODUCTS GRID ─────────────────────────────────────────── */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product-card{
  background:white;border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:all .3s;display:flex;flex-direction:column;
  position:relative;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 32px rgba(26,92,42,.15);
  border-color:var(--green);
}
.prod-badge{
  position:absolute;top:12px;
  background:var(--gold);color:white;
  font-size:11px;font-weight:700;padding:3px 10px;
  border-radius:50px;z-index:2;
  left:12px;
}
[dir="rtl"] .prod-badge{left:auto;right:12px}

.prod-img{
  background:linear-gradient(135deg,#e8f5ea,#c8e6cc);
  padding:30px;text-align:center;font-size:64px;
  min-height:160px;display:flex;align-items:center;justify-content:center;
}
.prod-body{padding:18px;flex:1;display:flex;flex-direction:column}
[dir="rtl"] .prod-body{text-align:right}

.prod-cat{
  font-size:11px;font-weight:600;color:var(--green);
  text-transform:uppercase;letter-spacing:.5px;margin-bottom:6px;
}
.prod-name{font-size:15px;font-weight:700;color:var(--dark);margin-bottom:4px;line-height:1.3}
.prod-name-ar{font-size:13px;color:var(--gray);font-family:'Cairo',sans-serif;margin-bottom:10px}

.prod-price{
  display:flex;align-items:baseline;gap:6px;
  margin-top:auto;margin-bottom:14px;
}
[dir="rtl"] .prod-price{flex-direction:row-reverse;justify-content:flex-end}
.prod-price .cur{font-size:20px;font-weight:800;color:var(--green)}
.prod-price .unit{font-size:13px;color:var(--gray)}
.prod-price .old{font-size:14px;color:#ccc;text-decoration:line-through}

.prod-atc{
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:white;border:none;border-radius:9px;padding:11px;
  font-size:14px;font-weight:600;cursor:pointer;width:100%;
  transition:all .2s;display:flex;align-items:center;
  justify-content:center;gap:6px;font-family:inherit;
}
.prod-atc:hover{background:linear-gradient(135deg,var(--green2),var(--green3));transform:translateY(-1px)}

/* ── PROMO BANNERS ─────────────────────────────────────────── */
.pg-promo{padding:40px 0}
.promo-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
[dir="rtl"] .promo-grid{direction:rtl}
.promo-card{
  border-radius:18px;padding:36px 30px;
  position:relative;overflow:hidden;color:white;
}
.promo-card.green{background:linear-gradient(135deg,var(--green),var(--green3))}
.promo-card.gold{background:linear-gradient(135deg,#8b6914,var(--gold))}
.promo-card .tag{
  background:rgba(255,255,255,.2);display:inline-block;
  padding:4px 12px;border-radius:50px;font-size:12px;
  font-weight:600;margin-bottom:14px;
}
.promo-card h3{font-size:22px;font-weight:800;margin-bottom:10px;line-height:1.25}
[dir="rtl"] .promo-card h3{text-align:right}
.promo-card p{font-size:14px;opacity:.85;margin-bottom:20px}
[dir="rtl"] .promo-card p{text-align:right}
.promo-card a{
  background:white;color:var(--dark);padding:10px 22px;
  border-radius:8px;font-weight:700;font-size:14px;
  display:inline-block;transition:all .2s;
}
.promo-card a:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(0,0,0,.2)}
.promo-emoji{
  position:absolute;right:24px;bottom:24px;
  font-size:72px;opacity:.2;pointer-events:none;
}
[dir="rtl"] .promo-emoji{right:auto;left:24px}

/* ── WHY US ────────────────────────────────────────────────── */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.why-card{
  background:white;border-radius:var(--radius);padding:28px 20px;
  text-align:center;border:1px solid var(--border);transition:all .3s;
}
.why-card:hover{border-color:var(--green);box-shadow:var(--shadow);transform:translateY(-4px)}
.why-icon{
  width:60px;height:60px;
  background:linear-gradient(135deg,#e8f5ea,#c8e6cc);
  border-radius:14px;display:flex;align-items:center;
  justify-content:center;font-size:28px;margin:0 auto 16px;
}
.why-card h4{font-size:16px;font-weight:700;color:var(--dark);margin-bottom:8px}
.why-card p{font-size:13px;color:var(--gray);line-height:1.6}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.pg-newsletter{
  background:linear-gradient(135deg,var(--dark),#1a3d22);
  padding:60px 0;text-align:center;color:white;
}
.pg-newsletter h2{font-size:28px;font-weight:800;margin-bottom:10px}
.pg-newsletter p{color:#9cbfa3;margin-bottom:28px}
.nl-form{
  display:flex;gap:10px;max-width:460px;margin:0 auto;
}
[dir="rtl"] .nl-form{flex-direction:row-reverse}
.nl-form input{
  flex:1;padding:14px 18px;border-radius:10px;border:none;
  font-size:14px;outline:none;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);color:white;
  font-family:inherit;
}
.nl-form input::placeholder{color:rgba(255,255,255,.5)}
.nl-form button{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--dark);border:none;padding:14px 22px;
  border-radius:10px;font-weight:700;cursor:pointer;
  white-space:nowrap;font-family:inherit;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.pg-footer{background:var(--dark);color:#9cbfa3;padding:60px 0 30px}
.footer-grid{
  max-width:1200px;margin:0 auto;padding:0 20px;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;margin-bottom:40px;
}
[dir="rtl"] .footer-grid{direction:rtl;text-align:right}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:16px}
[dir="rtl"] .footer-logo{flex-direction:row-reverse}
.footer-logo .li{
  width:40px;height:40px;
  background:linear-gradient(135deg,var(--green),var(--green3));
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  font-size:20px;flex-shrink:0;
}
.footer-logo strong{color:white;font-size:18px}
.footer-logo span{color:#9cbfa3;font-size:11px;font-family:'Cairo',sans-serif;display:block}
.footer-desc{font-size:13px;line-height:1.7;margin-bottom:18px}
.footer-social{display:flex;gap:10px}
[dir="rtl"] .footer-social{flex-direction:row-reverse}
.footer-social a{
  width:36px;height:36px;background:rgba(255,255,255,.07);
  border-radius:8px;display:flex;align-items:center;justify-content:center;
  font-size:16px;transition:all .2s;
}
.footer-social a:hover{background:var(--green)}
.footer-col h4{color:white;font-size:15px;font-weight:700;margin-bottom:16px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{font-size:13px;color:#9cbfa3;transition:color .2s}
.footer-col ul li a:hover{color:var(--gold2)}
.footer-bottom{
  max-width:1200px;margin:0 auto;padding:20px 20px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:10px;font-size:12px;
}
[dir="rtl"] .footer-bottom{flex-direction:row-reverse}

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.wa-fab{
  position:fixed;bottom:24px;right:24px;
  width:56px;height:56px;background:#25D366;color:white;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:26px;box-shadow:0 4px 16px rgba(37,211,102,.4);
  z-index:9999;transition:all .3s;border:none;cursor:pointer;
  text-decoration:none;
}
.wa-fab:hover{transform:scale(1.1);box-shadow:0 8px 24px rgba(37,211,102,.5)}
[dir="rtl"] .wa-fab{right:auto;left:24px}

/* ── WOO ──────────────────────────────────────────────── */
.pg-woo-wrap{padding:40px 20px}
[dir="rtl"] .pg-woo-wrap{direction:rtl;text-align:right}
[dir="rtl"] .woocommerce ul.products,[dir="rtl"] .woocommerce-page ul.products{direction:rtl}
[dir="rtl"] .woocommerce .woocommerce-ordering,[dir="rtl"] .woocommerce-page .woocommerce-ordering{float:left}
[dir="rtl"] .woocommerce .woocommerce-result-count,[dir="rtl"] .woocommerce-page .woocommerce-result-count{float:right}
[dir="rtl"] .woocommerce form .form-row label{display:block;text-align:right}
[dir="rtl"] .woocommerce-checkout #payment{direction:rtl}
[dir="rtl"] .woocommerce table.shop_table{direction:rtl}

/* ── RESPONSIVE ───────────────────────────────────────────── */
/* ── TABLET (900px) ─────────────────────────────── */
@media(max-width:900px){
  /* Hero: stack vertically */
  .pg-hero{min-height:auto;padding:52px 0 44px}
  .hero-inner{
    grid-template-columns:1fr;
    grid-template-areas:"content" "card";
    gap:36px;
  }
  [dir=rtl] .hero-inner{
    grid-template-columns:1fr;
    grid-template-areas:"content" "card";
  }
  .hero-content{grid-area:content;text-align:center}
  [dir=rtl] .hero-content{text-align:right}
  .hero-visual{grid-area:card;justify-content:center}
  .hero-badge{justify-content:center}
  [dir=rtl] .hero-badge{justify-content:flex-end}
  .hero-title{text-align:center}
  [dir=rtl] .hero-title{text-align:right}
  .hero-sub{text-align:center;max-width:560px;margin-left:auto;margin-right:auto}
  [dir=rtl] .hero-sub{text-align:right;margin-left:0;margin-right:0}
  .hero-btns{justify-content:center}
  [dir=rtl] .hero-btns{justify-content:flex-end}
  .hero-stats{max-width:500px;margin:0 auto}
  /* Product card: horizontal on tablet */
  .hero-product-card{
    max-width:560px;width:100%;
    flex-direction:row;align-items:stretch;
    padding:0;overflow:hidden;
  }
  .hpc-glow{display:none}
  .hpc-top{
    position:absolute;top:16px;left:16px;right:16px;
    margin-bottom:0;
  }
  .hero-product-card{position:relative}
  .hpc-img{
    width:200px;flex-shrink:0;
    height:auto;min-height:240px;
    margin-bottom:0;
    border-radius:22px 0 0 22px;
    border-right:none;
  }
  [dir=rtl] .hpc-img{border-radius:0 22px 22px 0;border-right:1px solid rgba(255,255,255,.06);border-left:none}
  .hpc-body{
    flex:1;padding:52px 20px 20px 20px;
    display:flex;flex-direction:column;justify-content:space-between;
  }
  [dir=rtl] .hpc-body{padding:52px 20px 20px 20px}
  .hpc-actions{flex-direction:column;gap:8px}
  .hpc-btn-cart,.hpc-btn-detail{justify-content:center}
  /* Other sections */
  .cats-grid{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .promo-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .pg-nav-links{display:none}
}
/* ── MOBILE (600px) ─────────────────────────────── */
@media(max-width:600px){
  .pg-hero{padding:36px 0 28px;min-height:auto}
  .hero-inner{gap:24px}
  .hero-badge{font-size:11px;padding:5px 12px}
  .hero-title{font-size:clamp(26px,7.5vw,38px);letter-spacing:-.5px}
  .hero-sub{font-size:13.5px;line-height:1.6;margin-bottom:20px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .hero-btns{gap:10px;margin-bottom:24px}
  .hero-btns a{flex:1;text-align:center;padding:12px 14px;font-size:13.5px;justify-content:center}
  .hero-stats{
    display:grid;grid-template-columns:1fr 1fr;
    gap:1px;background:rgba(255,255,255,.08);
    border-radius:14px;padding:0;overflow:hidden;
  }
  .hero-stat{border:none!important;padding:12px 8px;background:rgba(255,255,255,.04)}
  .hero-stat .val{font-size:19px}
  .hero-stat .lbl{font-size:10px}
  /* Product card: single column on mobile */
  .hero-product-card{
    flex-direction:column;padding:18px;
    max-width:100%;
  }
  .hpc-top{position:static;margin-bottom:14px}
  .hpc-img{
    width:100%;height:150px;min-height:0;
    border-radius:14px;
    border-right:1px solid rgba(255,255,255,.06);
    margin-bottom:16px;
  }
  .hpc-body{padding:0}
  .hpc-emoji{font-size:56px}
  .hpc-name{font-size:15px;margin-bottom:10px}
  .hpc-price{font-size:22px}
  .hpc-actions{flex-direction:column;gap:8px}
  .hpc-btn-cart,.hpc-btn-detail{width:100%;justify-content:center;padding:12px}
  /* Other sections */
  .cats-grid{grid-template-columns:1fr 1fr}
  .products-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .trust-inner{flex-wrap:wrap;justify-content:center}
  .nl-form,[dir="rtl"] .nl-form{flex-direction:column}
}
