@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
@font-face {
  font-family: 'LBC';
  src: url('../fonts/lbc-regular-.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #100F1D;
  font-family: 'LBC', sans-serif;
}

.header {
   background: rgba(16,15,29,.45);
  backdrop-filter: blur(30px);       
  -webkit-backdrop-filter: blur(8px);
  height: 75px;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}


.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 65px;
  height: auto;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #BCBCBC;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav {
  display: flex;
  gap: 50px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav a:hover {
  color: #BCBCBC;
  transform: scale(1.01);
}

.account-btn {
  background: #100F1D;
  border: 2px solid #54248F;
  padding: 8px 16px;
  width: 160px;
  border-radius: 30px;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.6); 
}

.account-btn:hover {
 transform: scale(1.02);
 box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.7); 
}

.mobile-menu-icon {
  display: none;
  font-size: 20px;
  padding-right: 10px;
  color: white;
  cursor: pointer;
}

.mobile-menu-icon.open::before {
  content: "\f00d"; /* fa-xmark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}


.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #100F1D;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
  overflow: hidden;
}

.mobile-menu-overlay.open {
  display: flex;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: right;
  margin-top: 50px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

.mobile-nav a {
  opacity: 0;
  transform: translateY(20px);
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.show a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.close-menu-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.mobile-nav a {
  color: white;
  font-size: 22px;
  text-decoration: none;
}

.mobile-menu-overlay.open {
  display: flex;
  overflow: hidden;
}

.sub-type {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  margin-top: 90px;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-type h1{
  font-size: 26px;
 color:rgb(233, 233, 233);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin: 15px;
  font-weight: bold;
  font-family: 'Tajawal', sans-serif;
  font-weight: 800;
}

.sub-type p {
  font-size: 18px;
  color: #ffffff;
  margin: 5px;
  direction: rtl;
  text-align: center;
  opacity: 0.8;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.divider {
  width: 400px;
  height: 5px;
  background: linear-gradient(124deg,#3F3B77,#7034CE);
  box-shadow: inset 2px 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0 10px;
}

.blur-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}

.subscription-options{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px;
  align-items: stretch;
  margin-bottom: 50px;
}

.plan-card{
   background: linear-gradient(135deg, #5525A2 0%, #100f1dbd 25%);
  border-radius: 30px;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.25);
  border: 1.5px solid #353535;
  width: 28%;
  padding: 20px;
  display: flex;
  height: 100%; 
  flex: 1 1 30%;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s;
  direction: rtl;
  position: relative;
  align-items: stretch;
}

.title-with-circle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.title-with-circle .circle {
  width: 14px;
  height: 14px;
  background-color: #5525A2;
  border-radius: 50%;
}

.plan-card h2 {
  font-size: 22px;
  color: #fff;
  flex-grow: 1; 
}
.title-with-circle .discount {
  flex-shrink: 0;
  background-color: #5525a2af; 
   box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.9em;
  white-space: nowrap;
  font-size: 18px;
  margin-left: 10px;
}

.price-container .price-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
}

.discounted-price {
  font-size: 45px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55);
  background: linear-gradient(to right, #ffffff 50%,#b9b9b9 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.price-container .price {
  font-size: 45px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55);
  background: linear-gradient(to right, #ffffff 50%,#b9b9b9 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-align: center;
}

.divider-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.divider-plan span {
  color: #FFFFFF;
  font-size: 16px;
  position: relative;
  opacity: 40%;
  padding: 0 5px;
}

.divider-plan span::before,
.divider-plan span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120%;
  height: 5px;
  border-radius: 5px;
  background-color: #000000;
  box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.25);
}

.divider-plan span::before {
  right: 100%;
  margin-right: 5px;
}

.divider-plan span::after {
  left: 100%;
  margin-left: 5px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: #ffffff;
  font-size: 15px;
  direction: rtl;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #6B6C70;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 1px 1px 2px rgba(0, 0, 0, 0.4),
    inset -1px 0px 1px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.circle i {
  color: #100F1D;
  font-size: 13px;
  font-weight: bold;
}

.subscribe-btn {
  background-color: #7034CE;
  color: white;
  border: none;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  width: 60%;
  margin: 20px auto 0 auto;
  transition: background 0.3s;
  box-shadow:inset 0 6px 6px rgba(0, 0, 0, 0.25);
  margin-top: auto;
  align-self: center;
  margin-right: 20%;
}

.subscribe-btn:hover {
  background-color: #522599;
}

.plan-card:hover {
  transform: scale(1.01);
}

.subscription-note{
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  color: #DEDEDE;
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}

/* footer */
.footer {
  background-color: #0f0f1b;
  padding: 30px 20px;
  border-radius: 15px 15px 0 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-info {
  flex: 1 1 250px;
  direction: rtl;
}

.footer-info h3 {
  font-size: 28px;
  font-family: 'Spinnaker', sans-serif;
  margin-bottom: 10px;
  position: relative;
  font-weight: 300;
  color: #fff;
}

.highlight-bar {
  display: inline-block;
  width: 4px;
  height: 45px;
  background: #FBB040;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.88);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 30%;
}

.footer-info p {
  font-size: 18px;
  color: #DEDEDE;
  margin-top: 5px;
  font-weight: 400;
}

.footer-contact {
  flex: 1 1 200px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
}

.contact-item i {
  margin-right: 10px;
  color: #DEDEDE;
}

.contact-item a {
  color: #DEDEDE;
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.contact-item span {
    color: #DEDEDE;
  transition: color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.contact-item a:hover {
  color: #a8a8a8;
}

.footer-social {
  flex: 1 1 150px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  gap: 10px;
}

.footer-social a {
   display: inline-block;
	height: 40px;
	width: 40px;
	background-color: #8D8D8D;
	margin:0 12px 12px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}

.footer-social a:hover {
  color: #24262b;
	background-color: #ffffff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #999;
  padding-top: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

#cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #54248F;
  color: rgb(206, 206, 206);
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(31, 31, 31, 0.5);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#cart-icon:hover {
  transform: scale(1.1);
}

#cart-icon i {
  font-size: 20px;
}

.cart-item-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: rgb(207, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  visibility: hidden;
}

#cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background: linear-gradient(to bottom, #35175a, #100F1D);;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  direction: rtl;
   z-index: 10000;
}

#cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 15px;
  color: rgb(221, 221, 221);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

#close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 10px;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  color: #fff;
}

.cart-content table {
  width: 100%;
  border-collapse: collapse;
}

.cart-content th, .cart-content td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  text-align: right;
}

