/* =====================================================
   Pehlwan Rewari — Main Stylesheet
   Brand: Orange + Deep Green + Gold + Cream
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --pr-orange:       #E8640A;
  --pr-orange-light: #F5853A;
  --pr-orange-dark:  #C44F00;
  --pr-green:        #1A4A1A;
  --pr-green-mid:    #2D6E2D;
  --pr-green-light:  #3D8B3D;
  --pr-gold:         #C9A227;
  --pr-gold-light:   #E8C14A;
  --pr-cream:        #FBF6EC;
  --pr-cream-dark:   #F2E8D5;
  --pr-warm-white:   #FFFBF5;
  --pr-brown:        #5C3B1A;
  --pr-text-dark:    #1A1108;
  --pr-text-mid:     #4A3520;
  --pr-text-light:   #7A6550;
  --pr-border:       #E8D9C0;
  --pr-shadow:       rgba(200, 130, 40, 0.15);
  --pr-shadow-deep:  rgba(26, 74, 26, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
  --font-urdu:    'Amiri', serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px var(--pr-shadow);
  --shadow-hover: 0 12px 40px rgba(200, 130, 40, 0.25);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--pr-text-dark);
  background: var(--pr-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--pr-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pr-orange-dark); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pr-green);
  line-height: 1.25;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--pr-green);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--pr-text-light);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pr-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pr-gold);
  border-radius: 2px;
}

.text-urdu {
  font-family: var(--font-urdu);
  direction: rtl;
}

/* ---- Page Loader ---- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--pr-green);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }
.loader-ur {
  font-family: var(--font-urdu);
  font-size: 2rem;
  color: var(--pr-gold);
  display: block;
  margin-bottom: 1.5rem;
  direction: rtl;
}
.loader-dots { display: flex; justify-content: center; gap: 8px; }
.loader-dots span {
  width: 10px; height: 10px;
  background: var(--pr-orange);
  border-radius: 50%;
  animation: loaderBounce 1.2s infinite ease-in-out;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--pr-gold); }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Toast Notifications ---- */
