/* Güneydoğu Dental – Modern Dental Marketplace Tasarımı
   Renkler: Primary #005197, Accent #ff8108
   Font: Poppins - Modern ve okunabilir
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==============================================
   SCROLL ANIMATION SYSTEM
=============================================== */

/* Base animation classes for scroll triggers */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

/* Dynamic Showcase (Home Vitrin) - global fallback styles */
.showcase-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.skeleton-card {
  height: 340px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
  background-size: 400% 100%;
  border-radius: 18px;
  animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0
  }

  100% {
    background-position: 0 0
  }
}

.showcase-empty,
.showcase-error {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  padding: 14px;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transition: all 1s ease-out;
}

.fade-in.animate-in {
  opacity: 1;
}

/* Slide Up Animation */
.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Left Animation */
.slide-left {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Slide Right Animation */
.slide-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Rotate In Animation */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.animate-in {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Stagger Animations for Lists */
.stagger-animation .animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-animation .animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-animation .animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-animation .animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-animation .animate-on-scroll:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-animation .animate-on-scroll:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-animation .animate-on-scroll:nth-child(7) {
  transition-delay: 0.7s;
}

.stagger-animation .animate-on-scroll:nth-child(8) {
  transition-delay: 0.8s;
}

/* Floating Animations (like categories section) */
.floating-element {
  animation: gentle-float 6s ease-in-out infinite;
}

.floating-element-1 {
  animation-delay: 0s;
}

.floating-element-2 {
  animation-delay: 2s;
}

.floating-element-3 {
  animation-delay: 4s;
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(90deg);
  }

  66% {
    transform: translateY(8px) rotate(180deg);
  }
}

/* Pulse Animation for CTAs */
.pulse-on-scroll {
  transition: all 0.3s ease;
}

.pulse-on-scroll.animate-in {
  animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 129, 8, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 129, 8, 0);
  }
}

/* Coupon Card Entrance Animation */
.coupon-card.coupon-enter {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: couponEnter 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes couponEnter {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced entrance animations */
.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.animate-in span {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--accent);
  color: white;
}

:root {
  --primary: #005197;
  --accent: #ff8108;
  --bg: #ffffff;
  --text: #101418;
  --muted: #6b7280;
  --border: #e6e8ec;
  --radius-6: 6px;
  --radius-10: 10px;
  --radius-16: 16px;
  --radius-20: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .12);
  --fs-1: 2.25rem;
  --fs-2: 1.75rem;
  --fs-3: 1.5rem;
  --fs-4: 1.25rem;
  --fs-5: 1rem;
  --fs-6: .875rem;
  --container: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: var(--fs-5);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: 0;
  transition: padding-top 0.4s ease;
  /* Sticky header desteği kaldırıldı */
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit;
  cursor: pointer
}

input {
  font-family: montserrat;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: 56px 0
}



header {
  width: 100%;
  color: white;
  font-size: var(--fs-6);
  position: relative;
}

header .container {
  display: flex;
}

.top-bar {
  background-color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  height: 40px;
}

.top-bar .container {
  justify-content: space-between;
  align-items: center;
}

.top-bar .pill {
  color: var(--bg);
  background-color: #ff7f08d7;
  padding: 5px 10px;
  border-radius: 25px;
  margin-left: 0.5rem;
}

.top-bar-nav {
  gap: 0px;
  display: flex;
  position: relative;
  right: 10%;

}

.top-bar-nav a {
  display: inline-block;
  letter-spacing: 0.2px;
  box-shadow: rgba(255, 255, 255, 0.142);
  transition: 0.3s all ease;
  border: 1px solid rgba(255, 0, 0, 0);
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 3px 12px;
}

.top-bar-nav a:hover {

  background: #397fbcab
}


.small {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.small i {
  margin-left: 2px;
}

.small i {

  color: var(--accent);

}

.main-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  background: rgb(239, 233, 223);
  position: relative;
  /* Sticky kaldırıldı */
}

.main-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-bar .brand {
  height: 75px;
  width: 18%;
  position: relative;
  background: none;
}

.brand img {
  position: absolute;
  height: 150%;
  left: 0;
  width: auto;
  top: -15%;
}

.main-bar-nav {
  display: flex;
  width: 82%;
  justify-content: space-between;
}

.search {
  position: relative;
}

/* Normalize search input/button across browsers (Safari/iOS fixes) */
.search input {
  width: 650px;
  height: 100%;
  background: rgba(255, 255, 255, 0.316);
  border: 2px solid rgba(215, 149, 79, 0.627);
  border-radius: 15px;
  padding-left: 20px;
  outline: 0;
  font-family: montserrat, sans-serif;
  transition: 0.25s ease-in-out;
  /* Appearance normalization */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 15px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.search input::placeholder {
  color: rgba(0, 0, 0, 0.655);
  font-size: var(--fs-6);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.655);
  opacity: 1;
}

.search .input:focus {
  box-shadow: 0 0 10px 0 #ff7f0865;
}

/* Keep the search button icon centered in all browsers */
.search button {
  border-radius: 15px;
  color: var(--accent);
  height: 50px;
  width: 55px;
  border: 2px solid rgba(215, 149, 79, 0.627);
  transition: 0.25s ease-in-out;
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: var(--fs-4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  /* Normalize appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.search button:hover {
  box-shadow: 0 0 10px 0 #ff7f0865;
  background-color: #ff8108;
  color: white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Ensure icon inside the button is vertically centered */
.search button i,
.search button svg {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  font-size: var(--fs-4);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 0 10px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: 0.25s ease-in-out;
  background: none;

}

.icon-btn a {
  font-size: var(--fs-5);
  font-weight: 600;
}

.icon-btn:hover {
  background-color: #e1d1c0d9;

}

.icon-btn span {
  position: absolute;
  right: 0%;
  bottom: 0%;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  width: 18px;
  height: 18px;
  font-weight: 600;

}

.icon-btn:nth-of-type(2) {
  width: 50px;
  height: 50px;
}

.icon-btn:nth-of-type(2) a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.account-container {
  height: 100%;
  position: relative;
  background-color: white;
}

.account-container a {
  display: inline-block;
  color: var(--accent);
  height: 100%;
}

/* Bottom Bar - Kategori Navigasyon */
.bottom-bar {
  background: linear-gradient(135deg, var(--accent) 0%, #e67c07 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(255, 129, 8, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  /* Sticky kaldırıldı */
  z-index: 99;
}

.categories-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
}

.categories-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.categories-item {
  flex: 1;
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.categories-item:last-child {
  border-right: none;
}

.clinic-tilt-card .pkg-desc-min {
  font-size: .9rem;
  color: #fff;
  opacity: .9;
  margin-bottom: 6px;
}

.clinic-tilt-card .pkg-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.clinic-tilt-card .pkg-badge {
  font-size: .72rem;
  color: #fff;
  opacity: .95;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
}

.categories-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.categories-link::after {
  content: "";
  background-color: rgba(219, 178, 148, 0.541);
  height: 45%;
  width: 2px;
  border-radius: 50%;
  position: absolute;
  right: 0;
}

.categories-item:last-child .categories-link::after {
  display: none;
}

.categories-link i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.categories-link:hover {
  color: white;
}

.categories-item:hover i {
  color: white;
  transform: scale(1.1);
}

.categories-link::before {
  width: 60%;
  height: 0px;
  position: absolute;
  content: "";
  background-color: white;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
  border-radius: 40px 40px 0 0;
  transition: all 0.15s ease-in-out;
}

.categories-item:hover .categories-link::before {
  height: 4px;
}

.categories-link:active {
  transform: translateY(0);
}

.active .categories-link::before {

  height: 4px !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
  list-style: none;
  margin: 0;
}

.dropdown-item {
  position: relative;
}

.dropdown-item.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background-color: #f5f5f5;
  color: var(--primary);
  border-left-color: var(--accent);
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item .categories-link {
  justify-content: space-between;
}


.dropdown-item .categories-link {
  justify-content: center;
}

.dropdown-item .categories-link i:last-child {
  justify-content: center;
  margin: 0 !important;
}

/* Responsive tasarım */

/* Chat Button Stilleri */
.chat-button {
  background: linear-gradient(135deg, var(--accent) 0%, #e67c07 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-16);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 129, 8, 0.3);
  overflow: hidden;
  margin-left: 10px;
}

.chat-button:hover {
  background: linear-gradient(135deg, #e67c07 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 129, 8, 0.4);
}

.chat-button:active {
  transform: translateY(0);
}

.chat-button i {
  font-size: 16px;
  animation: bounce 2s infinite;
}

.chat-text {
  letter-spacing: 0.3px;
}

.chat-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-2px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}

/* Chat Widget Stilleri */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  height: 600px;
  background: white;
  border-radius: var(--radius-20);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 10000000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  animation: slideUp 0.3s ease;
}

.chat-widget.active {
  display: flex;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #e67c07);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.chat-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  opacity: 0.9;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background: #00ff88;
  animation: pulse 2s infinite;
}

.chat-actions {
  display: flex;
  gap: 8px;
}

.chat-minimize,
.chat-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-minimize:hover,
.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-welcome {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.welcome-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #f0f7ff 0%, #e8f0fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary);
  font-size: 24px;
  border: 2px solid rgba(0, 81, 151, 0.15);
  box-shadow: 0 4px 16px rgba(0, 81, 151, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

/* Ensure no pseudo-element duplicates the logo */
.welcome-icon::after {
  content: none !important;
  background: none !important;
}

/* Logo image styling inside welcome icon */
.welcome-icon img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: none;
  pointer-events: none;
  -webkit-user-drag: none;
}


.chat-welcome h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 18px;
}

.chat-welcome p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-btn {
  background: rgba(0, 81, 151, 0.05);
  border: 1px solid rgba(0, 81, 151, 0.1);
  border-radius: var(--radius-10);
  padding: 12px 16px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-size: 13px;
  text-align: left;
}

.quick-btn:hover {
  background: rgba(0, 81, 151, 0.1);
  border-color: var(--primary);
  transform: translateX(4px);
}

.quick-btn i {
  color: var(--accent);
  width: 16px;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: none;
}

.chat-messages.active {
  display: block;
}

/* Auth-required Modal (chat gating) */
.gdd-auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  z-index: 10000001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gdd-auth-modal-overlay.active {
  display: flex;
}

.gdd-auth-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 20px 20px 16px;
}

.gdd-auth-modal .am-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.gdd-auth-modal .am-close:hover {
  background: #f3f4f6;
}

.gdd-auth-modal .am-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.gdd-auth-modal .am-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #e67c07);
  color: #fff;
}

.gdd-auth-modal .am-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.gdd-auth-modal .am-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 16px;
}

.gdd-auth-modal .am-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.gdd-auth-modal .am-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.gdd-auth-modal .am-btn.primary {
  background: var(--primary);
  color: #fff;
}

.gdd-auth-modal .am-btn.secondary {
  background: #f3f4f6;
  color: #111827;
}

.message {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.message.user {
  flex-direction: row-reverse;
}

.message-content {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: var(--radius-16);
  font-size: 14px;
  line-height: 1.4;
}

.message.user .message-content {
  background: var(--primary);
  color: white;
}

.message.bot .message-content {
  background: #f8f9fa;
  color: var(--text);
  border: 1px solid var(--border);
}

.message-time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.message.user .message-time {
  color: rgb(231, 231, 231);
}

.chat-footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.chat-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

#chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-16);
  outline: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

#chat-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 81, 151, 0.1);
}

.chat-send {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-send:hover {
  background: #004080;
  transform: scale(1.05);
}

.chat-send:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
}

.chat-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 4px;
}

