/* ============================================================
   style.css — Fennel Herbs Website
   ============================================================
   هيكل الملف / File Structure:
   01. Legacy Product Card  (قديم - من نسخة سابقة)
   02. About Page           (صفحة من نحن)
   03. Certificates Page    (صفحة الشهادات)
   04. Contact Page         (صفحة تواصل)
   05. Home Page            (الصفحة الرئيسية)
   06. Packaging Page       (صفحة التغليف)
   07. Product Detail Page  (صفحة تفاصيل المنتج)
   08. Products Page        (صفحة المنتجات الكاملة)
   09. Shared / Global      (مشترك - navbar, footer, cards)
   ============================================================ */

/* ============================================================
   01. LEGACY PRODUCT CARD
   كارت منتج من نسخة قديمة — محتفظ بيه للتوافقية
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: .4s cubic-bezier(.2, .9, .4, 1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  height: 100%;
  border: 1px solid rgba(15,90,60,.08)
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(15,90,60,.15);
  border-color: var(--gold)
}
.product-card .img-wrapper {
  overflow: hidden;
  position: relative
}
.product-card .img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition: left .6s
}
.product-card:hover .img-wrapper::after {
  left: 100%
}
.product-img {
  height: 260px;
  object-fit: cover;
  transition: transform .6s;
  width: 100%
}
.product-card:hover .product-img {
  transform: scale(1.05)
}
.product-title {
  color: var(--primary);
  transition: color .3s
}
.product-card:hover .product-title {
  color: var(--gold)
}
.badge-cat {
  background: var(--secondary);
  color: #fff;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: .7rem;
  letter-spacing: .5px
}
.btn-detail {
  background: 0 0;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: .85rem;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 6px
}
.btn-detail:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
  border-color: var(--primary)
}
.product-detail-hero {
  background: linear-gradient(135deg,var(--bg) 0,#f0eadc 100%);
  padding: 140px 0 60px;
  margin-top: -70px
}
.breadcrumb-custom {
  background: 0 0;
  padding: 0;
  margin-bottom: 30px
}
.breadcrumb-custom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s
}
.breadcrumb-custom a:hover {
  color: var(--gold)
}
.breadcrumb-custom .separator {
  margin: 0 10px;
  color: #aaa
}
.product-gallery {
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08)
}
.main-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px
}
.main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition: transform .4s
}
.main-image img:hover {
  transform: scale(1.02)
}
.thumbnail-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.thumbnail-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .3s;
  opacity: .7
}
.thumbnail-img:hover {
  opacity: 1;
  transform: translateY(-3px)
}
.thumbnail-img.active {
  border-color: var(--gold);
  opacity: 1;
  box-shadow: 0 5px 15px rgba(212,175,55,.3)
}
.product-info-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,.05)
}
.product-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px
}
.product-info-card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0
}
.benefits-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.05)
}
.benefits-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 24px
}
.info-grid {
  background: var(--bg);
  border-radius: 20px;
  padding: 5px 0
}
.info-item {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(15,90,60,.1);
  display: flex;
  flex-wrap: wrap
}
.info-item:last-child {
  border-bottom: none
}
.info-label {
  font-weight: 700;
  color: var(--primary);
  width: 120px;
  font-size: .9rem
}
.info-value {
  flex: 1;
  color: #555;
  font-size: .9rem;
  line-height: 1.5
}
.btn-wiki {
  background: linear-gradient(135deg,#369 0,#2c5a82 100%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px
}
.btn-wiki:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51,102,153,.4);
  color: #fff
}
.product-tabs {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.03)
}
.nav-tabs-custom {
  border-bottom: 2px solid rgba(15,90,60,.1);
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}
.nav-tabs-custom .nav-link {
  background: 0 0;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  color: #666;
  border-radius: 50px;
  transition: .3s
}
.nav-tabs-custom .nav-link:hover {
  color: var(--primary);
  background: rgba(15,90,60,.05)
}
.nav-tabs-custom .nav-link.active {
  background: var(--primary);
  color: #fff
}
.tab-content-custom {
  padding: 30px 10px 10px
}
.section-title-decoration {
  position: relative;
  display: inline-block;
  margin-bottom: 40px
}
.section-title-decoration::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.98)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.fade-in {
  animation: .5s forwards fadeIn
}
.slide-up {
  animation: .6s forwards slideUp
}
.product-card-wrapper {
  animation: .5s backwards slideUp
}
.product-card-wrapper:first-child {
  animation-delay: 50ms
}
.product-card-wrapper:nth-child(2) {
  animation-delay: .1s
}
.product-card-wrapper:nth-child(3) {
  animation-delay: .15s
}
.product-card-wrapper:nth-child(4) {
  animation-delay: .2s
}
.product-card-wrapper:nth-child(5) {
  animation-delay: .25s
}
.product-card-wrapper:nth-child(6) {
  animation-delay: .3s
}
.category-hero {
  background: linear-gradient(135deg,var(--primary) 0,#1a6b48 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px
}
.category-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond',serif
}
.category-hero .breadcrumb {
  background: 0 0;
  justify-content: center
}
.category-hero .breadcrumb a {
  color: var(--gold);
  text-decoration: none
}
.no-products {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 28px;
  margin: 40px 0
}
.no-products i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px
}
@media (max-width:768px) {
  .product-info-card h1 {
    font-size: 1.8rem
  }
  .thumbnail-img {
    width: 60px;
    height: 60px
  }
  .info-label {
    width: 100%;
    margin-bottom: 5px
  }
  .info-item {
    flex-direction: column
  }
  .nav-tabs-custom .nav-link {
    padding: 8px 18px;
    font-size: .85rem
  }
  .product-img {
    height: 200px
  }
  .category-hero h1 {
    font-size: 2rem
  }
}
@media (max-width:576px) {
  .product-info-card {
    padding: 20px
  }
  .btn-wiki {
    width: 100%;
    justify-content: center
  }
}
.footer {
  background: linear-gradient(135deg,#0a2a1a 0,#051a0f 100%);
  color: #e8e8e8;
  padding-top: 4rem;
  position: relative
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .09;
  pointer-events: none
}
.footer .container {
  position: relative;
  z-index: 2
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display',serif;
  margin-bottom: 1rem
}
.footer-logo span {
  color: #d4af37
}
.footer-description {
  font-size: .85rem;
  line-height: 1.7;
  color: #c8d6c5;
  margin-bottom: 1.5rem;
  max-width: 280px
}
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.1rem;
  transition: .3s;
  text-decoration: none
}
.social-icons a:hover {
  background: #d4af37;
  color: #0a2a1a;
  transform: translateY(-3px)
}
.footer h5 {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display',serif;
  position: relative;
  display: inline-block
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #d4af37;
  border-radius: 2px
}
.footer-links {
  margin: 0
}
.footer-links a {
  transition: .3s;
  display: inline-block
}
.footer-links a:hover {
  color: #d4af37;
  transform: translateX(5px)
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: .9rem;
  font-size: .85rem;
  color: #c8d6c5;
  line-height: 1.5
}
.footer-contact li i {
  color: #d4af37;
  font-size: 1rem;
  margin-top: 3px;
  min-width: 18px
}
.footer-contact a {
  color: #c8d6c5;
  text-decoration: none;
  transition: color .3s
}
.footer-contact a:hover {
  color: #d4af37
}
.footer-bottom {
  border-top: 1px solid rgba(212,175,67,.2);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem
}
.footer-bottom p {
  margin: 0;
  font-size: .8rem;
  color: #9bb5a8
}
.developer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,67,.12);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: .75rem;
  transition: .3s
}
.developer-badge:hover {
  background: rgba(212,175,67,.22);
  transform: translateY(-2px)
}
.developer-badge i {
  color: #d4af37;
  font-size: .8rem
}
.developer-badge span {
  color: #c8d6c5
}
.developer-badge a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
  transition: color .3s
}
.developer-badge a:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(212,175,67,.5)
}
@media (max-width:992px) {
  .footer {
    padding-top: 3rem
  }
  .footer-description {
    max-width: 100%
  }
}
@media (max-width:768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
  .footer-logo {
    font-size: 1.7rem
  }
  .footer h5 {
    margin-top: 1rem
  }
}
/* ============================================================
   02. ABOUT PAGE — صفحة من نحن
   Hero + Stats Bar + Story + Values
   ============================================================ */
