ุญู„ูŠ ู…ูˆู„ | ุญู„ูˆู„ ุฐูƒูŠุฉ ู„ุญูŠุงุฉ ุฃุณู‡ู„

/* ============================================================
VARIABLES & RESET
============================================================ */
:root {
–blue-darkest: #080f20;
–blue-dark: #0d1b3e;
–blue-mid: #162247;
–blue-light: #1e3065;
–gold: #c9a84c;
–gold-light: #e2c57a;
–gold-dark: #a8873a;
–white: #ffffff;
–off-white: #f7f8fc;
–text-muted: #8a9bbf;
–green: #27ae60;
–red: #e74c3c;
–radius-sm: 8px;
–radius-md: 16px;
–radius-lg: 24px;
–radius-xl: 40px;
–shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
–shadow-blue: 0 8px 40px rgba(8,15,32,0.45);
–transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
–font: ‘Tajawal’, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
font-family: var(–font);
background: var(–off-white);
color: var(–blue-dark);
direction: rtl;
text-align: right;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
UTILITY
============================================================ */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-tag {
display: inline-block;
background: linear-gradient(135deg, var(–gold) 0%, var(–gold-light) 100%);
color: var(–blue-dark);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 1px;
padding: 6px 18px;
border-radius: 50px;
margin-bottom: 16px;
text-transform: uppercase;
}

.section-title {
font-size: clamp(1.6rem, 4vw, 2.4rem);
font-weight: 900;
color: var(–blue-dark);
line-height: 1.35;
margin-bottom: 12px;
}

.section-subtitle {
font-size: 1rem;
color: #5a6a8a;
font-weight: 400;
line-height: 1.7;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, var(–gold) 0%, var(–gold-light) 60%, var(–gold) 100%);
color: var(–blue-darkest);
font-family: var(–font);
font-size: 1.05rem;
font-weight: 800;
padding: 16px 36px;
border-radius: 50px;
border: none;
cursor: pointer;
transition: var(–transition);
box-shadow: var(–shadow-gold);
white-space: nowrap;
background-size: 200% auto;
}
.btn-primary:hover {
background-position: right center;
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(201,168,76,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
background: transparent;
color: var(–gold);
font-family: var(–font);
font-size: 1rem;
font-weight: 700;
padding: 14px 32px;
border-radius: 50px;
border: 2px solid var(–gold);
cursor: pointer;
transition: var(–transition);
}
.btn-secondary:hover {
background: var(–gold);
color: var(–blue-darkest);
}

/* ============================================================
ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
background: linear-gradient(90deg, var(–blue-darkest), var(–blue-light), var(–blue-darkest));
background-size: 200% auto;
animation: shimmer 4s linear infinite;
color: var(–gold-light);
font-size: 0.85rem;
font-weight: 600;
text-align: center;
padding: 10px 20px;
letter-spacing: 0.5px;
}
.announcement-bar span { color: var(–gold); font-weight: 900; }

@keyframes shimmer {
0% { background-position: 200% center; }
100% { background-position: 0% center; }
}

/* ============================================================
NAVBAR
============================================================ */
.navbar {
background: var(–blue-dark);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.4);
transition: var(–transition);
}

.navbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
max-width: 1200px;
margin: 0 auto;
}

.navbar-logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo-icon {
width: 44px;
height: 44px;
background: linear-gradient(135deg, var(–gold), var(–gold-light));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: var(–blue-dark);
font-weight: 900;
box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}

.logo-text {
display: flex;
flex-direction: column;
line-height: 1.1;
}
.logo-text .arabic { font-size: 1.2rem; font-weight: 900; color: var(–gold); }
.logo-text .english { font-size: 0.62rem; font-weight: 700; color: var(–text-muted); letter-spacing: 2px; text-transform: uppercase; }

.navbar-links {
display: flex;
align-items: center;
gap: 28px;
list-style: none;
}
.navbar-links a {
color: #c8d4e8;
font-size: 0.92rem;
font-weight: 600;
transition: color 0.2s;
}
.navbar-links a:hover { color: var(–gold); }

.navbar-actions {
display: flex;
align-items: center;
gap: 14px;
}

.icon-btn {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
color: var(–white);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.95rem;
cursor: pointer;
transition: var(–transition);
position: relative;
}
.icon-btn:hover { background: var(–gold); color: var(–blue-dark); border-color: var(–gold); }

.cart-badge {
position: absolute;
top: -4px;
left: -4px;
background: var(–red);
color: white;
font-size: 0.62rem;
font-weight: 800;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
background: none;
border: none;
padding: 4px;
}
.hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(–gold);
border-radius: 2px;
transition: var(–transition);
}

/* ============================================================
HERO SECTION
============================================================ */
.hero {
background: linear-gradient(155deg, var(–blue-darkest) 0%, var(–blue-mid) 50%, var(–blue-dark) 100%);
min-height: 92vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 60px 0 80px;
}

/* Background decorative elements */
.hero::before {
content: ”;
position: absolute;
top: -120px;
left: -120px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 6s ease-in-out infinite;
}
.hero::after {
content: ”;
position: absolute;
bottom: -80px;
right: -80px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.1); opacity: 1; }
}

/* Geometric lines decoration */
.hero-geo {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.hero-geo::before {
content: ”;
position: absolute;
top: 15%;
right: 8%;
width: 1px;
height: 200px;
background: linear-gradient(to bottom, transparent, var(–gold), transparent);
opacity: 0.3;
}
.hero-geo::after {
content: ”;
position: absolute;
bottom: 20%;
left: 10%;
width: 180px;
height: 1px;
background: linear-gradient(to right, transparent, var(–gold), transparent);
opacity: 0.25;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 60px;
position: relative;
z-index: 2;
}

.hero-content {}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(201,168,76,0.12);
border: 1px solid rgba(201,168,76,0.3);
color: var(–gold-light);
font-size: 0.82rem;
font-weight: 700;
padding: 8px 18px;
border-radius: 50px;
margin-bottom: 24px;
animation: fadeInDown 0.6s ease forwards;
}
.hero-badge .dot {
width: 7px;
height: 7px;
background: var(–gold);
border-radius: 50%;
animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}

