/* Mission section image positioning */
@media (max-width: 768px) {
    .mission-image-wrapper {
        margin-top: 0 !important;
    }
}

/* Submenu styling - white background with black text, turns red on hover */
.header .main-menu .navigation .main-menu__nav .main-menu__list li ul,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul {
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
}

.header .main-menu .navigation .main-menu__nav .main-menu__list li ul li > a,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul li > a {
  color: #262626 !important;
}

.header .main-menu .navigation .main-menu__nav .main-menu__list li ul li > a::before,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul li > a::before {
  background-color: #fe2e16 !important;
}

.header .main-menu .navigation .main-menu__nav .main-menu__list li ul li.current > a, 
.header .main-menu .navigation .main-menu__nav .main-menu__list li ul li:hover > a,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul li.current > a,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul li:hover > a {
  color: #ffffff !important;
}

.header .main-menu .navigation .main-menu__nav .main-menu__list li ul li > a::after,
.header .main-menu .navigation .main-menu__nav .stricky-header .main-menu__list li ul li > a::after {
  color: #ffffff !important;
}

/* ============================================
   BLACK FRIDAY BANNER STYLES
   ============================================ */

.black-friday-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bf-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bf-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 46, 22, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(254, 46, 22, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: #ffb800;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.bf-badge svg {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bf-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.bf-highlight {
  font-size: 18px;
  font-weight: 700;
  color: #ffb800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bf-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.bf-message {
  font-size: 15px;
  font-weight: 500;
}

.bf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fe2e16;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.bf-cta:hover {
  background: #d92613;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 46, 22, 0.4);
  color: #ffffff;
}

.bf-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.bf-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================
   BLACK FRIDAY PROMO SECTION STYLES
   ============================================ */

.black-friday-promo-section {
  position: relative;
  overflow: hidden;
}

.bf-promo-wrapper {
  position: relative;
  z-index: 1;
}

.bf-poster-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.bf-poster-container:hover {
  transform: translateY(-5px);
}

.bf-poster-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.bf-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.bf-discount-badge {
  background: #fe2e16;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(254, 46, 22, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bf-content {
  padding: 20px;
}

.bf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 46, 22, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  color: #fe2e16;
  font-weight: 600;
  font-size: 14px;
}

.bf-tag svg {
  color: #fe2e16;
}

.bf-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.bf-title-highlight {
  color: #fe2e16;
  display: inline-block;
  position: relative;
}

.bf-price-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bf-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bf-original-price {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.bf-discount-tag {
  background: #fe2e16;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}

.bf-current-price {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800;
  line-height: 1;
  margin-bottom: 8px;
}

.bf-savings {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.bf-features h5 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.bf-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.bf-feature-item svg {
  flex-shrink: 0;
  color: #fe2e16;
  background: rgba(254, 46, 22, 0.1);
  padding: 4px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.bf-countdown {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed #fe2e16;
}

.bf-countdown-label {
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 16px;
}

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

.bf-time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  min-width: 70px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bf-time-value {
  font-size: 28px;
  font-weight: 700;
  color: #fe2e16;
  line-height: 1;
}

.bf-time-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  margin-top: 4px;
}

.bf-time-separator {
  font-size: 24px;
  font-weight: 700;
  color: #fe2e16;
}

.bf-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.bf-primary-btn {
  flex: 1;
  min-width: 200px;
}

.bf-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid #fe2e16;
  border-radius: 8px;
  color: #fe2e16;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.bf-secondary-btn:hover {
  background: #fe2e16;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 46, 22, 0.3);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bf-banner-content {
    justify-content: center;
    text-align: center;
  }
  
  .bf-text {
    justify-content: center;
  }
  
  .bf-highlight {
    font-size: 16px;
  }
  
  .bf-message {
    font-size: 14px;
  }
  
  .bf-cta {
    width: 100%;
    justify-content: center;
  }
  
  .bf-close {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  
  .bf-content {
    padding: 10px;
  }
  
  .bf-current-price {
    font-size: 36px;
  }
  
  .bf-time-unit {
    min-width: 60px;
    padding: 10px 12px;
  }
  
  .bf-time-value {
    font-size: 24px;
  }
  
  .bf-cta-buttons {
    flex-direction: column;
  }
  
  .bf-primary-btn,
  .bf-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}