.about-hero {
  height: 72vh;
  min-height: 520px;
  background: url('../images/about-your.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  overflow: hidden
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(13,40,24,.95) 0,rgba(13,40,24,.55) 60%,rgba(13,40,24,.1) 100%)
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top,var(--cream),transparent)
}
.hero-content {
  max-width: 700px
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-light);
  text-transform: uppercase
}
.about-hero h1 {
  font-size: clamp(2.4rem,5vw,4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem
}
.about-hero h1 em {
  font-style: normal;
  color: var(--secondary-light)
}
.about-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem
}
.hero-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: .35rem 1rem;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  backdrop-filter: blur(6px)
}
.stats-bar {
  background: var(--forest-deep);
  padding: 28px 0
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr)
}
.stat-cell {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,.08)
}
.stat-cell:last-child {
  border-right: none
}
.stat-num {
  font-size: 2.4rem;
  font-family: 'Libre Baskerville',serif;
  color: var(--secondary-light);
  line-height: 1;
  font-weight: 700
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em
}
.story-section {
  padding: 90px 0;
  background: var(--cream)
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center
}
.story-img-wrap {
  position: relative
}
.story-img-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover
}
.story-float-card {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  min-width: 160px
}
.story-float-card .num {
  font-size: 2rem;
  color: var(--secondary-dark);
  font-family: 'Libre Baskerville',serif;
  font-weight: 700;
  line-height: 1
}
.story-float-card .lbl {
  font-size: .75rem;
  color: var(--sage);
  margin-top: 2px
}
.tag-chip {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--forest-deep);
  padding: .3rem 1rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem
}
.story-content h2 {
  font-size: clamp(1.8rem,3vw,2.6rem);
  color: var(--forest-deep);
  margin-bottom: 1.2rem;
  line-height: 1.2
}
.story-content p {
  color: var(--sage);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1rem
}
.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--ink-soft)
}
.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary-dark);
  font-size: .9rem;
  flex-shrink: 0
}
.values-section {
  background: var(--sand)
}
.sec-head {
  text-align: center;
  margin-bottom: 50px
}
.sec-head .eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: .7rem
}
.sec-head h2 {
  font-size: clamp(1.8rem,3vw,2.5rem);
  color: var(--forest-deep)
}
.values-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px
}
.val-item {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}
.val-item:nth-child(odd) {
  margin-top: 24px
}
.val-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light)
}
.val-item:nth-child(2) {
  background: var(--forest-deep);
  border-color: transparent
}
.val-item:nth-child(2) h4 {
  color: var(--secondary-light)
}
.val-item:nth-child(2) p {
  color: rgba(255,255,255,.65)
}
.val-item:nth-child(2) .vi-icon {
  background: rgba(255,255,255,.1);
  color: var(--secondary-light)
}
.vi-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary-dark);
  margin-bottom: 1.3rem;
  transition: var(--transition)
}
.val-item:hover .vi-icon {
  background: var(--secondary-light);
  color: var(--forest-deep)
}
.val-item:nth-child(2):hover .vi-icon {
  background: rgba(255,255,255,.15)
}
.val-item h4 {
  font-size: 1.1rem;
  color: var(--forest-deep);
  margin-bottom: .6rem;
  font-family: 'Libre Baskerville',serif
}
.val-item p {
  font-size: .87rem;
  color: var(--sage);
  line-height: 1.6;
  margin: 0
}
.val-num {
  position: absolute;
  bottom: -14px;
  right: 8px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0,0,0,.03);
  font-family: 'Libre Baskerville',serif;
  line-height: 1;
  pointer-events: none
}
.val-item:nth-child(2) .val-num {
  color: rgba(255,255,255,.04)
}
.why-section {
  padding: 90px 0;
  background: var(--cream)
}
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}
.why-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover
}
.why-content h2 {
  font-size: clamp(1.8rem,3vw,2.5rem);
  color: var(--forest-deep);
  margin-bottom: .5rem
}
.why-content > p {
  color: var(--sage);
  margin-bottom: 2rem
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}
.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: .6rem
}
.why-card:hover {
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-sm)
}
.why-card-icon {
  font-size: 1.3rem;
  color: var(--secondary-dark)
}
.why-card h5 {
  font-size: .95rem;
  color: var(--forest-deep);
  font-family: Sora,sans-serif;
  font-weight: 600;
  margin: 0
}
.why-card p {
  font-size: .82rem;
  color: var(--sage);
  margin: 0;
  line-height: 1.5
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  transition: var(--transition)
}
@media (max-width:992px) {
  .about-hero {
    height: 62vh;
    min-height: 460px
  }
  .story-grid,
  .why-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .story-float-card {
    right: 10px
  }
  .values-row {
    grid-template-columns: repeat(2,1fr)
  }
  .val-item:nth-child(odd) {
    margin-top: 0
  }
  .why-img {
    display: none
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2,1fr);
    row-gap: 1.5rem
  }
  .stat-cell:nth-child(2) {
    border-right: none
  }
}
@media (max-width:768px) {
  .about-hero {
    height: 58vh;
    min-height: 400px;
    padding-bottom: 50px
  }
  .about-hero h1 {
    font-size: 2rem
  }
  .values-row {
    grid-template-columns: 1fr
  }
  .val-item:nth-child(odd) {
    margin-top: 0
  }
  .why-cards {
    grid-template-columns: 1fr
  }
  .footer-bar {
    flex-direction: column;
    text-align: center
  }
}
.modern-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
  font-family: Sora,sans-serif;
  border-top: 1px solid rgba(255,255,255,.05)
}
.modern-footer .footer-brand {
  font-family: 'Libre Baskerville',serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 700
}
.modern-footer .footer-brand span {
  color: var(--secondary-light)
}
.modern-footer .footer-desc {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px
}
.modern-footer h6 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}
.modern-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}
.modern-footer .footer-links li {
  margin-bottom: .8rem
}
.modern-footer .footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px
}
.modern-footer .footer-links a:hover {
  color: var(--secondary-light);
  transform: translateX(4px)
}
.modern-footer .social-row {
  display: flex;
  gap: 10px
}
.modern-footer .social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem
}
.modern-footer .social-row a:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px)
}
.modern-footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center
}
.modern-footer .copyright {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em
}
.dev-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 50px;
  border: 1px solid rgba(139,207,58,.25);
  background: rgba(139,207,58,.06);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}