.typing-indicator.active {
  display: flex;
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.chat-overlay.active {
  display: block;
}

/* Responsive Chat */

/* ========================================
   DENTAL HERO SECTION - BEM Methodology
======================================== */
/* ========================================
   HERO SECTION - Clean & Functional
======================================== */
.hero {
  height: 704px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.hero-slider-track {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slide {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px 0;
  justify-content: space-evenly;
  background: url(../images/hero-bg-2.jpg);
  background-size: cover;
  position: relative;
}

/* Container Base Styles */
.hero-slide .container {
  height: 545px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  border: 3px solid #ce6f14b8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(#dab48f82 250px, transparent),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(206, 111, 20, 0.15) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%),
    #ff8108;
  box-shadow:
    0 25px 50px rgba(255, 129, 8, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: absolute;
}

/* Active Container */
.hero-slide .container.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 2;
}

/* ==============================================
   CATEGORY-BASED CAMPAIGN CONTAINER DESIGN
=============================================== */

/* Category Campaign Container Specific Styling */
.hero-slide .container.category-campaign-container {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 129, 8, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(206, 111, 20, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #ff8108 0%, #e67c07 100%);
  border: 3px solid #ce6f14;
  overflow: hidden;
}

/* Campaign Badge */
.campaign-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(135deg, #fe7d00, #ff8e53 100%);
  border: 1px solid #f6ba8157;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.campaign-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      #ff6b35, #ff8e53, #ffd700, #ff4757,
      #ff6b35, #ff8e53, #ffd700, #ff4757);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  animation: borderFlow 4s linear infinite;
}

.campaign-badge::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: linear-gradient(135deg, #fe7d00, #ff8e53 100%);
  border-radius: 19px;
  z-index: -1;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.campaign-badge i {
  font-size: 0.8rem;
  animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Campaign Header */


.category-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Category Campaign Timer - Absolute Positioning */
.category-campaign-container .campaign-timer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
  border: 2px solid #ffdab663;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  overflow: hidden;

}

.category-campaign-container .campaign-timer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      #ff6b35, #ff8e53, #ffd700, #ff4757,
      #ff6b35, #ff8e53, #ffd700, #ff4757);
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -1;
  animation: borderFlow 4s linear infinite;
}

.category-campaign-container .campaign-timer::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  z-index: -1;
}

.category-campaign-container .timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-campaign-container .timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.category-campaign-container .timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #ff7f08, #ffb347);
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 50px;
  box-shadow: 0 3px 10px rgba(255, 127, 8, 0.3);
  border: 1px solid #ffecdba1;
}

.category-campaign-container .timer-number {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.category-campaign-container .timer-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
}

.category-campaign-container .timer-separator {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff7f08;
  margin: 0 5px;
  animation: timerBlink 1s infinite;
}

@keyframes timerBlink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

/* Campaign Features */
.campaign-features {
  display: flex;
  gap: 12px;
  margin: 0;
  max-width: 450px;
  flex-wrap: wrap;

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Enhanced Action Buttons */
.category-campaign-container .slide-content-boxs {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 10px;
}

/* =====================================
   BULK REDESIGN: Centered Image Layout
===================================== */
.bulk-discount-container .bulk-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "left1 center right1"
    "left2 center right2";
  align-items: center;
  justify-items: center;
  gap: 10px 34px;
  min-height: 360px;
  padding: 24px 20px 40px;
}

.bulk-discount-container .stage-center {
  grid-area: center;
}

.bulk-discount-container .stage-center .bulk-hero-img {
  max-height: 420px;
  max-width: min(56vw, 560px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .18));
}

.bulk-discount-container .pair-left,
.bulk-discount-container .pair-right {
  font-family: inherit;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
}

.bulk-discount-container .pair-left.buy {
  grid-area: left1;
  justify-self: end;
}

.bulk-discount-container .pair-right.buy {
  grid-area: right1;
  justify-self: start;
}

.bulk-discount-container .pair-left.pay {
  grid-area: left2;
  justify-self: end;
}

.bulk-discount-container .pair-right.pay {
  grid-area: right2;
  justify-self: start;
}

/* Numbers (sayı) */
.bulk-discount-container .pair-left {
  font-weight: 900;
  font-size: clamp(44px, 8vw, 120px);
  letter-spacing: -1px;
  color: #7a284f;
  text-shadow: 0 6px 18px rgba(122, 40, 79, 0.12);
}

/* Labels (AL / ÖDE) */
.bulk-discount-container .pair-right {
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 44px);
  color: #6d3252;
  letter-spacing: 1px;
}

/* Bottom area: coupon + CTA + optional features */
.bulk-discount-container .bulk-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  margin-top: -6px;
}

.bulk-discount-container .bulk-bottom .bulk-code-display {
  margin-right: 6px;
}

@media (max-width: 1200px) {
  .bulk-discount-container .bulk-stage {
    gap: 8px 26px;
    min-height: 320px;
  }
}

@media (max-width: 992px) {
  .bulk-discount-container .stage-center .bulk-hero-img {
    max-height: 340px;
  }

  .bulk-discount-container .bulk-stage {
    gap: 6px 20px;
    padding-bottom: 56px;
  }
}

@media (max-width: 576px) {
  .bulk-discount-container .bulk-stage {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    min-height: 280px;
  }

  .bulk-discount-container .pair-left {
    font-size: clamp(34px, 12vw, 64px);
  }

  .bulk-discount-container .pair-right {
    font-size: clamp(16px, 4.5vw, 28px);
  }

  .bulk-discount-container .stage-center .bulk-hero-img {
    max-height: 260px;
    max-width: 72vw;
  }
}

.category-campaign-container .slide-content-box {
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  min-width: 140px;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  translate: -50% 0;
  border: 2px solid #ffe3c936;
}

.secondary-action {
  background: #ffffff42;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden !important;
  border: 2px solid #ffe3c966;
  transition: all 0.25s ease;
  backface-visibility: hidden;
  will-change: transform, border-color, background;
  transform: translateZ(0);


}

.secondary-action::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30%;
  left: 50%;
  height: 100%;
  translate: -50% -50%;
  background: linear-gradient(90deg, transparent, rgb(226 207 190 / 28%), transparent);
  transition: 0.3s all ease;
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.secondary-action:hover::before {
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(226, 207, 190, 0.426), transparent);
}

/* Product Showcase Area */
.product-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-item.main-product {
  position: relative;
  z-index: 3;
}

.showcase-item.main-product img {
  max-height: 480px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

/* Category Campaign: static corner thumbnails around main product image */
.category-campaign-container .showcase-item.main-product {
  position: relative;
}


.category-campaign-container .category-corners {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 50px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
  z-index: 4;
}

.category-campaign-container .corner {
  width: 110px;
  height: 110px;
  background: linear-gradient(25deg, #dbb69330, transparent, #ffffff2b);
  border-radius: 15px;
  border: 1px solid #e4c9b0eb;
  padding: 2px;
  box-shadow: 0 5px 10px #bb6716b5;
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.category-campaign-container .corner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  /* gradient ring thickness */
  background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffd700, #ff4757, #ff6b35);
  background-size: 400% 400%;
  animation: borderFlow 6s linear infinite;
  /* Mask out the inner content to leave only a border ring */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 6;
  opacity: .9;
}

.category-campaign-container .corner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-campaign-container .corner a,
.category-campaign-container .corner .corner-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.category-campaign-container .corner--tl {
  top: -16px;
  left: -16px;
}

.category-campaign-container .corner--tr {
  top: -16px;
  right: -16px;
}

.category-campaign-container .corner--bl {
  bottom: -16px;
  left: -16px;
}

.category-campaign-container .corner--br {
  bottom: -16px;
  right: -16px;
}

.product-badge {
  position: absolute;
  top: -10px;
  right: -15px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  /* box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4); */
  transform: rotate(15deg);
  /* animation: badge-bounce 3s ease-in-out infinite; */
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #000000cf;
  font-weight: 500;
  padding: 8px 12px;
  background: linear-gradient(45deg, #dfd2c5 0 20%, #ffffff33, #dec5ae, transparent);
  border-radius: 25px;
  border: 1px solid #ffffff38;
}

@keyframes badge-bounce {

  0%,
  100% {
    transform: rotate(15deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.05);
  }
}

/* ==============================================
   BULK DISCOUNT (Toplu Alım) CONTAINER STYLES
============================================== */
.hero-slide .container.bulk-discount-container {
  background:
    radial-gradient(600px 300px at -10% -10%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(400px 400px at 110% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 65%),
    /* Futuristic white-dominant with soft pink: rose -> blush -> pearlescent white */
    linear-gradient(135deg, #f7a8c8 0%, #ffeaf4 55%, #f6fbff 100%);
  border: 3px solid rgba(122, 40, 79, 0.15);
  background-image: url(../images/hero-decor-5.jpg);
}

.bulk-content {
  width: 55%;
  padding: 40px 48px;
  color: #2b2d42;
  /* dark slate for light bg */
}

.bulk-header .bulk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  background: linear-gradient(135deg, #ffc2d8, #ffe3f0);
  color: #6d3252;
  border: 1px solid rgba(109, 50, 82, 0.18);
  box-shadow: 0 6px 14px rgba(109, 50, 82, .15);
}

.bulk-title {
  margin: 14px 0 6px;
  font-size: 3.2rem;
  /* match .slide-content-title */
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .3px;
  color: #1f2937;
  /* stronger contrast on light bg */
}

.bulk-subtitle {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #4b5563;
  opacity: .95;
}

.bulk-rule {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

.bulk-rule .rule-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(17, 24, 39, .12);
  color: #374151;
  font-weight: 700;
  font-size: .85rem;
}

.bulk-code-display .code-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.bulk-code-display .code-label {
  color: #7a284f;
  font-weight: 700;
  font-size: .9rem;
}

.bulk-code-display .code-value {
  color: #1f2937;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.bulk-code-display .copy-btn {
  background: #ff7ab6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bulk-code-display .copy-btn:hover {
  filter: brightness(.95);
  background: #ff5ca6;
}

.bulk-action {
  margin-top: 16px;
}

.bulk-image {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulk-image .bulk-hero-img {
  max-height: 500px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .22));
  border-radius: 10px;
}

.bulk-discount-container .action-btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #7a284f;
  color: #fff;
  border: 2px solid rgba(122, 40, 79, 0.22);
  font-weight: 800;
  width: fit-content;
  height: auto !important;
}

.bulk-discount-container .action-btn.primary:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
  background: #6a2145;
}

.bulk-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.bulk-visual.has-image {
  gap: 0;
}

.bulk-visual.has-image .bulk-hero-img {
  position: relative;
  z-index: 2;
}

.bulk-visual.has-image .bulk-circle {
  position: absolute;
  width: 130px;
  height: 130px;
  font-size: 2.2rem;
  z-index: 3;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .25), inset 0 0 0 5px rgba(255, 255, 255, .18), 0 0 0 2px rgba(255, 255, 255, .12);
  backdrop-filter: blur(2px);
  animation: none;
  /* no rotation or float */
}

/* Right-docked vertical stack */
.bulk-visual.has-image .bulk-circles {
  position: absolute;
  top: 50%;
  right: -10.5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 3;
}

.bulk-visual.has-image .bulk-circles .bulk-circle {
  position: static;
}

@media (max-width: 1200px) {
  .bulk-visual.has-image .bulk-circle {
    width: 110px;
    height: 110px;
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .bulk-visual.has-image .bulk-circle {
    width: 96px;
    height: 96px;
    font-size: 1.7rem;
  }
}

/* Align bulk CTA placement and layout with category container */
.bulk-discount-container .slide-content-boxs {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 10px;
}

/* =====================================
   BULK REDESIGN: 3-Column Layout
===================================== */
.bulk-discount-container .bulk-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr minmax(220px, 300px);
  align-items: center;
  gap: 16px 24px;
  padding: 14px 10px 40px;
  margin: 0 auto;
}

.bulk-discount-container .bulk-left {
  display: flex;
  justify-content: center;
}

.bulk-discount-container .bulk-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}

