/* الألوان الأساسية */
:root {
    --main-color: #ff6600; /* نيون برتقالي */
    --bg-dark: #080808;
    --card-bg: #121212;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
}

.logo { font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--main-color); }

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--main-color); }

.cart { position: relative; font-size: 1.3rem; cursor: pointer; }
#cart-count {
    position: absolute;
    top: -10px; right: -15px;
    background: var(--main-color);
    color: #000;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8% 100px;
    min-height: 85vh;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; position: relative; display: flex; justify-content: center; }

.badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--main-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border-left: 3px solid var(--main-color);
}

h1 { font-size: 4.5rem; line-height: 1; margin: 25px 0; font-weight: 900; }
.neon-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--main-color);
}

p { color: var(--text-gray); max-width: 500px; line-height: 1.7; margin-bottom: 40px; }

.price-box { margin-bottom: 30px; }
.current-price { font-size: 2.5rem; font-weight: 700; color: var(--text-white); }
.old-price { font-size: 1.2rem; color: #444; text-decoration: line-through; margin-left: 15px; }

.buy-btn {
    background: var(--main-color);
    color: #000;
    border: none;
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 4px;
}

.buy-btn:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
    transform: translateY(-5px);
}

.hero-image {
    perspective: 1000px; /* تفعيل تأثير الـ 3D (اختياري) */
}

.headset-3d-model {
    width: 100%;
    height: 400px; /* اضبط الارتفاع حسب الحاجة */
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.headset-3d-model canvas {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 80px 8%;
    background: #050505;
}

.f-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #1a1a1a;
}

.f-card:hover { border-color: var(--main-color); transform: scale(1.02); }
.f-card i { font-size: 2.5rem; color: var(--main-color); margin-bottom: 25px; }
.f-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.f-card p { font-size: 0.9rem; color: var(--text-gray); }

/* --- 3D Flip Effect for Hero Image --- */
.hero-image {
    perspective: 1000px; /* ضروري لعمل تأثير الـ 3D */
}

.hero-image img:hover {
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Reviews Section --- */
.reviews { padding: 80px 8%; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; color: var(--main-color); }

.reviews-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    border: 1px solid #1a1a1a;
    transition: 0.5s;
    transform-style: preserve-3d; /* لتفعيل الـ 3D داخل الكارت */
}

.review-card:hover {
    transform: rotateY(10deg) translateY(-10px);
    border-color: var(--main-color);
}

.stars { color: #ffcc00; margin-bottom: 15px; }
.user { margin-top: 15px; font-weight: bold; color: var(--main-color); }

/* --- Newsletter --- */
.newsletter {
    padding: 100px 8%;
    background: linear-gradient(rgba(255,102,0,0.05), transparent);
    text-align: center;
}

.newsletter-content h2 { font-size: 2.5rem; margin-bottom: 10px; }

.subscribe-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-form input {
    padding: 15px 25px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #111;
    color: white;
    width: 300px;
}

.subscribe-form button {
    padding: 15px 30px;
    background: var(--main-color);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* --- Footer --- */
.store-footer {
    padding: 40px 8%;
    border-top: 1px solid #1a1a1a;
    background: #050505;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.socials { display: flex; gap: 20px; }
.socials a { color: #555; font-size: 1.2rem; transition: 0.3s; }
.socials a:hover { color: var(--main-color); }

/* Responsive */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; }
    h1 { font-size: 3rem; }
    p { margin: 20px auto; }
    .hero-image { margin-top: 60px; }
}