.dev-signature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(139,207,58,.08), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease)
}
.dev-signature:hover::before {
  transform: translateX(100%)
}
.dev-signature:hover {
  border-color: var(--secondary-light);
  background: rgba(139,207,58,.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,207,58,.15)
}
.dev-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  font-size: .8rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(139,207,58,.4)
}
.dev-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}
.dev-text .dev-label,
.dev-info .dev-label {
  font-size: .58rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px
}
.dev-text .dev-name,
.dev-info .dev-name {
  font-size: .88rem;
  color: var(--white);
  font-weight: 600;
  font-family: Sora,sans-serif;
  letter-spacing: .02em
}
.dev-signature:hover .dev-name {
  color: var(--secondary-light)
}
.dev-arrow {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
  margin-left: 2px
}
.dev-signature:hover .dev-arrow {
  color: var(--secondary-light);
  transform: translate(2px, -2px)
}
@media (max-width:768px) {
  .modern-footer {
    padding: 4rem 0 2rem
  }
  .modern-footer .footer-bottom {
    gap: 1rem
  }
  .modern-footer .dev-signature {
    padding: 10px 20px 10px 10px
  }
}
.certificates-section {
  padding: 80px 0;
  background: var(--sand)
}
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px
}
/* ============================================================
   03. CERTIFICATES PAGE — صفحة الشهادات
   Cert Cards Grid
   ============================================================ */
.cert-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--secondary-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}
.cert-card:hover::before {
  transform: scaleX(1)
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light)
}
.cert-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: .3s
}
.cert-card:hover .cert-icon-wrapper {
  background: var(--secondary-dark)
}
.cert-icon {
  font-size: 2.2rem;
  color: var(--secondary-dark);
  transition: .3s
}
.cert-card:hover .cert-icon {
  color: var(--white);
  transform: scale(1.1)
}
.cert-card h3 {
  font-size: 1.4rem;
  color: var(--forest-deep);
  font-family: 'Libre Baskerville',serif;
  margin-bottom: .2rem
}
.cert-sub {
  font-size: .7rem;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block
}
.cert-card p {
  font-size: .95rem;
  color: var(--sage);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1
}
.cert-badge {
  background: var(--sand);
  color: var(--forest-deep);
  padding: .4rem 1.2rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700
}
@media (max-width:992px) {
  .certificates-grid {
    grid-template-columns: repeat(2,1fr)
  }
}
@media (max-width:768px) {
  .page-header h1 {
    font-size: 2.5rem
  }
  .certificates-grid {
    grid-template-columns: 1fr
  }
  .cert-card {
    padding: 2rem 1.5rem
  }
}
:root {
  --ink: #142018;
  --ink-soft: #3A4F42;
  --forest: #1B4332;
  --forest-deep: #0D2818;
  --sage: #52796F;
  --sage-light: #84A98C;
  --secondary-dark: #3F8D0F;
  --secondary-light: #8BCF3A;
  --sand: #F4EFE6;
  --cream: #FFFCF7;
  --white: #FFFFFF;
  --line: rgba(20,32,24,0.08);
  --shadow-sm: 0 4px 24px rgba(13,40,24,0.06);
  --shadow-md: 0 18px 50px rgba(13,40,24,0.12);
  --ease: cubic-bezier(0.22,1,0.36,1);
  --transition: all 0.4s var(--ease)
}
body {
  background: var(--sand);
  color: var(--ink);
  font-family: Sora,sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65
}
.site-nav {
  transition: var(--transition)
}
.brand-logo {
  object-fit: contain;
  border-radius: 6px
}
.brand-text {
  color: var(--forest)
}
.nav-link {
  color: var(--ink-soft)!important;
  transition: var(--transition)
}
.nav-link.active,
.nav-link:hover {
  color: var(--secondary-dark)!important
}
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md)
}
.dropdown-item {
  border-radius: 6px;
  transition: var(--transition)
}
.btn-nav {
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  transition: var(--transition)
}
/* ============================================================
   04. CONTACT PAGE — صفحة تواصل معنا
   Banner + Info Panel + Form Card
   ============================================================ */