.bulk-discount-container .bulk-bottom .bulk-code-display {
  width: 100%;
}

.bulk-features i {
  color: #7a284f;
}

.bulk-features span {
  color: #7a284f;
}

.bulk-discount-container .bulk-bottom .action-btn.primary {
  align-self: stretch;
  justify-content: center;
}

.bulk-discount-container .bulk-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 40px;
}

.bulk-discount-container .stage-center {
  position: relative;
}

.bulk-discount-container .stage-center .bulk-hero-img {
  height: 420px;
  width: 420px;
  object-fit: contain;
  transform: rotate(-4deg);
  filter: drop-shadow(0 1px 5px #7a284f);
}

/* Circular line decorations behind image */
.bulk-discount-container .stage-center::before,
.bulk-discount-container .stage-center::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  pointer-events: none;
}

.bulk-discount-container .stage-center::before {
  border: 1px solid rgb(122 40 79 / 79%);
  transform: scale(0.86);
}

.bulk-discount-container .stage-center::after {
  border: 2px solid rgb(122 40 79 / 61%);
  transform: scale(1.08);
  box-shadow: 0 10px 20px #7a284f63;
}

.bulk-features .feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #7a284f;
  padding: 6px 12px;
  border-radius: 25px;
  background: #a7547c21;
  width: fit-content;
  margin-bottom: 5px;
}

/* Smaller inline pairs near image */
.bulk-discount-container .mini-pairs {
  position: absolute;
  inset: 0;
}

.bulk-discount-container .mini-row {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: 12px;
  padding: 6px 10px;
  backdrop-filter: blur(6px);
  width: 100px;

}

.bulk-discount-container .mini-row.buy {
  left: -90px;
  top: 40% !important;
  z-index: 1;
}

.bulk-discount-container .mini-row.pay {
  right: -90px;
  top: 40%;
  z-index: 1;
}

.bulk-discount-container .mini-row .num {
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 56px);
  color: #7a284f;
  line-height: 1;
}

.bulk-discount-container .mini-row .label {
  font-weight: 800;
  font-size: clamp(12px, 2vw, 20px);
  color: #6d3252;
  letter-spacing: .5px;
}

.bulk-discount-container .bulk-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 15%;
}

.bulk-discount-container .bulk-right .campaign-timer {
  position: static;
  left: auto;
  transform: none;
  bottom: auto;
  max-width: 300px;
}

/* Bulk Top Title - absolute, top-center, vibrant */
.bulk-discount-container .bulk-top-title {
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
  background: inherit;
  backdrop-filter: blur(6px);
  border-radius: 55px;
  z-index: 12;
  pointer-events: none;
  white-space: nowrap;
}

.bulk-discount-container .bulk-top-title span {

  display: inline-block;
  padding: 4px 12px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  rotate: 0;
  font-size: 26px;
  background: linear-gradient(90deg, #ff3d9a, #ff7ab6, #ffd1e8, #ff7ab6, #ff3d9a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #25173e82;
  filter: drop-shadow(0 2px 10px rgba(255, 64, 129, .35));
  animation: bulkTitleSheen 4s linear infinite;
  text-shadow: 0 6px 12px #58254f2e;

}

@keyframes bulkTitleSheen {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}


@media (max-width: 576px) {
  .bulk-discount-container .stage-center .bulk-hero-img {
    max-height: 280px;
    max-width: 80vw;
  }

  .bulk-discount-container .mini-row .num {
    font-size: clamp(22px, 9vw, 42px);
  }

  .bulk-discount-container .mini-row .label {
    font-size: clamp(11px, 4vw, 16px);
  }

  .bulk-discount-container .bulk-bottom {
    max-width: 100%;
    align-items: stretch;
  }
}

.bulk-discount-container .slide-content-box {
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
  position: relative;
  border: 2px solid #ffe3c936;
}

.bulk-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 170, 200, 0.35), rgba(255, 220, 240, 0.18)),
    radial-gradient(closest-side, rgba(255, 235, 245, 0.8), rgba(255, 255, 255, 0.6) 60%, transparent 80%);
  border: 2px solid rgba(122, 40, 79, .22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10), inset 0 0 0 4px rgba(255, 255, 255, .6), 0 0 18px rgba(122, 40, 79, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #6d3252;
  position: relative;
}

.bulk-circle {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bulk-circle span {
  position: static;
  font-size: .9rem;
  letter-spacing: .6px;
  font-weight: 800;
  color: #7a284f;
  opacity: .95;
  text-shadow: none;
}

.bulk-circle.pay {
  background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
}

.bulk-circle.pay {
  background: radial-gradient(circle at 70% 70%, rgba(255, 192, 220, 0.35), rgba(255, 240, 250, 0.2));
}

@keyframes line-move-1 {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }

  50% {
    opacity: 0.6;
    transform: translateX(20px);
  }
}

@keyframes line-move-2 {

  0%,
  100% {
    opacity: 0.2;
    transform: translateX(0);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-15px);
  }
}

/* Responsive Design for Category Container */
@media (max-width: 768px) {
  .category-campaign-container .slide-content {
    padding-left: 0;
    transform: rotate(0deg);
  }



  .category-campaign-container .timer-display {
    gap: 5px;
  }

  .category-campaign-container .timer-unit {
    padding: 6px 10px;
    min-width: 45px;
  }

  .category-campaign-container .timer-number {
    font-size: 1.1rem;
  }

  .category-campaign-container .timer-text {
    font-size: 0.6rem;
  }

  .campaign-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .feature-item {
    font-size: 0.8rem;
  }

  .category-campaign-container .slide-content-boxs {
    flex-direction: column;
    gap: 10px;
  }

  .category-campaign-container .slide-content-box {
    min-width: auto;
    padding: 10px 16px;
  }

  .floating-item {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .floating-item img {
    width: 50px;
    height: 50px;
  }

  .item-label {
    font-size: 0.7rem;
    margin-top: 5px;
  }

  .campaign-badge {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 15px;
    align-self: flex-start;
  }
}

.hero-slide .container.coupon-container {
  background:
    linear-gradient(135deg, #667eea 0%, #764ba2 100%),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.2) 0%, transparent 40%);
  border: 3px solid #764ba2;
  box-shadow:
    0 30px 60px rgba(118, 75, 162, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slide .container.coupon-container::before {
  background: conic-gradient(from 0deg at 50% 50%,
      rgba(102, 126, 234, 0.2) 0deg,
      rgba(118, 75, 162, 0.2) 90deg,
      rgba(102, 126, 234, 0.2) 180deg,
      rgba(118, 75, 162, 0.2) 270deg,
      rgba(102, 126, 234, 0.2) 360deg);
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation: rotateConic 20s linear infinite;
}

.hero-slide .container.coupon-container::after {
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(102, 126, 234, 0.1) 50%,
      transparent 100%);
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 8%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/*  PRODUCT CAMPAIGN CONTAINER - HERO BANNER DESIGN */

/* Product Campaign Container Background */
.hero-slide .container.product-campaign-container {
  background:
    radial-gradient(circle at 20% 20%, rgba(17, 153, 142, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(56, 239, 125, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border: 3px solid #0f8a7a;
  overflow: hidden;
}

/* Product Hero Badge - Positioned Like Category Badge */
.product-campaign-container .product-hero-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  border: 1px solid #f6ba8157;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.product-campaign-container .product-hero-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #50a677, #31dca4, #52d4a6, #94d881, #74dfb3, #53ff62, #4acec1, #91dbd2);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  animation: borderFlow 4s linear infinite;
}

.product-campaign-container .product-hero-badge::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border-radius: 19px;
  z-index: -1;
}

/* Product Hero Showcase Section */
.product-campaign-container .product-hero-showcase {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-campaign-container .product-hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product-campaign-container .product-hero-highlight {
  position: relative;
}

.product-campaign-container .product-hero-img {
  width: 400px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
  animation: productFloat 6s ease-in-out infinite;
}

.product-campaign-container .product-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(56, 239, 125, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

/* Product Hero Pricing */
.product-campaign-container .product-hero-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  left: 10%;
}

.product-campaign-container .product-hero-price-old {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-campaign-container .product-hero-price-current {
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-campaign-container .product-hero-discount {

  background: white;
  color: white;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
  color: #4ecf7e;

}

/* Product Hero Content */
.product-campaign-container .product-hero-content {
  width: 55%;
  padding-left: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-campaign-container .product-hero-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-campaign-container .product-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.product-campaign-container .product-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  max-width: 480px;
  margin: 15px 0 20px 0;
}

/* Product Hero Features */
.product-campaign-container .product-hero-features {
  display: flex;
  gap: 12px;
  margin: 0;
  max-width: 450px;
  flex-wrap: wrap;
}

.product-campaign-container .product-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
}

.product-campaign-container .product-hero-feature i {
  color: #ffd700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Product Hero Actions */
.product-campaign-container .product-hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 20px;
}

.product-campaign-container .product-hero-action-btn {
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  min-width: 140px;
  justify-content: center;
  background: #ffffff42;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.product-campaign-container .product-hero-action-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30%;
  left: 50%;
  height: 100%;
  translate: -50% -50%;
  background: linear-gradient(90deg, transparent, rgb(226 207 190 / 28%), transparent);
  transition: 0.3s all ease;
}

.product-campaign-container .product-hero-action-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.product-campaign-container .product-hero-action-btn:hover::before {
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(226, 207, 190, 0.426), transparent);
}

/* Responsive Design for Product Hero Container */
@media (max-width: 768px) {
  .hero-slide .container.product-campaign-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .product-campaign-container .product-hero-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .product-campaign-container .product-hero-showcase {
    width: 100%;
    height: 300px;
  }

  .product-campaign-container .product-hero-img {
    width: 200px;
  }

  .product-campaign-container .product-hero-title {
    font-size: 2.5rem;
  }

  .product-campaign-container .product-hero-features {
    justify-content: center;
  }

  .product-campaign-container .product-hero-actions {
    justify-content: center;
  }

  .product-campaign-container .product-hero-pricing {
    margin-top: 20px;
  }
}


.product-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 0.9;
  letter-spacing: -1px;
}

.product-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  max-width: 480px;
}

/* Product Features */
.product-features {
  margin-bottom: 30px;
}

.feature-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item.premium {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 12px 18px;
  transition: all 0.3s ease;
  min-width: 140px;
}

.feature-item.premium:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 0.9rem;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Product Pricing */

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.price-old {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.savings-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.savings-info i {
  color: #ffd700;
  font-size: 1rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}


.primary-action {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #11998e;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  min-width: 180px;
  justify-content: center;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff, #f1f3f4);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.primary-action:hover .btn-shine {
  left: 100%;
}

/* Right Product Showcase Section */
.product-campaign-container .product-showcase {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Product Display */
.main-product {
  position: relative;
  z-index: 5;
}

.product-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: productPulse 3s ease-in-out infinite;
}

.product-container {
  position: relative;
  transform-style: preserve-3d;
  animation: productFloat 6s ease-in-out infinite;
}

.product-hero-image {
  max-height: 350px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.bulk-discount-container .slide-content-boxs {
  position: static;
  left: auto;
  translate: none;
  bottom: auto;
  margin-top: 16px;
}

.bulk-guide {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.92);
  text-align: center;
  background: #7a284f;
  color: white;
  border-radius: 10px 10px 0px 0px;
  padding: 4px 140px;
  white-space: nowrap;

}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-value {
  color: #11998e;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.spec-label {
  color: #666;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Background Effects */
.stage-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.particle-system {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.p-1 {
  top: 20%;
  left: 15%;
  animation: particleFloat1 8s ease-in-out infinite;
}

.p-2 {
  top: 70%;
  right: 20%;
  animation: particleFloat2 10s ease-in-out infinite 2s;
}

.p-3 {
  bottom: 30%;
  left: 25%;
  animation: particleFloat3 12s ease-in-out infinite 4s;
}

.p-4 {
  top: 40%;
  right: 35%;
  animation: particleFloat1 9s ease-in-out infinite 1s;
}

.p-5 {
  bottom: 60%;
  right: 10%;
  animation: particleFloat2 11s ease-in-out infinite 3s;
}

.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 15%;
  animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation: orbFloat2 18s ease-in-out infinite 3s;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 5%;
  animation: orbFloat3 12s ease-in-out infinite 6s;
}

/* Stock Status Indicator */


.stock-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stock-text {
  color: #11998e;
  font-size: 0.8rem;
  font-weight: 600;
}

.stock-status.hot {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes productPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0) perspective(1000px) rotateY(-15deg) rotateX(5deg);
  }

  50% {
    transform: translateY(-10px) perspective(1000px) rotateY(-12deg) rotateX(3deg);
  }
}

@keyframes sealRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes specFloat1 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(5px);
  }
}

@keyframes specFloat2 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-12px) translateX(-8px);
  }
}

