 /* ========== RESET & BASE STYLES ========== */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Cairo', sans-serif;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   overflow-x: hidden;
   background: #000;
   line-height: 1.6;
 }

 /* ========== CONTAINER SYSTEM ========== */
 .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   width: 100%;
 }

 .section {
   padding: 80px 0;
   position: relative;
   z-index: 10;
   background: #000;
 }

 .section-title {
   font-size: 2.5rem;
   color: #f9d67a;
   margin-bottom: 50px;
   position: relative;
   display: inline-block;
   font-weight: 700;
   text-align: center;
   width: 100%;
 }

 .section-title::after {
   content: "";
   position: absolute;
   bottom: -10px;
   right: 50%;
   transform: translateX(50%);
   width: 50%;
   height: 3px;
   background: linear-gradient(90deg, #f9d67a 0%, #d4a574 100%);
   border-radius: 5px;
 }

 /* ========== BUTTON STYLES ========== */
 .btn {
   padding: 15px 35px;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   font-size: 1rem;
   letter-spacing: 0.5px;
   position: relative;
   overflow: hidden;
   cursor: pointer;
   border: none;
   white-space: nowrap;
   display: inline-block;
   text-align: center;
 }

 .btn-primary {
   background: linear-gradient(135deg, #f9d67a 0%, #e0c150 100%);
   color: #000;
   box-shadow: 0 10px 30px rgba(249, 214, 122, 0.3);
 }

 .btn-primary:hover {
   background: linear-gradient(135deg, #fff 0%, #f9d67a 100%);
   box-shadow: 0 15px 40px rgba(249, 214, 122, 0.5);
   transform: translateY(-3px);
 }

 .btn-secondary {
   border: 2px solid #f9d67a;
   color: #f9d67a;
   background: transparent;
   box-shadow: 0 0 20px rgba(249, 214, 122, 0.2);
 }

 .btn-secondary:hover {
   background: rgba(249, 214, 122, 0.1);
   color: #fff;
   box-shadow: 0 0 30px rgba(249, 214, 122, 0.4);
 }

 /* ========== NAVBAR STYLES ========== */
 .galaxy-header {
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 15px 5%;
   background: rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(10px);
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   border-bottom: 1px solid rgba(249, 214, 122, 0.1);
 }

 .galaxy-header.scrolled {
   background: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(15px);
   padding: 12px 5%;
   box-shadow: 0 8px 32px rgba(249, 214, 122, 0.1);
   border-bottom: 1px solid rgba(249, 214, 122, 0.2);
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 1001;
   flex-shrink: 0;
 }

 .logo a {
   text-decoration: none;
   display: flex;
   align-items: center;
   transition: transform 0.3s ease;
 }

 .logo a:hover {
   transform: scale(1.05);
 }

 .logo img {
   width: 150px;
   height: auto;
   object-fit: contain;
   filter: drop-shadow(0 0 10px rgba(249, 214, 122, 0.3));
   transition: filter 0.3s ease;
 }

 .logo a:hover img {
   filter: drop-shadow(0 0 20px rgba(249, 214, 122, 0.6));
 }

 #about .logo {
   display: flex;
   justify-content: center;
   /* وسط أفقياً */
   align-items: center;
   /* وسط عمودياً */
   margin: 0 auto 25px auto;
   /* مسافة تحت اللوجو */
   width: 230px;
   /* كبّرت لك الحجم */
   height: auto;
 }

 #about .logo img {
   width: 100%;
   height: auto;
   object-fit: contain;
   filter: drop-shadow(0 0 25px rgba(249, 214, 122, 0.6));
   /* إضاءة ذهبية فخمة */
 }

 #hero .logo {
   display: flex;
   justify-content: center;
   /* وسط أفقياً */
   align-items: center;
   /* وسط عمودياً */
   margin: 0 auto 25px auto;
   /* مسافة تحت اللوجو */
   width: 230px;
   /* كبّرت لك الحجم */
   height: auto;
 }

 #hero .logo img {
   width: 100%;
   height: auto;
   object-fit: contain;
   filter: drop-shadow(0 0 25px rgba(249, 214, 122, 0.6));
   /* إضاءة ذهبية فخمة */
 }


 .nav-container {
   display: flex;
   align-items: center;
   gap: 20px;
   flex: 1;
   justify-content: flex-end;
 }

 .nav-links {
   display: flex;
   list-style: none;
   gap: 30px;
   align-items: center;
   margin: 0;
   padding: 0;
 }

 .nav-links li a {
   color: #f9d67a;
   text-decoration: none;
   font-weight: 600;
   font-size: 1rem;
   position: relative;
   transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   padding: 8px 0;
   letter-spacing: 0.5px;
 }

 .nav-links li a::before {
   content: "";
   position: absolute;
   bottom: 0;
   right: 0;
   width: 0%;
   height: 2px;
   background: linear-gradient(90deg, #f9d67a 0%, #d4a574 100%);
   transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   box-shadow: 0 0 10px rgba(249, 214, 122, 0.5);
 }

 .nav-links li a:hover::before,
 .nav-links li a.active::before {
   width: 100%;
 }

 .nav-links li a:hover {
   color: #fff;
   text-shadow: 0 0 10px rgba(249, 214, 122, 0.5);
 }

 /* Cart Icon */
 .cart-icon-btn {
   background: none;
   border: none;
   color: #f9d67a;
   font-size: 1.5rem;
   cursor: pointer;
   position: relative;
   transition: color 0.3s;
   padding: 5px;
   flex-shrink: 0;
 }

 .cart-icon-btn:hover {
   color: #fff;
 }

 .cart-count {
   position: absolute;
   top: -5px;
   right: -10px;
   background: #f00;
   color: #fff;
   border-radius: 50%;
   padding: 2px 6px;
   font-size: 0.8rem;
   min-width: 20px;
   text-align: center;
   line-height: 1.2;
   font-weight: bold;
 }

 /* Language Switch */
 .lang-switch {
   background: none;
   border: 2px solid #f9d67a;
   color: #f9d67a;
   padding: 8px 15px;
   border-radius: 20px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   white-space: nowrap;
   flex-shrink: 0;
 }

 .lang-switch:hover {
   background: #f9d67a;
   color: #000;
   box-shadow: 0 0 15px rgba(249, 214, 122, 0.8);
 }

 /* Mobile Menu Toggle */
 .menu-toggle {
   display: none;
   font-size: 1.8rem;
   background: none;
   color: #f9d67a;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
   z-index: 1001;
   padding: 5px;
   flex-shrink: 0;
 }

 .menu-toggle:hover {
   color: #fff;
   text-shadow: 0 0 10px rgba(249, 214, 122, 0.5);
 }

 /* ========== HERO SLIDER STYLES ========== */
 .galaxy-hero-slider {
   position: relative;
   min-height: 100vh;
   overflow: hidden;
   background: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.95) 50%, #1a0a2e 100%);
   padding-top: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .particle {
   position: absolute;
   width: 2px;
   height: 2px;
   background: rgba(249, 214, 122, 0.6);
   border-radius: 50%;
   animation: float 20s infinite;
 }

 @keyframes float {
   0% {
     transform: translateY(100vh) translateX(0);
     opacity: 0;
   }

   10% {
     opacity: 1;
   }

   90% {
     opacity: 1;
   }

   100% {
     transform: translateY(-100vh) translateX(100px);
     opacity: 0;
   }
 }

 .slide {
   position: absolute;
   width: 100%;
   height: 100%;
   opacity: 0;
   transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   z-index: 2;
   padding: 20px;
 }

 .slide.active {
   opacity: 1;
 }

 .hero-content {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 40px;
   padding: 40px;
   max-width: 1200px;
   width: 100%;
   flex-direction: row-reverse;
   backdrop-filter: blur(10px);
   background: rgba(0, 0, 0, 0.5);
   border-radius: 25px;
   border: 1px solid rgba(249, 214, 122, 0.2);
   box-shadow: 0 20px 60px rgba(249, 214, 122, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
 }

 .hero-text {
   flex: 1;
   text-align: right;
 }

 .hero-content img {
   width: 100%;
   max-width: 400px;
   border-radius: 15px;
   filter: drop-shadow(0 30px 60px rgba(249, 214, 122, 0.5));
   flex-shrink: 0;
   object-fit: contain;
   animation: imageFloat 3s ease-in-out infinite;
 }

 @keyframes imageFloat {

   0%,
   100% {
     transform: translateY(0px);
   }

   50% {
     transform: translateY(-20px);
   }
 }

 .hero-content h1 {
   font-size: 3.5rem;
   color: #f9d67a;
   margin-bottom: 20px;
   font-weight: 700;
   text-shadow: 0 0 30px rgba(249, 214, 122, 0.4);
   animation: titleGlow 2s ease-in-out infinite;
   line-height: 1.2;
 }

 @keyframes titleGlow {

   0%,
   100% {
     text-shadow: 0 0 20px rgba(249, 214, 122, 0.3);
   }

   50% {
     text-shadow: 0 0 40px rgba(249, 214, 122, 0.6);
   }
 }

 .hero-content p {
   font-size: 1.3rem;
   margin-bottom: 35px;
   color: #e8e8e8;
   line-height: 1.6;
 }

 .hero-buttons {
   display: flex;
   gap: 20px;
   justify-content: flex-end;
   flex-wrap: wrap;
 }

 .lana {
   font-family: 'Great Vibes', cursive;
   font-size: 2.8rem;
   color: #f9d67a;
   text-shadow: 0 0 20px rgba(249, 214, 122, 0.5);
 }

 .procare {
   font-weight: 700;
   font-size: 2.2rem;
   color: #fff;
   text-shadow: 0 0 15px rgba(249, 214, 122, 0.3);
 }

 /* ========== PRODUCTS SECTION ========== */
 .products-section {
   background: #0a0a0a;
 }

 .products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   padding: 0 20px;
 }

 .product-card {
   background: rgba(10, 10, 10, 0.8);
   border: 1px solid rgba(249, 214, 122, 0.1);
   border-radius: 15px;
   padding: 25px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .product-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px rgba(249, 214, 122, 0.2);
 }

 .product-card img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   border-radius: 10px;
   margin-bottom: 15px;
   transition: transform 0.3s ease;
 }

 .product-card img:hover {
   transform: scale(1.03);
 }

 .product-card h3 {
   font-size: 1.5rem;
   color: #f9d67a;
   margin-bottom: 10px;
 }

 .product-card p {
   font-size: 1rem;
   color: #ccc;
   margin-bottom: 20px;
   min-height: 60px;
 }

 .product-buttons {
   display: flex;
   justify-content: center;
   gap: 10px;
   flex-wrap: wrap;
 }

 .product-buttons .btn {
   padding: 10px 20px;
   font-size: 0.9rem;
 }

 /* ========== ABOUT SECTION ========== */
 .about-content {
   display: flex;
   gap: 50px;
   text-align: right;
   flex-direction: row-reverse;
   padding: 0 20px;
   align-items: center;
 }

 .about-text {
   flex: 1;
 }

 .about-text h3 {
   font-size: 2rem;
   color: #f9d67a;
   margin-bottom: 20px;
   font-weight: 600;
 }

 .about-text p {
   font-size: 1.1rem;
   color: #ccc;
   line-height: 1.8;
   margin-bottom: 20px;
 }

 .about-image {
   flex-shrink: 0;
   width: 400px;
 }

 .about-image img {
   width: 100%;
   height: auto;
   border-radius: 15px;
   box-shadow: 0 20px 50px rgba(249, 214, 122, 0.3);
   transition: transform 0.5s ease;
 }

 .about-image img:hover {
   transform: scale(1.05);
 }

 /* ========== CONTACT SECTION ========== */
 .contact-content {
   text-align: center;
   padding: 0 20px;
 }

 .contact-info {
   display: flex;
   justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
   text-align: center;
   margin-bottom: 40px;
 }

 .contact-info div {
   color: #f9d67a;
 }

 .contact-info a {
   text-decoration: none;
   color: #fff;
   transition: color 0.3s;
 }

 .contact-info a:hover {
   color: #f9d67a;
 }

 .contact-info i {
   font-size: 2rem;
   margin-bottom: 10px;
   display: block;
 }

 /* ========== FOOTER ========== */
 .footer {
   background: #0a0a0a;
   border-top: 1px solid rgba(249, 214, 122, 0.1);
   padding: 40px 0 20px;
   text-align: center;
 }

 .footer-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   gap: 30px;
 }

 .footer-logo img {
   width: 100px;
   filter: drop-shadow(0 0 10px rgba(249, 214, 122, 0.3));
 }

 .footer-links ul {
   list-style: none;
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   justify-content: center;
 }

 .footer-links a {
   color: #f9d67a;
   text-decoration: none;
   font-weight: 600;
   transition: color 0.3s;
 }

 .footer-links a:hover {
   color: #fff;
 }

 .social-icons {
   display: flex;
   gap: 15px;
   justify-content: center;
 }

 .social-icons a {
   color: #f9d67a;
   font-size: 1.5rem;
   transition: color 0.3s;
 }

 .social-icons a:hover {
   color: #fff;
 }

 .footer-bottom {
   margin-top: 30px;
   padding-top: 20px;
   border-top: 1px solid rgba(249, 214, 122, 0.1);
   color: #aaa;
   font-size: 0.9rem;
 }

 /* ========== WHATSAPP BUTTON ========== */
 .whatsapp-btn {
   position: fixed;
   bottom: 20px;
   left: 20px;
   background: #25d366;
   color: #fff;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   z-index: 1000;
   transition: transform 0.3s ease;
   text-decoration: none;
 }

 .whatsapp-btn:hover {
   transform: scale(1.1);
 }

 /* ========== CART STYLES ========== */
 .cart-sidebar {
   position: fixed;
   top: 0;
   left: -350px;
   width: 350px;
   height: 100%;
   background: rgba(0, 0, 0, 0.95);
   backdrop-filter: blur(10px);
   z-index: 2000;
   box-shadow: 5px 0 15px rgba(249, 214, 122, 0.3);
   transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   display: flex;
   flex-direction: column;
   overflow: hidden;
 }

 .cart-sidebar.open {
   left: 0;
 }

 .cart-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   z-index: 1999;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.4s ease;
 }

 .cart-overlay.open {
   opacity: 1;
   pointer-events: auto;
 }

 .cart-header {
   padding: 20px;
   border-bottom: 1px solid rgba(249, 214, 122, 0.2);
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #f9d67a;
   flex-shrink: 0;
 }

 .cart-header h2 {
   font-size: 1.5rem;
   color: #f9d67a;
   margin: 0;
 }

 .close-cart-btn {
   background: none;
   border: none;
   color: #f9d67a;
   font-size: 1.5rem;
   cursor: pointer;
   transition: color 0.3s;
 }

 .close-cart-btn:hover {
   color: #fff;
 }

 .cart-items {
   flex-grow: 1;
   padding: 20px;
   overflow-y: auto;
 }

 .empty-cart-message {
   color: #aaa;
   text-align: center;
   padding-top: 50px;
 }

 .cart-item {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
 }

 .cart-item-image {
   width: 60px;
   height: 60px;
   object-fit: cover;
   border-radius: 8px;
   border: 1px solid rgba(249, 214, 122, 0.3);
   flex-shrink: 0;
 }

 .cart-item-details {
   flex-grow: 1;
   color: #fff;
   text-align: right;
 }

 .cart-item-details h4 {
   font-size: 1.1rem;
   color: #f9d67a;
   margin: 0 0 5px 0;
 }

 .cart-item-price {
   font-size: 1.1rem;
   font-weight: 700;
   color: #fff;
   white-space: nowrap;
 }

 .cart-item-quantity {
   display: flex;
   align-items: center;
   gap: 5px;
   margin-top: 5px;
 }

 .cart-item-quantity input {
   width: 40px;
   text-align: center;
   background: transparent;
   border: 1px solid #f9d67a;
   color: #fff;
   border-radius: 5px;
   padding: 2px;
   font-size: 0.9rem;
 }

 .cart-item-quantity button {
   background: #f9d67a;
   border: none;
   color: #000;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   cursor: pointer;
   font-weight: 700;
   line-height: 1;
   transition: background 0.3s;
   flex-shrink: 0;
 }

 .cart-item-quantity button:hover {
   background: #fff;
 }

 .remove-item-btn {
   background: none;
   border: none;
   color: #f00;
   font-size: 1.2rem;
   cursor: pointer;
   margin-right: 10px;
   transition: color 0.3s;
   flex-shrink: 0;
 }

 .remove-item-btn:hover {
   color: #ff5555;
 }

 .cart-summary {
   padding: 20px;
   border-top: 1px solid rgba(249, 214, 122, 0.2);
   color: #fff;
   flex-shrink: 0;
   max-height: 300px;
   overflow-y: auto;
 }

 .cart-summary div {
   display: flex;
   justify-content: space-between;
   margin-bottom: 10px;
   font-size: 1.1rem;
 }

 .cart-summary .total-row {
   font-size: 1.2rem;
   font-weight: 700;
   color: #f9d67a;
   margin-top: 15px;
   padding-top: 10px;
   border-top: 1px solid rgba(249, 214, 122, 0.3);
 }

 .checkout-form {
   padding: 20px;
   background: rgba(249, 214, 122, 0.1);
   border-radius: 10px;
   margin-top: 20px;
 }

 .checkout-form h3 {
   color: #f9d67a;
   margin-bottom: 15px;
   text-align: center;
   font-size: 1.3rem;
 }

 .checkout-form input {
   width: 100%;
   padding: 10px;
   margin-bottom: 10px;
   border: 1px solid #f9d67a;
   background: rgba(0, 0, 0, 0.5);
   color: #fff;
   border-radius: 5px;
   text-align: right;
   font-size: 1rem;
 }

 .checkout-form input::placeholder {
   color: #aaa;
 }

 /* ========== MODAL STYLES ========== */
 .modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.7);
   display: none;
   justify-content: center;
   align-items: center;
   z-index: 1000;
   padding: 20px;
 }

 .modal-content {
   background-color: #0a0a0a;
   padding: 30px;
   border-radius: 10px;
   max-width: 500px;
   width: 100%;
   text-align: center;
   position: relative;
   border: 1px solid #f9d67a;
   max-height: 90vh;
   overflow-y: auto;
 }

 .close-btn {
   position: absolute;
   top: 10px;
   right: 20px;
   font-size: 2rem;
   cursor: pointer;
   color: #f9d67a;
   background: none;
   border: none;
   transition: color 0.3s;
 }

 .close-btn:hover {
   color: #fff;
 }

 .modal-content img {
   max-width: 100%;
   height: auto;
   margin-bottom: 20px;
   border-radius: 10px;
 }

 .modal-content h2 {
   color: #f9d67a;
   margin-bottom: 15px;
   font-size: 1.8rem;
 }

 .modal-content p {
   color: #ccc;
   line-height: 1.8;
   margin-bottom: 20px;
   text-align: right;
 }

 /* ========== RESPONSIVE DESIGN ========== */

 /* Tablets (768px to 1024px) */
 @media (max-width: 1024px) {
   .container {
     max-width: 960px;
   }

   .section {
     padding: 60px 0;
   }

   .section-title {
     font-size: 2rem;
     margin-bottom: 40px;
   }

   .hero-content {
     gap: 30px;
     padding: 30px;
   }

   .hero-content h1 {
     font-size: 2.8rem;
   }

   .hero-content p {
     font-size: 1.1rem;
   }

   .hero-content img {
     max-width: 350px;
   }

   .lana {
     font-size: 2.3rem;
   }

   .procare {
     font-size: 1.8rem;
   }

   .products-grid {
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
   }

   .about-content {
     gap: 40px;
   }

   .about-image {
     width: 350px;
   }

   .about-text h3 {
     font-size: 1.8rem;
   }

   .about-text p {
     font-size: 1rem;
   }

   .footer-content {
     gap: 20px;
   }

   .contact-info {
     gap: 30px;
   }
 }

 /* Small Tablets & Large Phones (600px to 768px) */
 @media (max-width: 768px) {
   .container {
     max-width: 540px;
     padding: 0 15px;
   }

   .galaxy-header {
     padding: 12px 15px;
   }

   .logo img {
     width: 120px;
   }

   .nav-links {
     display: none;
   }

   .menu-toggle {
     display: block;
   }

   .lang-switch {
     padding: 6px 12px;
     font-size: 0.85rem;
   }

   .section {
     padding: 50px 0;
   }

   .section-title {
     font-size: 1.8rem;
     margin-bottom: 30px;
   }

   .section-title::after {
     width: 70%;
   }

   .galaxy-hero-slider {
     padding-top: 70px;
     min-height: 80vh;
   }

   .hero-content {
     flex-direction: column;
     gap: 25px;
     padding: 20px 15px;
     border-radius: 15px;
   }

   .hero-text {
     text-align: center;
   }

   .hero-content h1 {
     font-size: 2.2rem;
   }

   .hero-content p {
     font-size: 1rem;
     margin-bottom: 20px;
   }

   .hero-buttons {
     justify-content: center;
     flex-direction: column;
     gap: 12px;
   }

   .hero-buttons .btn {
     width: 100%;
     padding: 12px 25px;
   }

   .hero-content img {
     max-width: 280px;
     order: -1;
   }

   .lana {
     font-size: 2rem;
   }

   .procare {
     font-size: 1.6rem;
   }

   .products-grid {
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
   }

   .product-card {
     padding: 20px;
   }

   .product-card img {
     height: 200px;
   }

   .product-card h3 {
     font-size: 1.3rem;
   }

   .product-card p {
     font-size: 0.95rem;
     min-height: 50px;
   }

   .product-buttons {
     flex-direction: column;
     gap: 8px;
   }

   .product-buttons .btn {
     width: 100%;
     padding: 10px 15px;
     font-size: 0.85rem;
   }

   .about-content {
     flex-direction: column;
     gap: 30px;
   }

   .about-image {
     width: 100%;
   }

   .about-text {
     text-align: center;
   }

   .about-text h3 {
     font-size: 1.6rem;
   }

   .about-text p {
     font-size: 1rem;
   }

   .contact-info {
     flex-direction: column;
     gap: 25px;
   }

   .contact-info div {
     width: 100%;
   }

   .contact-info i {
     font-size: 1.8rem;
   }

   .footer-content {
     flex-direction: column;
     gap: 20px;
   }

   .footer-links ul {
     flex-direction: column;
     gap: 12px;
   }

   .btn {
     padding: 12px 25px;
     font-size: 0.9rem;
   }

   .whatsapp-btn {
     width: 55px;
     height: 55px;
     font-size: 1.8rem;
     bottom: 15px;
     left: 15px;
   }

   .cart-sidebar {
     width: 100%;
     left: -100%;
   }

   .cart-sidebar.open {
     left: 0;
   }
 }

 /* Mobile Phones (max 600px) */
 @media (max-width: 600px) {
   .container {
     max-width: 100%;
     padding: 0 12px;
   }

   .galaxy-header {
     padding: 10px 12px;
   }

   .logo img {
     width: 100px;
   }

   .cart-icon-btn {
     font-size: 1.3rem;
   }

   .galaxy-hero-slider {
     padding-top: 60px;
     min-height: 70vh;
   }

   .slide {
     padding: 15px;
   }

   .hero-content {
     padding: 15px;
     gap: 20px;
   }

   .hero-content h1 {
     font-size: 1.9rem;
   }

   .hero-content p {
     font-size: 0.95rem;
     margin-bottom: 15px;
   }

   .hero-buttons {
     gap: 10px;
   }

   .hero-buttons .btn {
     padding: 10px 20px;
     font-size: 0.85rem;
   }

   .hero-content img {
     max-width: 240px;
   }

   .lana {
     font-size: 1.8rem;
   }

   .procare {
     font-size: 1.4rem;
   }

   .section {
     padding: 40px 0;
   }

   .section-title {
     font-size: 1.6rem;
     margin-bottom: 25px;
   }

   .products-grid {
     grid-template-columns: 1fr;
     gap: 15px;
     padding: 0;
   }

   .product-card {
     padding: 15px;
   }

   .product-card img {
     height: 180px;
   }

   .product-card h3 {
     font-size: 1.2rem;
   }

   .product-card p {
     font-size: 0.9rem;
     min-height: 45px;
   }

   .about-text h3 {
     font-size: 1.4rem;
   }

   .about-text p {
     font-size: 0.95rem;
   }

   .contact-info {
     gap: 20px;
   }

   .contact-info i {
     font-size: 1.6rem;
   }

   .btn {
     padding: 10px 20px;
     font-size: 0.85rem;
   }

   .whatsapp-btn {
     width: 50px;
     height: 50px;
     font-size: 1.5rem;
     bottom: 12px;
     left: 12px;
   }

   .modal {
     padding: 15px;
   }

   .modal-content {
     padding: 20px;
   }

   .close-btn {
     right: 15px;
     font-size: 1.8rem;
   }

   .modal-content h2 {
     font-size: 1.5rem;
   }

   .modal-content p {
     font-size: 0.95rem;
   }
 }

 /* Very Small Phones (max 400px) */
 @media (max-width: 400px) {
   .container {
     padding: 0 10px;
   }

   .galaxy-header {
     padding: 8px 10px;
   }

   .logo img {
     width: 90px;
   }

   .hero-content h1 {
     font-size: 1.7rem;
   }

   .hero-content p {
     font-size: 0.9rem;
   }

   .section-title {
     font-size: 1.5rem;
   }

   .product-card h3 {
     font-size: 1.1rem;
   }

   .product-card p {
     font-size: 0.85rem;
   }

   .about-text h3 {
     font-size: 1.3rem;
   }

   .btn {
     padding: 9px 18px;
     font-size: 0.8rem;
   }

   .lana {
     font-size: 1.6rem;
   }

   .procare {
     font-size: 1.2rem;
   }
 }


 .cart-items {
   flex-grow: 1;
   padding: 20px;
   overflow-y: auto;
   max-height: calc(100vh - 300px);
 }

 .cart-summary {
   padding: 20px;
   border-top: 1px solid rgba(249, 214, 122, 0.2);
   color: #fff;
   flex-shrink: 0;
   background: rgba(10, 10, 10, 0.9);
 }

 /* ========== MOBILE MENU STYLES ========== */
 @media (max-width: 768px) {
   .nav-links {
     display: none;
     position: fixed;
     top: 70px;
     right: 0;
     width: 100%;
     height: calc(100vh - 70px);
     background: rgba(0, 0, 0, 0.98);
     backdrop-filter: blur(20px);
     flex-direction: column;
     padding: 30px 20px;
     border-top: 1px solid rgba(249, 214, 122, 0.3);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
     z-index: 999;
     overflow-y: auto;
   }

   .nav-links.active {
     display: flex;
   }

   .nav-links li {
     margin: 15px 0;
     text-align: center;
   }

   .nav-links li a {
     font-size: 1.4rem;
     padding: 15px 0;
     display: block;
     border-bottom: 1px solid rgba(249, 214, 122, 0.1);
     transition: all 0.3s ease;
   }

   .nav-links li a:hover {
     background: rgba(249, 214, 122, 0.1);
     border-radius: 10px;
   }

   .nav-links li:last-child a {
     border-bottom: none;
   }

   .menu-toggle {
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
   }

   /* تحسين الهيدر للجوال */
   .galaxy-header {
     padding: 12px 15px;
   }
 }

 /* ----- HERO LOGO Arabic Version ----- */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.hero-logo img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(249, 214, 122, 0.6));
  transition: 0.4s;
}

.hero-logo img:hover {
  filter: drop-shadow(0 0 45px rgba(249, 214, 122, 1));
}

/* ----- HERO LAYOUT Arabic Version (Text Right / Image Left) ----- */
html[lang="ar"] .galaxy-hero-slider .hero-content {
  flex-direction: row-reverse; /* نص يمين - صورة يسار */
  text-align: right;
}

html[lang="ar"] .galaxy-hero-slider .hero-text {
  text-align: right;
}

@media (max-width: 768px) {
  html[lang="ar"] .galaxy-hero-slider .hero-content {
    flex-direction: column;
    text-align: center !important;
  }

  html[lang="ar"] .galaxy-hero-slider .hero-text {
    text-align: center !important;
  }
}
.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f9d67a;
  margin-top: 12px;
  text-align: center;
}