.contact-banner {
  height: 55vh;
  min-height: 420px;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center
}
.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(13,40,24,.94) 0,rgba(13,40,24,.7) 50%,rgba(13,40,24,.3) 100%)
}
.banner-content {
  position: relative;
  z-index: 2
}
.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(139,207,58,.15);
  border: 1px solid rgba(139,207,58,.3);
  color: var(--secondary-light);
  padding: .35rem 1rem;
  border-radius: 40px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem
}
.contact-banner h1 {
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem
}
.contact-banner h1 span {
  color: var(--secondary-light)
}
.contact-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 480px
}
.contact-main {
  padding: 80px 0 100px;
  background: var(--sand)
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start
}
.info-panel {
  background: var(--forest-deep);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  position: sticky;
  top: 100px
}
.info-panel h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .6rem
}
.info-panel > p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 2.5rem
}
.info-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 2rem 0
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem
}
.info-row:last-of-type {
  margin-bottom: 0
}
.ir-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(63,141,15,.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-light);
  font-size: 1rem
}
.ir-text small {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px;
  font-weight: 600
}
.ir-text a,
.ir-text span {
  color: rgba(255,255,255,.85);
  font-size: .93rem;
  text-decoration: none;
  transition: color .3s
}
.ir-text a:hover {
  color: var(--secondary-light)
}
.social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 2.5rem
}
.soc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8)
}
.soc-btn:hover {
  background: var(--secondary-dark);
  color: var(--white);
  border-color: var(--secondary-dark)
}
.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow-md)
}
.form-card-head {
  margin-bottom: 2.5rem
}
.form-card-head .chip {
  display: inline-block;
  background: var(--sand);
  color: var(--secondary-dark);
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .9rem
}
.form-card-head h2 {
  font-size: 1.8rem;
  color: var(--forest-deep);
  margin-bottom: .4rem
}
.form-card-head p {
  color: var(--sage);
  font-size: .92rem
}
.field {
  margin-bottom: 1.2rem
}
.field label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .45rem
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--sand);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: .85rem 1.1rem;
  font-size: .93rem;
  font-family: Sora,sans-serif;
  color: var(--ink);
  transition: var(--transition)
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--secondary-dark);
  box-shadow: 0 0 0 4px rgba(63,141,15,.1);
  background: var(--white)
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(82,121,111,.45)
}
.field textarea {
  min-height: 130px;
  resize: vertical
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}
.btn-send {
  width: 100%;
  background: var(--forest-deep);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: Sora,sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .5rem
}
.btn-send:hover:not(:disabled) {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(63,141,15,.3)
}
.btn-send:disabled {
  opacity: .55;
  cursor: not-allowed
}
.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  height: 340px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm)
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}
.toast-notif {
  position: fixed;
  bottom: 28px;
  right: 28px;
  min-width: 300px;
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  z-index: 9999;
  display: none;
  border-left: 4px solid var(--secondary-dark);
  animation: slideIn .4s var(--ease)
}
.toast-notif.error {
  border-left-color: #e53e3e
}
.toast-title {
  font-weight: 700;
  color: var(--forest-deep);
  font-size: .93rem;
  margin-bottom: 2px
}
.toast-msg {
  font-size: .85rem;
  color: var(--sage)
}
.toast-x {
  position: absolute;
  top: .8rem;
  right: 1rem;
  background: 0 0;
  border: none;
  font-size: 1.1rem;
  color: var(--sage);
  cursor: pointer
}
@keyframes slideIn {
  from {
    transform: translateX(110%);
    opacity: 0
  }
  to {
    transform: translateX(0);
    opacity: 1
  }
}
.site-footer {
  background: var(--forest-deep)
}
.site-footer h6 {
  color: var(--white);
  text-transform: uppercase
}
.footer-links a {
  transition: var(--transition)
}
.srow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  color: var(--white);
  margin-right: .4rem;
  text-decoration: none;
  transition: var(--transition)
}
.srow a:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark)
}
@media (max-width:992px) {
  .contact-layout {
    grid-template-columns: 1fr
  }
  .info-panel {
    position: static
  }
  .contact-banner {
    height: 48vh;
    min-height: 360px
  }
}
@media (max-width:768px) {
  .contact-banner h1 {
    font-size: 2rem
  }
  .two-col {
    grid-template-columns: 1fr
  }
  .form-card,
  .info-panel {
    padding: 2rem 1.5rem
  }
  .social-buttons {
    flex-direction: column
  }
  .footer-bar {
    flex-direction: column;
    text-align: center
  }
}
:root {
  --ink: #142018;
  --ink-soft: #3A4F42;
  --forest: #1B4332;
  --forest-deep: #0D2818;
  --sage: #52796F;
  --sage-light: #84A98C;
  --secondary-dark: #3F8D0F;
  --secondary-light: #8BCF3A;
  --sand: #F4EFE6;
  --sand-dark: #E8DFD0;
  --cream: #FFFCF7;
  --white: #FFFFFF;
  --line: rgba(20, 32, 24, 0.08);
  --shadow-sm: 0 4px 24px rgba(13, 40, 24, 0.06);
  --shadow-md: 0 18px 50px rgba(13, 40, 24, 0.12);
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.45s var(--ease)
}
.site-nav {
  transition: var(--transition)
}
.site-nav.scrolled {
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm)
}
.site-nav:not(.scrolled) .nav-link:hover {
  color: var(--secondary-light)!important
}
.site-nav:not(.scrolled) .btn-nav {
  background: var(--white);
  color: var(--forest)
}
.brand-logo {
  object-fit: contain;
  border-radius: var(--radius)
}
/* ============================================================
   05. HOME PAGE — الصفحة الرئيسية
   Hero → Marquee → Intro → Values Bento →
   Products Hub → Process Steps → CTA Block
   ============================================================ */
