/* ================ Base & Reset ================ */
:root {
  --primary-color: #d4a373;
  --primary-dark: #b5835a;
  --secondary-color: #fefae0;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --border-radius: 12px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #fff;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ================ Typography ================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-color);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* ================ Buttons ================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* ================ Header ================ */
/* ================ Header & Navigation ================ */
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 1001; /* أعلى من القائمة المتنقلة */
}
.logo img{
  width: 14%;
  position: absolute;
  top: 5px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50px;
  padding: 5px;
}


/* الهيدر في الوضع العادي (كبير) */
.main-header.large-header {
  padding: 30px 0;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: none;
}

.main-header.large-header .logo img {
  /*height: 100px;*/
  transition: height 0.3s ease;
}

/* عند التمرير - هيدر صغير */
.main-header.shrink {
  padding: 8px 0;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header.shrink .logo img {
  height: 100px;
}




.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.login-btn {
  background: #fcc26b; /*var(--primary-color);*/
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.login-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  position: relative;
  transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: var(--transition);
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}


/* Mobile Menu Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 5rem 2rem 2rem;
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  
   .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .login-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }
  
  /* عند فتح القائمة نمنع التمرير */
  body.menu-open {
    overflow: hidden;
  }
  
.logo img{
width: 29%;
    position: absolute;
    top: 5px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    padding: 5px;
    left: 197px;
    margin: 0 auto;
}
/*
.main-header.large-header .logo img {
  height: 70px;
  transition: height 0.3s ease;
}
*/

.main-header.shrink .logo img {
  height: 80px;
}


}


/* تحسينات إضافية للقائمة المتنقلة */
@media (max-width: 768px) {
 
 .main-nav {
    backdrop-filter: blur(10px);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /*background: rgba(47, 207, 184, 0.95);*/
  }
  
  .menu-toggle.open .menu-icon {
    background: transparent;
  }
  
  .menu-toggle.open .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .menu-toggle.open .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  
  .nav-link {
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .main-nav.active .nav-link {
    transform: translateX(0);
    opacity: 1;
	color: wheat;
  }
  
  /* تأخير ظهور عناصر القائمة */

}

/* إضافة حركة للزر */
.menu-toggle .bar {
transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* ================ Hero Section ================ */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../../assets/images/Slider2.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 6rem 0 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
}

/*
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../../assets/images/Slider2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 6rem 0 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero-footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 0;
}
*/
.hero-footer-shape svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* ======== search ========= */
.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  position: relative;
  flex: 1 1 300px;
  max-width: 100%;
}

.search-form input,
.search-form select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.stage-selector {
  font-family: 'Tajawal', sans-serif;
  margin: 0rem auto;
  padding: 20px;
  background: linear-gradient(135deg, #fff8f0, #fefae0);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.search-form input:focus,
.search-form select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.3);
}

.search-icon,
.select-icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  color: var(--gray-color);
}

.search-btn {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  height: 50px;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}


.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 0.5rem;
}

.scroll-indicator span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: bounce 1.5s infinite ease-in-out;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    background: white;
  }
}

/* ======== About Us ===========  */

.about-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
    direction: rtl;
	font-family: 'Tajawal';
	clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  margin-top: -15px;
}

.about-text{
font-size: 1.3rem;
  text-align: justify;
}
.about-features{
	font-size: 1.2rem;
  text-align: justify;
}
.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
}


.about-img {
    border-radius: 10px;
    overflow: hidden;
   /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
	margin-right: 5px;
	text-align: justify;

}

.feature-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-left: 10px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}


/* ================ Categories Section ================ */
.categories-section {
  padding: 5rem 0;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition);
}

.category-card:hover .card-icon {
  background: var(--primary-color);
  color: white;
}

.category-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.category-card p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* ================ Newsletter Section ================ */
.newsletter-section {
  background: linear-gradient(135deg, #fefae0, #faedcd);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
}

.newsletter-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  width: 100%;
  max-width: 600px;
}

.newsletter-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 300px;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-btn {
  flex: 0 0 auto;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

.form-agreement {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-color);
}

.form-agreement input {
  accent-color: var(--primary-color);
}

/* ================ Footer ================ */
.main-footer {
  background: #222;
  color: #ddd;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-logo p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
  transform: translateX(-5px);
}

.footer-contact ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.8;
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.7;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ================ Back to Top Button ================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}