@keyframes specFloat3 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-6px) translateX(10px);
  }
}

@keyframes particleFloat1 {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

@keyframes particleFloat2 {

  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateX(15px) scale(0.8);
    opacity: 0.8;
  }
}

@keyframes particleFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-10px, -15px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-20px, -15px) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translate(25px, -20px) scale(0.9);
    opacity: 0.7;
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translate(15px, 10px) scale(1.2);
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slide .container.product-campaign-container {
    flex-direction: column;
    padding: 80px 20px;
  }

  .product-campaign-container .product-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .product-campaign-container .product-showcase {
    width: 100%;
    height: 300px;
  }

  .product-title {
    font-size: 2.5rem;
  }

  .feature-group {
    justify-content: center;
  }

  .product-actions {
    justify-content: center;
  }

  .tech-specs {
    display: none;
  }

  .stock-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
  }
}


/* Container 4: Professional - Red Dynamic Design (Clinic Starter type) */
.hero-slide .container.clinic-starter-packages-container {
  background:
    linear-gradient(135deg, #ee0979 0%, #ff6a00 100%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(238, 9, 121, 0.2) 0%, transparent 40%);
  border: 3px solid #ee0979;
  box-shadow:
    0 30px 60px rgba(238, 9, 121, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* New Animation Keyframes */
@keyframes rotateConic {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: translate(10px, -5px) rotate(90deg);
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: translate(-5px, 10px) rotate(180deg);
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: translate(-10px, -10px) rotate(270deg);
  }
}


/* Container 2: GDD10 - Purple Theme Content */
.hero-slide .container[data-container="1"] .slide-content-title {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(118, 75, 162, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide .container[data-container="1"] .slide-content-subtitle {
  color: #e0e7ff;
  text-shadow: 0 2px 10px rgba(118, 75, 162, 0.3);
}

.hero-slide .container[data-container="1"] .slide-content-box:first-child {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}

.hero-slide .container[data-container="1"] .slide-content-box:nth-child(2) {
  background: rgba(255, 255, 255, 0.9);
  color: #764ba2;
  border: 2px solid #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Container 3: Kompozit - Green Theme Content */
.hero-slide .container[data-container="2"] .slide-content-title {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(17, 153, 142, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide .container[data-container="2"] .slide-content-subtitle {
  color: #ecfdf5;
  text-shadow: 0 2px 10px rgba(17, 153, 142, 0.3);
}

.hero-slide .container[data-container="2"] .slide-content-box:first-child {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.hero-slide .container[data-container="2"] .slide-content-box:nth-child(2) {
  background: rgba(255, 255, 255, 0.9);
  color: #11998e;
  border: 2px solid #38ef7d;
  box-shadow: 0 8px 25px rgba(56, 239, 125, 0.3);
}

/* Container 4: Professional - Red Theme Content */
.hero-slide .container[data-container="3"] .slide-content-title {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(238, 9, 121, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide .container[data-container="3"] .slide-content-subtitle {
  color: #fef2f2;
  text-shadow: 0 2px 10px rgba(238, 9, 121, 0.3);
}

.hero-slide .container[data-container="3"] .slide-content-box:first-child {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 8px 25px rgba(238, 9, 121, 0.4);
}

.hero-slide .container[data-container="3"] .slide-content-box:nth-child(2) {
  background: rgba(255, 255, 255, 0.9);
  color: #ee0979;
  border: 2px solid #ff6a00;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}


/* Default Content Layout for Normal Containers */
.slide-content {
  width: 50%;
  padding-left: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-image {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image img {
  max-height: 480px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px #ff7f0889);
}

/* Content Styling */
.slide-content-title {
  color: #60340a;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 10px 20px #4b40347a;
  margin-top: 0;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg, #ff7);
  background-clip: text;
  rotate: -1deg;

}

.slide-content-subtitle {
  color: #ffe4cb;
  font-size: 1rem;
  letter-spacing: 0.2px;
  margin-top: 15px;
  font-weight: 700;
  text-shadow: 0px 1px 5px #ffffff3d;
  rotate: -1deg;
  margin-top: 0;
  -webkit-text-fill-color: transparent;
  max-width: 400px;
  background: linear-gradient(45deg, #f3e0cf, #daa977);
  background-clip: text;
  rotate: -1deg;
}

.slide-content-boxs {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.slide-content-box {
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 25px;
  color: white;
  font-weight: 600;
}

.slide-content-box:nth-child(2) {
  background: linear-gradient(45deg, #ccb09552, #ffffffa6);
  border: 2px solid #ff81084d;
  color: #502b08;
  box-shadow: 0 2px 20px 0 #0000004a;
}

.container-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hero-decor.png);
  opacity: 0.05;
  background-size: cover;
  pointer-events: none;
}

/* ==============================================
   CLINIC STARTER PACKAGES CONTAINER (New #4)
   Reuses the background theme from old container 4
   and defines unique content/visual styles
=============================================== */
.hero-slide .container.clinic-starter-packages-container {
  /* Ported background from data-container="3" */
  background:
    linear-gradient(135deg, #ee0979 0%, #ff6a00 100%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(238, 9, 121, 0.2) 0%, transparent 40%);
  border: 3px solid #ee0979;
  box-shadow:
    0 30px 60px rgba(238, 9, 121, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-slide .container.clinic-starter-packages-container .container-bg {
  opacity: 0.15 !important;
}

.clinic-hero-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(135deg, #ee0979, #ff6a00);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: .3px;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 6px 16px rgba(238, 9, 121, .35);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

/* Hidden for minimal clinic container */
.clinic-starter-packages-container .clinic-hero-badge {
  display: none;
}

.clinic-starter-content {
  color: #fff;
}

.clinic-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: .3px;
  margin: 0 0 8px 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.clinic-subtitle {
  font-size: 1rem;
  color: #ffeaf6;
  max-width: 480px;
  margin: 0 0 16px 0;
}

.clinic-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.clinic-actions .action-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  border: 2px solid transparent;
  text-decoration: none;
}

.clinic-actions .action-btn.primary {
  background: #fff;
  color: #ee0979;
  border-color: #ff6a00;
  box-shadow: 0 8px 24px rgba(255, 255, 255, .15);
}

.clinic-actions .action-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.clinic-actions .action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.clinic-note {
  margin-top: 10px;
  font-size: .85rem;
  color: #ffeaf6;
  opacity: .95;
}

/* Hide visual area for minimal clinic container */

.clinic-starter-packages-container .clinic-visual,
.clinic-starter-packages-container .clinic-visual-main,
.clinic-starter-packages-container .clinic-visual-floating {
  display: none;
}

/* Disable decorations for minimal clinic container */
.clinic-starter-packages-container .clinic-decorations,
.clinic-starter-packages-container .clinic-orb,
.clinic-starter-packages-container .clinic-lines {
  display: none;
}

/* Center heading for minimal layout */
.clinic-starter-packages-container .clinic-header {
  text-align: center;
  padding-left: 0;
}

.clinic-starter-packages-container .slide-content {
  width: 100%;
  padding: 0 2rem;
  align-items: center;
}

.clinic-starter-packages-container .clinic-title {
  font-size: 2.2rem;
}

.clinic-starter-packages-container .clinic-subtitle {
  max-width: 560px;
  margin: 0 auto;
}

/* Tiered design */
.clinic-tier-tabs {
  position: relative;
  margin: 10px 0 6px;
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 6px;
  border-radius: 12px;
}

.clinic-tier-tab {
  background: transparent;
  color: #fff;
  font-weight: 800;
  border: 0;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.clinic-tier-tab i {
  opacity: .95;
}

.clinic-tier-tab.active {
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.clinic-tier-tabs .tabs-underline {
  position: absolute;
  left: 6px;
  bottom: 4px;
  width: 90px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  opacity: .35;
  transition: all .25s ease;
}

.clinic-tier-panels {
  margin-top: 8px;
}

.clinic-tier-panel {
  display: none;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  padding: 12px;
}

.clinic-tier-panel.active {
  display: block;
}

.panel-header {
  margin-bottom: 6px;
}

.panel-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
}

.panel-subtitle {
  margin: 2px 0 6px;
  color: #ffeaf6;
  font-size: .9rem;
}

.panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 6px;
}

.panel-features li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .9rem;
}

.panel-features i {
  color: #ffe082;
}

.panel-actions {
  display: flex;
  gap: 10px;
}

/* Accent colors for tiers */
.clinic-tier-tab.bronze i,
.clinic-tier-panel.bronze .panel-title {
  color: #cd7f32;
}

.clinic-tier-tab.silver i,
.clinic-tier-panel.silver .panel-title {
  color: #c0c0c0;
}

.clinic-tier-tab.gold i,
.clinic-tier-panel.gold .panel-title {
  color: #ffd700;
}

.clinic-tier-panel.bronze {
  box-shadow: 0 8px 20px rgba(205, 127, 50, .18);
}

.clinic-tier-panel.silver {
  box-shadow: 0 8px 20px rgba(192, 192, 192, .18);
}

.clinic-tier-panel.gold {
  box-shadow: 0 8px 20px rgba(255, 215, 0, .18);
}

/* Minimal lineup (3 cards) */
.clinic-packages-min {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.clinic-packages-min .pkg-item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 10px 12px;
  border-radius: 999px;
}

.clinic-packages-min .pkg-name {
  font-weight: 900;
  letter-spacing: .2px;
}

.clinic-packages-min .pkg-desc {
  opacity: .95;
  font-weight: 600;
}

/* Tilt 3-card lineup */
.clinic-tilt-row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  padding: 0 2rem;
}

.clinic-tilt-card {
  position: relative;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  transform: perspective(1200px) rotateX(8deg);
  transform-origin: bottom center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 20px 35px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.clinic-tilt-card .tilt-inner {
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.clinic-tilt-card .pkg-title {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .3px;
}

.clinic-tilt-card .pkg-sub {
  opacity: .95;
  font-weight: 700;
  margin-bottom: 6px;
}

.clinic-tilt-card .tilt-actions {
  display: flex;
  gap: 10px;
}

/* Extend cards visually below container bottom (hidden) */
.clinic-starter-packages-container {
  clip-path: inset(0 0 0 0);
}


/* Tier color accents (subtle gradients) */
.clinic-tilt-card.bronze {
  background: linear-gradient(180deg, rgb(171 100 29 / 39%), rgb(255 255 255 / 6%));
  transform: perspective(700px) rotatex(0deg) rotatey(8deg);
}

.clinic-tilt-card.silver {
  background: linear-gradient(180deg, rgb(192 192 192 / 39%), rgb(255 255 255 / 6%));
}

.clinic-tilt-card.gold {
  background: linear-gradient(180deg, rgb(255 215 0 / 39%), rgb(255 255 255 / 6%));
  transform: perspective(700px) rotatex(0deg) rotatey(-8deg);
}

/* Ambient decorative orbs */
.clinic-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.clinic-ambient .bg-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .35;
  animation: orbFloat 18s ease-in-out infinite;
}

.clinic-ambient .o1 {
  top: 10%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, .45), transparent 60%);
}

.clinic-ambient .o2 {
  bottom: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 106, 0, .45), transparent 60%);
  animation-duration: 22s;
}

.clinic-ambient .o3 {
  top: 35%;
  right: 30%;
  background: radial-gradient(circle, rgba(238, 9, 121, .4), transparent 60%);
  animation-duration: 26s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(12px, -10px) scale(1.05);
  }
}

@media (max-width: 992px) {
  .clinic-tilt-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clinic-tilt-card {
    height: 260px;
    transform: perspective(900px) rotateX(6deg);
  }
}

.clinic-packages-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.clinic-package-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
}

.clinic-package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.clinic-package-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
}

.clinic-package-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.clinic-package-points {
  list-style: none;
  padding: 0;
  margin: 6px 0 10px;
  display: grid;
  row-gap: 6px;
}

.clinic-package-points li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .92rem;
}

.clinic-package-points i {
  color: #ffe082;
}

.clinic-package-actions {
  display: flex;
  gap: 8px;
}

/* Specific CTA classes */
.clinic-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.clinic-btn--primary {
  background: #fff;
  color: #202020;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

.clinic-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.clinic-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

/* Tier accents */
.clinic-package-card.bronze .clinic-package-badge span,
.clinic-btn--bronze {
  color: #cd7f32;
}

.clinic-package-card.silver .clinic-package-badge span,
.clinic-btn--silver {
  color: #c0c0c0;
}

.clinic-package-card.gold .clinic-package-badge span,
.clinic-btn--gold {
  color: #ffd700;
}

@media (max-width: 992px) {
  .clinic-packages-lineup {
    grid-template-columns: 1fr;
  }
}

.coupon-container .container-bg {
  background: url(../images/hero-decor-2.png);
  mask-image: linear-gradient(to top, transparent, white);
}

.product-campaign-container .container-bg {
  background: url(../images/hero-decor-3.jpg) !important;
  opacity: 0.15 !important;
  background-position: 0 -150px !important;
  mask-image: linear-gradient(to bottom, transparent, white) !important;
  background-size: cover !important;

}

/* Hero Slide Indicators */
.hero-slide-indicators {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    z-index: 10;
    padding: 6px;
    border-radius: 10px;
    border: 2px solid #caad90c2;
    position: absolute;
    bottom: 30px;
    overflow: scroll;
    scrollbar-width: none;
    box-shadow: 0 25px 50px rgba(255, 129, 8, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid #b2651b;
  }

.hero-slide-indicators .indicator {
  flex: 0 0 auto;
  width: 125px;
  /* sabit genişlik */
  aspect-ratio: 25 / 12;
  /* sabit oran */
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid #c19b77ad;
  position: relative;
}

/* Merkezde beyaz label */
.hero-slide-indicators .indicator::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding: 0 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  white-space: normal;
}

.indicator:hover {
  box-shadow: 0 4px 12px 0 #ff7f0859;
  transform: translateY(-4px);
}

.indicator.active {
  border-color: 2px solid #c19b77ad;
  box-shadow: 0 0 15px rgb(63 55 48 / 35%);
}

/* =============================================
   INDICATOR TÜR BAZLI STİLLER (data-type)
   Sıra bağımsız — banner sırası değişse de 
   her indicator kendi türüne göre stil alır
   ============================================= */

/* Ortak indicator img */
.hero-slide-indicators .indicator img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
  mask-image: linear-gradient(to top, transparent 5%, white 60%);
  -webkit-mask-image: linear-gradient(to top, transparent 5%, white 60%);
}

/* ─── 1. CATEGORY CAMPAIGN (Turuncu) ─── */
.hero-slide-indicators .indicator[data-type="category_campaign"] {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 129, 8, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(206, 111, 20, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #ff8108 0%, #e67c07 100%);
}
.hero-slide-indicators .indicator[data-type="category_campaign"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.12) 0%, transparent 35%),
    radial-gradient(circle at 15% 75%, rgba(255,129,8,0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide-indicators .indicator[data-type="category_campaign"]::after {
  font-size: 11px;
  font-weight: 800;
  rotate: -1deg;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* ─── 2. COUPON (Mor + dekoratif halka) ─── */
.hero-slide-indicators .indicator[data-type="coupon"] {
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 66, 193, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #6f42c1 0%, #8a2be2 100%);
}
.hero-slide-indicators .indicator[data-type="coupon"]::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: none;
  border: 2px solid rgba(212, 146, 55, 0.6);
  box-shadow: 0 0 4px 3px rgba(255, 129, 8, 0.12);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 1;
  pointer-events: none;
}
.hero-slide-indicators .indicator[data-type="coupon"]::after {
  font-size: 13px;
  font-weight: 800;
  rotate: 0deg;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}

/* ─── 3. PRODUCT CAMPAIGN (Yeşil) ─── */
.hero-slide-indicators .indicator[data-type="product_campaign"] {
  background:
    radial-gradient(circle at 20% 20%, rgba(17, 153, 142, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(56, 239, 125, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.hero-slide-indicators .indicator[data-type="product_campaign"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide-indicators .indicator[data-type="product_campaign"]::after {
  font-size: 12px;
  font-weight: 800;
  rotate: 0deg;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

/* ─── 4. CLINIC STARTER (Pembe-Turuncu gradyan) ─── */
.hero-slide-indicators .indicator[data-type="clinic_starter"] {
  background:
    linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}
.hero-slide-indicators .indicator[data-type="clinic_starter"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 75% 80%, rgba(238,9,121,0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide-indicators .indicator[data-type="clinic_starter"]::after {
  font-size: 12px;
  font-weight: 800;
  rotate: 0deg;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ─── 5. BULK DISCOUNT CAMPAIGN (Arka plan resimli) ─── */
.hero-slide-indicators .indicator[data-type="bulk_discount_campaign"] {
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%),
    var(--ind-bg);
}
.hero-slide-indicators .indicator[data-type="bulk_discount_campaign"] img {
  opacity: 0.12;
}
.hero-slide-indicators .indicator[data-type="bulk_discount_campaign"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.hero-slide-indicators .indicator[data-type="bulk_discount_campaign"]::after {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  rotate: 0deg;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 0 8px rgba(0,0,0,0.3);
  letter-spacing: 0.3px;
  line-height: 1.15;
}
.hero-slide-indicators .indicator[data-type="bulk_discount_campaign"]:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}


/* Hero Stats */

.hero-stats-section {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  background: none;

}

.hero-stats {
  margin: 0 60px;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  z-index: 5;
  margin: 0;
  left: 50%;
  translate: -50% 0;
  padding: 28px 0px;
  width: var(--container);
  display: flex;
  justify-content: space-between;
  position: relative;
  background: none !important;
  box-shadow: none !important;

}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  position: relative;
  border-right: 2px solid #d7a370c4;
  padding-right: 70px;
  padding-left: 40px;

}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-icon {
  width: 60px;
  height: 60px;
  background: #ff810817;
  border: 2px solid #ff8108;
  border-radius: var(--radius-16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8108;
  font-size: 24px;
  flex-shrink: 0;
}

.hero-stat-content {
  width: max-content;
  min-width: 120px;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ff8108;
  line-height: 1;
  min-width: 100px;
  display: inline-block;
  text-align: left;
  font-variant-numeric: tabular-nums;
  transition: all 0.1s ease;
  padding: 0;
}

.hero-stat-label {
  font-size: 14px;
  color: #fdfdfddb;
  font-weight: 500;
}

/* Counter animation effects */
.hero-stat-number.counter-updated {
  animation: counterPulse 0.6s ease-out;
}

@keyframes counterPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    color: #ff8108;
  }

  100% {
    transform: scale(1);
  }
}

/* ===============================================
   GDD DEALS SHOWCASE - QUANTUM EDITION
=============================================== */

.gdd-deals-showcase {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(165deg, #0a0f1e 0%, #111833 40%, #1a0f2e 70%, #0d1020 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Smooth bottom fade into next section */
.gdd-deals-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #0a0e1a 100%);
  pointer-events: none;
  z-index: 1;
}

/* Animated background grid */
.gdd-deals-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,129,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,129,8,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  animation: gddGridPulse 8s ease-in-out infinite;
  pointer-events: none;
}

/* Background cosmos container */
.gdd-deals-cosmos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gdd-cosmos-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gdd-cosmos-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,129,8,0.07) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: gddOrbFloat 15s ease-in-out infinite;
}

.gdd-cosmos-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  animation: gddOrbFloat2 20s ease-in-out infinite;
}

/* Micro particles via box-shadow */
.gdd-deals-cosmos::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-shadow:
    100px 50px 0 0 rgba(255,129,8,0.25),
    250px 120px 0 0 rgba(255,255,255,0.15),
    420px 70px 0 0 rgba(255,129,8,0.2),
    630px 190px 0 0 rgba(255,255,255,0.12),
    810px 90px 0 0 rgba(255,129,8,0.18),
    170px 280px 0 0 rgba(255,255,255,0.15),
    380px 240px 0 0 rgba(255,129,8,0.12),
    560px 330px 0 0 rgba(255,255,255,0.15),
    720px 260px 0 0 rgba(255,129,8,0.15),
    950px 50px 0 0 rgba(255,255,255,0.12),
    60px 180px 0 0 rgba(255,129,8,0.18),
    1100px 280px 0 0 rgba(255,255,255,0.1),
    1020px 340px 0 0 rgba(255,129,8,0.12),
    320px 390px 0 0 rgba(255,255,255,0.15),
    750px 380px 0 1px rgba(255,129,8,0.15),
    1200px 130px 0 0 rgba(255,255,255,0.15),
    280px 100px 0 1px rgba(255,129,8,0.2),
    870px 360px 0 0 rgba(255,255,255,0.1),
    480px 160px 0 0 rgba(255,129,8,0.15),
    1080px 70px 0 1px rgba(255,255,255,0.18);
  animation: gddParticlesDrift 25s linear infinite;
}

/* === Header === */
.gdd-deals-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gdd-deals-badge-wrap {
  margin-bottom: 16px;
}

.gdd-deals-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff8108;
  background: rgba(255,129,8,0.06);
  border: 1px solid rgba(255,129,8,0.18);
  animation: gddBadgePulse 3s ease-in-out infinite;
}

.gdd-deals-badge i {
  font-size: 0.8rem;
  animation: gddBoltFlash 2s ease-in-out infinite;
}

.gdd-deals-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  color: transparent;
  background: linear-gradient(135deg, #ff8108 0%, #ffb347 35%, #ffffff 55%, #ffb347 75%, #ff8108 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gddTitleShine 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255,129,8,0.2));
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
}

.gdd-deals-title::before,
.gdd-deals-title::after {
  display: none;
}

.gdd-title-main {
  display: block;
  letter-spacing: -1px;
}

.gdd-title-accent {
  display: block;
  font-size: 1.15em;
  letter-spacing: 6px;
}

.gdd-deals-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* === Carousel Viewport === */
.gdd-deals-viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  z-index: 2;
}

.gdd-deals-stage {
  position: relative;
  width: 100%;
  height: 440px;
  perspective: 1200px;
  overflow: visible;
}

.gdd-deals-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* === Card === */
.gdd-deal-card {
  position: absolute;
  width: 290px;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(22, 28, 52, 0.95) 0%, rgba(16, 21, 42, 0.92) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  contain: layout style paint;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.gdd-deal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,129,8,0), rgba(255,129,8,0.15), rgba(255,129,8,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.gdd-deal-card::after {
  display: none;
}

/* Active card neon glow */
.gdd-deal-card.gdd-active {
  will-change: transform;
  border-color: rgba(255,129,8,0.25);
  box-shadow:
    0 0 40px rgba(255,129,8,0.1),
    0 30px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gdd-deal-card.gdd-active:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255,129,8,0.4);
  box-shadow:
    0 0 60px rgba(255,129,8,0.18),
    0 35px 70px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.gdd-deal-card.gdd-active::before {
  opacity: 1;
  background: linear-gradient(var(--gdd-border-angle, 0deg), rgba(255,129,8,0.3), rgba(255,200,100,0.15), rgba(255,129,8,0.3));
  animation: gddBorderRotate 4s linear infinite;
}

/* Holographic shimmer */
.gdd-card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.04) 45%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 55%,
    transparent 70%
  );
  background-size: 250% 100%;
  pointer-events: none;
  border-radius: 20px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s;
}

.gdd-deal-card.gdd-active .gdd-card-shimmer {
  opacity: 1;
  animation: gddShimmer 3s ease-in-out infinite;
}

/* Image area */
.gdd-deal-image {
  position: relative;
  width: 100%;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.gdd-deal-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(10,15,30,0.6), transparent);
  pointer-events: none;
}

.gdd-deal-image img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.25));
}

.gdd-deal-card.gdd-active:hover .gdd-deal-image img {
  transform: scale(1.08) translateY(-6px);
}

/* Discount badge */
.gdd-deal-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  font-size: inherit;
}

.gdd-deal-discount span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3d00, #ff8108);
  color: white;
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 5px 20px rgba(255,61,0,0.35);
  position: relative;
}

.gdd-deal-discount span::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255,61,0,0.35);
  animation: gddDiscountPulse 2s ease-out infinite;
}

