Repository files navigation
<title>متجرك الفاخر | Luxury Store</title>
<style>
:root {
--gold: #C9A227;
--gold-light: #E8D5A3;
--gold-dark: #9A7B1A;
--black: #0a0a0a;
--black-light: #1a1a1a;
--white: #ffffff;
--gray: #f5f5f5;
--gray-dark: #888;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Tajawal', 'Cairo', sans-serif;
background: var(--white);
color: var(--black);
overflow-x: hidden;
line-height: 1.7;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.animate { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.header {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(201,162,39,0.1);
transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header-inner {
max-width: 1400px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding: 15px 30px;
}
.logo {
font-size: 1.8rem; font-weight: 900;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
display: flex; align-items: center; gap: 10px;
}
.logo i { font-size: 1.5rem; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a {
text-decoration: none; color: var(--black);
font-weight: 600; font-size: 0.95rem;
position: relative; padding: 5px 0;
transition: var(--transition);
}
.nav-links a::after {
content: ''; position: absolute; bottom: 0; right: 0;
width: 0; height: 2px; background: var(--gold);
transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.search-box { position: relative; }
.search-box input {
width: 250px; padding: 10px 40px 10px 15px;
border: 2px solid transparent; border-radius: 30px;
background: var(--gray); font-family: inherit;
transition: var(--transition); outline: none;
}
.search-box input:focus {
border-color: var(--gold); background: var(--white);
box-shadow: 0 0 20px rgba(201,162,39,0.15);
}
.search-box i {
position: absolute; left: 15px; top: 50%;
transform: translateY(-50%); color: var(--gray-dark);
}
.icon-btn {
width: 42px; height: 42px; border-radius: 50%;
border: none; background: var(--gray);
color: var(--black); cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: var(--transition); font-size: 1.1rem;
}
.icon-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.mobile-menu-btn { display: none; }
.hero {
height: 100vh; position: relative; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.hero-bg {
position: absolute; inset: 0;
background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #2a1a0a 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
position: absolute; border-radius: 50%;
background: var(--gold); opacity: 0.3;
animation: float 6s ease-in-out infinite;
}
.hero-content {
position: relative; z-index: 2; text-align: center;
max-width: 900px; padding: 0 20px;
}
.hero-badge {
display: inline-block; padding: 8px 25px;
border: 1px solid var(--gold); border-radius: 30px;
color: var(--gold); font-size: 0.9rem; font-weight: 600;
margin-bottom: 25px; letter-spacing: 2px;
}
.hero h1 {
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 900; color: var(--white);
margin-bottom: 20px; line-height: 1.2;
}
.hero h1 span {
background: linear-gradient(135deg, var(--gold), var(--gold-light));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
font-size: 1.2rem; color: rgba(255,255,255,0.7);
margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.btn-primary {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 45px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--white); text-decoration: none; border-radius: 50px;
font-weight: 700; font-size: 1.05rem; border: none; cursor: pointer;
transition: var(--transition); position: relative; overflow: hidden;
box-shadow: 0 10px 40px rgba(201,162,39,0.3);
}
.btn-primary:hover {
transform: translateY(-3px); box-shadow: 0 20px 50px rgba(201,162,39,0.4);
}
.btn-secondary {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 45px; background: transparent;
color: var(--white); text-decoration: none; border-radius: 50px;
font-weight: 700; font-size: 1.05rem; border: 2px solid rgba(255,255,255,0.3);
cursor: pointer; transition: var(--transition); margin-right: 15px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
position: absolute; bottom: 50px; left: 0; right: 0;
display: flex; justify-content: center; gap: 60px; z-index: 2;
}
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stat-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.section { padding: 100px 20px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
color: var(--gold); font-weight: 700; font-size: 0.9rem;
letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
margin-bottom: 15px;
}
.section-title span { color: var(--gold); }
.section-desc {
color: var(--gray-dark); max-width: 600px; margin: 0 auto;
font-size: 1.05rem;
}
.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
}
.category-card {
background: var(--white); border-radius: 20px;
padding: 35px 20px; text-align: center;
border: 1px solid rgba(0,0,0,0.05);
transition: var(--transition); cursor: pointer;
position: relative; overflow: hidden;
}
.category-card::before {
content: ''; position: absolute; inset: 0;
background: linear-gradient(135deg, var(--gold), var(--gold-dark));
opacity: 0; transition: var(--transition); border-radius: 20px;
}
.category-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.category-card:hover::before { opacity: 1; }
.category-card:hover * { color: var(--white) !important; position: relative; z-index: 1; }
.category-icon {
width: 70px; height: 70px; border-radius: 50%;
background: var(--gray); display: flex;
align-items: center; justify-content: center;
margin: 0 auto 20px; font-size: 1.8rem;
transition: var(--transition);
}
.category-card:hover .category-icon { background: rgba(255,255,255,0.2); }
.category-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.category-card p { font-size: 0.85rem; color: var(--gray-dark); }
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.product-card {
background: var(--white); border-radius: 20px;
overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
transition: var(--transition); position: relative;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.product-badge {
position: absolute; top: 15px; right: 15px; z-index: 3;
padding: 5px 15px; border-radius: 20px;
font-size: 0.8rem; font-weight: 700;
}
.badge-new { background: var(--gold); color: var(--white); }
.badge-sale { background: #e74c3c; color: var(--white); }
.badge-sold { background: var(--gray-dark); color: var(--white); }
.product-img-wrap {
position: relative; height: 280px; overflow: hidden;
background: var(--gray);
}
.product-img-wrap img {
width: 100%; height: 100%; object-fit: cover;
transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-overlay {
position: absolute; inset: 0; background: rgba(0,0,0,0.4);
display: flex; align-items: center; justify-content: center;
gap: 15px; opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
width: 50px; height: 50px; border-radius: 50%;
background: var(--white); border: none; cursor: pointer;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; transition: var(--transition);
transform: translateY(20px);
}
.product-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { background: var(--gold); color: var(--white); }
.product-info { padding: 25px; }
.product-category {
color: var(--gold); font-size: 0.8rem; font-weight: 700;
letter-spacing: 1px; margin-bottom: 8px;
}
.product-name {
font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
line-height: 1.4;
}
.product-price {
display: flex; align-items: center; gap: 12px; margin-bottom: 15px;
}
.price-current { font-size: 1.3rem; font-weight: 900; color: var(--gold); }
.price-old { font-size: 1rem; color: var(--gray-dark); text-decoration: line-through; }
.product-status {
display: inline-flex; align-items: center; gap: 6px;
font-size: 0.85rem; font-weight: 600;
}
.status-available { color: #27ae60; }
.status-sold { color: #e74c3c; }
.whatsapp-btn {
width: 100%; padding: 14px; margin-top: 15px;
background: #25D366; color: var(--white); border: none;
border-radius: 12px; font-family: inherit; font-weight: 700;
font-size: 0.95rem; cursor: pointer; display: flex;
align-items: center; justify-content: center; gap: 10px;
transition: var(--transition);
}
.whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); }
.whatsapp-btn.sold { background: var(--gray-dark); cursor: not-allowed; }
.filters-bar {
display: flex; flex-wrap: wrap; gap: 15px;
align-items: center; justify-content: center;
margin-bottom: 40px; padding: 20px;
background: var(--gray); border-radius: 15px;
}
.filter-select, .filter-input {
padding: 12px 20px; border: 2px solid transparent;
border-radius: 10px; font-family: inherit; font-size: 0.95rem;
background: var(--white); outline: none;
transition: var(--transition); min-width: 180px;
}
.filter-select:focus, .filter-input:focus { border-color: var(--gold); }
.product-detail {
display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
max-width: 1200px; margin: 0 auto; padding: 140px 20px 60px;
}
.detail-gallery {
position: relative; border-radius: 20px; overflow: hidden;
background: var(--gray);
}
.detail-gallery img {
width: 100%; height: 500px; object-fit: cover;
cursor: zoom-in; transition: var(--transition);
}
.detail-gallery img:hover { transform: scale(1.02); }
.detail-info h1 { font-size: 2rem; font-weight: 900; margin-bottom: 15px; }
.detail-price { font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 20px; }
.detail-desc { color: var(--gray-dark); margin-bottom: 25px; font-size: 1.05rem; line-height: 1.8; }
.detail-meta {
display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
margin-bottom: 30px;
}
.meta-item { background: var(--gray); padding: 15px; border-radius: 12px; }
.meta-item label { font-size: 0.8rem; color: var(--gray-dark); }
.meta-item p { font-weight: 700; margin-top: 5px; }
.admin-login {
min-height: 100vh; display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, var(--black), var(--black-light));
}
.login-box {
background: var(--white); padding: 50px; border-radius: 25px;
width: 100%; max-width: 450px; text-align: center;
box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.login-box .logo { justify-content: center; margin-bottom: 30px; font-size: 2rem; }
.login-box input {
width: 100%; padding: 15px 20px; margin-bottom: 20px;
border: 2px solid var(--gray); border-radius: 12px;
font-family: inherit; font-size: 1rem; outline: none;
transition: var(--transition);
}
.login-box input:focus { border-color: var(--gold); }
.login-box button {
width: 100%; padding: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
color: var(--white); border: none; border-radius: 12px;
font-family: inherit; font-weight: 700; font-size: 1.05rem;
cursor: pointer; transition: var(--transition);
}
.login-box button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.3); }
.admin-panel {
padding: 120px 20px 60px; max-width: 1400px; margin: 0 auto;
display: none;
}
.admin-header {
display: flex; justify-content: space-between; align-items: center;
margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
}
.admin-stats {
display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px; margin-bottom: 40px;
}
.admin-stat {
background: var(--white); padding: 25px; border-radius: 15px;
border: 1px solid rgba(0,0,0,0.05); text-align: center;
}
.admin-stat h3 { font-size: 2rem; color: var(--gold); font-weight: 900; }
.admin-stat p { color: var(--gray-dark); font-size: 0.9rem; }
.admin-form {
background: var(--white); padding: 40px; border-radius: 20px;
border: 1px solid rgba(0,0,0,0.05); margin-bottom: 40px;
}
.form-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px; margin-bottom: 20px;
}
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 14px 18px; border: 2px solid var(--gray);
border-radius: 12px; font-family: inherit; font-size: 0.95rem;
outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.admin-table {
width: 100%; border-collapse: collapse; background: var(--white);
border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
}
.admin-table th, .admin-table td {
padding: 18px 20px; text-align: right; border-bottom: 1px solid var(--gray);
}
.admin-table th { background: var(--black); color: var(--gold); font-weight: 700; }
.admin-table tr:hover { background: var(--gray); }
.admin-table img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.action-btns { display: flex; gap: 8px; }
.action-btn {
padding: 8px 14px; border: none; border-radius: 8px;
cursor: pointer; font-family: inherit; font-weight: 600;
font-size: 0.85rem; transition: var(--transition);
}
.btn-edit { background: var(--gold); color: var(--white); }
.btn-delete { background: #e74c3c; color: var(--white); }
.btn-hide { background: var(--gray-dark); color: var(--white); }
.action-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.page-content {
max-width: 900px; margin: 0 auto; padding: 140px 20px 80px;
}
.page-content h1 {
font-size: 2.5rem; font-weight: 900; margin-bottom: 30px; text-align: center;
}
.page-content h1::after {
content: ''; display: block; width: 80px; height: 4px;
background: var(--gold); margin: 15px auto 0; border-radius: 2px;
}
.page-content p { color: var(--gray-dark); font-size: 1.1rem; line-height: 2; margin-bottom: 20px; }
.contact-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px; margin-top: 40px;
}
.contact-card {
background: var(--gray); padding: 35px; borde
You can’t perform that action at this time.