*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'El Messiri', sans-serif;

}
body{
    /* background-color: #f1ece3; */
    background-color: beige;
    /* background-color: #202020; */
    /* height: 5000px; */
}
header {
    width: 100%;
    height: 90px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: beige;
    padding: 0 30px;
    direction: rtl;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2); /* خط ذهبي خفيف */
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    
}

/* ----------- اللوجو ----------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.logo span {
    font-size: 28px;
    font-weight: bold;
    color: gold;
    letter-spacing: 1px;
}

/* ----------- اللينكات ----------- */
.linksList {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.linksList li a {
    text-decoration: none;
    color: beige;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s;
}
.linksList li a {
    text-decoration: none;
    color: beige;
    font-size: 18px;
    padding: 8px 15px;
    transition: 0.3s;
}

/* hover بدون مربعات */
.linksList li a:hover {
    color: gold;
}

/* زرار حجز التذاكر فقط يبقى مميز */
/* .ticket-btn {
    background-color: gold;
    color: black;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.ticket-btn:hover {
    background-color: beige;
    color: black;
} */


/* ----------- الكارت ----------- */
.cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid gold;
    cursor: pointer;
    color: gold;
    transition: 0.3s;
}

.cart:hover {
    background-color: gold;
    color: black;
}

.section1 {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* ضباب خفيف */
    z-index: 2;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 3;
    padding: 40px 50px;
    background: rgba(0, 0, 0, 0.55); /* خلفية سوداء شفافة */
    border-radius: 15px;
    font-family: 'El Messiri', sans-serif;

}

.text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.text p {
    font-size: 1.2rem;
    font-weight: 400;
}

.more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid gold;
    color: gold;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.more-btn:hover {
    background: gold;
    color: #000;
}

/* About Section */
.about {
    width: 100%;
    margin-top: 150px;
    max-height: 500px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 290px;
}

.about.visible {
    opacity: 1;
    transform: translateY(0);
}

.container2 {
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-text {
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.2s;
}

.about.visible .about-text {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    width: 40%;
    height: 650px;
    background-color: #000;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.4s;
}

.about.visible .about-image {
    opacity: 1;
    transform: translateX(0);
}

.about-text h1 {
    font-family: 'El Messiri', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-text h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 80px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.about-text p {
    font-size: 18px;
    line-height: 2;
    color: #444;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.about.visible .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
    .container2 {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text, .about-image {
        width: 100%;
        transform: translateY(50px);
    }
    
    .about.visible .about-text,
    .about.visible .about-image {
        transform: translateY(0);
    }
    
    .about-text h1 {
        font-size: 42px;
    }
    
    .about-text h1::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 70px 0;
        margin-top: 50px;
    }
    
    .about-text h1 {
        font-size: 36px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .about-image {
        height: 400px;
    }
}
.artifacts-section {
  background: #000;
  color: #fff;
  padding-top: 80px  ;
  direction: rtl;
  position: relative;
  margin-top: 150px;
  margin-bottom: 100px;

}

.artifacts-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'El Messiri', sans-serif;
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


.artifacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  align-items: stretch;
}

.artifact-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
  position: relative;
   display: flex; /* إضافة */
  flex-direction: column; /* إضافة */
  height: 100%; /* إضافة */
}

.artifact-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.artifact-image {
  position: relative;
  height: 300px;
  overflow: hidden;
    flex-shrink: 0; /* لمنع الصورة من التقلص */

}

.artifact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artifact-card:hover .artifact-image img {
  transform: scale(1.1);
}

.artifact-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  
}

.artifact-card:hover .artifact-overlay {
  opacity: 1;
}

.view-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.view-btn:hover {
  background: #f1c40f;
  transform: scale(1.05);
}

.artifact-info {
  padding: 25px;
}

.artifact-info h3 {
  font-family: 'El Messiri', sans-serif;
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 10px;
}

.artifact-era {
  color: #f1c40f;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.artifact-desc {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
  flex: 1; /* النص يأخذ المساحة المتبقية */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* تحديد عدد الأسطر */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artifact-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
   margin-top: auto; /* يدفع العناصر للأسفل */
  flex-shrink: 0;
}

.material, .location {
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.material::before {
  content: '⚒️';
  font-size: 12px;
}

.location::before {
  content: '📍';
  font-size: 12px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
}

.cta-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}