/* Content area */
.gdd-deal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 20px;
  position: relative;
  z-index: 2;
}

.gdd-deal-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 auto;
}

.gdd-deal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff8108;
  background: transparent;
  border: 1.5px solid rgba(255,129,8,0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
}

.gdd-deal-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,129,8,0.12), rgba(255,129,8,0.04));
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gdd-deal-btn:hover {
  border-color: rgba(255,129,8,0.6);
  color: #ffb347;
  box-shadow: 0 0 25px rgba(255,129,8,0.15);
}

.gdd-deal-btn:hover::before {
  opacity: 1;
}

.gdd-deal-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.gdd-deal-btn span {
  position: relative;
  z-index: 1;
}

.gdd-deal-btn:hover i {
  transform: translateX(3px);
}

/* === Navigation Buttons === */
.gdd-deals-showcase .gdd-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 20, 38, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  padding: 0;
  font-size: 0;
  scale: 1;
}

.gdd-deals-showcase .gdd-nav-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gdd-deals-showcase .gdd-nav-btn:hover {
  background: rgba(255,129,8,0.12);
  border-color: rgba(255,129,8,0.35);
  color: #ff8108;
  box-shadow: 0 0 30px rgba(255,129,8,0.15);
  transform: translateY(-50%) scale(1.05);
}

