@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');


/* كود مساعد لاكتشاف العناصر الخارجة 
body * {
  outline: 1px solid rgba(255, 0, 0, 0.1) !important;
}*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fafafa;
  color: #2d2d2d;
  line-height: 1.6;



  min-height: 100vh;
  display: flex;
  flex-direction: column;

}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s;
}

a:hover {
  color: orange;
}

html[dir="rtl"] body {
  font-family: "Cairo", sans-serif !important;
  line-height: 1.8;
  font-size: 16px;
}


html[dir="rtl"] button {
  font-family: "Cairo", sans-serif !important;
}
html[dir="ltr"] button { 
  font-family: "Montserrat", sans-serif !important;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

/* تحسينات للغة العربية */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: "Cairo", sans-serif !important;
  line-height: 1.2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}





@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-luxury-text h1 {
    font-size: 52px;
  }

  .products-luxury-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-luxury-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-luxury .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hide desktop elements on mobile */
  header .container {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .hero-luxury {
    padding: 40px 0 40px;
  }

  .hero-luxury-text h1 {
    font-size: 36px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .section-header-luxury h2 {
    font-size: 32px;
  }

  .features-luxury .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .categories-luxury-grid {
    grid-template-columns: 1fr;
  }

  .category-luxury-card.large {
    grid-row: auto;
    height: 400px;
  }

  .products-luxury-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .luxury-banner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .luxury-banner-text h2 {
    font-size: 36px;
  }

  .floating-card {
    position: relative;
    margin: 10px auto;
    max-width: 250px;
  }

  .floating-card-1,
  .floating-card-2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  .hero-luxury-text h1 {
    font-size: 28px;
  }

  .section-header-luxury h2 {
    font-size: 26px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }

  .newsletter-luxury-form {
    flex-direction: column;
  }

  .header-actions {
    gap: 15px;
  }
}







/* ==========================================
   FEATURED COLLECTION - DIOR LUXURY STYLE
   Premium Brand Design Inspired by Dior
   ========================================== */

.featured-collection-dior {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
  position: relative;
  overflow: hidden;
}

.featured-collection-dior::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c42, transparent);
  opacity: 0.3;
}

/* Dior-Style Section Header */
.dior-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.dior-header-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff8c42, transparent);
}

.dior-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  margin: 0;
}

.dior-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 80px;
}

/* Dior Products Grid - 3 columns for premium spacing */
.dior-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

/* Dior Product Card - Minimalist & Elegant */
.dior-product-card {
  background: white;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dior-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Product Image Wrapper */
.dior-product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  aspect-ratio: 3 / 4;
  margin-bottom: 30px;
}

.dior-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dior-product-card:hover .dior-product-image {
  transform: scale(1.05);
}

/* Discount Badge - Orange Accent */
.dior-discount-badge {
  position: static;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

html[dir="rtl"] .dior-discount-badge {
  left: 10px;
  right: auto;
}

/* Overlay on Hover */
.dior-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dior-product-card:hover .dior-product-overlay {
  opacity: 1;
}

.dior-quick-view {
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dior-quick-view:hover {
  background: #ff8c42;
  border-color: #ff8c42;
}

/* Product Details Section */
.dior-product-details {
  text-align: center;
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dior-product-category {
  font-size: 11px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.dior-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing - Elegant Layout */
.dior-product-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.dior-price-current {
  font-size: 24px;
  font-weight: 600;
  color: #ff8c42;
}

.dior-price-current small {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}

.dior-price-original {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

/* Add to Bag Button - Dior Style */
.dior-add-form {
  margin-top: auto;
}

.dior-add-to-bag {
  width: 100%;
  padding: 16px 30px;
  background: #1a1a1a;
  color: white;
  border: 2px solid #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.dior-add-to-bag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transition: left 0.4s ease;
  z-index: -1;
}

.dior-add-to-bag:hover {
  border-color: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.dior-add-to-bag:hover::before {
  left: 0;
}

.dior-add-to-bag i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dior-add-to-bag:hover i {
  transform: translateX(5px);
}

/* View All Button - Dior Style */
.dior-view-all-wrapper {
  text-align: center;
  margin-top: 80px;
}

.dior-view-all-btn {
  padding: 18px 60px;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.dior-view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transition: left 0.4s ease;
  z-index: -1;
}

.dior-view-all-btn:hover {
  color: white;
  border-color: #ff8c42;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.dior-view-all-btn:hover::before {
  left: 0;
}

.dior-view-all-btn i {
  transition: transform 0.3s ease;
}

.dior-view-all-btn:hover i {
  transform: translateX(8px);
}

/* RTL Support for Dior Section */
html[dir="rtl"] .dior-section-header {
  direction: rtl;
}

html[dir="rtl"] .dior-title {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 1px;
}

html[dir="rtl"] .dior-product-name {
  font-family: 'Cairo', sans-serif;
}

html[dir="rtl"] .dior-add-to-bag i {
  transform: rotate(180deg);
}

html[dir="rtl"] .dior-add-to-bag:hover i {
  transform: rotate(180deg) translateX(5px);
}

/* Responsive Design for Dior Section */
@media (max-width: 1200px) {
  .dior-products-grid {
    gap: 40px;
  }

  .dior-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .dior-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .dior-title {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .dior-header-line {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .featured-collection-dior {
    padding: 80px 0;
  }

  .dior-section-header {
    gap: 20px;
    margin-bottom: 15px;
  }

  .dior-header-line {
    width: 40px;
  }

  .dior-title {
    font-size: 28px;
    letter-spacing: 1.5px;
  }

  .dior-subtitle {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .dior-products-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dior-product-name {
    font-size: 16px;
    min-height: auto;
  }

  .dior-price-current {
    font-size: 20px;
  }

  .dior-add-to-bag {
    padding: 14px 25px;
    font-size: 11px;
  }

  .dior-view-all-wrapper {
    margin-top: 60px;
  }

  .dior-view-all-btn {
    padding: 15px 40px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .featured-collection-dior {
    padding: 60px 0;
  }

  .dior-title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .dior-subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .dior-products-grid {
    gap: 40px;
  }

  .dior-discount-badge {
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .dior-product-details {
    padding: 0 15px 25px;
  }

  .dior-product-name {
    font-size: 15px;
  }

  .dior-price-current {
    font-size: 18px;
  }

  .dior-price-original {
    font-size: 16px;
  }

  .dior-view-all-btn {
    width: 100%;
    padding: 14px 30px;
  }
}

/* Animation for Products Load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dior-product-card {
  animation: fadeInUp 0.6s ease forwards;
}

.dior-product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dior-product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.dior-product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dior-product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.dior-product-card:nth-child(5) {
  animation-delay: 0.5s;
}

.dior-product-card:nth-child(6) {
  animation-delay: 0.6s;
}


/* ==========================================
   BESTSELLERS SECTION - DIOR LUXURY STYLE
   ========================================== */

.trending-dior-luxury {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

/* Reuse dior-products-grid styles from Featured Collection */

@media (max-width: 768px) {
  .trending-dior-luxury {
    padding: 80px 0;
  }
}








@media (max-width: 768px) {

  button {
    font-size: 13px !important;
  }

  .btn {
    font-size: 13px !important;
  }
}