.cart-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.total {
  margin-bottom: 10px;
  font-size: 16px;
  color: #DEDEDE;
}

.pay-btn {
  width: 100%;
  padding: 10px;
  background-color: #7034CE;
  color: white;
  border: none;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  margin: 20px auto 0 auto;
  transition: background 0.3s;
  box-shadow:inset 0 6px 6px rgba(0, 0, 0, 0.25);
  margin-top: auto;
  align-self: center;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.remove-item:hover {
  transform: scale(1.2);
}

@media (min-width: 992px) {  
  .footer-Mobile{
    display: none;
  }
}

@media (max-width: 768px) {

  html,body {
    width: 100%;
    overflow-x: hidden;
  }
    .header {
    justify-content: space-between; 
    padding: 10px 12px;
    height: 60px;
    background: #100f1ddc;
    backdrop-filter: blur(30px);       
  -webkit-backdrop-filter: blur(8px);
  }

  .header-left {
    flex: 1; 
    justify-content: flex-start; 
  }

  .header-right {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }

  .account-btn {
  align-self: center;
  margin-top: 100px;
}

.blur-circle {
  top: 40%;
  left: 0;
  width: 200px;
  height: 250px;
  z-index: -1000;
}

.sub-type h1 span {
  font-size: 24px;
 color:rgb(233, 233, 233);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin: 15px;
  font-weight: bold;
}

.sub-type p {
  font-size: 16px;
  margin: 0 5px;
}

.divider {
  width: 300px;
}

.subscription-options {
  flex-direction: column;
  align-items: center;
}

.plan-card {
  width: 95%;
}
.divider-plan span::before,
.divider-plan span::after {
  width: 98%;
}

.subscription-note{
  margin-bottom: 70px;
  font-size: 17px;
}

.footer {
  display: none;
}

.footer-Mobile .footer-info{
  direction: rtl;
  text-align: right;
}

.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .footer-contact {
    margin-top: -50px;
  }
.footer-social{
  margin-top: -150px;
}

#cart-sidebar{
  width: 100%;
  right: -100%;
  transition: right 0.3s ease;
  background: linear-gradient(to bottom, #271142, #100F1D);
}

#cart-sidebar.open {
  right: 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #ffffff;
  font-size: 15px;
  direction: rtl;
  text-align: right;
  margin-left: 10px;
}

}