.gdd-deals-showcase .gdd-nav-prev {
  left: 0;
}

.gdd-deals-showcase .gdd-nav-next {
  right: 0;
}

/* === Indicators === */
.gdd-deals-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

.gdd-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gdd-indicator.active {
  background: #ff8108;
  box-shadow: 0 0 12px rgba(255,129,8,0.5);
  width: 28px;
  border-radius: 4px;
}

/* === Keyframe Animations === */
@keyframes gddGridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes gddOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes gddOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes gddParticlesDrift {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-300px); opacity: 0.3; }
}

@keyframes gddBadgePulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; box-shadow: 0 0 18px rgba(255,129,8,0.12); }
}

@keyframes gddBoltFlash {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(255,129,8,0.5); }
}

@keyframes gddTitleShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gddShimmer {
  0% { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}

@keyframes gddDiscountPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes gddBorderRotate {
  to { --gdd-border-angle: 360deg; }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gdd-deals-showcase {
    padding: 80px 0 60px;
  }
  .gdd-deals-viewport {
    min-height: 420px;
  }
  .gdd-deals-stage {
    height: 420px;
  }
  .gdd-deal-card {
    width: 270px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .gdd-deals-showcase {
    padding: 60px 0 50px;
  }
  .gdd-deals-header {
    margin-bottom: 40px;
  }
  .gdd-deals-viewport {
    min-height: 400px;
  }
  .gdd-deals-stage {
    height: 400px;
  }
  .gdd-deal-card {
    width: 260px;
    height: 370px;
  }
  .gdd-deals-showcase .gdd-nav-btn {
    width: 42px;
    height: 42px;
  }
  .gdd-deals-showcase .gdd-nav-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .gdd-deals-showcase {
    padding: 50px 0 40px;
  }
  .gdd-deals-header {
    margin-bottom: 30px;
  }
  .gdd-deal-card {
    width: 240px;
    height: 350px;
  }
  .gdd-deals-stage {
    height: 370px;
  }
  .gdd-deals-showcase .gdd-nav-prev {
    left: -5px;
  }
  .gdd-deals-showcase .gdd-nav-next {
    right: -5px;
  }
  .gdd-deals-subtitle {
    font-size: 0.85rem;
  }
}

/* CSS Houdini — smooth angle interpolation for border rotation */
@property --gdd-border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Pause ALL animations when section is out of viewport (IntersectionObserver) */
.gdd-deals-showcase.gdd-paused,
.gdd-deals-showcase.gdd-paused::before,
.gdd-deals-showcase.gdd-paused::after,
.gdd-deals-showcase.gdd-paused *,
.gdd-deals-showcase.gdd-paused *::before,
.gdd-deals-showcase.gdd-paused *::after {
  animation-play-state: paused !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .gdd-deal-card,
  .gdd-card-shimmer,
  .gdd-deals-cosmos::after,
  .gdd-cosmos-orb,
  .gdd-deals-showcase::before,
  .gdd-deals-badge,
  .gdd-deals-title,
  .gdd-deal-discount span::before {
    animation: none !important;
  }
}

/* Responsive Hero */

/* ===============================================
   REVOLUTIONARY HOMEPAGE DESIGN
=============================================== */

/* ===============================================
   INNOVATIVE CATEGORIES SHOWCASE
=============================================== */

.categories-innovation {
  padding: 120px 0 100px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}


.innovation-header {
  position: relative;
  margin-bottom: 80px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.categories-floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: categories-float 6s ease-in-out infinite;
}

.categories-floating-element-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary), #0066cc);
  top: 20px;
  left: 10%;
  animation-delay: 0s;
}

.categories-floating-element-2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--accent), #ff9933);
  top: 40px;
  right: 15%;
  animation-delay: 2s;
}

.categories-floating-element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #10b981, #059669);
  top: 10px;
  left: 50%;
  animation-delay: 4s;
}

@keyframes categories-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.header-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--accent);
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-badge i {
  color: var(--accent);
  font-size: 18px;
}

.innovation-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-main {
  display: block;
  color: var(--primary);
  font-size: 4.5rem;
  position: relative;
}

.title-decoration {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.title-decoration .left-tooth {
  color: #005197;
  font-size: 14px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.title-decoration .right-tooth {
  color: #ff8108;
  font-size: 14px;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.title-decoration .center-element {
  width: 8px;
  height: 3px;
  background: linear-gradient(90deg, #005197, #ff8108);
  border-radius: 2px;
  opacity: 0.6;
}

.title-decoration:hover .right-tooth {
  transform: rotate(90deg);
}

.title-decoration:hover .left-tooth {
  transform: rotate(-90deg);
}

.innovation-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.innovation-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

.innovation-subtitle em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* Categories Showcase Grid */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Premium Category Card */
.premium-card {
  background: white;
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 32px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 120px rgba(0, 81, 151, 0.2);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 129, 8, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 81, 151, 0.1) 0%, transparent 50%);
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 250, 252, 0.95) 100%);
}

.categories-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.category-icon {
  position: relative;
  width: 80px;
  height: 80px;
}

.category-icon i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #0066cc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 81, 151, 0.3);
}


.category-meta {
  text-align: right;
}

.category-badge.premium {
  background: linear-gradient(135deg, var(--accent), #ff9933);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(255, 129, 8, 0.4);
}

.category-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.card-content {
  position: relative;
  z-index: 2;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.category-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.category-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.campaign-features .feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: white;
  font-weight: 500;
  padding: 15px 12px;
  background: #f1e6db29;
  border-radius: 25px;
  border: 1px solid #ffffff38;
}

.campaign-features .feature-item i {
  color: white;
  font-size: 16px;
}

.category-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.explore-btn {
  background: linear-gradient(135deg, var(--primary), #0066cc);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 81, 151, 0.3);
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0, 81, 151, 0.4);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.explore-btn:hover .btn-glow {
  left: 100%;
}

.price-range {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.card-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
  animation: particle 8s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

.particle-3 {
  bottom: 30%;
  left: 70%;
  animation-delay: 6s;
}

@keyframes particle {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* Categories Grid Container */
.categories-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Modern Category Cards */
.modern-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 81, 151, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 81, 151, 0.15);
  border-color: var(--accent);
}

.card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
}

.visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #0066cc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.modern-card:hover .visual-icon {
  transform: scale(1.1) rotate(5deg);
}

.visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 81, 151, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modern-card:hover .visual-bg {
  transform: translate(-50%, -50%) scale(1.2);
  background: radial-gradient(circle, rgba(255, 129, 8, 0.2) 0%, transparent 70%);
}

.card-info {
  position: relative;
  z-index: 2;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.info-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.product-count {
  font-size: 12px;
  color: var(--muted);
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.card-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.info-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-from {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.info-footer i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.modern-card:hover .info-footer i {
  transform: translateX(4px);
}

.hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 129, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.modern-card:hover .hover-effect {
  left: 100%;
}

/* ===============================================
   REVOLUTIONARY PRODUCTS SHOWCASE
=============================================== */

.products-revolution {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #0a0e1a;
  color: white;
}

.revolution-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 129, 8, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 129, 8, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}


@keyframes mesh-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.bg-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.products-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}

.products-bg-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.products-bg-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.products-bg-orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #10b981, transparent);
  bottom: 20%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes products-orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.revolution-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.side-decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  /* rotate: -90deg; */
  margin-bottom: 4px;
}

.decoration-line:nth-of-type(2) {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  /* rotate: -90deg; */
  margin-bottom: 4px;
}

.decoration-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.decoration-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

.decoration-dots span:nth-child(1) {
  animation-delay: 0s;
}

.decoration-dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.decoration-dots span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.side-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-label {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.side-subtitle {
  font-size: 18px;
  color: #94a3b8;
  font-weight: 500;
}

.header-main {
  text-align: center;
  position: relative;
}

.revolution-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-emphasized {
  color: var(--accent);
}



.header-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.controls-stats {
  position: relative;
}

.stat-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #0066cc);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 81, 151, 0.4);
}