.app-section {
  background-size:100% 100%
}
.app-section .wrapper {
  background-color:#fb9e89;
}
.app-section__info {
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-direction:column;
  flex-direction:column;
  justify-content:center;
  padding-left:35px;
}
.app-section__info h3 {
  color:#1767a1;
  font-size:35px;
  font-weight:700;
  line-height:normal;
  padding-bottom:30px
}
[dir=ltr] .app-section__info h3 {
  line-height:1.6
}
.app-section__info p {
  color:#324148;
  font-size:19px;
  font-weight:400;
  line-height:1.57;
  margin-bottom:12px
}
.app-section__info p strong {
  font-weight:700
}
.app-section__info ul {
  list-style:none;
  margin:0;
  padding:0
}
.app-section__info>ul>li {
  color:#324148;
  font-family:inherit;
  font-size:18px;
  font-weight:500;
  line-height:1;
  opacity:.79;
  padding-bottom:16px;
  padding-left:25px;

}
.rtl .app-section__info>ul>li {
  padding-left:0;
  padding-right:25px
}
.app-section__info>ul>li:before {
  background:#93dfff;
  border-radius:50%;
  content:"";
  display:block;
  height:10px;
  left:0;
  position:absolute;
  top:4px;
  width:10px
}
.rtl .app-section__info>ul>li:before {
  left:auto;
  right:0
}
.app-section__links {
  padding-top:36px
}
.app-section__links:after {
  clear:both;
  content:"";
  display:block
}
.app-section__links h4 {
  color:#1767a1;
  font-size:22px;
  font-weight:700;
  line-height:normal;
  padding-bottom:35px
}
.app-section__links h4 strong {
  color:#489210;
  font-size:1.2em
}
.app-section__links ul {
  list-style:none;
  margin:0;
  padding:0
}
.app-section__links ul li {
  float:left;
  margin-bottom:15px;
  margin-right:15px;
  opacity:1
}
.rtl .app-section__links ul li {
  float:right;
  margin-left:15px;
  margin-right:0
}
.app-section__links ul li img {
  display:block;
  height:auto;
  max-width:100%
}
.app-section__links ul li a {
  display:block
}
[dir=ltr] .app-section__info h4,
[dir=ltr] .app-section__info p {
  line-height:inherit
}
.app-section__image {
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  /*! display:-webkit-box; */display:-ms-flexbox;
  display:flex;
  -ms-flex-direction:column;
  flex-direction:column;
  /*! justify-content:center; *//*! padding-top:35px */
}
.app-section__image figure {
  margin:0
}
.app-section svg:last-child {
  margin-top:-4px
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -40px;
}




/* تنسيق الحاوية الرئيسية */
.custom-flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* النص */
.app-section__info {
  flex: 1;
  text-align: right;
}

/* الصورة */
.app-section__image {
  flex: 1;
  text-align: center;
}

.app-section__image img {
  max-width: 100%;
  height: auto;
}

/* روابط التطبيقات */
.app-section__links ul {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.app-section__links img {
  width: 130px;
}

/* تجاوب الموبايل */
@media (max-width: 768px) {
  .custom-flex {
    flex-direction: column;
    text-align: center;
  }

  .app-section__info {
    text-align: center;
  }

  .app-section__links ul {
    justify-content: center;
  }
}
img,
svg {
  vertical-align:middle;
}

/* ===========  userCard =================== */


/* التنسيقات العامة */
.gender-selector {
  font-family: 'Tajawal', sans-serif;
  max-width: 300px;
  margin: 1rem auto;
  padding: 20px;
  background: linear-gradient(135deg, #fff8f0, #fefae0);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.selector-container {
  position: relative;
}

/* زر الاختيار الرئيسي */
.selector-btn {
  width: 100%;
  padding: 15px 20px;
  background: white;
  border: 2px solid #d4a373;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  font-size: 18px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.2);
}

.selector-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 163, 115, 0.3);
}

.selector-btn:focus {
  outline: none;
  border-color: #b5835a;
}

.icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrow-icon {
  transition: all 0.4s ease;
  color: #d4a373;
}

.selected-icon {
  color: #d4a373;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

/* قائمة الخيارات */
.options-list {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  padding: 0;
  list-style: none;
  z-index: 100;
  transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
  opacity: 0;
}

.selector-container.open .options-list {
  max-height: 300px;
  opacity: 1;
  padding: 10px 0;
}

.selector-container.open .arrow-icon {
  transform: rotate(180deg);
}

/* خيارات القائمة */
.option {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option:hover {
  background: rgba(212, 163, 115, 0.1);
}

.option-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #530d0d;
  font-weight: bold
}

.option-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.option:hover .option-image {
  transform: scale(1.1);
  border-color: #d4a373;
}

/* منطقة عرض الاختيار */
.selection-display {
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  height: 0;
  position: absolute;
  right: 113px;
  top: 120px;
}

.selection-display.active {
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

.selected-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d4a373;
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
  margin: 0 auto 15px;
  display: block;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s;
}

.selection-display.active .selected-image {
  opacity: 1;
  transform: scale(1);
}

.selected-text {
  font-size: 22px;
  font-weight: 700;
  color: #b5835a;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.4s;
}

.selection-display.active .selected-text {
  opacity: 1;
  transform: translateY(0);
}

/* تأثيرات خاصة عند الاختيار */
.option.selected {
  background: rgba(212, 163, 115, 0.15);
}

.selector-btn.selected .selected-icon {
  opacity: 1;
  transform: scale(1);
}

.selector-btn.selected .arrow-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0.5);
}



/* to Top Btn */


#toTopBtn {
  position: fixed;
  bottom: 5px;
  right: 30px;
  z-index: 99;
  background: #2b47db;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, background-color 0.3s;
}

