/* ============================================ */
/* FLUX WEAR - Premium Liquid Glass Design      */
/* Dark Modern UI with Green Accents            */
/* Fully Responsive - Mobile Optimized          */
/* ============================================ */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #1a1a1a;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* ---------- LOGO IMAGE STYLES WITH ANIMATION ---------- */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 204, 136, 0.5));
}

/* Logo breathing animation - light on/off effect */
.logo-animate {
  animation: logoBreathing 3s ease-in-out infinite;
}

@keyframes logoBreathing {
  0% {
    filter: drop-shadow(0 0 0px rgba(0, 204, 136, 0));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 204, 136, 0.7));
    opacity: 1;
  }
  100% {
    filter: drop-shadow(0 0 0px rgba(0, 204, 136, 0));
    opacity: 0.9;
  }
}

/* ---------- BACK BUTTON STYLES ---------- */
.back-button {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
}

.back-button:hover {
  color: #00cc88;
  transform: scale(1.08);
  background: rgba(0, 204, 136, 0.1);
  box-shadow: 0 0 20px rgba(0, 204, 136, 0.2);
}

/* ---------- LOADING ANIMATION ---------- */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* Loader - أخضر */
.loader {
  width: 60px;
  height: 60px;
  border: 3px solid #00cc88;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 0 0 10px rgba(0, 204, 136, 0.3);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------- GLASS HEADER (STICKY + BLUR) ---------- */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(0, 204, 136, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-icon,
.cart-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
}

.menu-icon:hover,
.cart-icon:hover {
  color: #00cc88;
  transform: scale(1.08);
  background: rgba(0, 204, 136, 0.1);
  box-shadow: 0 0 20px rgba(0, 204, 136, 0.2);
}

/* ---------- MOBILE NAVIGATION DRAWER ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  max-width: 85%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  padding: 6rem 2rem 2rem;
  transition: left 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid rgba(0, 204, 136, 0.3);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  list-style: none;
  margin: 1.8rem 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.3s forwards;
  animation-delay: calc(0.05s * var(--i, 0));
}

.mobile-nav li:nth-child(1) { --i: 1; }
.mobile-nav li:nth-child(2) { --i: 2; }
.mobile-nav li:nth-child(3) { --i: 3; }
.mobile-nav li:nth-child(4) { --i: 4; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding: 0.5rem 0;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00cc88, #009966);
  transition: width 0.3s;
}

.mobile-nav a:hover {
  color: #00cc88;
  transform: translateX(8px);
}

.mobile-nav a:hover::after {
  width: 100%;
}

/* طبقة خلفية داكنة عند فتح القائمة */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- MAIN CONTENT ---------- */
main {
  min-height: 70vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 204, 136, 0.3);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 136, 0.05) 0%, transparent 70%);
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(145deg, #00cc88, #009966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  color: #4a4a4a;
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* PRODUCT GRID - RESPONSIVE GRID SYSTEM       */
/* ============================================ */
.products-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 320px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ---------- PRODUCT CARDS (GLASS) ---------- */
.product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 204, 136, 0.3);
  padding: 0.9rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .product-card {
    padding: 0.7rem;
    border-radius: 1rem;
  }
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 204, 136, 0.08), transparent);
  transition: left 0.6s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 204, 136, 0.6);
  box-shadow: 0 15px 30px -12px rgba(0, 204, 136, 0.25);
}

@media (max-width: 768px) {
  .product-card:hover {
    transform: translateY(-3px);
  }
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 0.9rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@media (max-width: 640px) {
  .product-img {
    border-radius: 0.7rem;
  }
}

.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.6rem 0 0.3rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: #1a1a1a;
}