/* Responsive Design */
@media (max-width: 1200px) {
  .artifacts-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .artifacts-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .artifacts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .artifact-info {
    padding: 20px;
  }
  
  .artifact-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .artifacts-section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .artifact-image {
    height: 200px;
  }
  
  .artifact-info h3 {
    font-size: 20px;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}


.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #ddd;
  padding: 40px 0 0 0;
  margin-top: 60px;
  position: relative;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* قسم اللوجو */
.logo-section {
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo span {
  font-family: 'El Messiri', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
}

.footer-section p {
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 20px;
  font-size: 14px;
}

/* العناوين */
.footer-section h4 {
  color: #d4af37;
  font-family: 'El Messiri', sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: #d4af37;
}

/* القوائم */
.footer-section ul {
  list-style: none;
  padding: 40px;
  margin-left: 220px;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  display: block;
}

.footer-section ul li a:hover {
  color: #d4af37;
  transform: translateX(-5px);
}

/* معلومات التواصل */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.4;
}

.contact-info i {
  color: #d4af37;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

/* السوشيال ميديا */
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* النشرة البريدية */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: #d4af37;
}

.newsletter-form button {
  background: #d4af37;
  color: #1a1a1a;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #f1c40f;
}

.privacy-note {
  font-size: 11px;
  color: #777;
  margin: 5px 0 0 0;
  margin-right: 50px;
  }

/* حقوق النشر */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
  border-top: 1px solid #333;
}