.stat-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  z-index: -1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circle-stat-number {
  font-size: 16px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.circle-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.controls-nav {
  display: flex;
  gap: 12px;
}

.control-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* ==============================================
   COUPON CONTAINER - HORIZONTAL RICH DESIGN
=============================================== */

/* Coupon Container Background */
.hero-slide .container.coupon-container {
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 66, 193, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #6f42c1 0%, #8a2be2 100%);
  border: 3px solid #9d4edd;
  overflow: hidden;
}

/* Coupon Content Section */
.coupon-container .coupon-content {
  width: 55%;
  padding-left: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Coupon Header */
.coupon-header {
  margin-bottom: 30px;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.coupon-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.coupon-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Code Display Section */
.coupon-code-display {
  margin-bottom: 30px;
}

.code-container {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.code-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.code-value {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #6f42c1;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.copy-btn {
  background: linear-gradient(135deg, #ff8108, #e67c07);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 129, 8, 0.3);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 129, 8, 0.4);
}

/* Features Section */
.coupon-features {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.coupon-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.coupon-features .feature-item i {
  color: #ffd700;
  font-size: 1rem;
}

/* Action Button */
.coupon-action {
  margin-top: 10px;
}


.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ffffff, #f1f3f4);
}

/* Right Image Section */
.coupon-container .coupon-image {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-circle {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.discount-percent {
  font-size: 4rem;
  font-weight: 900;
  color: #6f42c1;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(111, 66, 193, 0.2);
}

.discount-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8a2be2;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.icon-1 {
  top: 15%;
  right: 10%;
  animation: floatUpDown 4s ease-in-out infinite;
}

.icon-2 {
  bottom: 20%;
  left: 15%;
  animation: floatUpDown 5s ease-in-out infinite 1s;
}

.icon-3 {
  top: 50%;
  right: 5%;
  animation: floatUpDown 6s ease-in-out infinite 2s;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Success Notification */
.copy-success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
}

.copy-success-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.success-content i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slide .container.coupon-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .coupon-container .coupon-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .coupon-container .coupon-image {
    width: 100%;
    height: 300px;
  }

  .coupon-title {
    font-size: 2.2rem;
  }

  .discount-circle {
    width: 200px;
    height: 200px;
  }

  .discount-percent {
    font-size: 2.5rem;
  }

  .code-container {
    flex-direction: column;
    text-align: center;
  }

  .coupon-features {
    justify-content: center;
  }
}

/* Coupon Hub - Central Design */
.coupon-hub {
  width: 100%;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Hub Header */
.hub-header {
  position: relative;
  margin-bottom: 40px;
}

.sparkle-effect {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  border-radius: 4px;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
  left: 0;
  animation-delay: 0s;
}

.sparkle-2 {
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.sparkle-3 {
  right: 0;
  animation-delay: 2s;
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}

.hub-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  text-shadow:
    0 0 20px rgba(111, 66, 193, 0.8),
    0 0 40px rgba(111, 66, 193, 0.4);
  letter-spacing: 3px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-subtitle {
  font-size: 1.1rem;
  color: #f8f5ff;
  font-weight: 500;
  opacity: 0.9;
}

/* Coupon Cards Grid */
.coupon-cards-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Individual Coupon Card */
.coupon-card {
  width: 240px;
  height: 140px;
  background: white;
  border-radius: 15px;
  position: relative;
  box-shadow:
    0 10px 30px rgba(111, 66, 193, 0.2),
    0 0 20px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.coupon-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(111, 66, 193, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
}

.featured-coupon {
  border: 3px solid #ffd700;
  box-shadow:
    0 15px 40px rgba(255, 215, 0, 0.3),
    0 0 25px rgba(255, 255, 255, 0.2);
}

.featured-coupon:hover {
  box-shadow:
    0 25px 60px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3);
}

/* Coupon Design Elements */
.coupon-design {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.coupon-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 2px,
      rgba(111, 66, 193, 0.05) 2px,
      rgba(111, 66, 193, 0.05) 4px);
}

.coupon-scissors {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  color: #6f42c1;
  opacity: 0.6;
  animation: scissorsRotate 4s ease-in-out infinite;
}

@keyframes scissorsRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }
}

/* Coupon Card Content */
.coupon-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.discount-badge {
  font-size: 2rem;
  font-weight: 900;
  color: #6f42c1;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(111, 66, 193, 0.2);
}

.featured-coupon .discount-badge {
  color: #ff8108;
  text-shadow: 0 2px 4px rgba(255, 129, 8, 0.3);
}

.coupon-code {
  font-size: 1.4rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 2px;
  margin-bottom: 2px;
  font-family: 'Courier New', monospace;
}

.coupon-desc {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* Coupon Action Button */
.coupon-action {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.coupon-card:hover .coupon-action {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.copy-code-btn {
  background: linear-gradient(135deg, #6f42c1 0%, #6610f2 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.featured-coupon .copy-code-btn {
  background: linear-gradient(135deg, #ff8108 0%, #e67c07 100%);
  box-shadow: 0 4px 12px rgba(255, 129, 8, 0.3);
}

.copy-code-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(111, 66, 193, 0.5);
}

.copy-code-btn:active {
  transform: scale(0.95);
}

/* Floating Discount Elements */
.floating-discounts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-discount {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 235, 59, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-percent {
  color: rgba(255, 215, 0, 0.6);
  font-size: 24px;
  font-weight: 900;
}

.fd-1 {
  top: 20%;
  left: 10%;
  animation: floatDiscount1 8s ease-in-out infinite;
}

.fd-2 {
  top: 60%;
  right: 15%;
  animation: floatDiscount2 10s ease-in-out infinite;
}

.fd-3 {
  bottom: 30%;
  left: 15%;
  animation: floatDiscount3 12s ease-in-out infinite;
}

@keyframes floatDiscount1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -30px) rotate(180deg);
  }
}

@keyframes floatDiscount2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-25px, 20px) rotate(-180deg);
  }
}

@keyframes floatDiscount3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, -15px) rotate(180deg);
  }
}

/* Usage Guide */
.usage-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6f42c1, #6610f2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.step-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.guide-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Copy Success Animation */
.copy-success-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.copy-success-animation.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.success-icon {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Responsive Design */
@media (max-width: 768px) {
  .coupon-cards-grid {
    flex-direction: column;
    align-items: center;
  }

  .coupon-card {
    width: 280px;
  }

  .hub-title {
    font-size: 2.2rem;
  }

  .usage-guide {
    flex-direction: column;
    gap: 15px;
  }

  .guide-arrow {
    transform: rotate(90deg);
  }
}

/* Chat Widget Styles (existing styles remain unchanged) */
.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.control-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.control-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.control-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.control-btn:hover .btn-ripple {
  width: 100px;
  height: 100px;
}

/* Revolutionary Product Cards */
.products-showcase {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 0 20px;
}

.products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
  will-change: transform;
  padding: 25px 0;
}

.product-card.revolutionary {
  flex: 0 0 calc(25% - 15px);
  background: #ffffff0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  height: fit-content;
}

.product-card.revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 129, 8, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card.revolutionary:hover::before {
  opacity: 1;
}

.product-card.revolutionary:hover {
  transform: translateY(-4px);
  background: rgb(255 255 255 / 8%);
  scale: 1.03;
  border-color: rgba(255, 129, 8, 0.3);

}

.product-visual {
  position: relative;
  margin: 0;
  height: 200px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, rgba(0, 81, 151, 0.05) 0%, rgba(255, 129, 8, 0.02) 100%);
  overflow: hidden;
}

.visual-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.visual-container img {
  max-width: 65%;
  max-height: 65%;
  margin: 0 auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.visual-effects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.effect-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: ring-pulse 3s ease-in-out infinite;
}

.effect-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--accent), transparent);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.05;
  }
}

.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3px;
}

.badge {
  max-width: fit-content;
}

.badge.premium {
  background: linear-gradient(135deg, var(--accent), #ff9933);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(255, 129, 8, 0.4);
}

.badge.discount {
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
}

.badge.bestseller {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  z-index: 10;
}

.product-card.revolutionary:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.action-btn {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.tooltip {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 200000;
}

.action-btn:hover .tooltip {
  opacity: 1;
}

.product-info {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: white;
}

.product-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.6;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-category {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  display: flex;
  gap: 1px;
  color: var(--accent);
  font-size: 11px;
  opacity: 0.9;
}

.rating-score {
  font-weight: 700;
  color: white;
  font-size: 11px;
}

.rating-count {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 2px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 8px 0;
  line-height: 1.3;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  display: none !important;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.price-save {
  font-size: 12px;
  color: #10b981;
  font-weight: 600;
}

.price-installment {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.add-to-cart-btn.premium {
  background: linear-gradient(135deg, var(--accent), #ff9933);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 129, 8, 0.3);
}

.add-to-cart-btn.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(255, 129, 8, 0.5);
}

.showcase-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.view-all-revolutionary {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.view-all-revolutionary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(255, 129, 8, 0.4);
}

.link-trail {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.view-all-revolutionary:hover .link-trail {
  left: 100%;
}

/* Brands Section */



.brands-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e293b, transparent);
  opacity: 0.3;
}

.brands-section .section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.brands-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.brands-section .section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.brands-slider {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.brands-slider::before,
.brands-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.brands-slider::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc, transparent);
}

.brands-slider::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc, transparent);
}

.brands-track {
  display: flex;
  gap: 30px;
  animation: brandScroll 40s linear infinite;
  will-change: transform;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 8 - 30px * 8));
  }
}

.brand-item {
  flex: 0 0 250px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.brand-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  animation: rotate 4s linear infinite;
  transition: opacity 0.3s ease;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.brand-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.brand-item:hover::before {
  opacity: 1;
}

.brand-item:hover::after {
  opacity: 1;
}

.brand-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  height: 70px;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(1) opacity(0.7);
}

.brand-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.brand-info {
  position: relative;
  z-index: 2;
}

.brand-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.brand-item:hover .brand-info h4 {
  color: #3b82f6;
}

.brand-info .product-count {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  position: relative;
}

.brand-info .product-count::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-item:hover .brand-info .product-count::before {
  opacity: 1;
}

.brand-stats {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.brand-item:hover .brand-stats {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: #0a0e1a;
  position: relative;
  overflow: hidden;
  color: white;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 129, 8, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 129, 8, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 129, 8, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 81, 151, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-content .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #ff8108 50%, #005197 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-content .section-subtitle {
  font-size: 1.25rem;
  color: #a0a9c0;
  max-width: 600px;
  line-height: 1.6;
}

.header-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 129, 8, 0.2);
  border-radius: 20px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 129, 8, 0.1);
  border-color: rgba(255, 129, 8, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 129, 8, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff8108;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: #a0a9c0;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 129, 8, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 129, 8, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 129, 8, 0.1), transparent);
  opacity: 0;
  animation: serviceRotate 6s linear infinite;
  transition: opacity 0.3s ease;
}

@keyframes serviceRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 129, 8, 0.4);
  box-shadow:
    0 32px 64px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 129, 8, 0.3),
    0 0 30px rgba(255, 129, 8, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.featured {
  background: rgba(255, 129, 8, 0.08);
  border-color: rgba(255, 129, 8, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(255, 129, 8, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: #ff8108;
}

.service-content p {
  color: #a0a9c0;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-features i {
  color: #ff8108;
  font-size: 0.875rem;
  width: 16px;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.services-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 129, 8, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-cta .btn-primary {
  border: 0;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: #a0a9c0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 129, 8, 0.3);
  background: linear-gradient(135deg, #e67207 0%, #004085 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-color: rgba(255, 129, 8, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 129, 8, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 129, 8, 0.5);
  box-shadow: 0 10px 30px rgba(255, 129, 8, 0.2);
}

.btn i {
  font-size: 1.125rem;
}

/* Testimonials Section - Revolutionary Design */
.testimonials-section {
  padding: 120px 0;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 129, 8, 0.2) 0%, rgba(0, 81, 151, 0.2) 100%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 81, 151, 0.3) 0%, rgba(255, 129, 8, 0.3) 100%);
  top: 60%;
  right: 8%;
  animation-delay: -7s;
}

.element-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 129, 8, 0.15) 0%, rgba(0, 81, 151, 0.15) 100%);
  bottom: 20%;
  left: 10%;
  animation-delay: -14s;
}

.element-4 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 81, 151, 0.25) 0%, rgba(255, 129, 8, 0.25) 100%);
  top: 30%;
  right: 15%;
  animation-delay: -5s;
}



.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}



@keyframes badgeGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.section-title {
  margin-bottom: 20px;
}

.title-main {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--accent);
}

.title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #64748b;
  font-style: italic;
}