.hero-headline {
font-size: clamp(2.2rem, 5.5vw, 3.8rem);
font-weight: 900;
color: var(–white);
line-height: 1.2;
margin-bottom: 20px;
animation: fadeInUp 0.7s ease 0.1s forwards;
opacity: 0;
}
.hero-headline .gold-text {
background: linear-gradient(135deg, var(–gold) 0%, var(–gold-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subheadline {
font-size: clamp(1rem, 2.2vw, 1.18rem);
color: #a8bcd8;
font-weight: 400;
line-height: 1.8;
margin-bottom: 36px;
animation: fadeInUp 0.7s ease 0.2s forwards;
opacity: 0;
}

.hero-actions {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
animation: fadeInUp 0.7s ease 0.3s forwards;
opacity: 0;
}

.hero-stats {
display: flex;
gap: 32px;
margin-top: 48px;
animation: fadeInUp 0.7s ease 0.4s forwards;
opacity: 0;
}
.stat-item { text-align: right; }
.stat-num {
font-size: 1.7rem;
font-weight: 900;
color: var(–gold);
line-height: 1;
}
.stat-label {
font-size: 0.78rem;
color: var(–text-muted);
font-weight: 500;
margin-top: 4px;
}

.hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
animation: fadeInRight 0.8s ease 0.2s forwards;
opacity: 0;
}

.hero-product-card {
background: rgba(255,255,255,0.04);
backdrop-filter: blur(20px);
border: 1px solid rgba(201,168,76,0.2);
border-radius: var(–radius-lg);
padding: 32px;
text-align: center;
position: relative;
box-shadow: 0 40px 80px rgba(0,0,0,0.5);
max-width: 380px;
width: 100%;
}

.product-img-wrap {
width: 200px;
height: 200px;
background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(22,34,71,0.8));
border-radius: var(–radius-md);
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 5rem;
position: relative;
overflow: hidden;
}
.product-img-wrap::after {
content: ”;
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.15), transparent);
}