@media (max-width: 480px) {
  .product-name {
    font-size: 0.85rem;
    margin: 0.5rem 0 0.2rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .product-name {
    font-size: 1rem;
  }
}

/* ============================================ */
/* PRICE COLOR - GREEN (جذاب للعميل)           */
/* ============================================ */
.product-price {
  font-size: 1rem;
  color: #00cc88;
  font-weight: 700;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 8px rgba(0, 204, 136, 0.3);
}

@media (max-width: 480px) {
  .product-price {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

/* ---------- BUTTONS ---------- */
.btn-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.btn {
  flex: 1;
  padding: 0.6rem 0;
  border: none;
  border-radius: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .btn {
    padding: 0.5rem 0;
    font-size: 0.65rem;
  }
  
  .btn-group {
    gap: 0.4rem;
  }
}

@media (min-width: 641px) {
  .btn {
    padding: 0.7rem 0;
    font-size: 0.8rem;
  }
}

.btn-primary {
  background: linear-gradient(95deg, #00cc88, #009966);
  box-shadow: 0 4px 15px rgba(0, 204, 136, 0.3);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 204, 136, 0.4);
  background: linear-gradient(95deg, #00dd99, #00aa77);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1.5px solid rgba(0, 204, 136, 0.6);
  background: transparent;
  color: #1a1a1a;
}

.btn-outline:hover {
  background: rgba(0, 204, 136, 0.1);
  border-color: #00cc88;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 204, 136, 0.15);
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 204, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .product-detail {
    padding: 1.2rem;
    gap: 1.2rem;
  }
}

.detail-img {
  flex: 1.2;
  min-width: 250px;
}

.detail-img img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s;
}

.detail-img img:hover {
  transform: scale(1.02);
}

.detail-info {
  flex: 1;
}

.detail-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00cc88, #009966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .detail-info h1 {
    font-size: 1.5rem;
  }
}

/* سعر صفحة التفاصيل باللون الأخضر */
.detail-price {
  font-size: 1.8rem;
  color: #00cc88;
  font-weight: 800;
  margin: 0.8rem 0;
  text-shadow: 0 0 10px rgba(0, 204, 136, 0.4);
}

@media (max-width: 768px) {
  .detail-price {
    font-size: 1.4rem;
  }
}

.detail-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0.8rem 0 1.2rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.size-selector {
  margin: 1.5rem 0;
}

.size-selector label {
  font-weight: 600;
  margin-right: 1rem;
  color: #00cc88;
}

.size-dropdown {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 204, 136, 0.5);
  color: #1a1a1a;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.size-dropdown:hover {
  border-color: #00cc88;
  box-shadow: 0 0 10px rgba(0, 204, 136, 0.2);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #30e07a, #16a085);
}

/* ---------- ABOUT & CONTACT PAGES ---------- */
.about-container,
.contact-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 204, 136, 0.3);
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* تصغير حجم الأقسام على الموبايل */
@media (max-width: 768px) {
  .about-container,
  .contact-container {
    padding: 1rem;
    margin: 0.8rem;
    border-radius: 1.2rem;
  }
}

.about-container h1,
.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00cc88, #009966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .about-container h1,
  .contact-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .about-container p,
  .contact-container p {
    font-size: 0.9rem;
  }
}

.contact-info {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-info div {
    width: 100%;
    max-width: 220px;
    padding: 0.5rem 1rem;
  }
}

.contact-info div {
  padding: 0.6rem 1.2rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info div:hover {
  background: rgba(0, 204, 136, 0.1);
  transform: translateY(-2px);
}

.contact-phone {
  cursor: pointer;
  background: rgba(37, 211, 102, 0.1) !important;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-phone i {
  color: #25D366;
  font-size: 1rem;
}

.contact-email i {
  color: #00cc88;
}

.contact-info i {
  margin-right: 0.3rem;
}

/* زر واتساب الرئيسي - مصغر */
.whatsapp-contact-section {
  margin: 1rem auto;
  text-align: center;
}

.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  border: none;
  cursor: pointer;
}

.whatsapp-contact-btn i {
  font-size: 1rem;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #30e07a, #16a085);
}

.whatsapp-note {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  opacity: 0.6;
  color: #666;
}

/* ---------- FOOTER (GLASS) ---------- */
.glass-footer {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(0, 204, 136, 0.3);
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .glass-footer {
    padding: 1rem;
    margin-top: 2rem;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.footer-social a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

.footer-social a:hover {
  color: #00cc88;
  transform: translateY(-3px);
  background: rgba(0, 204, 136, 0.1);
  box-shadow: 0 3px 10px rgba(0, 204, 136, 0.2);
}

.glass-footer p {
  font-size: 0.75rem;
  opacity: 0.6;
  color: #666;
}

/* ---------- FADE-IN ON SCROLL ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION HEADINGS ---------- */
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00cc88, #009966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
}

/* ---------- HERO SECTION MOBILE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 1.2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ---------- MAIN CONTENT MOBILE ---------- */
@media (max-width: 768px) {
  main {
    padding: 0.8rem 0.8rem 1.5rem;
  }
}

/* ---------- HEADER MOBILE ---------- */
@media (max-width: 768px) {
  .header-container {
    padding: 0.6rem 0.8rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .menu-icon,
  .cart-icon,
  .back-button {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .back-button {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00cc88, #009966);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00dd99, #00aa77);
}

/* ---------- SELECTION COLOR ---------- */
::selection {
  background: rgba(0, 204, 136, 0.2);
  color: #00cc88;
}

/* تحسينات للموبايل للواتساب */
@media (max-width: 768px) {
  .whatsapp-contact-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: auto;
    min-width: 160px;
  }
  
  .contact-info div {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}