.pr-toast {
  background: var(--pr-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px var(--pr-shadow-deep);
  min-width: 280px;
  border-left: 4px solid var(--pr-gold);
}
.pr-toast.toast-success { border-left-color: #28a745; }
.pr-toast.toast-error   { border-left-color: #dc3545; border-left-color: var(--pr-orange); }
.pr-toast.toast-info    { border-left-color: #17a2b8; }
.pr-toast .toast-header { background: transparent; color: var(--pr-gold); border-bottom: 1px solid rgba(255,255,255,0.1); }
.pr-toast .toast-body   { font-size: 0.9rem; }

/* ---- Top Bar ---- */
.topbar {
  background: var(--pr-green);
  padding: 0.5rem 0;
  font-size: 0.82rem;
}
.topbar-link {
  color: var(--pr-cream-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--pr-gold); }
.topbar-link i { color: var(--pr-gold); font-size: 0.75rem; }
.topbar-text { color: var(--pr-cream-dark); display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-text i { color: var(--pr-orange-light); }
.topbar-divider { color: rgba(255,255,255,0.2); }

/* ---- Navbar ---- */
.navbar-main {
  background: var(--pr-warm-white);
  box-shadow: 0 2px 20px var(--pr-shadow);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-main.scrolled {
  background: var(--pr-green);
  box-shadow: 0 4px 30px var(--pr-shadow-deep);
}

.navbar-main.scrolled .nav-link,
.navbar-main.scrolled .nav-icon-btn { color: var(--pr-cream) !important; }
.navbar-main.scrolled .nav-link:hover { color: var(--pr-gold) !important; }
.navbar-main.scrolled .brand-en { color: var(--pr-gold) !important; }
.navbar-main.scrolled .brand-ur { color: var(--pr-cream) !important; }
.navbar-main.scrolled .search-input { background: rgba(255,255,255,0.1); color: #fff; }
.navbar-main.scrolled .search-input::placeholder { color: rgba(255,255,255,0.6); }

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pr-orange), var(--pr-orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(232, 100, 10, 0.4);
  flex-shrink: 0;
}
.brand-emblem-lg { width: 56px; height: 56px; }
.brand-icon { color: #fff; font-size: 1.2rem; }

.brand-text { display: flex; flex-direction: column; }
.brand-en {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pr-green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-ur {
  font-family: var(--font-urdu);
  font-size: 0.9rem;
  color: var(--pr-orange);
  line-height: 1.2;
  direction: rtl;
}

/* Nav Links */
.navbar-main .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pr-text-dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--pr-orange);
  background: rgba(232, 100, 10, 0.06);
}

.dropdown-menu-categories {
  border: none;
  box-shadow: 0 8px 32px var(--pr-shadow);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: var(--pr-warm-white);
  border-top: 3px solid var(--pr-orange);
  min-width: 240px;
}
.dropdown-menu-categories .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pr-text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}
.dropdown-menu-categories .dropdown-item i { color: var(--pr-green-light); width: 16px; }
.dropdown-menu-categories .dropdown-item:hover { background: var(--pr-cream); color: var(--pr-orange); }
.dropdown-menu-categories .dropdown-item small { margin-left: auto; color: var(--pr-text-light); font-family: var(--font-urdu); }

.dropdown-user {
  border: none;
  box-shadow: 0 8px 32px var(--pr-shadow);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 200px;
}
.dropdown-user .dropdown-header { padding: 0.5rem 0.75rem; color: var(--pr-green); }
.dropdown-user .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Search */
.search-form { position: relative; }
.search-wrapper { display: flex; align-items: center; }
.search-input {
  background: var(--pr-cream);
  border: 2px solid var(--pr-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  width: 200px;
  transition: var(--transition);
  outline: none;
}
.search-input:focus { border-color: var(--pr-orange); width: 260px; box-shadow: 0 0 0 4px rgba(232,100,10,0.1); }
.search-btn {
  background: var(--pr-orange);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  margin-left: -48px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}
.search-btn:hover { background: var(--pr-orange-dark); transform: scale(1.05); }

/* Nav Icon Buttons */
.nav-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pr-text-dark);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.nav-icon-btn:hover {
  background: var(--pr-cream);
  color: var(--pr-orange);
  border-color: var(--pr-border);
}

.badge-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--pr-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
  line-height: 1;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
  background: none;
  cursor: pointer;
}
.toggler-icon { display: flex; flex-direction: column; gap: 4px; }
.toggler-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pr-green);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-pr-primary {
  background: linear-gradient(135deg, var(--pr-orange), var(--pr-orange-dark));
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(232, 100, 10, 0.35);
  cursor: pointer;
}
.btn-pr-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 10, 0.45);
  color: #fff;
  background: linear-gradient(135deg, var(--pr-orange-light), var(--pr-orange));
}

.btn-pr-green {
  background: linear-gradient(135deg, var(--pr-green), var(--pr-green-mid));
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(26, 74, 26, 0.35);
  cursor: pointer;
}
.btn-pr-green:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 74, 26, 0.45);
}

