/** Shopify CDN: Minification failed

Line 358:0 Unexpected "}"

**/
/* Announcement Bar Pro Styles */
.announcement-bar-pro {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--background-color, #4f6b2e) 0%, color-mix(in srgb, var(--background-color, #4f6b2e) 85%, #ffffff 15%) 100%);
  color: var(--text-color, #ffffff);
  font-family: var(--font-body-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: 14px;
  line-height: 1.4;
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar-pro__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: auto;
  position: relative;
  min-height: 48px;
}

/* Countdown Timer Styles */
.announcement-bar-pro__countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.countdown-label {
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 32px;
}

.countdown-number {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 6px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.8;
}

.countdown-separator {
  font-weight: 700;
  font-size: 14px;
  opacity: 0.6;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Messages Container */
.announcement-bar-pro__messages {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 24px;
}

.announcement-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.announcement-message.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.message-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.message-text {
  font-weight: 500;
  text-align: center;
}

.announcement-button {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  text-decoration: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.announcement-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Controls */
.announcement-bar-pro__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .announcement-bar-pro__controls {
    display: none !important;
  }
}


.control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.control-btn:active {
  transform: scale(0.95);
}

.message-indicators {
  display: flex;
  gap: 4px;
  align-items: center;
}

.indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.3);
}

.indicator:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Close Button */
.announcement-bar-pro__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.announcement-bar-pro__close:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .announcement-bar-pro__container {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  
  .announcement-bar-pro__countdown {
    order: 2;
  }
  
  .announcement-bar-pro__messages {
    order: 1;
  }
  
  .announcement-bar-pro__controls {
    order: 3;
  }
  
  .countdown-timer {
    gap: 6px;
  }
  
  .countdown-unit {
    min-width: 28px;
  }
  
  .countdown-number {
    font-size: 14px;
    min-width: 24px;
    padding: 3px 5px;
  }
  
  .countdown-text {
    font-size: 9px;
  }
  
  .message-content {
    flex-direction: row;
    gap: 8px;
  }
  
  .announcement-bar-pro__close {
    right: 12px;
  }
}

@media screen and (max-width: 480px) {
  .announcement-bar-pro__container {
    padding: 12px 16px;
  }
  
  .countdown-timer {
    gap: 4px;
  }
  
  .countdown-unit {
    min-width: 24px;
  }
  
  .countdown-number {
    font-size: 12px;
    min-width: 20px;
    padding: 2px 4px;
  }
  
  .countdown-separator {
    font-size: 12px;
  }
  
  .message-text {
    font-size: 13px;
  }
  
  .announcement-button {
    padding: 4px 10px;
    font-size: 11px;
  }
}



@media (max-width: 767px) {
  .message-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .announcement-bar-pro__close {
    display: none !important;
  }   }

  .message-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    color: #ffffff;
  }

  .announcement-button {
    font-size: 11px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}




/* Animation for message transitions */
.announcement-message.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.announcement-message.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}

.announcement-message.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
}

.announcement-message.slide-in-left {
  transform: translateX(-100%);
  opacity: 0;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .announcement-bar-pro *,
  .announcement-bar-pro *::before,
  .announcement-bar-pro *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .countdown-separator {
    animation: none;
  }
}

/* Focus styles */
.control-btn:focus,
.indicator:focus,
.announcement-bar-pro__close:focus,
.announcement-button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Hidden state */
.announcement-bar-pro.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Layout variations */
.announcement-bar-pro[data-layout="spacious"] .announcement-bar-pro__container {
  padding: 20px;
  min-height: 60px;
}

.announcement-bar-pro[data-layout="spacious"] .countdown-number {
  font-size: 18px;
  padding: 6px 8px;
  min-width: 32px;
}

.announcement-bar-pro[data-layout="spacious"] .message-text {
  font-size: 16px;
}


#countdown-announcement {
  background: #5f7841;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
}


.announcement-bar__cta-button::after {
  content: "➚";
  font-size: 1.6rem;
  line-height: 1;
  color: #f97316;
}




.header-wrapper a {
  color: #1c1c1c !important;
}


header-menu li:hover > ul {
  display: block;
}


header-menu ul ul {
  display: none;
  position: absolute;
  background-color: #4f6b2e;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 0.5rem;
  z-index: 100;
}

.announcement-bar__cta-button::before {
  content: "●";
  color: #f97316;
  font-size: 1.2rem;
  margin-right: 0.4rem;
  line-height: 1;
  display: inline-block;
}




/* النقطة قبل النص */
.announcement-bar__cta-button::before {
  content: "●";
  color: #f97316;
  font-size: 1.2rem;
  margin-right: 0.4rem;
  line-height: 1;
  display: inline-block;
}

/* السهم */
.announcement-bar__cta-button::after {
  content: "➚";
  font-size: 1.6rem;
  line-height: 1;
  color: #f97316;
  margin-left: 0.5rem;
}

/* الزر الأساسي */
.announcement-bar__cta-button,
.announcement-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: auto;
  font-size: 1.1rem;
  font-weight: 800;
  height: 35px;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  background: linear-gradient(135deg,#ffffff,#ffffff);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Shine / wave effect */
.announcement-bar__cta-button .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 248, 248, 0.2), transparent);
  pointer-events: none;
  transition: left 0.5s;
}

.announcement-bar__cta-button:hover {
  background-color: #ffffff;
}

.announcement-bar-pro__controls {
  display: none !important;
}





.message-content {
  font-family: "Besley", sans-serif !important;
  font-size: 25px !important;   /* كبّر الخط (بدّل القيمة حسب الحاجة) */
  font-weight: 700 !important;  /* غليظ */
}
