/* TikTok Canlı Yayın Banner Stilleri */
.live-packaging-banner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-packaging-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.banner-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
  animation: moveBackground 20s linear infinite;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: white;
}

.banner-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.banner-subtext {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.banner-button {
  display: inline-block;
  background-color: white;
  color: #ff0062;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.banner-button:hover {
  background-color: transparent;
  color: white;
}

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

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

/* Responsive Ayarlamalar */
@media (max-width: 767px) {
  .banner-title {
    font-size: 1.3rem;
  }
  
  .banner-text {
    font-size: 1rem;
  }
  
  .banner-subtext {
    font-size: 0.8rem;
  }
  
  .banner-icon {
    font-size: 2rem;
  }
}

/* Product Page TikTok Banner Styles */
.info-banner.tiktok-banner {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-banner.tiktok-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
  animation: moveBackground 20s linear infinite;
  z-index: 1;
}

.info-banner.tiktok-banner .info-banner-icon {
  position: relative;
  z-index: 2;
  background-color: transparent;
  color: white;
}

.info-banner.tiktok-banner .info-banner-icon i {
  animation: pulse 2s infinite;
}

.info-banner.tiktok-banner .info-banner-content {
  position: relative;
  z-index: 2;
  color: white;
}

.info-banner.tiktok-banner .info-banner-content h3 {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.info-banner.tiktok-banner .info-banner-content p {
  color: rgba(255, 255, 255, 0.9);
}

.info-banner.tiktok-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for product page TikTok banner */
@media (max-width: 767px) {
  .info-banner.tiktok-banner .info-banner-content h3 {
    font-size: 1.1rem;
  }
  
  .info-banner.tiktok-banner .info-banner-content p {
    font-size: 0.9rem;
  }
  
  .info-banner.tiktok-banner .info-banner-icon i {
    font-size: 1.8rem !important;
    margin-bottom: 5px !important;
  }
  
  .shipping-payment-banners .row > div {
    margin-bottom: 15px;
  }
}