.hero {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,rgba(13,40,24,.88) 0,rgba(13,40,24,.55) 42%,rgba(13,40,24,.2) 100%)
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(221,161,94,.5),transparent)
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 90px;
  padding: 7rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: end
}
.hero-copy {
  text-align: left
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-transform: uppercase;
  color: var(--secondary-light);
  opacity: 0;
  animation: heroIn .7s var(--ease) .1s forwards
}
.hero-eyebrow i {
  font-size: .55rem
}
.hero-brand-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroIn .75s var(--ease) .2s forwards
}
.hero-brand-name {
  font-family: 'Libre Baskerville',serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em
}
.hero-brand-name .accent {
  color: var(--secondary-light)
}
.hero-brand-ar {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  direction: rtl;
  padding-bottom: .2rem
}
.hero-brand-ar em {
  font-style: normal;
  color: rgba(221,161,94,.8);
  font-weight: 600
}
.hero h1 {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  color: rgba(255,255,255,.92);
  line-height: 1.45;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroIn .75s var(--ease) .35s forwards
}
.hero h1 strong {
  font-weight: 700;
  color: var(--white)
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroIn .75s var(--ease) .45s forwards
}
.hero-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .75rem;
  border-radius: 40px;
  backdrop-filter: blur(6px)
}
.hero-lead {
  font-size: clamp(.8rem, 1.3vw, .88rem);
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: heroIn .75s var(--ease) .5s forwards
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  opacity: 0;
  animation: heroIn .75s var(--ease) .6s forwards
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-6px)
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: .5
  }
  50% {
    transform: translateY(6px);
    opacity: 1
  }
}
.hero-panel {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  opacity: 0;
  animation: heroIn .85s var(--ease) .55s forwards
}
.hero-panel-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.hero-stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem
}
.hero-stat-list li {
  display: flex;
  align-items: center;
  gap: .85rem
}
.hero-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(63,141,15,.2);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0
}
.hero-stat-text strong {
  display: block;
  font-family: 'Libre Baskerville',serif;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2
}
.hero-stat-text span {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  animation: heroIn 1s var(--ease) 1s forwards;
  transition: color .3s
}
.hero-scroll:hover {
  color: rgba(255,255,255,.7)
}
.hero-scroll i {
  animation: 1.8s ease-in-out infinite scrollBounce
}
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--secondary-dark);
  color: var(--white);
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--secondary-dark)
}
.btn-fill:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--forest-deep);
  transform: translateY(-3px)
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: 0 0;
  color: var(--white);
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .82rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,.35)
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white)
}
.marquee-strip {
  background: var(--forest);
  color: rgba(255,255,255,.85);
  padding: .85rem 0;
  overflow: hidden;
  border-bottom: 3px solid var(--secondary-dark)
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: 28s linear infinite marquee;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: .5rem
}
.marquee-track i {
  color: var(--secondary-light);
  font-size: .55rem
}
@keyframes marquee {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-50%)
  }
}
.intro-section {
  padding: 6rem 0;
  background: var(--sand)
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center
}
.label-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: .8rem
}
.intro-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  margin-bottom: 1.2rem
}
.intro-section p {
  color: var(--ink-soft);
  margin-bottom: 1rem
}
.intro-list {
  list-style: none;
  margin-top: 1.5rem
}
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  color: var(--ink-soft)
}
.intro-list li i {
  color: var(--secondary-dark);
  margin-top: 3px;
  font-size: .85rem
}
.intro-visual {
  position: relative
}
.intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-dark)
}
.intro-card blockquote {
  font-family: 'Libre Baskerville',serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 1rem
}
.intro-card cite {
  font-style: normal;
  font-size: .8rem;
  color: var(--sage);
  letter-spacing: .05em
}
.values-section {
  padding: 5rem 0 6rem;
  background: var(--cream)
}
.section-head {
  margin-bottom: 3rem
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--forest)
}
.section-head p {
  color: var(--ink-soft);
  max-width: 520px;
  margin-top: .6rem
}
.bento {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: auto auto;
  gap: 1rem
}
.bento-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}
.bento-item:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px)
}
.bento-item:first-child,
.bento-item:nth-child(2),
.bento-item:nth-child(3) {
  grid-column: span 4
}
.bento-item:nth-child(4) {
  grid-column: span 6
}
.bento-item:nth-child(5) {
  grid-column: span 6;
  background: var(--forest);
  color: var(--white)
}
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 1rem
}
.bento-item:nth-child(5) .bento-icon {
  background: rgba(255,255,255,.12);
  color: var(--secondary-light)
}
.bento-item h5 {
  font-family: Sora,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .4rem
}
.bento-item p {
  font-size: .85rem;
  opacity: .75;
  margin: 0
}
.bento-item:nth-child(5) p {
  opacity: .8
}
.products-hub {
  padding: 5rem 0 6rem;
  background: var(--cream)
}
.products-hub-head {
  text-align: center;
  margin-bottom: 2.5rem
}
.products-hub-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--forest);
  margin-bottom: .5rem
}
.products-hub-head p {
  color: var(--ink-soft);
  font-size: .9rem;
  max-width: 460px;
  margin: 0 auto
}
.product-tabs {
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: .35rem;
  background: var(--sand);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line)
}
.product-tab {
  border: none;
  background: 0 0;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: Sora,sans-serif;
  display: inline-flex;
  align-items: center;
  gap: .4rem
}
.product-tab i {
  font-size: .75rem;
  opacity: .7
}
.product-tab.active {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,67,50,.25)
}
.product-tab:hover:not(.active) {
  color: var(--forest);
  background: rgba(255,255,255,.6)
}
.product-panels {
  position: relative;
  min-height: 380px
}
.product-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s var(--ease),transform .35s var(--ease)
}
.product-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0)
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1.25rem
}
.fh-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--transition)
}
.fh-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent
}
.fh-card-visual {
  aspect-ratio: 4/3.2;
  background: var(--sand-dark)
}
.fh-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(13,40,24,.55) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease)
}
.fh-card:hover .fh-card-visual::after {
  opacity: 1
}
.fh-card-tag {
  backdrop-filter: blur(6px);
  color: var(--forest);
  text-transform: uppercase
}
.fh-card-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--secondary-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition)
}
.fh-card:hover .fh-card-arrow {
  opacity: 1;
  transform: translateY(0)
}
.fh-card-body {
  flex: 1;
  display: flex;
  flex-direction: column
}
.fh-card-body h3 {
  font-family: 'Libre Baskerville',serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: .35rem;
  line-height: 1.3
}
.fh-card-body p {
  font-size: .76rem;
  color: var(--text-light,var(--ink-soft));
  line-height: 1.5;
  margin: 0;
  flex: 1;
  opacity: .75
}
.products-hub-footer {
  text-align: center;
  margin-top: 2.5rem
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--forest);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
  border: 1.5px solid var(--forest);
  padding: .65rem 1.5rem;
  border-radius: 50px
}
.link-arrow:hover {
  background: var(--forest);
  color: var(--white);
  gap: .65rem
}
.process-section {
  padding: 5rem 0;
  background: var(--forest-deep);
  color: rgba(255,255,255,.85)
}
.process-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 3rem;
  text-align: center
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  counter-reset: step
}
.process-step {
  text-align: center;
  position: relative
}
.process-step::before {
  counter-increment: step;
  content: counter(step,decimal-leading-zero);
  display: block;
  font-family: 'Libre Baskerville',serif;
  font-size: 2.5rem;
  color: var(--secondary-light);
  opacity: .5;
  margin-bottom: .8rem
}
.process-step h5 {
  font-family: Sora,sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .5rem
}
.process-step p {
  font-size: .82rem;
  opacity: .65;
  margin: 0
}
.cta-block {
  padding: 5rem 0;
  background: var(--sand)
}
.cta-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line)
}
.cta-inner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--forest);
  margin-bottom: .8rem
}
.cta-inner p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem
}
.cta-contact {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem
}
.cta-contact li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 0;
  font-size: .88rem;
  color: var(--ink-soft)
}
.cta-contact li i {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-dark);
  font-size: .8rem;
  flex-shrink: 0
}
.cta-contact a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 500
}
.cta-contact a:hover {
  color: var(--secondary-dark)
}
@media (max-width:992px) {
  .hero {
    background-image: url('../images/hero-tablet.jpg')
  }
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-bottom: 4rem
  }
  .hero-panel {
    max-width: 420px
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .bento-item:nth-child(n) {
    grid-column: span 6
  }
  .process-steps {
    grid-template-columns: repeat(2,1fr)
  }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem
  }
  .product-grid {
    grid-template-columns: repeat(2,1fr)
  }
}
@media (max-width:768px) {
  .hero {
    background-image: url('../images/hero-mobile.jpg')
  }
  .hero-inner {
    padding: 6rem 1rem 3.5rem
  }
  .hero-brand-line {
    flex-direction: column;
    gap: .25rem
  }
  .hero-scroll {
    display: none
  }
  .bento-item:nth-child(n) {
    grid-column: span 12
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: .85rem
  }
  .product-tab {
    padding: .5rem 1rem;
    font-size: .75rem
  }
  .site-nav,
  .site-nav.scrolled {
    background: rgba(255,252,247,.95);
    backdrop-filter: blur(12px)
  }
  .site-nav .nav-link {
    color: var(--ink-soft)!important
  }
  .site-nav .brand-text {
    color: var(--forest)
  }
  .site-nav .brand-accent {
    color: var(--secondary-dark)
  }
  .site-nav .btn-nav {
    background: var(--forest);
    color: var(--white)
  }
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: .75rem;
    border: 1px solid var(--line)
  }
  .navbar-collapse .nav-link {
    color: #1B4332 !important
  }
  .navbar-collapse .nav-link.active,
  .navbar-collapse .nav-link:hover {
    color: #a67c52 !important
  }
  .navbar-collapse .btn-nav {
    background: #1B4332;
    color: #fff !important
  }
}
.page-hero {
  display: flex;
  align-items: flex-end
}
@media (max-width:480px) {
  .product-grid {
    grid-template-columns: 1fr
  }
}
.page-header {
  background: var(--forest-deep);
  text-align: center
}
.page-header h1 {
  color: var(--white)
}
.page-header p {
  margin: 1rem auto 0
}
/* ============================================================
   06. PACKAGING PAGE — صفحة التغليف
   Packaging Grid + Cards
   ============================================================ */