.btn-pr-outline {
  background: transparent;
  color: var(--pr-green);
  border: 2px solid var(--pr-green);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-pr-outline:hover {
  background: var(--pr-green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pr-gold {
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-light));
  color: var(--pr-green);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}
.btn-pr-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--pr-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pr-orange);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pr-cream);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(60px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { transform: translateX(0); }

.product-action-btn {
  width: 36px; height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--pr-text-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--pr-orange); color: #fff; transform: scale(1.1); }
.product-action-btn.active { background: #e74c3c; color: #fff; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pr-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-badge.badge-bestseller { background: var(--pr-green); }
.product-badge.badge-new { background: var(--pr-gold); color: var(--pr-green); }
.product-badge.badge-wholesale { background: var(--pr-brown); }
.product-badge.badge-sale { background: #e74c3c; }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.75rem;
  color: var(--pr-orange);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pr-green);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; }
.stars i { color: var(--pr-gold); font-size: 0.8rem; }
.rating-count { font-size: 0.78rem; color: var(--pr-text-light); }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 1rem;
}
.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pr-orange);
  font-family: var(--font-display);
}
.price-original {
  font-size: 0.9rem;
  color: var(--pr-text-light);
  text-decoration: line-through;
}
.price-badge {
  background: rgba(232,100,10,0.1);
  color: var(--pr-orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.product-card-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
}
.btn-add-cart {
  flex: 1;
  background: var(--pr-green);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.btn-add-cart:hover { background: var(--pr-green-mid); transform: translateY(-1px); }

.btn-quick-view {
  background: var(--pr-cream);
  color: var(--pr-green);
  border: 1px solid var(--pr-border);
  padding: 0.6rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-quick-view:hover { background: var(--pr-green); color: #fff; border-color: var(--pr-green); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.bg-cream { background: var(--pr-cream); }
.bg-cream-dark { background: var(--pr-cream-dark); }
.bg-green { background: var(--pr-green); }
.bg-warm-white { background: var(--pr-warm-white); }

.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--pr-gold);
}
.divider-leaf::before, .divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pr-gold), transparent);
  max-width: 120px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.pr-breadcrumb {
  background: var(--pr-cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--pr-border);
}
.breadcrumb { margin-bottom: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--pr-text-light); content: "›"; }
.breadcrumb-item a { color: var(--pr-text-light); font-size: 0.85rem; }
.breadcrumb-item a:hover { color: var(--pr-orange); }
.breadcrumb-item.active { color: var(--pr-orange); font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   FORMS
   ============================================================ */
.form-pr .form-control,
.form-pr .form-select {
  border: 2px solid var(--pr-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-size: 0.93rem;
  background: var(--pr-cream);
  color: var(--pr-text-dark);
  transition: var(--transition);
}
.form-pr .form-control:focus,
.form-pr .form-select:focus {
  border-color: var(--pr-orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232,100,10,0.1);
}
.form-pr .form-label { font-weight: 600; color: var(--pr-text-mid); font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-pr .form-text { color: var(--pr-text-light); font-size: 0.8rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { padding: 60px 0; background: var(--pr-cream-dark); }
.newsletter-card {
  background: linear-gradient(135deg, var(--pr-green) 0%, var(--pr-green-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--pr-shadow-deep);
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
}
.newsletter-icon { font-size: 2.5rem; color: var(--pr-gold); margin-bottom: 1rem; }
.newsletter-title { font-family: var(--font-display); color: #fff; font-size: 1.8rem; font-weight: 800; }
.newsletter-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.newsletter-input-group { display: flex; background: #fff; border-radius: 50px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.newsletter-input { flex: 1; border: none; padding: 0.85rem 1.5rem; font-size: 0.95rem; outline: none; background: transparent; }
.newsletter-btn {
  background: var(--pr-orange);
  color: #fff;
  border: none;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--pr-orange-dark); }
.newsletter-note { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--pr-text-dark); color: var(--pr-cream-dark); }
.footer-top { padding: 70px 0 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.footer-logo-inner .brand-en { color: var(--pr-gold) !important; }
.footer-logo-inner .brand-ur { color: var(--pr-cream) !important; }

.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 1rem 0 1.5rem; line-height: 1.6; }

.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--pr-orange); color: #fff; transform: translateY(-2px); }
.social-btn.social-whatsapp:hover { background: #25D366; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--pr-gold);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a i { color: var(--pr-gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--pr-gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--pr-gold); }
.contact-icon {
  width: 32px; height: 32px;
  background: rgba(201,162,39,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.trust-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.trust-badge i { color: var(--pr-gold); }

.payment-icons { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.payment-icon { font-size: 0.8rem; display: flex; align-items: center; gap: 0.3rem; }
.payment-icon i { color: var(--pr-gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--pr-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,100,10,0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 500;
  font-size: 0.9rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--pr-orange-dark); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HERO SECTION (Home Page)
   ============================================================ */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--pr-green) 0%, #0F2E0F 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,100,10,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(61,139,61,0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-pattern-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow i { color: var(--pr-orange); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}
.hero-title .highlight {
  color: var(--pr-gold);
  font-style: italic;
  display: block;
}
.hero-title-ur {
  font-family: var(--font-urdu);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--pr-gold);
  display: block;
  direction: rtl;
  margin-bottom: 0.5rem;
}

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.hero-badge i { color: var(--pr-gold); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 2px solid rgba(201,162,39,0.3);
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  background: var(--pr-orange);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 24px rgba(232,100,10,0.4);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}
.hero-floating-badge.badge-since {
  top: 20px; right: -20px;
  background: var(--pr-gold);
  color: var(--pr-green);
  text-align: center;
}
.hero-floating-badge.badge-rating {
  bottom: 30px; left: -20px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.badge-stars { color: var(--pr-gold); font-size: 0.75rem; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip { padding: 1.5rem 0; background: var(--pr-cream-dark); border-bottom: 1px solid var(--pr-border); }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
}
.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pr-orange), var(--pr-orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 0.88rem; color: var(--pr-green); font-weight: 700; }
.feature-text span { font-size: 0.78rem; color: var(--pr-text-light); }

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.about-image-stack { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--pr-shadow);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-card-floating {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--pr-green);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 32px var(--pr-shadow-deep);
}
.about-card-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--pr-gold); line-height: 1; }
.about-card-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--pr-border);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--pr-gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--pr-text-mid); line-height: 1.7; margin-bottom: 1.5rem; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--pr-cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pr-green);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--pr-green); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--pr-text-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--pr-green);
  background: var(--pr-cream);
  font-size: 0.95rem;
  padding: 1.1rem 1.25rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--pr-green);
  color: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.faq-accordion .accordion-body { font-size: 0.92rem; color: var(--pr-text-mid); padding: 1rem 1.25rem; background: #fff; }

/* ============================================================
   CART & CHECKOUT
   ============================================================ */
.cart-item-card {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: var(--transition);
}
.cart-item-card:hover { box-shadow: var(--shadow-card); }
.cart-item-img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--pr-cream);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; color: var(--pr-green); margin-bottom: 0.25rem; }
.cart-item-price { color: var(--pr-orange); font-weight: 700; }