#toTopBtn:hover {
  background: #f66717;
  transform: scale(1.1);
}

.arrow-icon {
  animation: fadeInUp 0.6s ease;
  transition: transform 0.3s ease;
}

#toTopBtn:hover .arrow-icon {
  transform: rotate(-360deg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* العنوان الرئيسي */
.main-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
    padding-top: 30px;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.subtitle {
    color: #7f8c8d;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* حاوية الخطوات */
.steps-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* كل خطوة */
.step-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-image {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    transition: transform 0.8s ease;
}

.step-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.step-image img:hover {
    transform: scale(1.03);
}

.step-content {
    flex: 1;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
}

.step-content:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.step-content h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
	text-align: right;
}

.step-content p {
    color: #7f8c8d;
    margin-bottom: 0;
	text-align: right;
}

/* تناوب الجانبين */
.step-content.right {
    margin-right: -50px;
    text-align: right;
    transform: translateX(100px);
}

.step-content.left {
    margin-left: -50px;
    text-align: left;
    transform: translateX(-100px);
}

/* تأثيرات الظهور */
.step-wrapper.active {
    opacity: 1;
}

.step-wrapper.active .step-content.right {
    transform: translateX(0);
}

.step-wrapper.active .step-content.left {
    transform: translateX(0);
}

.step-wrapper.active .step-image {
    transform: translateX(0);
}

.step-wrapper:nth-child(odd) .step-image {
    transform: translateX(-100px);
}

.step-wrapper:nth-child(even) .step-image {
    transform: translateX(100px);
}

/* زر التسجيل */
.register-btn-container {
    text-align: center;
    margin: 50px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.register-btn-container.active {
    opacity: 1;
    transform: translateY(0);
}

.register-btn {
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.register-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

/* خط متصل بين الخطوات */
.step-wrapper:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: #3498db;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.step-wrapper.active:not(:last-child)::after {
    opacity: 1;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .step-wrapper {
        flex-direction: column;
    }
    
    .step-content.right, 
    .step-content.left {
        margin: 0;
        margin-top: -30px;
        text-align: center;
        width: 90%;
        transform: translateY(50px) !important;
    }
    
    .step-wrapper.active .step-content.right,
    .step-wrapper.active .step-content.left {
        transform: translateY(0) !important;
    }
    
    .step-image {
        order: -1;
        margin-bottom: 20px;
        transform: translateY(-50px) !important;
    }
    
    .step-wrapper.active .step-image {
        transform: translateY(0) !important;
    }
    
    .step-wrapper:not(:last-child)::after {
        left: 50%;
        bottom: -20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .steps-container {
        padding: 10px;
    }
}

.register-btn {
    /* جميع الأنماط السابقة تبقى كما هي */
    display: inline-block; /* مهم لعمل padding وmargin على الرابط */
    text-decoration: none; /* لإزالة الخط التحتي للرابط */
}

/* التأثير عند hover يبقى كما هو */
.register-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
    text-decoration: none; /* للتأكد من عدم ظهور خط تحتي عند hover */
}	







/* ================ Responsive Design ================ */
@media (max-width: 992px) {
  .nav-list {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
	
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
	
  .menu-toggle {
    display: block;
  }
  
  .nav-list {
	  /*
    position: fixed;
    top: 0;
    right: -100%;
		*/
position: fixed;
    top: 25px;
   
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
   
	
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .form-group {
    flex: 1 1 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact ul li {
    justify-content: center;
  }
  
.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  float:right;
}

		video{
			width:100%;
		}


}

@media (max-width: 576px) {
  .hero-section {
    padding: 5rem 0 3rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .category-card {
    padding: 1.5rem 1rem;
  }
  
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}



/* ========= Login =========== */


        .login-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            width: 400px;
            padding: 40px;
            text-align: center;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .login-container h2 {
            color: #333;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .input-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .input-group input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .input-group input:focus {
            border-color: #667eea;
            outline: none;
        }
        
        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }
        
        .btn {
            background: linear-gradient(to right, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .btn:hover {
            background: linear-gradient(to right, #5a6fd1, #6a4195);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .links {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
        }
        
        .links a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
            display: none;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
		
		.login-btn{
			background: #f28888;
			  color: #fff;
			  border: 1px solid #ff8080;
			  padding: 7px 10px;
			  font-weight: bold;
			border-radius: 0 15px 15px 0;
		}
		.sign-up-btn{
			background: #68bef2;
			  color: #fff;
			  border: 1px solid #c3e6cb;
			  padding: 7px 10px;
			  font-weight: bold;
				border-radius: 15px 0 0 15px;
		}
		
		
.logo-hover:hover {
  transform: scale(1.2) rotate(0deg);
}
.logo-hover {
  transition: transform 0.3s ease;
}

.image-advanced-fade {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-in-out;
}

.image-advanced-fade.visible {
  opacity: 1;
  transform: translateX(0);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(231, 76, 60, 0.4);
}
.cta-button {
  display: inline-block;
  padding: 10px 35px;
  background-color: #e74c3c;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
  position: relative;
  overflow: hidden;
}