.footer-bottom-content {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 12px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .logo-section {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 0 0;
    margin-top: 40px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .footer-section h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 0 0 0;
  }
  
  .footer-logo span {
    font-size: 20px;
  }
  
  .footer-logo img {
    height: 32px;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
/*shop page*/


.shopImg{
   
    width: 100%;
    height: 40vh;
    position: relative;
margin-bottom: 80px;
}
.shopImg img{
  width: 100%;
  height: 100%;
   
}
.textShop{
    position: absolute;
    top: 50%;
    left: 50%;
 transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
     font-family: 'El Messiri', sans-serif;
z-index: 9;
font-size: 24px;
}
.shopSection{
    margin-top: 80px;
    width: 100%;
    min-height:400px ;
}
.filterBox{
    width: 30%;
    height: 550px;

}
.shopSection {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f5f0e6; /* بيج */
    direction: rtl;
}

/* صندوق الفلترة */
.filterBox {
    width: 25%;
    background-color: #000; /* أسود */
    color: beige;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid gold;
    height: fit-content;
}

.filterBox h3 {
    color: gold;
    margin-bottom: 20px;
}

.filterGroup {
    margin-bottom: 20px;
}

#priceRange {
    width: 100%;
    margin-top: 10px;
}

.categories li {
    list-style: none;
    margin: 10px 0;
    cursor: pointer;
}

/* المنتجات */
.productsBox {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* كارت المنتج */
.productCard {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.productCard img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.productCard h4 {
    margin: 10px 0;
}

.price {
    color: gold;
    font-weight: bold;
}

.oldPrice {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.productCard button {
    background: gold;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.productCard button:hover {
    background: #c9a200;
}

.productCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.shop-content { padding: 60px 5%; }
.container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 50px; }

.sidebar .widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
    margin-bottom: 30px;
}
.sidebar h3 {
    margin-bottom: 20px;
    color: #bc8923;
    font-family: 'El Messiri', serif;
    border-bottom: 1px solid #c9a200;
    padding-bottom: 10px;
}
.categories li { margin-bottom: 12px;  border-bottom: 1px solid #eee;}
.categories a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: 0.3s;
}
.categories a:hover, .categories a.active { color: #bc8923; padding-right: 10px; }
.categories span { float: left; color: #aaa; font-size: 14px; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags a {
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}
.tags a:hover { background: #d4a373; color: #bc8923; }

.price-slider { width: 100%; margin: 20px 0;   color: #bc8923;}
.price-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 10px;
    background: #eee; /* خط غامق */
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

/* الجزء اللي بيمشي عليه المؤشر */
.price-slider::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 10px;
}

/* المؤشر نفسه */
.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #bc8923;
    border-radius: 50%;
    border: 2px solid black; /* علشان يبقى فاخر */
    margin-top: -5px; /* علشان يتحط فوق الخط */
    cursor: pointer;
}

/* لمتصفح فايرفوكس */
.price-slider::-moz-range-track {
    height: 14px;
    background: #bc8923;
    border-radius: 5px;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #bc8923;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
}

.price-values { display: flex; justify-content: space-between; font-size: 14px; color: #d4a373; }

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 15px;
    color: #777;
}
.top-bar select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.product-card .img {
    height: 320px;
    overflow: hidden;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-card:hover img { transform: scale(1.1); }

.product-card h4 {
    text-align: center;
    padding: 15px 10px 5px;
    font-size: 17px;
    color: #333;
}
.price {
    text-align: center;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    color: #d4a373;
}
.price del {
    color: #aaa;
    font-weight: 400;
    font-size: 16px;
    margin-left: 8px;
}

@media (max-width: 992px) {
    .container { grid-template-columns: 1fr; }
    .sidebar { order: 2; display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; }
    .sidebar .widget { min-width: 280px; }
}

@media (max-width: 600px) {
    .grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero h1 { font-size: 36px; }
}
/* spin*/
 .wheel-trigger {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 70px;
            height: 70px;
            background: gold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .wheel-trigger:hover {
            transform: scale(1.1);
        }
        
        .wheel-trigger i {
            font-size: 30px;
            color: #000;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* إصلاح مشكلة العجلة */
        .wheel-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            background: rgb(240, 240, 225,.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        
        .wheel-container {
            position: relative;
            width: 340px;
            height: 340px;
        }
        
        .wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #f5e6d3 0% 12.5%,
                #ff9d00 12.5% 25%,
                #f5e6d3 25% 37.5%,
                #ff9d00 37.5% 50%,
                #f5e6d3 50% 62.5%,
                #ff9d00 62.5% 75%,
                #f5e6d3 75% 87.5%,
                #ff9d00 87.5% 100%
            );
            box-shadow: 0 0 40px rgba(255,157,0,0.6), inset 0 0 30px rgba(0,0,0,0.8);
            position: relative;
            transition: transform 6s cubic-bezier(0.17, 0.67, 0.12, 0.99);
        }
        
        .segment {
            position: absolute;
            width: 50%;
            height: 50%;
            top: 50%;
            left: 50%;
            transform-origin: 0% 0%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #000;
            text-align: center;
        }
        
        .pointer {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 30px solid #fff;
            filter: drop-shadow(0 8px 10px rgba(0,0,0,0.6));
            z-index: 10;
        }
        
        .spin-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: #fff;
            border-radius: 50%;
            border: 8px solid #000;
            font-size: 24px;
            font-weight: 900;
            color: #000;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
            z-index: 11;
        }
        
        .spin-btn:active { 
            transform: translate(-50%, -50%) scale(0.9); 
        }
        
        .result {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            color: #fff;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            font-size: 32px;
            text-align: center;
            z-index: 3000;
        }
        
        .result h2 { 
            color: #ff9d00; 
            margin-bottom: 20px; 
            font-size: 48px; 
        }
        
        #offerValue { 
            font-size: 60px; 
            color: #ff9d00; 
            margin: 20px 0; 
        }
        
        .close-result {
            margin-top: 40px;
            padding: 15px 50px;
            background: #ff9d00;
            color: #000;
            border: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
        }

        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
            .sidebar { order: 2; display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; }
            .sidebar .widget { min-width: 280px; }
        }

        @media (max-width: 600px) {
            .grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .wheel-trigger {
                width: 60px;
                height: 60px;
                bottom: 20px;
                left: 20px;
            }
            .wheel-trigger i {
                font-size: 24px;
            }
        }
 /* أنماط زر أضف إلى السلة */
.add-to-cart {
    background-color: #c9a200;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #e0b500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 0, 0.3);
}

.add-to-cart i {
    font-size: 16px;
}

/* عداد السلة */
.cart {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #c9a200;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* إشعار الإضافة للسلة */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 20px;
    color: #d4edda;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
}

/* تأثير اهتزاز للسلة */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.cart.shake {
    animation: shake 0.5s ease-in-out;
}

/* تحسين عرض بطاقة المنتج - الزرار دايماً ظاهر */
.product-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 15px; /* زيادة المسافة من الأسفل */
}

/* إزالة تأثير الظهور عند الهوفر */
.product-card .add-to-cart {
    position: static;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
    width: 100%;
}

/* تحسين عرض السعر والزر معاً */
.product-card .price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.product-card .price {
    font-size: 19px;
    font-weight: bold;
    color: #c9a200;
    margin-left: 10px;
    margin-top: 20px;
}

.product-card .add-to-cart {
    width: 50%; /* تخصيص مساحة للزر */
    margin-top: 0;
    height: 40px;
    margin-right: 10px;
}
/* ==================== سكشن حجز التذاكر ==================== */
.tickets-preview {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 80px 20px;
    position: relative;
}

.tickets-header {
    text-align: center;
    margin-bottom: 50px;
}

.tickets-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'El Messiri', sans-serif;
}

.tickets-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.ticket-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ticket-card.popular {
    border-color: #c9a200;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a200;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.ticket-type {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ticket-type i {
    font-size: 2rem;
    color: #c9a200;
    background: #fff9e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-type h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.ticket-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #c9a200;
    display: block;
}

.currency {
    font-size: 1.5rem;
}

.period {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.ticket-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.book-ticket-btn {
    display: block;
    width: 100%;
    background: #c9a200;
    color: black;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.book-ticket-btn:hover {
    background: #e0b500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 0, 0.3);
}

.tickets-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box i {
    font-size: 2rem;
    color: #c9a200;
    background: #fff9e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.info-box p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .tickets-header h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .tickets-info {
        grid-template-columns: 1fr;
    }
}

/* ==================== صفحة حجز التذاكر ==================== */
.booking-section {
    padding: 100px 20px;
    background: #f8f9fa; /* بيج فاتح */
}

.booking-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    font-family: 'El Messiri', sans-serif;
    margin-bottom: 10px;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* ==== الكونتينر ==== */
.booking-form {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f1e8cc; /* لمسة دهبي باهت */
    transition: 0.3s;
}

.booking-form:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ==== كل خانة فى الفورم ==== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

/* ==== حقول الإدخال ==== */
.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
    background: #fffaf0;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #c9a200;
    background: #fff9e6;
    box-shadow: 0 0 5px rgba(201, 162, 0, 0.4);
}

/* ======== زرار تأكيد الحجز ======== */
.confirm-booking-btn {
    width: 100%;
    padding: 15px;
    background: #c9a200;
    border: none;
    color: white;
    font-size: 1.3rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.confirm-booking-btn:hover {
    background: #a88900;
    transform: translateY(-3px);
}

/* ===== موبايل ===== */
@media (max-width: 600px) {
    .booking-form {
        padding: 25px 20px;
    }

    .booking-title {
        font-size: 2rem;
    }
}
/* ==================== صفحة حجز التذاكر ==================== */
.booking-hero {
    position: relative;
    background: url('/images/museume1.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center; /* يخلي المحتوى في نص الصورة عمودي */
    justify-content: center; /* يخليه في النص أفقي */
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* الـ overlay */
.booking-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* شفافية خفيفة عشان الكلام يوضح */
    z-index: 1;
}

/* المحتوى نفسه */
.hero-content {
    position: relative;
    z-index: 2; /* فوق الـ overlay */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'El Messiri', sans-serif;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: #fff;
}


/* Booking Section */
.booking-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef9f3 0%, #fffaf5 100%);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-title {
    font-size: 2.8rem;
    color: #333;
    font-family: 'El Messiri', sans-serif;
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Booking Form */
.booking-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1e8cc;
    transition: transform 0.3s ease;
}

.booking-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
}

.form-group label i {
    color: #c9a200;
    font-size: 1.1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fffaf5;
    transition: all 0.3s ease;
    color: #333;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #c9a200;
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 162, 0, 0.1);
    outline: none;
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5e0 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #f1e8cc;
    margin-top: 10px;
}

