<style>
.amwaj-page { font-family: 'Cairo', 'Tajawal', sans-serif; direction: rtl; color: #1a2a3a; }
.amwaj-page * { box-sizing: border-box; margin: 0; padding: 0; }
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');
/* VARIABLES */
.amwaj-page {
--primary: #0d4e8a;
--accent: #1e8fc5;
--accent2: #00bcd4;
--dark: #0a2540;
--lightbg: #f0f7ff;
--border: #d0e4f4;
--muted: #5a7a9a;
--gold: #e6a817;
--radius: 14px;
--shadow: 0 4px 24px rgba(13,78,138,.10);
}
/* ─── HERO ─── */
.amwaj-hero {
background: linear-gradient(135deg, #0a2540 0%, #0d4e8a 55%, #1e8fc5 100%);
color: #fff;
padding: 64px 24px 52px;
text-align: center;
border-radius: 16px;
margin-bottom: 12px;
position: relative;
overflow: hidden;
}
.amwaj-hero::before {
content: '';
position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}
.amwaj-badge {
display: inline-block;
background: rgba(255,255,255,.15);
border: 1px solid rgba(255,255,255,.3);
color: #fff; font-size: 13px; font-weight: 600;
padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.amwaj-hero h1 {
font-size: clamp(22px, 4.5vw, 40px);
font-weight: 900; line-height: 1.3;
margin-bottom: 14px;
text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.amwaj-hero h1 span { color: #00bcd4; }
.amwaj-hero p {
font-size: clamp(14px, 2vw, 17px);
max-width: 600px; margin: 0 auto 24px; opacity: .9;
}
.amwaj-cta {
display: inline-block;
background: #e6a817; color: #0a2540;
font-weight: 700; font-size: 15px;
padding: 12px 34px; border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 16px rgba(230,168,23,.4);
transition: transform .2s;
}
.amwaj-cta:hover { transform: translateY(-2px); }
/* ─── TRUST BAR ─── */
.amwaj-trust {
background: #0d4e8a; color: #fff;
padding: 14px 20px; border-radius: 12px;
margin-bottom: 12px;
}
.amwaj-trust-inner {
display: flex; flex-wrap: wrap;
justify-content: center; gap: 20px;
}
.amwaj-trust-item {
display: flex; align-items: center;
gap: 7px; font-size: 13px; font-weight: 600;
}
/* ─── SECTION ─── */
.amwaj-section { padding: 44px 0; }
.amwaj-sec-title {
font-size: clamp(18px, 2.8vw, 26px);
font-weight: 900; color: #0d4e8a;
margin-bottom: 6px; display: inline-block;
}
.amwaj-sec-title::after {
content: ''; display: block;
width: 44px; height: 4px;
background: #00bcd4; border-radius: 4px; margin-top: 6px;
}
.amwaj-sec-sub { color: #5a7a9a; font-size: 14px; margin-bottom: 28px; }
/* ─── BRANCH ─── */
.amwaj-branch-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px; align-items: start;
}
@media(max-width:640px){ .amwaj-branch-grid { grid-template-columns: 1fr; } }
.amwaj-info-card {
background: #fff; border: 1px solid #d0e4f4;
border-radius: 14px; padding: 24px;
box-shadow: 0 4px 24px rgba(13,78,138,.10);
}
.amwaj-info-card h3 {
font-size: 16px; font-weight: 800; color: #0d4e8a;
margin-bottom: 14px; padding-bottom: 10px;
border-bottom: 1px solid #d0e4f4;
}
.amwaj-info-row {
display: flex; align-items: flex-start;
gap: 10px; padding: 10px 0;
border-bottom: 1px dashed #d0e4f4; font-size: 13px;
}
.amwaj-info-row:last-child { border-bottom: none; }
.amwaj-info-icon { font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.amwaj-info-label { font-weight: 700; color: #0d4e8a; display: block; font-size: 12px; }
.amwaj-map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid #d0e4f4; box-shadow: 0 4px 24px rgba(13,78,138,.10); }
.amwaj-map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }
/* ─── PRODUCTS ─── */
.amwaj-products { background: #f0f7ff; border-radius: 16px; padding: 36px 24px; }
.amwaj-products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 16px;
}
.amwaj-prod-card {
background: #fff; border: 1px solid #d0e4f4;
border-radius: 14px; padding: 22px 16px;
text-align: center;
box-shadow: 0 4px 24px rgba(13,78,138,.10);
transition: transform .2s;
position: relative; overflow: hidden;
}
.amwaj-prod-card::before {
content: ''; position: absolute;
top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, #0d4e8a, #00bcd4);
}
.amwaj-prod-card:hover { transform: translateY(-4px); }
.amwaj-prod-icon { font-size: 32px; margin-bottom: 10px; }
.amwaj-prod-card h3 { font-size: 14px; font-weight: 800; color: #0d4e8a; margin-bottom: 7px; }
.amwaj-prod-card p { font-size: 12px; color: #5a7a9a; }
.amwaj-prod-tag {
display: inline-block; background: #f0f7ff;
color: #1e8fc5; font-size: 11px; font-weight: 700;
padding: 3px 10px; border-radius: 50px;
margin-top: 8px; border: 1px solid #d0e4f4;
}
/* ─── SHIPPING ─── */
.amwaj-shipping-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
gap: 16px;
}
.amwaj-ship-card {
background: #fff; border: 1px solid #d0e4f4;
border-radius: 14px; padding: 22px 16px;
text-align: center;
box-shadow: 0 4px 24px rgba(13,78,138,.10);
}
.amwaj-ship-icon { font-size: 28px; margin-bottom: 10px; }
.amwaj-ship-card h4 { font-size: 14px; font-weight: 800; color: #0d4e8a; margin-bottom: 5px; }
.amwaj-ship-card p { font-size: 12px; color: #5a7a9a; }
/* ─── FAQ ─── */
.amwaj-faq-list { max-width: 700px; margin: 0 auto; }
.amwaj-faq-item {
border: 1px solid #d0e4f4; border-radius: 14px;
margin-bottom: 12px; overflow: hidden;
box-shadow: 0 4px 24px rgba(13,78,138,.08);
}
.amwaj-faq-q {
width: 100%; background: none; border: none;
padding: 16px 20px; text-align: right;
font-family: 'Cairo', sans-serif;
font-size: 14px; font-weight: 700; color: #0d4e8a;
cursor: pointer;
display: flex; align-items: center;
justify-content: space-between; gap: 10px;
transition: background .2s;
}
.amwaj-faq-q:hover { background: #f0f7ff; }
.amwaj-faq-arrow {
width: 26px; height: 26px;
background: #f0f7ff; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; font-size: 14px; color: #1e8fc5;
transition: transform .3s, background .2s;
}
.amwaj-faq-item.open .amwaj-faq-arrow {
transform: rotate(180deg);
background: #1e8fc5; color: #fff;
}
.amwaj-faq-a {
max-height: 0; overflow: hidden;
transition: max-height .35s ease, padding .3s;
padding: 0 20px; font-size: 13px; color: #5a7a9a;
}
.amwaj-faq-item.open .amwaj-faq-a { max-height: 300px; padding: 0 20px 16px; }
/* ─── CTA BOTTOM ─── */
.amwaj-cta-bottom {
background: linear-gradient(135deg, #0a2540 0%, #0d4e8a 100%);
color: #fff; text-align: center;
padding: 48px 24px; border-radius: 16px;
margin-top: 12px;
}
.amwaj-cta-bottom h2 { font-size: clamp(18px, 3vw, 28px); font-weight: 900; margin-bottom: 10px; }
.amwaj-cta-bottom p { font-size: 14px; opacity: .85; margin-bottom: 22px; max-width: 480px; margin-left: auto; margin-right: auto; }
.amwaj-cta-bottom a {
display: inline-block; background: #e6a817;
color: #0a2540; font-weight: 700; font-size: 15px;
padding: 12px 38px; border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 16px rgba(230,168,23,.4);
transition: transform .2s;
}
.amwaj-cta-bottom a:hover { transform: translateY(-2px); }
</style>
<!-- ═══════════════════════════════════════════════════ -->
<!-- محتوى الصفحة -->
<!-- ═══════════════════════════════════════════════════ -->
<!-- HERO -->
المدينة المنورة — السوق المركزي، حي الوبرة
أحبار طابعات المدينة المنورة
متجر أمواج البحر
أحبار أصلية ومتوافقة لجميع أنواع الطابعات — HP وCanon وEpson وليزر — بأسعار تنافسية وتوصيل سريع.
تسوّق الآن ←
<!-- TRUST BAR -->
منتجات أصلية ومضمونة
توصيل سريع بالمدينة المنورة
دفع آمن عبر الإنترنت
إرجاع واستبدال مريح
<!-- BRANCH -->
فرعنا في المدينة المنورة
تفضّل بزيارتنا أو اطلب أونلاين — نصلك أينما كنت في المدينة.
معلومات الفرع
الموقعالسوق المركزي، حي الوبرة — المدينة المنورة
ساعات العملالسبت – الخميس: ٩ص – ١٠م | الجمعة: ٤م – ١٠م
تواصل معناعبر متجرنا الإلكتروني أو قنوات التواصل
الطلبمتاح أونلاين مع توصيل أو استلام من المتجر
<!-- PRODUCTS -->
منتجاتنا المتوفرة
أحبار وخراطيش أصلية وبديلة لجميع ماركات الطابعات الشائعة.
️
أحبار HP المدينة المنورة
خراطيش أصلية ومتوافقة لجميع موديلات HP — DeskJet وOfficeJet وLaserJet.
HP Original & Compatible
️
خرطوشة Canon المدينة
خراطيش Canon PG وCL ومجموعات الألوان الكاملة بضمان الجودة.
Canon PG / CL Series
⚡
أحبار ليزر المدينة المنورة
كارتريدج ليزر أصلي ومتوافق لـ HP وBrother وSamsung وCanon.
Laser Toner
أحبار Epson
حبر Epson الأصلي لطابعات الصور والمكتب — ألوان حية وطباعة عالية الدقة.
Epson Genuine
أحبار Brother
خراطيش Brother الأصلية للطابعات الليزرية والنافثة بمختلف الأحجام.
Brother TN Series
️
بديل اقتصادي عالي الجودة
بديل لجميع الماركات بسعر أقل — مثالي للاستخدام اليومي المكثّف.
Compatible / Generic
<!-- SHIPPING -->
الشحن والتوصيل
نوصّل طلبك إلى باب بيتك في المدينة المنورة وجميع مناطق المملكة.
توصيل سريع — المدينة المنورة
خلال ١–٢ أيام عمل داخل المدينة المنورة.
️
شحن لكل المملكة
نشحن إلى جميع المناطق عبر شركات الشحن المعتمدة.
تغليف محكم وآمن
نغلّف الأحبار والخراطيش بعناية لتصلك سليمة تماماً.
سياسة الإرجاع
إرجاع واستبدال خلال ٧ أيام من الاستلام في حال وجود عيب.
<!-- FAQ -->
أسئلة شائعة
إجابات على أكثر الأسئلة التي يسألنا عنها عملاؤنا في المدينة المنورة.
<button class="amwaj-faq-q">
هل تتوفر أحبار HP الأصلية في المدينة المنورة؟
▼
</button>
نعم، يوفّر متجر أمواج البحر في السوق المركزي حي الوبرة بالمدينة المنورة مجموعة واسعة من أحبار HP الأصلية لجميع الطرازات الشائعة — DeskJet وOfficeJet وLaserJet — إضافة إلى البدائل عالية الجودة. يمكنك الطلب أونلاين مع توصيل سريع داخل المدينة.
<button class="amwaj-faq-q">
كيف أطلب خرطوشة Canon في المدينة المنورة مع التوصيل؟
▼
</button>
تفضّل بزيارة متجرنا على الإنترنت amwajest.com/ar، اختر خرطوشة Canon المناسبة لطابعتك وأضفها إلى السلة. نوفّر توصيلاً سريعاً داخل المدينة المنورة خلال ١–٢ يوم عمل، وشحناً لجميع مناطق المملكة. كما يمكنك زيارة فرعنا مباشرة في السوق المركزي لاستلام طلبك في الحال.
<button class="amwaj-faq-q">
ما الفرق بين أحبار الليزر وأحبار الحبر النافث؟
▼
</button>
أحبار الليزر (Toner) مثالية للطباعة المكثّفة والوثائق بتكلفة أقل لكل صفحة. أما أحبار الحبر النافث (Inkjet) فهي الأنسب لطباعة الصور والألوان عالية الجودة. نوفّر كلا النوعين في متجر أمواج البحر بالمدينة المنورة — فريقنا يساعدك في اختيار الأحبار الصحيحة لطابعتك.
<!-- CTA BOTTOM -->
هل تبحث عن حبر طابعتك؟
تفضّل بتصفّح متجر أمواج البحر — أحبار وخراطيش أصلية بأسعار مناسبة وتوصيل سريع في المدينة المنورة.
تسوّق الآن في أمواج البحر ←
<!-- /amwaj-page -->