.qty-control {
  display: flex;
  align-items: center;
  border: 2px solid var(--pr-border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 32px; height: 32px;
  background: var(--pr-cream);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--pr-green);
}
.qty-btn:hover { background: var(--pr-green); color: #fff; }
.qty-input {
  width: 44px;
  border: none;
  text-align: center;
  font-weight: 700;
  color: var(--pr-text-dark);
  font-size: 0.9rem;
  padding: 0;
  outline: none;
  background: #fff;
}

.order-summary-card {
  background: var(--pr-cream);
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.summary-title { font-family: var(--font-display); color: var(--pr-green); font-size: 1.2rem; margin-bottom: 1.25rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
}
.summary-row.total {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pr-green);
  border-top: 2px solid var(--pr-border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.summary-row.discount { color: #28a745; }
.coupon-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.coupon-input {
  flex: 1;
  border: 2px solid var(--pr-border);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coupon-input:focus { border-color: var(--pr-orange); }
.coupon-btn {
  background: var(--pr-orange);
  color: #fff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
}
.coupon-btn:hover { background: var(--pr-orange-dark); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-step {
  background: #fff;
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pr-border);
}
.step-num {
  width: 36px; height: 36px;
  background: var(--pr-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--pr-green); margin: 0; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pr-green), var(--pr-green-mid));
  padding: 5rem 0;
}
.thankyou-icon {
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pr-gold);
  margin: 0 auto 1.5rem;
  border: 3px solid var(--pr-gold);
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pr-cream) 0%, var(--pr-cream-dark) 100%);
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px var(--pr-shadow);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.auth-card-header {
  background: linear-gradient(135deg, var(--pr-green), var(--pr-green-mid));
  padding: 2.5rem 2rem;
  text-align: center;
}
.auth-card-header .brand-logo { justify-content: center; }
.auth-card-body { padding: 2.5rem 2rem; }
.auth-title { font-family: var(--font-display); color: var(--pr-green); font-size: 1.5rem; margin-bottom: 0.25rem; }
.auth-subtitle { color: var(--pr-text-light); font-size: 0.9rem; margin-bottom: 1.75rem; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--pr-text-light);
  font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--pr-border); }