.booking-summary h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f1e8cc;
    padding-bottom: 10px;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0d5b6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #666;
    font-weight: 500;
}

.summary-item span:last-child {
    color: #333;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #c9a200;
    font-size: 1.2rem;
}

.summary-total span:first-child {
    color: #333;
    font-weight: bold;
}

.summary-total span:last-child {
    color: #c9a200;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Form Actions */
.form-actions {
    margin-top: 30px;
}

.confirm-booking-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #c9a200 0%, #e0b500 100%);
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 162, 0, 0.3);
}

.confirm-booking-btn:hover {
    background: linear-gradient(135deg, #b89400 0%, #d0a800 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 0, 0.4);
}

.confirm-booking-btn:active {
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    color: #666;
    margin-top: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #c9a200;
}

/* Booking Info Sidebar */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1e8cc;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    color: #c9a200;
    margin-bottom: 15px;
    background: #fff9e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card .note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c9a200;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #a88900;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-right: 20px;
}

.terms-list li:before {
    content: "•";
    color: #c9a200;
    position: absolute;
    right: 0;
    font-size: 1.2rem;
}

/* Suggested Tickets */
.suggested-tickets {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    font-family: 'El Messiri', sans-serif;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-card {
    background: #fef9f3;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card:hover {
    border-color: #f1e8cc;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a200;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.ticket-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ticket-header i {
    font-size: 2.5rem;
    color: #c9a200;
    background: #fff9e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.ticket-price {
    text-align: center;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px dashed #f1e8cc;
    border-bottom: 2px dashed #f1e8cc;
}

.price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #c9a200;
    display: block;
}

