/* Add custom CSS styles below */ 
/* ===== Luxury Dates Store Theme PRO ===== */

:root {
  --primary: #111111;
  --secondary: #f5f0e6;
  --accent: #c8a96a;
  --text: #222222;
}

body {
  background-color: var(--secondary);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  scroll-behavior: smooth;
}

/* Header */
.header {
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.header a {
  color: var(--primary);
  font-weight: bold;
  transition: 0.3s;
}

.header a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('YOUR-IMAGE-HERE.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 140px 20px;
  animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.hero button {
  background-color: var(--accent);
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
  background-color: #b89650;
}

/* Products */
.product-card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-card img {
  border-radius: 15px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-title {
  font-size: 18px;
  font-weight: bold;
}

.product-price {
  color: var(--accent);
  font-weight: bold;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Offer Banner */
.offer-banner {
  background: linear-gradient(90deg, var(--primary), #333);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.footer a {
  color: var(--accent);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile تحسين */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero {
    padding: 90px 15px;
  }
}