/* ===============================  
   Reset & Base Styles  
=============================== */  
* {  
  margin: 0;  
  padding: 0;  
  box-sizing: border-box;  
  font-family: 'Poppins', sans-serif;  
}  
  
body {  
  background-color: #fff;  
  color: #333;  
  line-height: 1.6;  
}  
  
a {  
  text-decoration: none;  
  color: inherit;  
}  
  
img {  
  max-width: 100%;  
  display: block;  
}  
  
/* ===============================  
   Navbar & Header  
=============================== */  
header {  
  display: grid;  
  grid-template-columns: auto 1fr; /* اللوغو ياخد عرضه الطبيعي، الباقي للناف */  
  align-items: center;  
  padding: 10px 30px;  
  background-color: #fff0f6;  
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);  
  position: sticky;  
  top: 0;  
  z-index: 1000;  
  width: 100%;  
  gap: 20px;  
}  
  
header .logo {  
  width:150px;  
  transition: transform 0.3s ease;  
}  
  
header .logo:hover {  
  transform: scale(1.05);  
}  
  
.main-nav ul {  
  display: grid;  
  grid-auto-flow: column;  
  gap: 20px;  
  list-style: none;  
  white-space: nowrap; /* تمنع التفاف النص */  
}  
  
.main-nav ul li a {  
  position: relative;  
  text-decoration: none;  
  color: #555;  
  font-weight: 500;  
  font-size: 16px;  
  padding: 8px 10px;  
  transition: all 0.3s ease;  
}  
  
.main-nav ul li a:hover {  
  color: #f47fbf;  
}  
  
.main-nav ul li a::after {  
  content: '';  
  position: absolute;  
  width: 0%;  
  height: 3px;  
  bottom: -3px;  
  left: 0;  
  background-color: #f47fbf;  
  border-radius: 3px;  
  transition: width 0.3s ease;  
}  
  
.main-nav ul li a:hover::after,  
.main-nav ul li a.active::after {  
  width: 100%;  
}  
  
.main-nav ul li a.active {  
  color: #f47fbf;  
}  
  
.main-nav ul li a.active:hover {  
  color: #f47fbf;  
}  
  
/* ===============================  
   Responsive for small screens  
=============================== */  
@media (max-width: 768px) {  
  header {  
    grid-template-columns: auto 1fr;  
    gap: 10px;  
    padding: 0 2px;  
  }  
    
  .main-nav ul {  
    gap: 4px;  
  }  
  
  .main-nav ul li a {  
    font-size: 10px;  
    padding: 2px;  
  }  
}  
  
/* ===============================  
   Main Sections  
=============================== */  
main {  
  display: grid;  
  gap: 60px;  
  max-width: 1200px;  
  margin: 40px auto;  
  padding: 0 20px;  
  
}  
  
.about-section {  
  text-align: center;  
  background: #fff8f5;
  margin:50px 0;
  padding:30px 20px;
}  
  
.about-section h1 {  
  font-size: 30px;  
  margin-bottom: 20px;  
  color: #f47fbf;  
}  
  
.about-section p {  
  font-size: 18px;  
  max-width: 700px;  
  margin: auto;  
  margin-bottom: 20px;  
  text-align: left;
}  
  
/* ===============================  
   Buttons "See More" Animation  
=============================== */  
.see-more {  
  margin-top: 20px;  
}  

/* تطبيق الحركة على كل روابط داخل .see-more */
.see-more a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  background: #ff69b4;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

/* See More - Automatic Arrow Animation */
.see-more a::after {
  content: "→";
  display: inline-block;
  margin-left: 5px;
  animation: moveArrow 1s infinite alternate ease-in-out;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5px);
  }
}
/* ===============================  
   Collections Slider (Clean & Simple)  
=============================== */  

.slidersection {
  padding:20px;
  text-align: center;
}

.slidersection h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Slider Automatic Animation */
.slider {
  padding: 10px 0;
  overflow: hidden; /* Hide overflowing images */
  
}

.slider-track {
  display: flex;
  gap: 20px;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Keep your original image styling */
.slider img {
  flex-shrink: 0;
  width: 40%; /* حسب تصميمك */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.slider img:hover {
  transform: scale(1.05);
}
.slider .slider-empty {
  box-shadow: 0 0 0 0;
  width:50px;
}
/* ===============================  
   Footer Styles  
=============================== */  
footer {  
  background: #ffe0f7;  
  padding: 10px;  
  margin: 20px 0 0;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  flex-wrap: wrap;  
  gap: 10px;  
  font-size: 14px;  
  border-top: 1px solid #ff6f91;  
  text-align: left;  
  color: #555;  
}  
  
footer a {  
  text-decoration: none;  
  color: inherit;  
}  
footer img {  
  width: 20px;  
  height: 20px;  
}  

.about-container {  
  display: grid;  
  grid-template-columns: auto 1fr;  
  align-items: center;  
  gap: 20px;  
  max-width: 800px;  
  margin: 20px auto;  
  padding: 20px;  
  background-color: #fff0f6;  
  border-radius: 12px;  
  box-shadow: 0 2px 10px rgba(255, 111, 145, 0.2);  
  color: #555;  
  font-size: 0.8em;  
  line-height: 1.6;  
}  
  
.about-logo {  
  width: 100px;  
  height: auto;  
  border-radius: 10px;  
  object-fit: contain;  
  justify-self: start;  
}  
  
.about-text p {  
  margin: 8px 0;  
}