.currency {
    font-size: 1.5rem;
    font-weight: normal;
}

.period {
    display: block;
    color: #666;
    margin-top: 5px;
    font-size: 0.95rem;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #f1e8cc;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.select-ticket-btn {
    width: 100%;
    padding: 15px;
    background: #f1e8cc;
    border: 2px solid #c9a200;
    color: #333;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.select-ticket-btn:hover {
    background: #c9a200;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .booking-info {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .booking-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .booking-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding: 80px 15px 60px;
    }
    
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .booking-hero p {
        font-size: 1rem;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .stat {
        gap: 5px;
    }
    
    .stat i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
/* ==================== صفحة عربة التسوق ==================== */
.cart-content {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 60vh;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1e8cc;
    font-family: 'El Messiri', sans-serif;
}

/* عناصر العربة */
.cart-items {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-cart p {
    color: #888;
    margin-bottom: 30px;
}

/* عنصر في العربة */
.cart-item {
    display: grid;
    grid-template-columns: 120px 2fr auto;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    padding-left: 20px;
}

.cart-item-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.cart-item-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.cart-item-price {
    font-size: 1.3rem;
    color: #c9a200;
    font-weight: bold;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #c9a200;
    background: white;
    color: #c9a200;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #c9a200;
    color: white;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #bd2130;
}

.remove-item i {
    font-size: 0.9rem;
}

/* ملخص الطلب */
.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.summary-details {
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
}

.summary-row:last-child {
    border-bottom: none;
}

.discount-row {
    color: #28a745;
}

.total-row {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #c9a200;
}

/* قسم الخصم */
.discount-section {
    background: #fff9e6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #f1e8cc;
}

.discount-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.discount-input {
    display: flex;
    gap: 10px;
}

.discount-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.discount-input button {
    padding: 12px 25px;
    background: #c9a200;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discount-input button:hover {
    background: #e0b500;
}

.discount-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.discount-note.success {
    color: #28a745;
}

.discount-note.error {
    color: #dc3545;
}

/* قسم الدفع */
.checkout-section {
    margin-bottom: 30px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #c9a200 0%, #e0b500 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #b89400 0%, #d0a800 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 0, 0.3);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secure-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-note i {
    color: #28a745;
}

/* طرق الدفع */
.payment-methods {
    border-top: 2px solid #f1e8cc;
    padding-top: 25px;
}

.payment-methods h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.method:hover {
    border-color: #c9a200;
    background: #fff9e6;
}

.method i {
    color: #c9a200;
    font-size: 1.2rem;
}

.method span {
    font-size: 0.9rem;
    color: #666;
}

/* منتجات مقترحة */
.suggested-products {
    padding: 60px 20px;
    background: white;
    border-top: 1px solid #eee;
}

/* تصميم متجاوب */
@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    
    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .discount-input {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cart-content {
        padding: 40px 15px;
    }
    
    .cart-items,
    .cart-summary {
        padding: 20px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cart-item-details {
        padding-left: 0;
    }
    
    .cart-item-controls {
        justify-content: center;
    }
}
.products-grids {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Pagination Styles */
.pagination-container {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.page-btn {
    background: #f1e8cc;
    border: 2px solid #c9a200;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn:not(:disabled):hover {
    background: #c9a200;
    color: white;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-number:hover {
    border-color: #c9a200;
    background: #f9f5e3;
}

.page-number.active {
    background: #c9a200;
    color: white;
    border-color: #c9a200;
}

.page-dots {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .page-number, .page-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .page-dots {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .page-number, .page-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .page-dots {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-numbers {
        gap: 3px;
    }
}

/* Product Details Page Styles - Enhanced */
.product-details-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    min-height: calc(100vh - 150px);
    
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.product-details-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #c9a200, #ffd700);
}

/* Product Gallery Styles */
.product-gallery {
    position: relative;
}

.product-main-image-container {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: #f8f8f8;
    margin-bottom: 30px;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 30px;
}

.product-main-image:hover {
    transform: scale(1.05);
}

.image-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.zoom-btn, .fullscreen-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
}

.zoom-btn:hover, .fullscreen-btn:hover {
    background: #c9a200;
    color: white;
    transform: translateY(-2px);
}

.product-thumbnails-container {
    position: relative;
}

.thumbnails-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 5px;
    scrollbar-width: thin;
    scrollbar-color: #c9a200 #f0f0f0;
}

.thumbnails-scroll::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.thumbnails-scroll::-webkit-scrollbar-thumb {
    background: #c9a200;
    border-radius: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #f8f8f8;
    padding: 8px;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #c9a200;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 162, 0, 0.3);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: #c9a200;
    color: white;
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

/* Product Info Styles */
.product-info {
    padding: 20px 0;
    position: relative;
}

.product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1e8cc;
}

.product-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
    font-family: 'El Messiri', sans-serif;
    line-height: 1.3;
}

.product-category {
    display: inline-block;
    background: linear-gradient(45deg, #f1e8cc, #ffefb3);
    color: #b89400;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(201, 162, 0, 0.15);
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.product-price {
    font-size: 42px;
    color: #c9a200;
    font-weight: bold;
    font-family: 'Cairo', sans-serif;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb300;
}

.product-rating i {
    font-size: 18px;
}

.product-description {
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 17px;
    padding: 25px;
    background: #fafafa;
    border-radius: 15px;
    border-right: 4px solid #f1e8cc;
}

/* Size Selector Styles */
.size-selector {
    margin: 30px 0;
}

.size-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-title i {
    color: #c9a200;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-option {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    user-select: none;
}

.size-option:hover {
    border-color: #c9a200;
    color: #c9a200;
    transform: translateY(-2px);
}

.size-option.selected {
    background: #c9a200;
    color: white;
    border-color: #c9a200;
    box-shadow: 0 5px 15px rgba(201, 162, 0, 0.3);
}

.size-option.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #f5f5f5;
}

.size-guide {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.size-guide a {
    color: #c9a200;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #c9a200;
    padding-bottom: 2px;
}

.size-guide a:hover {
    color: #b89400;
}

/* Quantity and Actions */
.quantity-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 35px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.quantity-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 12px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.quantity-btn:hover {
    background: #c9a200;
    color: white;
    transform: translateY(-2px);
}

.quantity-input {
    width: 70px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    font-family: 'Cairo', sans-serif;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(45deg, #c9a200, #ffd700);
    color: white;
    border: none;
    padding: 20px 35px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(201, 162, 0, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 162, 0, 0.4);
    background: linear-gradient(45deg, #b89400, #e6c500);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn i {
    font-size: 22px;
}

.wishlist-btn {
    width: 65px;
    height: 65px;
    background: white;
    border: 2px solid #f1e8cc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: #c9a200;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #fff9e6;
    color: #b89400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 0, 0.15);
}

.wishlist-btn.active {
    background: #c9a200;
    color: white;
    border-color: #c9a200;
}

/* Product Meta */
.product-meta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1e8cc;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 15px;
}

.meta-item i {
    color: #c9a200;
    font-size: 18px;
    width: 25px;
}

.meta-item strong {
    color: #333;
    font-weight: 600;
    margin-left: 5px;
}

/* Back Button */
.back-to-shop {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #c9a200;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    margin-top: 40px;
    padding: 12px 25px;
    background: #fcf8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.back-to-shop:hover {
    color: #b89400;
    background: #f9f3d9;
    transform: translateX(-8px);
    border-color: #f1e8cc;
}

.back-to-shop i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-to-shop:hover i {
    transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-details-wrapper {
        gap: 50px;
        padding: 40px;
    }
    
    .product-main-image-container {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-main-image-container {
        height: 450px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-price {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .product-details-wrapper {
        padding: 25px;
        border-radius: 20px;
    }
    
    .product-main-image-container {
        height: 350px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-price {
        font-size: 32px;
    }
    
    .quantity-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-btn,
    .wishlist-btn {
        width: 100%;
        height: 60px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .product-details-section {
        padding: 30px 0;
    }
    
    .product-details-wrapper {
        padding: 20px;
        border-radius: 15px;
    }
    
    .product-main-image-container {
        height: 280px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .product-description {
        font-size: 15px;
        padding: 20px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .size-option {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

/* Fullscreen Image Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.fullscreen-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}