.announcement-bar {
  background: #1f8f3a;
  color: #ffffff;
  overflow: hidden;
  height: 35px;
  display: flex;
  align-items: center;
  width: 100%;
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: announcement-scroll 20s linear infinite;
  font-size: 14px;
  font-weight: 600;
}

.announcement-track span {
  display: inline-block;
}

@keyframes announcement-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .announcement-bar {
    height: 32px;
  }

  .announcement-track {
    font-size: 12px;
    gap: 35px;
  }
}
.rating-section {
  background: #ffffff;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid #eeeeee;
}

.store-name {
  font-size: 15px;
  font-weight: 700;
  color: #1f8f3a;
  margin-bottom: 2px;
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 20px;
}

.rating-text {
  font-size: 12px;
  color: #555555;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .store-name {
    font-size: 14px;
  }

  .stars {
    font-size: 15px;
  }

  .rating-text {
    font-size: 11px;
  }
}
.countdown-bar {
  background: linear-gradient(135deg, #1f8f3a, #36c95a);
  color: white;
  width: fit-content;
  margin: 12px auto;
  padding: 10px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(31, 143, 58, 0.25);
  animation: floatBox 2.5s ease-in-out infinite;
}

#timer {
  background: white;
  color: #1f8f3a;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.08);
}

@keyframes floatBox {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width:768px) {
  .countdown-bar {
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 15px;
  }

  #timer {
    font-size: 17px;
    padding: 5px 11px;
  }
}
.hero-section {
  text-align: center;
  padding: 30px 15px;
  background: #ffffff;
}

.hero-section h1 {
  font-size: 28px;
  font-weight: 800;
  color: #15a45c;
  line-height: 1.5;
  margin-bottom: 18px;
}

.product-image {
  width: 90%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.hero-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 15px auto 20px;
  max-width: 500px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.features span {
  background: #f1f8f2;
  color: #333;
  padding: 9px 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

@media (max-width:768px) {

  .hero-section h1 {
    font-size: 23px;
  }

  .product-image {
    width: 95%;
  }

  .hero-section p {
    font-size: 14px;
  }

  .whatsapp-btn {
    font-size: 15px;
    padding: 13px 28px;
  }
}
.packs-section {
  padding: 35px 15px;
  text-align: center;
  background: #fff;
}

.packs-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

.pack-card {
  flex: 1;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 18px 10px;
  cursor: pointer;
  background: white;
  transition: 0.3s;
  position: relative;
}

.pack-card:hover {
  border-color: #1f8f3a;
}

.pack-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.pack-price {
  font-size: 22px;
  font-weight: 800;
  color: #1f8f3a;
}

.pack-card p {
  font-size: 13px;
  margin: 5px 0;
}


/* العرض المختار */
.pack-card.selected {
  background: #1f8f3a;
  border-color: #1f8f3a;
  color: white;
}

.pack-card.selected .pack-price {
  color: white;
}


/* العرض الأكثر طلبا */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f8f3a;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
}


/* الهاتف */
@media(max-width:768px){

  .packs-container {
    gap: 8px;
  }

  .pack-card {
    padding: 15px 5px;
  }

  .pack-card h3 {
    font-size: 13px;
  }

  .pack-price {
    font-size: 18px;
  }

  .pack-card p {
    font-size: 11px;
  }

}
.order-form {
  background: #f8f8f8;
  padding: 30px 15px;
  text-align: center;
}

.order-form h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.order-form form {
  max-width: 450px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-form input {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 15px;
  font-size: 15px;
  text-align: right;
  outline: none;
}

.order-form input:focus {
  border-color: #1f8f3a;
}

.order-form button {
  height: 52px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.order-form button:hover {
  transform: scale(1.03);
}
.reviews-section{
    padding:45px 15px;
    background:#f8f8f8;
}

.reviews-section h2{
    text-align:center;
    font-size:28px;
    font-weight:800;
    color:#222;
    margin-bottom:25px;
}

.reviews-slider{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
}

.reviews-slider::-webkit-scrollbar{
    display:none;
}

.review-card{
    min-width:330px;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    scroll-snap-align:center;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-stars{
    color:#FFC107;
    font-size:22px;
    margin-bottom:12px;
}

.review-text{
    color:#444;
    font-size:15px;
    line-height:1.8;
}

.review-user{
    display:flex;
    align-items:center;
    margin-top:18px;
}

.review-user img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    margin-left:12px;
}

.review-user h4{
    margin:0;
    font-size:16px;
    font-weight:700;
}

.review-user span{
    color:#777;
    font-size:13px;
}

@media(max-width:768px){

.review-card{
    min-width:90%;
}

.reviews-section h2{
    font-size:24px;
}

}
.faq-section{
    padding:45px 15px;
    background:#fff;
}

.faq-section h2{
    text-align:center;
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    color:#222;
}

.faq-item{
    max-width:700px;
    margin:12px auto;
    border:1px solid #e5e5e5;
    border-radius:14px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    overflow:hidden;
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:18px 20px;
    font-size:16px;
    font-weight:700;
    direction:rtl;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    font-size:22px;
    color:#1f8f3a;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 20px 20px;
    color:#555;
    line-height:1.8;
    direction:rtl;
}

@media(max-width:768px){

.faq-section h2{
    font-size:24px;
}

.faq-item summary{
    font-size:15px;
}

}
.footer{
    background:#083614;
    color:#fff;
    padding:40px 20px;
    text-align:center;
}

.footer h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:15px;
}

.footer p{
    color:#ccc;
    line-height:1.8;
    font-size:15px;
}

.footer-links{
    margin:25px 0;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-links a:hover{
    color:#25D366;
}

.copyright{
    margin-top:20px;
    font-size:13px;
    color:#888;
}
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:36px;
    height:36px;
}

@keyframes whatsappPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}