.packaging-section {
  padding: 80px 0;
  background: var(--sand)
}
.section-title {
  text-align: center;
  margin-bottom: 3rem
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--forest-deep);
  font-family: 'Libre Baskerville',serif
}
.section-title p {
  color: var(--sage);
  font-size: 1.1rem
}
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px
}
.packaging-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: .3s;
  display: flex;
  flex-direction: column;
  height: 100%
}
.packaging-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light)
}
.card-image-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}
.card-icon {
  font-size: 5rem;
  color: var(--secondary-dark);
  transition: transform .5s
}
.packaging-card:hover .card-icon {
  transform: scale(1.1)
}
.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column
}
.card-content h3 {
  font-size: 1.4rem;
  color: var(--forest-deep);
  margin-bottom: .8rem;
  font-family: 'Libre Baskerville',serif
}
.card-content p {
  color: var(--sage);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1
}
.packaging-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.size-badge {
  background: var(--sand);
  color: var(--forest-deep);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid rgba(20,32,24,.05);
  transition: .3s
}
.packaging-card:hover .size-badge {
  background: var(--secondary-light)
}
@media (max-width:992px) {
  .packaging-grid {
    grid-template-columns: repeat(2,1fr)
  }
}
@media (max-width:768px) {
  .page-header h1 {
    font-size: 2.5rem
  }
  .packaging-grid {
    grid-template-columns: 1fr
  }
  .card-content {
    padding: 1.5rem
  }
}
/* ============================================================
   07. PRODUCT DETAIL PAGE — صفحة تفاصيل المنتج
   Product Detail Layout + Specs + Actions
   ============================================================ */