.auth-footer { text-align: center; padding: 1.25rem 2rem 2rem; font-size: 0.9rem; color: var(--pr-text-light); }

/* ============================================================
   ACCOUNT / MY ORDERS
   ============================================================ */
.account-sidebar {
  background: var(--pr-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.account-nav .nav-link {
  color: var(--pr-text-mid);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.account-nav .nav-link:hover, .account-nav .nav-link.active {
  background: var(--pr-green);
  color: #fff;
}
.account-nav .nav-link i { width: 18px; }

.order-status-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-pending    { background: #fff3cd; color: #856404; }
.status-confirmed  { background: #d1e7dd; color: #0a3622; }
.status-processing { background: #cff4fc; color: #055160; }
.status-shipped    { background: #d3d3f7; color: #2c2c8f; }
.status-delivered  { background: #d1e7dd; color: #0a3622; }
.status-cancelled  { background: #f8d7da; color: #58151c; }
.status-refunded   { background: #e2e3e5; color: #41464b; }

/* ============================================================
   PRODUCT SINGLE
   ============================================================ */
.product-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pr-cream);
  aspect-ratio: 1/1;
}
.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--pr-cream);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--pr-orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-single-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--pr-green); font-weight: 800; }
.product-single-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pr-orange);
  font-family: var(--font-display);
}
.qty-add-section { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.stock-badge { font-size: 0.82rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; }
.in-stock  { background: #d1e7dd; color: #0a3622; }
.low-stock { background: #fff3cd; color: #856404; }
.out-stock { background: #f8d7da; color: #58151c; }

/* ============================================================
   SHOP FILTER SIDEBAR
   ============================================================ */
.shop-filter-sidebar {
  background: var(--pr-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.filter-heading { font-family: var(--font-display); font-size: 1rem; color: var(--pr-green); font-weight: 700; margin-bottom: 1rem; }
.price-range-inputs { display: flex; gap: 0.5rem; align-items: center; }
.price-range-input {
  flex: 1;
  border: 2px solid var(--pr-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  outline: none;
  width: 100%;
}
.price-range-input:focus { border-color: var(--pr-orange); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
  background: var(--pr-green);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-gold);
  flex-shrink: 0;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   MISC
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-state-icon { font-size: 4rem; color: var(--pr-border); margin-bottom: 1rem; }
.empty-state h4 { color: var(--pr-text-mid); margin-bottom: 0.5rem; }
.empty-state p { color: var(--pr-text-light); }

.pr-alert { border-radius: var(--radius-md); border: none; }
.pr-alert-success { background: #d1e7dd; color: #0a3622; }
.pr-alert-danger  { background: #f8d7da; color: #58151c; }
.pr-alert-warning { background: #fff3cd; color: #856404; }
.pr-alert-info    { background: #cff4fc; color: #055160; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 4rem 0; }
  .hero-image-wrapper { margin-top: 3rem; }
  .hero-floating-badge { display: none; }
  .newsletter-card { padding: 2rem; }
  .about-card-floating { position: static; margin-top: 1rem; display: inline-block; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 50px 0; }
  .navbar-main { padding: 0.5rem 0; }
  .search-form { display: none; }
  .newsletter-input-group { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-btn { border-radius: 0 0 var(--radius-md) var(--radius-md); justify-content: center; }
  .footer-top { padding: 3rem 0 2rem; }
  .hero-badges { display: none; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.8rem; }
  .product-card-footer { flex-direction: column; }
  .qty-add-section { flex-direction: column; align-items: flex-start; }
}
