
/* ==========================================================================
   Category Special Offer Advertisement (Hero Slider Style)
   ========================================================================== */
.special-ad-banner {
  grid-column: 1 / -1;
  width: 100%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  position: relative;
}

.special-ad-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 480px;
  padding: 40px 60px;
  gap: 40px;
  background: radial-gradient(circle at 30% 50%, rgba(20, 20, 30, 0.8), #000000);
}

.special-ad-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 50%;
}

.special-ad-img-container {
  width: 100%;
  max-width: 420px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.special-ad-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 210, 255, 0.25));
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.special-ad-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.special-ad-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.special-ad-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.special-ad-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding-left: 20px;
}

.special-ad-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif !important;
}

.special-ad-subtitle {
  color: #ef4444;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.special-ad-wrrnty {
  color: #2563eb;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.special-ad-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.special-ad-btn {
  display: inline-block;
  padding: 14px 45px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.special-ad-btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .special-ad-content {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .special-ad-left {
    max-width: 100%;
  }
  .special-ad-right {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .special-ad-title {
    font-size: 2.2rem;
  }
  .special-ad-price {
    font-size: 1.8rem;
  }
}
