/* =========================================
   HERO CONTAINER & BACKGROUNDS
   ========================================= */
.loyarya-hero-react {
  position: relative;
  overflow: hidden;
  background-color: #ffffff; /* bg-surface-light */
  padding: 80px 0 100px 0; /* pt-20 pb-24 */
  font-family: 'Inter', sans-serif;
}

/* Background Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px); /* blur-3xl */
  z-index: 0;
}

.blob-top-right {
  top: -80px;
  right: -80px;
  width: 384px; /* w-96 */
  height: 384px; /* h-96 */
  background: rgba(255, 85, 0, 0.15); /* bg-primary/20 (Orange tint) */
}

.blob-bottom-left {
  bottom: -80px;
  left: -80px;
  width: 320px; /* w-80 */
  height: 320px; /* h-80 */
  background: rgba(59, 130, 246, 0.1); /* bg-secondary/10 (Blue tint) */
}

.hero-container {
  max-width: 1280px; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 24px; /* px-4 sm:px-6 */
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  gap: 48px; /* gap-12 */
  align-items: center;
}

/* =========================================
   LEFT COLUMN: CONTENT
   ========================================= */
.hero-text-content {
  text-align: left;
}

/* Badge (Blue Pill) */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px; /* rounded-full */
  background-color: #DBEAFE; /* bg-blue-100 */
  border: 1px solid #BFDBFE; /* border-blue-200 */
  margin-bottom: 32px; /* space-y-8 spacing */
}

.badge-icon {
  color: #2563EB; /* text-blue-600 */
  font-size: 18px !important;
}

.badge-text {
  color: #1E40AF; /* text-blue-800 */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em; /* tracking-wide */
  text-transform: uppercase;
}

/* Typography */
.hero-title {
  margin-bottom: 20px;
  line-height: 1.1; /* leading-tight */
}

.title-line-1 {
  font-size: 48px; /* text-5xl */
  font-weight: 700;
  color: #111;
}

.text-gradient {
  background: linear-gradient(90deg, #FF5500 0%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 60px; /* lg:text-7xl */
  font-weight: 800;
}

.hero-desc {
  font-size: 20px; /* text-xl */
  color: #4B5563; /* text-gray-600 */
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
}

//* Buttons Container */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; /* Prevents squishing */
}

/* Primary Button (Shop Now) */
a.btn-hero-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 36px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  background: linear-gradient(90deg, #FF5500 0%, #FFB800 100%) !important;
  color: #ffffff !important; /* Force White Text */
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2) !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  white-space: nowrap !important; /* Forces text to stay on ONE line */
}

a.btn-hero-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 25px rgba(249, 115, 22, 0.3) !important;
  color: #ffffff !important;
}

/* Secondary Button (Learn More) */
a.btn-hero-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 36px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  background: #ffffff !important;
  color: #111111 !important; /* Force Black Text */
  border: 1px solid #E5E7EB !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  white-space: nowrap !important; /* Forces text to stay on ONE line */
}

a.btn-hero-secondary:hover {
  background-color: #F9FAFB !important;
  color: #111111 !important;
}

/* =========================================
   RIGHT COLUMN: VISUAL
   ========================================= */
.hero-visual-wrapper {
  position: relative;
  height: 600px; /* lg:h-[600px] */
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-inner {
  position: relative;
  z-index: 10;
  transition: transform 0.7s ease-out;
}
.visual-inner:hover {
  transform: scale(1.05); /* hover:scale-105 */
}

/* The Image */
.hero-product-img {
  width: 448px; /* lg:w-[28rem] */
  border-radius: 32px; /* rounded-[2rem] */
  position: relative;
  z-index: 20;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25)); /* shadow-2xl */
}

/* Shadow Blur under phone */
.shadow-blur {
  position: absolute;
  bottom: -40px; /* -bottom-10 */
  left: 40px; right: 40px;
  height: 56px; /* h-14 */
  background: rgba(0, 0, 0, 0.5); /* bg-black/50 */
  filter: blur(40px); /* blur-2xl */
  border-radius: 9999px;
  z-index: 0;
}

/* Pulsing Circle */
.pulse-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: linear-gradient(to top right, rgba(229, 231, 235, 0.5), rgba(243, 244, 246, 0.5)); /* from-gray-200/50 */
  border-radius: 50%;
  z-index: -10;
  mix-blend-mode: overlay;
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-text-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .title-line-1 { font-size: 40px; }
  .text-gradient { font-size: 48px; }
  
  .hero-visual-wrapper { height: auto; padding: 40px 0; }
  .hero-product-img { width: 320px; }
  .pulse-circle { width: 400px; height: 400px; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .btn-react { width: 100%; }
  .title-line-1 { font-size: 36px; }
  .text-gradient { font-size: 42px; }
}