.section-description {
  font-size: 1.25rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 129, 8, 0.1);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 129, 8, 0.02) 0%, rgba(0, 81, 151, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 129, 8, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card.featured {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(255, 129, 8, 0.1) 0%, rgba(0, 81, 151, 0.1) 100%);
  border: 2px solid rgba(255, 129, 8, 0.3);
  position: relative;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 8s infinite ease-in-out;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 129, 8, 0.3) 0%, transparent 70%);
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 81, 151, 0.3) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation-delay: -4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.customer-avatar {
  position: relative;
  flex-shrink: 0;
}

.customer-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8108, #005197);
  animation: ringRotate 3s linear infinite;
  z-index: 1;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.status-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border: 3px solid white;
  border-radius: 50%;
  z-index: 3;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.customer-title {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 8px;
}

.customer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.rating-display {
  text-align: right;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
  justify-content: flex-end;
}

.stars i {
  color: #fbbf24;
  font-size: 1rem;
  animation: starTwinkle 2s infinite ease-in-out;
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.rating-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff8108;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.quote-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.quote-icon i {
  color: white;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 129, 8, 0.1);
  color: #ff8108;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 129, 8, 0.2);
}

.stats-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  grid-row: span 2;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.25rem;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ff8108;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.trust-section {
  position: relative;
  z-index: 2;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 129, 8, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 129, 8, 0.3);
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon i {
  font-size: 1.25rem;
  color: white;
}

.badge-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  margin-top: 0;
}

.badge-content p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Revolutionary Newsletter & Footer Section */
.gdd-footer-revolution {
  position: relative;
}

/* Newsletter Section */
.gdd-newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.gdd-newsletter-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.gdd-wave-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gdd-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 129, 8, 0.1), transparent);
  animation: gdd-waveMove 8s infinite ease-in-out;
}

.gdd-wave-1 {
  animation-delay: 0s;
  opacity: 0.3;
}

.gdd-wave-2 {
  animation-delay: -2.7s;
  opacity: 0.5;
}

.gdd-wave-3 {
  animation-delay: -5.3s;
  opacity: 0.2;
}

@keyframes gdd-waveMove {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.gdd-floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gdd-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #ff8108, #005197);
  border-radius: 50%;
  animation: gdd-particleFloat 15s infinite ease-in-out;
}

.gdd-particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.gdd-particle-2 {
  top: 60%;
  right: 15%;
  animation-delay: -3s;
}

.gdd-particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: -6s;
}

.gdd-particle-4 {
  top: 40%;
  right: 25%;
  animation-delay: -9s;
}

.gdd-particle-5 {
  bottom: 60%;
  right: 10%;
  animation-delay: -12s;
}

@keyframes gdd-particleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-40px) scale(0.8);
    opacity: 1;
  }

  75% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

.gdd-newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gdd-newsletter-header {
  margin-bottom: 50px;
}

.gdd-newsletter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
}

.gdd-newsletter-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #ff8108, #005197, #ff8108);
  border-radius: 50%;
  z-index: -1;
  animation: gdd-iconGlow 3s infinite;
}

@keyframes gdd-iconGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.gdd-newsletter-icon i {
  font-size: 2rem;
  color: white;
}

.gdd-newsletter-title {
  margin-bottom: 20px;
}

.gdd-title-highlight {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff8108;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gdd-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #ff8108 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.gdd-newsletter-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.gdd-newsletter-form-container {
  margin-bottom: 50px;
}

.gdd-newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.gdd-form-group {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  align-items: stretch;
}

.gdd-input-container {
  flex: 1;
  position: relative;
}

.gdd-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gdd-input-icon i {
  color: #64748b;
  font-size: 1.125rem;
}

.gdd-input-container input {
  width: 100%;
  padding: 20px 20px 20px 55px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gdd-input-container input::placeholder {
  color: #94a3b8;
}

.gdd-input-container input:focus {
  outline: none;
  border-color: #ff8108;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 129, 8, 0.2);
}


.gdd-newsletter-btn {
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.gdd-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 129, 8, 0.4);
}

.gdd-btn-text {
  position: relative;
  z-index: 2;
}

.gdd-btn-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.gdd-newsletter-btn:hover .gdd-btn-icon {
  transform: translateX(4px);
}

.gdd-btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease;
}

.gdd-newsletter-btn:active .gdd-btn-ripple {
  opacity: 1;
  transform: scale(1);
}

.gdd-form-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gdd-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 0.875rem;
}

.gdd-benefit-item i {
  color: #ff8108;
  font-size: 0.875rem;
}

.gdd-newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.gdd-stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.gdd-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  border-color: rgba(255, 129, 8, 0.4);
}

.gdd-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ff8108;
  margin-bottom: 4px;
}

.gdd-stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

/* Main Footer */
.gdd-main-footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.gdd-main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, rgba(202, 167, 101, 0.701), #ff8108, rgba(202, 167, 101, 0.701) 75% 100%);

}

.gdd-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.gdd-company-section {
  padding-right: 20px;
}

.gdd-company-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.gdd-footer-logo img {
  height: 120px;
}

.gdd-company-badge {
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  padding: 8px 16px;
  border-radius: 20px;
  text-align: center;
  min-width: 80px;
}

.gdd-company-badge span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.gdd-company-badge small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.gdd-company-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 0.95rem;
}

.gdd-company-features {
  margin-bottom: 30px;
}

.gdd-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gdd-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdd-feature-icon i {
  color: white;
  font-size: 1rem;
}

.gdd-feature-text strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.gdd-feature-text span {
  color: #94a3b8;
  font-size: 0.8rem;
}

.gdd-social-media h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}

.gdd-social-links {
  display: flex;
  gap: 12px;
}

.gdd-social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.gdd-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gdd-social-link.gdd-instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.2);
}

.gdd-social-link.gdd-instagram::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.gdd-social-link.gdd-facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

.gdd-social-link.gdd-facebook::before {
  background: #1877f2;
}

.gdd-social-link.gdd-linkedin {
  background: rgba(0, 119, 181, 0.1);
  color: #0077b5;
  border: 1px solid rgba(0, 119, 181, 0.2);
}

.gdd-social-link.gdd-linkedin::before {
  background: #0077b5;
}

.gdd-social-link.gdd-youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.gdd-social-link.gdd-youtube::before {
  background: #ff0000;
}

.gdd-social-link.gdd-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.gdd-social-link.gdd-whatsapp::before {
  background: #25d366;
}

.gdd-social-link:hover {
  transform: translateY(-3px);
  color: white;
}

.gdd-social-link:hover::before {
  opacity: 1;
}

.gdd-social-link i {
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.gdd-footer-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.gdd-footer-title i {
  color: #ff8108;
  font-size: 1.125rem;
}

.gdd-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gdd-footer-links li {
  margin-bottom: 12px;
}

.gdd-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.gdd-footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #ff8108;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gdd-footer-links a:hover {
  color: #ff8108;
  padding-left: 20px;
}

.gdd-footer-links a:hover::before {
  opacity: 1;
}

.gdd-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.gdd-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.gdd-contact-card:hover {
  background: rgba(255, 129, 8, 0.1);
  border-color: rgba(255, 129, 8, 0.3);
  transform: translateX(4px);
}

.gdd-contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdd-contact-icon i {
  color: white;
  font-size: 1rem;
}

.gdd-contact-info strong {
  display: block;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.gdd-contact-info span {
  display: block;
  color: #e2e8f0;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.gdd-contact-info small {
  color: #94a3b8;
  font-size: 0.75rem;
}

.gdd-emergency-contact {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 129, 8, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.gdd-emergency-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #ef4444;
  font-weight: 600;
  font-size: 0.875rem;
}

.gdd-emergency-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.125rem;
  color: white;
}

.gdd-emergency-number i {
  color: #ef4444;
}

.gdd-trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gdd-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.gdd-trust-item:hover {
  background: rgba(255, 129, 8, 0.1);
  transform: translateY(-2px);
}

.gdd-trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdd-trust-icon i {
  color: white;
  font-size: 1.25rem;
}

.gdd-trust-content strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.gdd-trust-content span {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Footer Bottom */
.gdd-footer-bottom {
  background: #0f0f0f;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gdd-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.gdd-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gdd-copyright p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.9rem;
}

.gdd-made-with {
  color: #64748b;
  font-size: 0.8rem;
}

.gdd-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gdd-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.gdd-legal-links a:hover {
  color: #ff8108;
}

.gdd-payment-security {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gdd-payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gdd-payment-methods span {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.gdd-payment-icons {
  display: flex;
  gap: 8px;
}

.gdd-payment-icon {
  width: 40px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gdd-payment-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 129, 8, 0.4);
  transform: translateY(-2px);
}

.gdd-payment-icon i {
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.gdd-payment-icon:hover i {
  color: #ff8108;
}



/* Chat Widget Styles (existing styles remain unchanged) */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section.company {
  padding-right: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.company-desc {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 24px;
}

.company-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.company-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-stats .stat-item i {
  color: var(--accent);
  font-size: 20px;
}

.company-stats .stat-item strong {
  color: white;
  font-size: 1.125rem;
}

.company-stats .stat-item span {
  color: #cccccc;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
}

.contact-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item strong {
  color: white;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.contact-item span {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

.footer-links-bottom {
  display: flex;
  gap: 24px;
}

.footer-links-bottom a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: var(--accent);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-methods span {
  color: #cccccc;
  font-size: 14px;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icons i {
  font-size: 24px;
  color: #cccccc;
}

/* Bulk Campaign Timer - Same style and position */
.bulk-discount-container .campaign-timer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 62px;
  /* above guide (guide is bottom:18px) */
  background: #6d32520d;
  border: 2px solid #6d32527d;
  border-radius: 14px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-width: 120px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(9px);
}

.bulk-discount-container .campaign-timer::before,
.bulk-discount-container .campaign-timer::after {
  /* disable animated border for compact look */
  content: none;
}

.bulk-discount-container .timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6d3252;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bulk-discount-container .timer-display {
  display: flex;

  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.bulk-discount-container .timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 210, 230, 0.95), rgba(255, 245, 250, 0.95));
  padding: 6px 10px;
  border-radius: 10px;
  min-width: 84px;
  box-shadow: 0 2px 8px rgba(109, 50, 82, 0.15);
  border: 1px solid #6d3252;
}

.bulk-discount-container .timer-number {
  font-size: 1.05rem;
  font-weight: 900;
  color: #1f2937;
  line-height: 1;
  text-shadow: none;
}

.bulk-discount-container .timer-text {
  font-size: 0.65rem;
  color: #7a284f;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bulk-discount-container .timer-separator {
  display: none;
  /* separators not needed in vertical layout */
}

@media (max-width: 992px) {
  .bulk-discount-container .campaign-timer {
    bottom: 66px;
    padding: 8px 10px;
  }

  .bulk-discount-container .timer-unit {
    min-width: 78px;
    padding: 6px 8px;
  }

  .bulk-discount-container .timer-number {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .bulk-discount-container .campaign-timer {
    bottom: 72px;
    gap: 4px;
  }

  .bulk-discount-container .timer-unit {
    min-width: 72px;
  }
}

@media (min-width: 1240px) {
  .gdd-deals-slider-track {
    --gdd-deals-cols: 6;
  }
}

@media (min-width: 968px) and (max-width: 1239px) {
  .gdd-deals-slider-track {
    --gdd-deals-cols: 4;
  }
}

@media (min-width: 768px) and (max-width: 967px) {
  .gdd-deals-slider-track {
    --gdd-deals-cols: 3;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .gdd-deals-slider-track {
    --gdd-deals-cols: 2;
  }
}

@media (max-width: 480px) {
  .gdd-deals-slider-track {
    --gdd-deals-cols: 1;
  }
}

.category-description .feature-item {
  color: #005197;
}

.category-description .feature-item i {
  color: #ff8108;
}