.floating-badge {
position: absolute;
top: -12px;
right: -12px;
background: linear-gradient(135deg, var(–red), #c0392b);
color: white;
font-size: 0.72rem;
font-weight: 800;
padding: 6px 12px;
border-radius: 50px;
box-shadow: 0 4px 12px rgba(231,76,60,0.4);
}

.hero-product-name {
font-size: 1.15rem;
font-weight: 800;
color: var(–white);
margin-bottom: 6px;
}
.hero-product-tagline {
font-size: 0.85rem;
color: var(–text-muted);
margin-bottom: 16px;
}

.price-row {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 20px;
}
.price-now { font-size: 1.6rem; font-weight: 900; color: var(–gold); }
.price-old { font-size: 1rem; font-weight: 500; color: #5a6a8a; text-decoration: line-through; }
.price-off {
background: rgba(39,174,96,0.15);
color: var(–green);
font-size: 0.78rem;
font-weight: 800;
padding: 3px 10px;
border-radius: 20px;
border: 1px solid rgba(39,174,96,0.3);
}

.stock-bar-wrap {
margin-bottom: 20px;
}
.stock-label {
display: flex;
justify-content: space-between;
font-size: 0.78rem;
color: var(–text-muted);
margin-bottom: 6px;
}
.stock-label span { color: var(–red); font-weight: 700; }
.stock-bar {
height: 6px;
background: rgba(255,255,255,0.08);
border-radius: 10px;
overflow: hidden;
}
.stock-fill {
height: 100%;
width: 30%;
background: linear-gradient(90deg, var(–red), #ff6b6b);
border-radius: 10px;
animation: stockPulse 2s ease-in-out infinite;
}
@keyframes stockPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}

/* Floating card decorations */
.float-card {
position: absolute;
background: rgba(255,255,255,0.06);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(–radius-sm);
padding: 10px 14px;
display: flex;
align-items: center;
gap: 8px;
font-size: 0.78rem;
color: var(–white);
font-weight: 600;
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
animation: floatAnim 4s ease-in-out infinite;
}
.float-card.card-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-card.card-2 { bottom: 40px; left: -30px; animation-delay: 2s; }

@keyframes floatAnim {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.float-card-icon { font-size: 1.2rem; }

@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(40px); }
to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
TRUST SECTION
============================================================ */
.trust-section {
background: var(–blue-dark);
padding: 36px 0;
border-top: 1px solid rgba(201,168,76,0.15);
border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
}

.trust-item {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 24px;
border-left: 1px solid rgba(255,255,255,0.07);
transition: var(–transition);
}
.trust-item:last-child { border-left: none; }
.trust-item:hover .trust-icon-wrap { background: var(–gold); }
.trust-item:hover .trust-icon-wrap i { color: var(–blue-dark); }

.trust-icon-wrap {
width: 48px;
height: 48px;
background: rgba(201,168,76,0.12);
border-radius: var(–radius-sm);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: var(–transition);
}
.trust-icon-wrap i {
font-size: 1.2rem;
color: var(–gold);
transition: var(–transition);
}

.trust-text strong {
display: block;
color: var(–white);
font-size: 0.92rem;
font-weight: 800;
}
.trust-text span {
color: var(–text-muted);
font-size: 0.78rem;
font-weight: 400;
}

/* ============================================================
PRODUCT HIGHLIGHT SECTION
============================================================ */
.product-highlight {
padding: 100px 0;
background: var(–off-white);
}

.ph-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.ph-visual {
position: relative;
}

.ph-main-img {
width: 100%;
aspect-ratio: 1;
background: linear-gradient(135deg, var(–blue-dark) 0%, var(–blue-mid) 100%);
border-radius: var(–radius-lg);
display: flex;
align-items: center;
justify-content: center;
font-size: 8rem;
position: relative;
overflow: hidden;
box-shadow: var(–shadow-blue);
}
.ph-main-img::before {
content: ”;
position: absolute;
top: -30%;
right: -30%;
width: 80%;
height: 80%;
background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
border-radius: 50%;
}

.ph-discount-tag {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(135deg, var(–red), #c0392b);
color: white;
font-size: 1rem;
font-weight: 900;
width: 58px;
height: 58px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 20px rgba(231,76,60,0.45);
}

.ph-thumb-row {
display: flex;
gap: 12px;
margin-top: 16px;
}
.ph-thumb {
flex: 1;
aspect-ratio: 1;
background: linear-gradient(135deg, var(–blue-dark), var(–blue-mid));
border-radius: var(–radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
cursor: pointer;
border: 2px solid transparent;
transition: var(–transition);
}
.ph-thumb.active { border-color: var(–gold); }
.ph-thumb:hover { border-color: var(–gold-dark); transform: translateY(-2px); }

.ph-content {}

.ph-stars {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 12px;
}
.ph-stars .stars { color: var(–gold); font-size: 1rem; letter-spacing: 2px; }
.ph-stars .review-count { color: #6a7a9a; font-size: 0.85rem; }

.ph-title {
font-size: clamp(1.5rem, 3vw, 2.2rem);
font-weight: 900;
color: var(–blue-dark);
line-height: 1.3;
margin-bottom: 10px;
}

.ph-tagline {
font-size: 1rem;
color: #5a6a8a;
margin-bottom: 28px;
line-height: 1.7;
}

.ph-benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.ph-benefits li {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.95rem;
font-weight: 600;
color: var(–blue-dark);
}
.benefit-icon {
width: 32px;
height: 32px;
background: rgba(39,174,96,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.benefit-icon i { color: var(–green); font-size: 0.85rem; }

.ph-price-section {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 28px;
padding: 20px;
background: var(–blue-dark);
border-radius: var(–radius-md);
}
.ph-price-now { font-size: 2rem; font-weight: 900; color: var(–gold); }
.ph-price-old { font-size: 1.1rem; color: #8a9bbf; text-decoration: line-through; }
.ph-save-badge {
background: var(–green);
color: white;
font-size: 0.8rem;
font-weight: 800;
padding: 4px 12px;
border-radius: 20px;
}

.ph-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
PROBLEM โ†’ SOLUTION
============================================================ */
.prob-sol {
padding: 100px 0;
background: var(–blue-darkest);
position: relative;
overflow: hidden;
}
.prob-sol::before {
content: ”;
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(–gold), transparent);
}

.prob-sol-header {
text-align: center;
margin-bottom: 64px;
}
.prob-sol-header .section-title { color: var(–white); }
.prob-sol-header .section-subtitle { color: var(–text-muted); max-width: 500px; margin: 0 auto; }

.prob-sol-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.ps-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.07);
border-radius: var(–radius-md);
overflow: hidden;
transition: var(–transition);
}
.ps-card:hover {
transform: translateY(-6px);
border-color: rgba(201,168,76,0.25);
box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.ps-problem {
background: rgba(231,76,60,0.08);
border-bottom: 1px solid rgba(231,76,60,0.15);
padding: 24px;
}
.ps-problem-label {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.72rem;
font-weight: 800;
color: #e07070;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 12px;
}
.ps-problem-label i { font-size: 0.85rem; }

.ps-problem-icon { font-size: 2.5rem; margin-bottom: 10px; }
.ps-problem-text { font-size: 0.95rem; color: #c8a0a0; font-weight: 500; line-height: 1.6; }

.ps-arrow {
text-align: center;
padding: 14px;
background: rgba(201,168,76,0.05);
color: var(–gold);
font-size: 1.3rem;
}

.ps-solution {
background: rgba(39,174,96,0.06);
padding: 24px;
}
.ps-solution-label {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.72rem;
font-weight: 800;
color: #70c090;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 12px;
}
.ps-solution-icon { font-size: 2.5rem; margin-bottom: 10px; }
.ps-solution-text { font-size: 0.95rem; color: #90c8a8; font-weight: 500; line-height: 1.6; }

/* ============================================================
WHY US SECTION
============================================================ */
.why-us {
padding: 100px 0;
background: var(–off-white);
}

.why-us-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.why-us-content {}

.why-features {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 36px;
}

.why-feature {
display: flex;
gap: 18px;
align-items: flex-start;
padding: 20px;
background: var(–white);
border-radius: var(–radius-md);
border: 1px solid #e8eef8;
box-shadow: 0 2px 12px rgba(0,0,0,0.04);
transition: var(–transition);
cursor: default;
}
.why-feature:hover {
border-color: var(–gold);
box-shadow: 0 8px 28px rgba(201,168,76,0.12);
transform: translateX(-4px);
}

.wf-icon {
width: 52px;
height: 52px;
background: linear-gradient(135deg, var(–blue-dark), var(–blue-mid));
border-radius: var(–radius-sm);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(13,27,62,0.25);
}
.wf-icon i { font-size: 1.3rem; color: var(–gold); }

.wf-text strong {
display: block;
font-size: 1rem;
font-weight: 800;
color: var(–blue-dark);
margin-bottom: 5px;
}
.wf-text p { font-size: 0.875rem; color: #6a7a9a; line-height: 1.6; }

.why-visual {
position: relative;
}

.why-big-card {
background: linear-gradient(155deg, var(–blue-dark), var(–blue-mid));
border-radius: var(–radius-lg);
padding: 40px;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: var(–shadow-blue);
}
.why-big-card::before {
content: ”;
position: absolute;
top: -40%;
right: -40%;
width: 80%;
height: 80%;
background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
border-radius: 50%;
}

.why-big-icon { font-size: 5rem; margin-bottom: 16px; position: relative; z-index: 1; }
.why-big-title { font-size: 1.3rem; font-weight: 900; color: var(–white); margin-bottom: 8px; position: relative; z-index: 1; }
.why-big-sub { font-size: 0.9rem; color: var(–text-muted); position: relative; z-index: 1; line-height: 1.6; }

.why-mini-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
margin-top: 16px;
}

.why-mini {
background: var(–white);
border-radius: var(–radius-md);
padding: 20px;
text-align: center;
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
border: 1px solid #e8eef8;
transition: var(–transition);
}
.why-mini:hover { border-color: var(–gold); transform: translateY(-3px); }
.why-mini-num { font-size: 1.8rem; font-weight: 900; color: var(–gold); line-height: 1; }
.why-mini-label { font-size: 0.78rem; color: #6a7a9a; font-weight: 600; margin-top: 4px; }

/* ============================================================
SOCIAL PROOF / REVIEWS
============================================================ */
.reviews {
padding: 100px 0;
background: var(–blue-dark);
position: relative;
overflow: hidden;
}
.reviews::before {
content: ”;
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.reviews-header {
text-align: center;
margin-bottom: 56px;
}
.reviews-header .section-title { color: var(–white); }
.reviews-header .section-subtitle { color: var(–text-muted); }

.rating-summary {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 52px;
padding: 28px;
background: rgba(201,168,76,0.06);
border: 1px solid rgba(201,168,76,0.15);
border-radius: var(–radius-md);
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.big-rating { font-size: 3.5rem; font-weight: 900; color: var(–gold); line-height: 1; }
.rating-details {}
.rating-stars { font-size: 1.3rem; color: var(–gold); letter-spacing: 3px; }
.rating-count { font-size: 0.82rem; color: var(–text-muted); margin-top: 4px; }

.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.review-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(–radius-md);
padding: 28px;
transition: var(–transition);
}
.review-card:hover {
border-color: rgba(201,168,76,0.25);
transform: translateY(-4px);
box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-top {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.reviewer-avatar {
width: 46px;
height: 46px;
border-radius: 50%;
background: linear-gradient(135deg, var(–gold), var(–gold-dark));
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: var(–blue-dark);
font-weight: 900;
flex-shrink: 0;
}
.reviewer-info {}
.reviewer-name { font-size: 0.95rem; font-weight: 800; color: var(–white); }
.reviewer-location { font-size: 0.78rem; color: var(–text-muted); }

.review-stars { color: var(–gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: #8a9bbf; line-height: 1.75; }
.review-product {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 14px;
background: rgba(201,168,76,0.1);
border: 1px solid rgba(201,168,76,0.2);
color: var(–gold-light);
font-size: 0.75rem;
font-weight: 700;
padding: 4px 12px;
border-radius: 20px;
}

.verified-badge {
display: inline-flex;
align-items: center;
gap: 4px;
color: var(–green);
font-size: 0.72rem;
font-weight: 700;
margin-top: 10px;
}
.verified-badge i { font-size: 0.75rem; }

/* ============================================================
CATEGORIES / PRODUCTS ROW
============================================================ */
.categories {
padding: 80px 0;
background: var(–off-white);
}

.cats-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40px;
}

.cats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.cat-card {
background: var(–white);
border-radius: var(–radius-md);
padding: 28px 20px;
text-align: center;
border: 1px solid #e8eef8;
box-shadow: 0 2px 12px rgba(0,0,0,0.04);
transition: var(–transition);
cursor: pointer;
}
.cat-card:hover {
border-color: var(–gold);
box-shadow: 0 12px 32px rgba(201,168,76,0.15);
transform: translateY(-5px);
}

.cat-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(–blue-dark), var(–blue-mid));
border-radius: 50%;
margin: 0 auto 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
transition: var(–transition);
}
.cat-card:hover .cat-icon {
background: linear-gradient(135deg, var(–gold), var(–gold-light));
}

.cat-name { font-size: 0.92rem; font-weight: 800; color: var(–blue-dark); margin-bottom: 4px; }
.cat-count { font-size: 0.78rem; color: #8a9bbf; }

/* ============================================================
FINAL CTA SECTION
============================================================ */
.final-cta {
padding: 100px 0;
background: linear-gradient(155deg, var(–blue-darkest), var(–blue-mid));
position: relative;
overflow: hidden;
text-align: center;
}

.final-cta::before {
content: ”;
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%,-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
border-radius: 50%;
pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.cta-urgency {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(231,76,60,0.12);
border: 1px solid rgba(231,76,60,0.25);
color: #e07070;
font-size: 0.85rem;
font-weight: 700;
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 28px;
}
.cta-urgency .pulse-dot {
width: 8px;
height: 8px;
background: var(–red);
border-radius: 50%;
animation: blink 1s ease-in-out infinite;
}

.cta-title {
font-size: clamp(1.9rem, 5vw, 3rem);
font-weight: 900;
color: var(–white);
line-height: 1.3;
margin-bottom: 16px;
}
.cta-title .gold { color: var(–gold); }

.cta-sub {
font-size: 1.05rem;
color: #8a9bbf;
line-height: 1.7;
margin-bottom: 40px;
}

.cta-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}

.btn-cta-big {
display: inline-flex;
align-items: center;
gap: 12px;
background: linear-gradient(135deg, var(–gold) 0%, var(–gold-light) 50%, var(–gold) 100%);
color: var(–blue-darkest);
font-family: var(–font);
font-size: 1.15rem;
font-weight: 900;
padding: 20px 44px;
border-radius: 50px;
border: none;
cursor: pointer;
transition: var(–transition);
box-shadow: 0 12px 40px rgba(201,168,76,0.4);
background-size: 200% auto;
animation: goldShimmer 3s linear infinite;
}
@keyframes goldShimmer {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}
.btn-cta-big:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 20px 60px rgba(201,168,76,0.55);
}

.cta-trust-row {
display: flex;
align-items: center;
justify-content: center;
gap: 28px;
margin-top: 36px;
flex-wrap: wrap;
}
.cta-trust-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
color: var(–text-muted);
}
.cta-trust-item i { color: var(–green); }

/* ============================================================
FOOTER
============================================================ */
.footer {
background: var(–blue-darkest);
border-top: 1px solid rgba(201,168,76,0.1);
padding: 60px 0 30px;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.2fr;
gap: 48px;
margin-bottom: 48px;
}

.footer-brand {}
.footer-brand .logo-text .arabic { font-size: 1.5rem; }

.footer-desc {
font-size: 0.875rem;
color: var(–text-muted);
line-height: 1.75;
margin: 16px 0 24px;
}

.social-links {
display: flex;
gap: 10px;
}
.social-link {
width: 38px;
height: 38px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: var(–radius-sm);
display: flex;
align-items: center;
justify-content: center;
color: var(–text-muted);
font-size: 0.95rem;
transition: var(–transition);
}
.social-link:hover { background: var(–gold); color: var(–blue-dark); border-color: var(–gold); }

.footer-col-title {
font-size: 0.92rem;
font-weight: 800;
color: var(–white);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
font-size: 0.85rem;
color: var(–text-muted);
transition: color 0.2s;
}
.footer-links a:hover { color: var(–gold); }

.footer-contact-item {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 0.85rem;
color: var(–text-muted);
}
.footer-contact-item i { color: var(–gold); width: 16px; }

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.06);
padding-top: 24px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #4a5a7a; }
.footer-bottom span { color: var(–gold); }

.payment-icons { display: flex; gap: 8px; }
.payment-icon {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 6px;
padding: 4px 10px;
font-size: 0.72rem;
font-weight: 800;
color: var(–text-muted);
}

/* ============================================================
MOBILE MENU OVERLAY
============================================================ */
.mobile-menu {
display: none;
position: fixed;
inset: 0;
background: var(–blue-darkest);
z-index: 2000;
flex-direction: column;
padding: 24px 20px;
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.mobile-menu.open {
display: flex;
transform: translateX(0);
}
.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.mobile-close {
background: rgba(255,255,255,0.08);
border: none;
color: var(–white);
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 1.1rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
display: block;
color: #c8d4e8;
font-size: 1.1rem;
font-weight: 700;
padding: 14px 16px;
border-radius: var(–radius-sm);
transition: var(–transition);
}
.mobile-nav a:hover { background: rgba(201,168,76,0.1); color: var(–gold); }

/* ============================================================
STICKY BUY BAR (MOBILE)
============================================================ */
.sticky-buy-bar {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 900;
background: var(–blue-dark);
border-top: 1px solid rgba(201,168,76,0.2);
padding: 12px 20px;
gap: 12px;
align-items: center;
box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.sticky-buy-price { flex: 1; }
.sticky-buy-price .price { font-size: 1.3rem; font-weight: 900; color: var(–gold); }
.sticky-buy-price .label { font-size: 0.72rem; color: var(–text-muted); }
.sticky-buy-bar .btn-primary { flex: 2; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }

/* ============================================================
SCROLL TO TOP
============================================================ */
.scroll-top {
position: fixed;
bottom: 80px;
left: 20px;
width: 44px;
height: 44px;
background: var(–gold);
color: var(–blue-dark);
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
font-size: 1rem;
cursor: pointer;
box-shadow: 0 4px 16px rgba(201,168,76,0.4);
transition: var(–transition);
z-index: 800;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* ============================================================
RESPONSIVE โ€” TABLET
============================================================ */
@media (max-width: 1024px) {
.navbar-links { display: none; }
.hamburger { display: flex; }
.trust-grid { grid-template-columns: repeat(2, 1fr); }
.trust-item:nth-child(2) { border-left: none; }
.trust-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
.prob-sol-grid { grid-template-columns: 1fr 1fr; }
.cats-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
RESPONSIVE โ€” MOBILE
============================================================ */
@media (max-width: 768px) {
.hero { min-height: auto; padding: 50px 0 70px; }
.hero-grid { grid-template-columns: 1fr; gap: 40px; }
.hero-visual { order: -1; }
.hero-product-card { max-width: 100%; }
.hero-stats { gap: 20px; }
.float-card.card-1,
.float-card.card-2 { display: none; }

.ph-grid { grid-template-columns: 1fr; gap: 40px; }
.why-us-inner { grid-template-columns: 1fr; gap: 40px; }
.why-visual { order: -1; }
.prob-sol-grid { grid-template-columns: 1fr; }
.reviews-grid { grid-template-columns: 1fr; }
.cats-grid { grid-template-columns: repeat(2, 1fr); }

.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; text-align: center; }

.trust-grid {
grid-template-columns: 1fr 1fr;
gap: 0;
}
.trust-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-item:last-child { border-bottom: none; }

.sticky-buy-bar { display: flex; }

.hero-actions { flex-direction: column; align-items: flex-start; }
.btn-primary, .btn-secondary { width: 100%; justify-content: center; }

.rating-summary { flex-direction: column; text-align: center; }

.cats-header { flex-direction: column; gap: 16px; align-items: flex-start; }

.cta-actions { flex-direction: column; }
.btn-cta-big { width: 100%; justify-content: center; }

.cta-trust-row { gap: 14px; }
}

@media (max-width: 480px) {
.hero-headline { font-size: 1.9rem; }
.cats-grid { grid-template-columns: repeat(2, 1fr); }
.why-mini-cards { grid-template-columns: 1fr 1fr; }
}

๐ŸŽ‰ ุนุฑุถ ู…ุญุฏูˆุฏ โ€” ุฎุตู… 30% ุนู„ู‰ ุฃูˆู„ ุทู„ุจ ยท ุดุญู† ู…ุฌุงู†ูŠ ู„ู„ุทู„ุจุงุช ููˆู‚ 200 ุฑูŠุงู„ ยท ุงู„ุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู… ู…ุชุงุญ ๐Ÿ‡ธ๐Ÿ‡ฆ


ุงู„ู…ุชุฌุฑ ุงู„ุฃูˆู„ ู„ู„ุญู„ูˆู„ ุงู„ุฐูƒูŠุฉ ููŠ ุงู„ุณุนูˆุฏูŠุฉ

ุญู„ูˆู„ ุฐูƒูŠุฉ
ู„ุญูŠุงุฉ ุฃุณู‡ู„

ุฃูุถู„ ุงู„ู…ู†ุชุฌุงุช ุงู„ู„ูŠ ุชุญู„ ู…ุดุงูƒู„ูƒ ุงู„ูŠูˆู…ูŠุฉ โ€”
ู…ุฎุชุงุฑุฉ ุจุนู†ุงูŠุฉุŒ ู…ูˆุซูˆู‚ุฉ 100ูชุŒ ูˆุจูŠู† ูŠุฏูŠูƒ ุจุฃุณุฑุน ูˆู‚ุช

+5K
ุนู…ูŠู„ ุณุนูŠุฏ

+200
ู…ู†ุชุฌ ุฐูƒูŠ

4.9โ˜…
ุชู‚ูŠูŠู… ุงู„ุนู…ู„ุงุก

โœ…
ุชู… ุงู„ุชุณู„ูŠู… ุจู†ุฌุงุญ
๐ŸŒŸ
ุชู‚ูŠูŠู… 5 ู†ุฌูˆู…
๐Ÿ”ฅ ุงู„ุฃูƒุซุฑ ู…ุจูŠุนุงู‹

๐Ÿ“ท
ูƒุงู…ูŠุฑุง ุงู„ู…ุฑุงู‚ุจุฉ ุงู„ุฐูƒูŠุฉ
ุฑุงู‚ุจ ุจูŠุชูƒ ู…ู† ุฃูŠ ู…ูƒุงู† ููŠ ุงู„ุนุงู„ู…
249 ุฑูŠุงู„
349 ุฑูŠุงู„
ูˆูู‘ุฑ 29%

ุชุจู‚ู‘ู‰ ูƒู…ูŠุงุช ู‚ู„ูŠู„ุฉ!
70% ู…ุจุงุน



ุงุทู„ุจ ุงู„ุขู†

ุดุญู† ุณุฑูŠุน ุฏุงุฎู„ ุงู„ุณุนูˆุฏูŠุฉ
ุชูˆุตูŠู„ ุฎู„ุงู„ 2-3 ุฃูŠุงู… ุนู…ู„

ุงู„ุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู…
ุงุฏูุน ู„ู…ุง ูŠูˆุตู„ูƒ ุงู„ู…ู†ุชุฌ

ุถู…ุงู† ุงู„ุฌูˆุฏุฉ
ุฅุฑุฌุงุน ู…ุฌุงู†ูŠ ุฎู„ุงู„ 14 ูŠูˆู…

ุฏุนู… 24/7
ูุฑูŠู‚ู†ุง ุฏุงูŠู… ู…ูˆุฌูˆุฏ ู„ูƒ

๐Ÿ“ท
-29%
๐Ÿ“ท
๐Ÿ”
๐Ÿ“ฑ
๐Ÿ”’

โ˜…โ˜…โ˜…โ˜…โ˜…
(847 ุชู‚ูŠูŠู…)

ูƒุงู…ูŠุฑุง ุงู„ู…ุฑุงู‚ุจุฉ ุงู„ุฐูƒูŠุฉ โ€” ุฑุงู‚ุจ ุจูŠุชูƒ ุฏุงูŠู…ุงู‹

ู…ูˆ ุจุณ ูƒุงู…ูŠุฑุง โ€” ุฏูŠ ุฑุงุญุฉ ุจุงู„ ุญู‚ูŠู‚ูŠุฉ. ุดูˆู ูƒู„ ุดูŠ ู…ู† ู…ูˆุจุงูŠู„ูƒ ุฃูŠู†ู…ุง ูƒู†ุช.

  • ุฑุคูŠุฉ ู„ูŠู„ูŠุฉ ูˆุงุถุญุฉ 100% ุจุฏูˆู† ู…ุง ุชุญุณ

  • ุชู†ุจูŠู‡ ููˆุฑูŠ ุนู„ู‰ ู…ูˆุจุงูŠู„ูƒ ู„ูˆ ููŠ ุญุฑูƒุฉ ู…ุดุจูˆู‡ุฉ

  • ุชุชูƒู„ู… ูˆุชุณู…ุน ู…ู† ุฎู„ุงู„ ุงู„ูƒุงู…ูŠุฑุง ู…ุจุงุดุฑุฉ

  • ุชุฑูƒูŠุจ ุณู‡ู„ ููŠ ุฏู‚ุงุฆู‚ โ€” ุจุฏูˆู† ุฎุจุฑุฉ

  • ู…ู‚ุงูˆู…ุฉ ู„ู„ู…ุงุก ูˆุงู„ุบุจุงุฑ โ€” ู…ู†ุงุณุจุฉ ู„ู„ุฎุงุฑุฌ

249 ุฑูŠุงู„
349 ุฑูŠุงู„

ูˆูู‘ุฑุช 100 ุฑูŠุงู„!

ุงูƒุชุดู ู…ู†ุชุฌุงุชู†ุง


ุนุฑุถ ุงู„ูƒู„

๐Ÿ 
ุงู„ู…ู†ุฒู„ ุงู„ุฐูƒูŠ
+45 ู…ู†ุชุฌ

๐Ÿ”’
ุงู„ุฃู…ู† ูˆุงู„ุญู…ุงูŠุฉ
+30 ู…ู†ุชุฌ

๐Ÿ’ช
ุงู„ุตุญุฉ ูˆุงู„ุฑูŠุงุถุฉ
+38 ู…ู†ุชุฌ

โšก
ุงู„ุฅู„ูƒุชุฑูˆู†ูŠุงุช
+52 ู…ู†ุชุฌ

ุนุงุฑู ุงู„ู…ุดูƒู„ุฉุŸ ุนู†ุฏู†ุง ุงู„ุญู„

ู…ู†ุชุฌุงุชู†ุง ู…ุด ู…ุฌุฑุฏ ุฃุดูŠุงุก โ€” ู‡ูŠ ุฅุฌุงุจุงุช ุญู‚ูŠู‚ูŠุฉ ู„ู…ุดุงูƒู„ ุญู‚ูŠู‚ูŠุฉ

ุงู„ู…ุดูƒู„ุฉ
๐Ÿ˜ฐ
ู…ูˆ ู‚ุงุฏุฑ ุชุนุฑู ูˆุด ูŠุตูŠุฑ ููŠ ุจูŠุชูƒ ูˆุฃู†ุช ุจุฑู‡ โ€” ูˆุฏุงุฎู„ูƒ ู‚ู„ู‚ ุนู„ู‰ ุฃู‡ู„ูƒ ูˆู…ุชุงุนูƒ

ุงู„ุญู„
๐Ÿ“ท
ูƒุงู…ูŠุฑุง ุงู„ู…ุฑุงู‚ุจุฉ ุงู„ุฐูƒูŠุฉ โ€” ุดูˆู ุจูŠุชูƒ ู…ู† ุฃูŠ ู…ูƒุงู† ูˆุฎู„ ู‚ู„ุจูƒ ูŠุทู…ู†

ุงู„ู…ุดูƒู„ุฉ
๐Ÿ˜ฉ
ุงู„ู†ูˆู… ุตุนุจ ูˆุงู„ุธู‡ุฑ ูŠูˆุฌุนูƒ ูƒู„ ุตุจุญ โ€” ูˆู…ูˆ ู‚ุงุฏุฑ ุชู„ู‚ู‰ ุฑุงุญุฉ ุญู‚ูŠู‚ูŠุฉ

ุงู„ุญู„
๐Ÿ›๏ธ
ูˆุณุงุฏุฉ ุงู„ุฏุนู… ุงู„ุทุจูŠ โ€” ุตูู…ู‘ู…ุช ู„ุชุฎู„ูŠ ู†ูˆู…ูƒ ุฃุนู…ู‚ ูˆุธู‡ุฑูƒ ุฃุฑูŠุญ

ุงู„ู…ุดูƒู„ุฉ
๐Ÿ˜ค
ุงู„ูƒุงุจู„ุงุช ูˆุงู„ุฃุบุฑุงุถ ู…ุจุนุซุฑุฉ ูˆู…ูˆ ู‚ุงุฏุฑ ุชู†ุธู… ุฃุบุฑุงุถูƒ โ€” ุงู„ุจูŠุช ููˆุถู‰

ุงู„ุญู„
๐Ÿ—‚๏ธ
ู†ุธุงู… ุงู„ุชู†ุธูŠู… ุงู„ุฐูƒูŠ โ€” ุฎู„ู‘ ูƒู„ ุดูŠ ููŠ ู…ูƒุงู†ู‡ ุงู„ุตุญ ุจุฃู‚ู„ ุฌู‡ุฏ

ู…ูˆ ุจุณ ู…ุชุฌุฑ โ€” ู†ุญู† ู†ู‚ุฏู… ุญู„ูˆู„

ูƒู„ ู…ู†ุชุฌ ุนู†ุฏู†ุง ุงุฎุชุฑู†ุงู‡ ุจุนู†ุงูŠุฉ ูุงุฆู‚ุฉ ุนุดุงู† ูŠุญู„ ู…ุดูƒู„ุฉ ุญู‚ูŠู‚ูŠุฉ ููŠ ุญูŠุงุชูƒ

ู…ู†ุชุฌุงุช ู…ุฎุชุงุฑุฉ ุจุนู†ุงูŠุฉ

ูƒู„ ู…ู†ุชุฌ ูŠู…ุฑ ุจุงุฎุชุจุงุฑ ุฌูˆุฏุฉ ุตุงุฑู… ู‚ุจู„ ู…ุง ูŠูˆุตู„ ู„ูƒ โ€” ุจุณ ุงู„ุฃูุถู„ ูŠูˆุตู„ ู„ุจูŠุชูƒ

ุญู„ูˆู„ ุนู…ู„ูŠุฉ ู„ู…ุดุงูƒู„ ุญู‚ูŠู‚ูŠุฉ

ู…ุง ู†ุจูŠุน ู…ู†ุชุฌุงุช โ€” ู†ุญู† ู†ุจูŠุน ุญู„ูˆู„. ูƒู„ ุงุฎุชูŠุงุฑ ุนู†ุฏู†ุง ูŠุฎุฏู… ุบุฑุถ ูˆุงุถุญ ููŠ ุญูŠุงุชูƒ

ุชุฌุฑุจุฉ ุชุณูˆู‚ ุณู‡ู„ุฉ ูˆุณุฑูŠุนุฉ

ุงุทู„ุจ ุจู†ู‚ุฑุชูŠู†ุŒ ูˆุงุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู… โ€” ู…ุงููŠ ุฃุณู‡ู„ ู…ู† ูƒุฐุง

๐Ÿ†
ุฑู‚ู… 1 ููŠ ุงู„ุญู„ูˆู„ ุงู„ุฐูƒูŠุฉ
ุงู„ูˆุฌู‡ุฉ ุงู„ุฃูˆู„ู‰ ู„ู„ุณุนูˆุฏูŠูŠู† ุงู„ู„ูŠ ูŠุจุบูˆู† ู…ู†ุชุฌุงุช ุชุญู„ ู…ุดุงูƒู„ู‡ู… ูุนู„ุงู‹

+5K
ุนู…ูŠู„ ุณุนูŠุฏ

4.9โ˜…
ู…ุชูˆุณุท ุงู„ุชู‚ูŠูŠู…

+200
ู…ู†ุชุฌ ุฐูƒูŠ

98%
ู…ุนุฏู„ ุงู„ุฑุถุง

ูƒู„ุงู…ู‡ู… ุฃุตุฏู‚ ู…ู† ูƒู„ุงู…ู†ุง

ุขู„ุงู ุงู„ุนู…ู„ุงุก ุงู„ุณุนูˆุฏูŠูŠู† ุฌุฑุจูˆุง ูˆู‚ุงู„ูˆุง ุฑุฃูŠู‡ู…

4.9
โ˜…โ˜…โ˜…โ˜…โ˜…
ุจู†ุงุกู‹ ุนู„ู‰ +2,400 ุชู‚ูŠูŠู… ู…ูˆุซู‘ู‚

ุฃ
ุฃุจูˆ ุนุจุฏุงู„ุนุฒูŠุฒ
๐Ÿ“ ุงู„ุฑูŠุงุถ

โ˜…โ˜…โ˜…โ˜…โ˜…

ูˆุงู„ู„ู‡ ุงู„ู…ู†ุชุฌ ูุงู‚ ุชูˆู‚ุนุงุชูŠ! ุงู„ูƒุงู…ูŠุฑุง ู†ุธูŠูุฉ ูˆุชุฑูƒูŠุจู‡ุง ุณู‡ู„ ุฌุฏุงู‹ุŒ ูˆุฅุดุนุงุฑุงุช ุงู„ู…ูˆุจุงูŠู„ ุชุฌูŠ ููˆุฑูŠุฉ. ุฃู†ุตุญ ููŠู‡ุง ุจุดุฏุฉ ู„ูƒู„ ูˆุงุญุฏ ุนู†ุฏู‡ ุจูŠุช ุฃูˆ ู…ุญู„.

ูƒุงู…ูŠุฑุง ุงู„ู…ุฑุงู‚ุจุฉ ุงู„ุฐูƒูŠุฉ

ุดุฑุงุก ู…ูˆุซู‘ู‚

ู†
ู†ูˆุฑุฉ ุงู„ุนุชูŠุจูŠ
๐Ÿ“ ุฌุฏุฉ

โ˜…โ˜…โ˜…โ˜…โ˜…

ุงู„ุชูˆุตูŠู„ ูƒุงู† ุณุฑูŠุน ุฌุฏุงู‹ุŒ ูˆุตู„ู†ูŠ ููŠ ูŠูˆู…ูŠู†! ูˆุงู„ู…ู†ุชุฌ ุฃุญุณู† ู…ู† ุงู„ุตูˆุฑ ุจูƒุซูŠุฑ. ุงู„ุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู… ุฎู„ุงู†ูŠ ู…ุง ุฃุชุฑุฏุฏ ุฃุจุฏ. ุดูƒุฑุงู‹ ุญู„ูŠ ู…ูˆู„ ๐Ÿ™

ูˆุณุงุฏุฉ ุงู„ุฏุนู… ุงู„ุทุจูŠ

ุดุฑุงุก ู…ูˆุซู‘ู‚

ู…
ู…ุญู…ุฏ ุงู„ุดู‡ุฑูŠ
๐Ÿ“ ุงู„ุฏู…ุงู…

โ˜…โ˜…โ˜…โ˜…โ˜…

ุฃุฎูŠุฑุงู‹ ู…ุชุฌุฑ ุณุนูˆุฏูŠ ูŠูู‡ู… ุงู„ู„ูŠ ุฃุญุชุงุฌู‡! ูƒู„ ู…ู†ุชุฌ ุงุดุชุฑูŠุชู‡ ู…ู† ุญู„ูŠ ู…ูˆู„ ุญู„ ู…ุดูƒู„ุฉ ุญู‚ูŠู‚ูŠุฉ ุนู†ุฏูŠ. ุณุนุฑ ู…ู†ุงุณุจ ูˆุฌูˆุฏุฉ ู…ู…ุชุงุฒุฉ. ุงู„ู„ู‡ ูŠูˆูู‚ูƒู…!

ู†ุธุงู… ุงู„ุชู†ุธูŠู… ุงู„ุฐูƒูŠ

ุดุฑุงุก ู…ูˆุซู‘ู‚


ุชู†ุจูŠู‡: ุงู„ูƒู…ูŠุงุช ู…ุญุฏูˆุฏุฉ โ€” ู„ุง ุชููˆู‘ุช ุงู„ูุฑุตุฉ!

ุงุทู„ุจ ุงู„ุขู† ู‚ุจู„
ู†ูุงุฐ ุงู„ูƒู…ูŠุฉ

ุขู„ุงู ุงู„ุนู…ู„ุงุก ุงู„ุณุนูˆุฏูŠูŠู† ุงุฎุชุงุฑูˆุง ุญู„ูŠ ู…ูˆู„ โ€”
ุฏูˆุฑูƒ ุงู„ุขู† ุชุฌุฑุจ ุงู„ูุฑู‚ ุจู†ูุณูƒ


ุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู…

ุดุญู† ุฎู„ุงู„ 48 ุณุงุนุฉ

ุฅุฑุฌุงุน ู…ุฌุงู†ูŠ 14 ูŠูˆู…

ุถู…ุงู† ุงู„ุฌูˆุฏุฉ

249 ุฑูŠุงู„
ุงู„ุฏูุน ุนู†ุฏ ุงู„ุงุณุชู„ุงู…


ุงุทู„ุจ ุงู„ุขู†


// โ”€โ”€ Mobile Menu โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
const menuBtn = document.getElementById(‘menuBtn’);
const menuClose = document.getElementById(‘menuClose’);
const mobileMenu = document.getElementById(‘mobileMenu’);

menuBtn.addEventListener(‘click’, () => mobileMenu.classList.add(‘open’));
menuClose.addEventListener(‘click’, () => mobileMenu.classList.remove(‘open’));
mobileMenu.addEventListener(‘click’, (e) => {
if (e.target === mobileMenu) mobileMenu.classList.remove(‘open’);
});

// โ”€โ”€ Scroll to Top โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
const scrollTopBtn = document.getElementById(‘scrollTop’);
window.addEventListener(‘scroll’, () => {
scrollTopBtn.classList.toggle(‘visible’, window.scrollY > 400);
});
scrollTopBtn.addEventListener(‘click’, () => window.scrollTo({ top: 0, behavior: ‘smooth’ }));

// โ”€โ”€ Navbar Scroll Effect โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
const navbar = document.querySelector(‘.navbar’);
window.addEventListener(‘scroll’, () => {
if (window.scrollY > 60) {
navbar.style.boxShadow = ‘0 4px 30px rgba(0,0,0,0.6)’;
} else {
navbar.style.boxShadow = ‘0 2px 20px rgba(0,0,0,0.4)’;
}
});

// โ”€โ”€ Product Thumbnails โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
const thumbs = document.querySelectorAll(‘.ph-thumb’);
thumbs.forEach(t => {
t.addEventListener(‘click’, () => {
thumbs.forEach(x => x.classList.remove(‘active’));
t.classList.add(‘active’);
});
});

// โ”€โ”€ Intersection Observer (fade in on scroll) โ”€โ”€
const observerOpts = { threshold: 0.12 };
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.style.opacity = ‘1’;
e.target.style.transform = ‘translateY(0)’;
observer.unobserve(e.target);
}
});
}, observerOpts);

document.querySelectorAll(
‘.trust-item, .ps-card, .review-card, .why-feature, .cat-card, .why-mini’
).forEach(el => {
el.style.opacity = ‘0’;
el.style.transform = ‘translateY(24px)’;
el.style.transition = ‘opacity 0.5s ease, transform 0.5s ease’;
observer.observe(el);
});