/* Add custom CSS styles below */ 
}
.pricesBar {
	z-index: -10;
}

.logo { 
    width: 500px; /* Adjust size as needed */ 
    height: auto; /* Maintain aspect ratio */ 
}

/* ألوان عامة */
:root{
  --brand:#111111;      /* لون النص الرئيسي */
  --accent:#C6A76D;     /* لون الزر الأساسي (ذهبي مائل) */
  --muted:#6b7280;      /* رمادي للنصوص الثانوية */
  --bg:#F9F7EF;         /* خلفية محايدة */
}

/* حاويات */
.gs-container{max-width:1200px;margin:0 auto;padding:0 16px;}
.gs-grid{display:grid;gap:16px;}
@media (min-width:768px){.gs-grid-4{grid-template-columns:repeat(4,1fr)}.gs-grid-3{grid-template-columns:repeat(3,1fr)}.gs-grid-2{grid-template-columns:repeat(2,1fr)}}
@media (max-width:767px){.hide-m{display:none !important}}

.gs-hero{background:var(--bg);border-radius:18px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:28px;overflow:hidden}
.gs-hero h1{font-size:clamp(22px,3.2vw,40px);margin:0 0 8px 0;color:var(--brand);font-weight:800}
.gs-hero p{color:var(--muted);margin:0 0 16px 0}
.gs-hero .cta{display:flex;gap:12px;flex-wrap:wrap}
.gs-btn{display:inline-block;padding:12px 18px;border-radius:10px;font-weight:700;text-decoration:none}
.gs-btn.primary{background:var(--accent);color:#fff}
.gs-btn.ghost{border:1px solid var(--brand);color:var(--brand);background:#fff}

.gs-hero-img{width:46%;min-height:280px;object-fit:cover;border-radius:16px}
@media (max-width:991px){.gs-hero{flex-direction:column}.gs-hero-img{width:100%}}

.gs-usps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:18px}
.gs-usp{background:#fff;border:1px solid #eee;border-radius:14px;padding:14px;text-align:center}
.gs-usp b{display:block;margin-bottom:4px}

.gs-tile{position:relative;overflow:hidden;border-radius:16px}
.gs-tile img{width:100%;height:100%;object-fit:cover;display:block}
.gs-tile a{position:absolute;inset:auto 12px 12px 12px;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(6px);
  padding:10px 12px;border-radius:10px;text-align:center;font-weight:700;color:var(--brand);text-decoration:none}

.gs-banner{position:relative;background:#fff;border:1px dashed var(--accent);border-radius:16px;padding:22px;text-align:center}
.gs-banner h3{margin:0 0 8px 0}
.gs-banner .code{display:inline-block;background:var(--bg);padding:8px 12px;border-radius:10px;font-weight:800}

.gs-gift{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.gs-chip{border:1px solid #e5e7eb;border-radius:999px;padding:10px 14px;text-decoration:none;color:var(--brand);font-weight:700;background:#fff}
.gs-chip:hover{border-color:var(--accent)}

.gs-rev{display:flex;gap:12px;overflow:auto;padding-bottom:6px}
.gs-quote{min-width:260px;background:#fff;border:1px solid #eee;border-radius:14px;padding:14px}
.gs-quote .stars{color:#f59e0b;font-size:14px;margin-bottom:4px}

.gs-faq .item{border:1px solid #eee;border-radius:14px;margin-bottom:10px;background:#fff}
.gs-faq .q{padding:14px;cursor:pointer;font-weight:700}
.gs-faq .a{padding:0 14px 14px 14px;display:none;color:var(--muted)}
.gs-faq .item.open .a{display:block}

/* زر واتساب عائم */
.gs-wa{position:fixed;right:16px;bottom:16px;z-index:999}
.gs-wa a{display:flex;align-items:center;gap:8px;background:#25D366;color:#fff;padding:12px 14px;border-radius:999px;text-decoration:none;font-weight:800;box-shadow:0 8px 24px rgba(0,0,0,.12)}
.gs-wa img{width:20px;height:20px}