.site-nav {
  transition: var(--transition);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm)
}
.page-header {
  padding: 130px 0 50px;
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(13,40,24,.88) 0,rgba(13,40,24,.75) 40%,rgba(13,40,24,.5) 100%);
  z-index: 1
}
.page-header::after {
  position: absolute;
  top: -20%;
  right: 5%;
  font-size: 18rem;
  color: rgba(255,255,255,.04);
  font-family: serif;
  z-index: 1
}
.page-header .container {
  position: relative;
  z-index: 2
}
.page-header .breadcrumb {
  background: 0 0;
  padding: 0;
  margin-bottom: 1rem
}
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition)
}
.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--secondary-light)
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.3)
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Libre Baskerville',serif
}
.page-header h1 .highlight {
  color: var(--secondary-light)
}
.page-header p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin-top: .5rem
}
.header-stats {
  display: flex
}
.header-stat {
  text-align: center
}
.header-stat .number {
  color: var(--secondary-light)
}
.pd-section {
  padding: 140px 0 80px;
  background: var(--sand);
  min-height: 100vh
}
.pd-container {
  background: var(--white);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--line)
}
.pd-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand)
}
.pd-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}
.pd-image:hover {
  transform: scale(1.03)
}
.pd-category {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--forest-deep);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}
.pd-title {
  font-size: 3rem;
  color: var(--forest-deep);
  margin-bottom: 1rem;
  line-height: 1.1
}
.pd-short-desc {
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 2rem;
  line-height: 1.6
}
.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 2rem
}
.pd-spec-card {
  background: var(--sand);
  padding: 1.2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(20,32,24,.04)
}
.pd-spec-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm)
}
.pd-spec-info h5 {
  font-family: Sora,sans-serif;
  font-size: .75rem;
  color: var(--sage);
  margin: 0 0 .2rem;
  text-transform: uppercase;
  letter-spacing: .05em
}
.pd-spec-info p {
  font-size: .95rem;
  color: var(--forest-deep);
  font-weight: 600;
  margin: 0
}
.pd-long-desc {
  background: var(--cream);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  margin-bottom: 2rem
}
.pd-long-desc h4 {
  color: var(--secondary-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Libre Baskerville',serif
}
.pd-long-desc p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0
}
.pd-actions {
  display: flex;
  gap: 1rem
}
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: .3s;
  flex: 1
}
.pd-btn-wiki {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest)
}
.pd-btn-wiki:hover {
  background: var(--forest-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}
.pd-btn-back {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--line)
}
.pd-btn-back:hover {
  background: var(--sand);
  border-color: var(--forest);
  transform: translateY(-2px)
}
.pd-not-found {
  text-align: center;
  padding: 100px 20px;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-premium)
}
.pd-not-found i {
  font-size: 4rem;
  color: var(--secondary-dark);
  margin-bottom: 1.5rem
}
.pd-not-found h2 {
  font-size: 2.5rem;
  color: var(--forest-deep);
  margin-bottom: 1rem
}
.pd-not-found p {
  color: var(--sage);
  font-size: 1.1rem;
  margin-bottom: 2rem
}
@media (max-width:992px) {
  .pd-container {
    padding: 30px
  }
  .pd-title {
    font-size: 2.4rem
  }
  .pd-specs-grid {
    grid-template-columns: 1fr
  }
}
@media (max-width:768px) {
  .pd-section {
    padding: 100px 0 60px
  }
  .pd-container {
    padding: 20px;
    border-radius: 24px
  }
  .pd-image-wrapper {
    border-radius: 16px;
    aspect-ratio: 1/1
  }
  .pd-title {
    font-size: 2rem
  }
  .pd-actions {
    flex-direction: column
  }
}
/* ============================================================
   08. PRODUCTS PAGE — صفحة المنتجات الكاملة
   Page Hero + Filter Section + Products Grid + fh-card
   ============================================================ */

