/* ===== Levan Store — اليوم الوطني 96 ===== */
:root{
  --color-primary:       #006C35;  /* أخضر العلم */
  --color-primary-dark:  #00512A;
  --color-primary-light: #0E9F4F;
  --brand-ink:           #06301B;
  --brand-sand:          #F7F4ED;
}

body { background-color: var(--brand-sand) !important; }

/* الهيدر */
header, .store-header { background-color: var(--brand-ink) !important; }

/* الشريط العلوي المتحرك */
.top-banner, .announcement-bar {
  background: linear-gradient(90deg,#006C35,#0E9F4F) !important;
  color:#fff !important;
}

/* الأزرار */
.btn--primary, .s-button-primary, button[type="submit"]{
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.btn--primary:hover, .s-button-primary:hover{
  background-color: var(--color-primary-dark) !important;
}

/* الأسعار */
.product-price, .total-price, .price { color: var(--color-primary) !important; }

/* خط علم أخضر/أبيض أعلى الصفحة */
body::before{
  content:""; position:fixed; top:0; left:0; right:0; height:4px; z-index:9999;
  background: linear-gradient(90deg,#006C35 0 50%,#fff 50% 100%);
}