/* ── CSS Variables for Products Page ───────────────────── */
:root {
  --ink: #142018;
  --ink-soft: #3A4F42;
  --forest: #1B4332;
  --forest-deep: #0D2818;
  --sage: #52796F;
  --sage-light: #84A98C;
  --secondary-dark: #3F8D0F;
  --secondary-light: #8BCF3A;
  --sand: #F4EFE6;
  --sand-dark: #E8DFD0;
  --cream: #FFFCF7;
  --white: #FFFFFF;
  --line: rgba(20, 32, 24, 0.08);
  --shadow-sm: 0 4px 24px rgba(13, 40, 24, 0.06);
  --shadow-md: 0 18px 50px rgba(13, 40, 24, 0.12);
  --shadow-premium: 0 20px 60px rgba(13, 40, 24, 0.14);
  --radius: 6px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.45s var(--ease)
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
.display-font,
h1,
h2,
h3,
h4 {
  font-family: 'Libre Baskerville',serif;
  font-weight: 700;
  letter-spacing: -.02em
}
/* ============================================================
   09. SHARED / GLOBAL — مشترك في كل الصفحات
   Navbar + Brand + Nav Links + Footer
   ── هنا نلاقي النافبار المثبت + الفوتر المشترك ──
   ============================================================ */

/* ── Navbar: Transparent (on Hero) vs Scrolled (solid) ────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: var(--transition);
  background: 0 0
}
.site-nav.scrolled {
  background: rgba(255,252,247,.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: .7rem 0
}
.site-nav:not(.scrolled) .nav-link {
  color: rgba(255,255,255,.9)!important
}
.site-nav:not(.scrolled) .nav-link.active,
.site-nav:not(.scrolled) .nav-link:hover {
  color: var(--secondary-light)!important
}
.site-nav:not(.scrolled) .brand-text {
  color: var(--white)
}
.site-nav:not(.scrolled) .brand-accent {
  color: var(--secondary-light)
}
.site-nav:not(.scrolled) .btn-nav {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25)
}
.site-nav:not(.scrolled) .btn-nav:hover {
  background: var(--white);
  color: var(--forest)
}
.site-nav:not(.scrolled) .navbar-toggler {
  border-color: rgba(255,255,255,.3)
}
.site-nav:not(.scrolled) .navbar-toggler-icon {
  filter: invert(1)
}
/* ── Burger menu dropdown: force dark text even on transparent hero nav ── */
.site-nav:not(.scrolled) .navbar-collapse .nav-link {
  color: #1B4332 !important
}
.site-nav:not(.scrolled) .navbar-collapse .nav-link.active,
.site-nav:not(.scrolled) .navbar-collapse .nav-link:hover {
  color: #52a652 !important
}
.site-nav:not(.scrolled) .navbar-collapse .btn-nav {
  background: #1B4332;
  color: #fff !important;
  border-color: #1B4332
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: var(--radius)
}
.brand-text {
  font-family: 'Libre Baskerville',serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1
}
.brand-accent {
  color: var(--secondary-dark)
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft)!important;
  padding: .4rem .9rem!important;
  letter-spacing: .02em;
  transition: var(--transition)
}
.nav-link.active,
.nav-link:hover {
  color: var(--secondary-dark)!important
}
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: .5rem
}
.dropdown-item {
  border-radius: var(--radius);
  font-size: .88rem;
  padding: .55rem 1rem;
  transition: var(--transition)
}
.dropdown-item:hover {
  background: var(--sand);
  color: var(--forest)
}
.btn-nav {
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: .55rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition)
}
.btn-nav:hover {
  background: var(--forest-deep);
  color: var(--white);
  transform: translateY(-2px)
}
.page-hero {
  height: 60vh;
  min-height: 420px;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,rgba(13,40,24,.92) 0,rgba(13,40,24,.55) 60%,rgba(13,40,24,.15) 100%)
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top,var(--cream),transparent)
}
.hero-content {
  position: relative;
  z-index: 2
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--secondary-light);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem
}
.page-hero h1 {
  font-size: clamp(2.2rem,4.5vw,3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem
}
.page-hero h1 em {
  font-style: normal;
  color: var(--secondary-light)
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 480px
}
.header-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap
}
.header-stat .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-light);
  display: block;
  font-family: 'Libre Baskerville',serif;
  line-height: 1
}
.header-stat .label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em
}
.filter-section {
  padding: 1.5rem 0;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 75px;
  z-index: 100
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: .6rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .82rem;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: Sora,sans-serif
}
.filter-btn i {
  font-size: .75rem;
  opacity: .6
}
.filter-btn:hover {
  border-color: var(--secondary-dark);
  color: var(--secondary-dark);
  transform: translateY(-2px)
}
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,67,50,.25)
}
.filter-btn.active i {
  opacity: 1
}
.filter-btn.active:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep)
}
.products-section {
  padding: 3rem 0 5rem;
  background: var(--cream)
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px
}
.fh-card {
  background: var(--white);
  border-radius: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative
}
.fh-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
  background: var(--cream)
}
.fh-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%
}
.fh-card-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand-dark);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04)
}
.fh-card-visual img {
  object-fit: cover;
  transition: transform .65s var(--ease);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease)
}
.fh-card:hover .fh-card-visual img {
  transform: scale(1.06)
}
.fh-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: var(--forest);
  padding: .35rem .8rem;
  border-radius: 30px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  z-index: 2
}
.fh-card-body {
  padding: 1.25rem .5rem .5rem;
  display: flex;
  flex-direction: column;
  flex: 1
}
.fh-card-title {
  font-family: Sora,sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
  transition: color .3s var(--ease)
}
.fh-card:hover .fh-card-title {
  color: var(--secondary-dark)
}
.fh-card-desc {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.fh-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto
}
.fh-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--forest);
  background: 0 0;
  transition: all .3s var(--ease)
}
.fh-card-btn i {
  background: var(--sand);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s var(--ease)
}
.fh-card:hover .fh-card-btn i {
  background: var(--forest);
  color: var(--white);
  transform: translateX(4px)
}
.empty-state {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--sage-light);
  text-align: center;
  padding: 4rem 0
}
.empty-state i {
  font-size: 3.5rem;
  color: var(--sage-light);
  margin-bottom: 1rem
}
.empty-state h4 {
  color: var(--forest);
  font-family: 'Libre Baskerville',serif
}
.empty-state p {
  color: var(--ink-soft)
}
.fade-filter {
  animation: fadeUp .6s var(--ease) forwards
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem
}
.footer-brand {
  font-family: 'Libre Baskerville',serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem
}
.footer-brand span {
  color: var(--secondary-light)
}
.footer-desc {
  font-size: .88rem;
  max-width: 300px;
  line-height: 1.7
}
.site-footer h6 {
  color: var(--white);
  font-family: Sora,sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem
}
.footer-links {
  list-style: none;
  padding: 0
}
.footer-links li {
  margin-bottom: .55rem
}
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: var(--transition)
}
.footer-links a:hover {
  color: var(--secondary-light)
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  margin-right: .5rem;
  text-decoration: none;
  transition: var(--transition)
}
.social-row a:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark)
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem
}
.footer-bar a {
  color: var(--secondary-light);
  text-decoration: none
}
@media (max-width:992px) {
  .page-header h1 {
    font-size: 2.4rem
  }
  .product-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 20px
  }
  .filter-section {
    top: 70px
  }
}
@media (max-width:768px) {
  .page-header {
    padding: 110px 0 30px
  }
  .page-header h1 {
    font-size: 2rem
  }
  .header-stats {
    gap: 1.5rem;
    flex-wrap: wrap
  }
  .header-stat .number {
    font-size: 1.4rem
  }
  .product-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 16px
  }
  .filter-btn {
    padding: .4rem 1rem;
    font-size: .72rem
  }
  .filter-btn i {
    display: none
  }
  .filter-section {
    top: 65px
  }
  .fh-card {
    padding: 10px;
    border-radius: 20px
  }
  .fh-card-body {
    padding: .8rem .2rem .2rem
  }
  .fh-card-title {
    font-size: .95rem
  }
  .fh-card-desc {
    font-size: .75rem;
    margin-bottom: .8rem
  }
  .fh-card-btn {
    font-size: .7rem;
    gap: .3rem
  }
  .fh-card-btn i {
    width: 28px;
    height: 28px;
    font-size: .7rem
  }
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: .75rem;
    border: 1px solid var(--line)
  }
  .navbar-collapse .nav-link {
    color: #1B4332 !important
  }
  .navbar-collapse .nav-link.active,
  .navbar-collapse .nav-link:hover {
    color: #a67c52 !important
  }
  .navbar-collapse .btn-nav {
    background: #1B4332;
    color: #fff !important
  }
  .footer-bar {
    flex-direction: column;
    text-align: center
  }
}
@media (max-width:480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }
  .fh-card-visual {
    aspect-ratio: 1/1;
    border-radius: 12px
  }
  .page-header h1 {
    font-size: 1.6rem
  }
  .filter-buttons {
    gap: .3rem
  }
  .filter-btn {
    padding: .3rem .8rem;
    font-size: .65rem
  }
  .fh-card {
    padding: 8px;
    border-radius: 16px
  }
  .fh-card-body {
    padding: .6rem .1rem .1rem
  }
  .fh-card-title {
    font-size: .8rem;
    margin-bottom: .2rem
  }
  .fh-card-desc {
    font-size: .65rem;
    margin-bottom: .6rem;
    line-clamp: 2;
    -webkit-line-clamp: 2
  }
  .fh-card-tag {
    font-size: .5rem;
    padding: .2rem .5rem;
    top: 8px;
    left: 8px
  }
  .fh-card-footer {
    flex-direction: column;
    align-items: flex-end;
    gap: .4rem;
    border-top: none;
    padding-top: 0
  }
  .fh-card-btn {
    width: 100%;
    justify-content: center;
    background: var(--forest);
    color: var(--white);
    padding: .4rem;
    border-radius: 20px;
    font-size: .65rem
  }
  .fh-card-btn i {
    display: none
  }
}