facets-form .dropdown-menu,
facets-form .grandchild-dropdown {
  /* display: none; */
}


facets-form a.has-dropdown {
    display: flex;
    justify-content: space-between;
}
facets-form a.has-dropdown.active-link svg {
    transform: rotate(180deg) !important;
}
 facets-form .link-wrapper .has-dropdown,
 facets-form .link-wrapper .dropdown-menu  a
{
    font-weight: 500;
    color: rgb(28, 28, 28);
    text-transform: capitalize;
    font-size: 14px;
}
facets-form  .accordion__content  {
  padding-inline:0;
}
.grandchild-dropdown{
    padding: 10px 0;
}
.child-link-wrapper {
   padding: 5px 0;
}
 facets-form .link-wrapper .has-dropdown {
    padding-block: 5px;
    align-items: center;
    gap: 10px;
   font-weight: 600;
/* ============================================
   GROOVALUTION LANDING PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #9B59B6 100%);
  padding: 80px 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  color: white;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0.95;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-primary {
  background: white;
  color: #FF6B35;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.microproof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  font-size: 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.microproof-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Soundtrack Section */
.soundtrack-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 100%);
  padding: 60px 20px;
}

.soundtrack-container {
  max-width: 1200px;
  margin: 0 auto;
}

.soundtrack-content {
  text-align: center;
}

.soundtrack-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.soundtrack-icon {
  width: 32px;
  height: 32px;
  stroke: #FF6B35;
}

.soundtrack-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #9B59B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.soundtrack-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.soundtrack-link {
  padding: 14px 28px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid #FF6B35;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.soundtrack-link:hover {
  background: #FF6B35;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Portal Section */
.portal-section {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  padding: 100px 20px;
}

.portal-container {
  max-width: 1400px;
  margin: 0 auto;
}

.portal-header {
  text-align: center;
  margin-bottom: 60px;
}

.portal-main-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #9B59B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portal-subtitle {
  font-size: 22px;
  color: #666;
  margin: 0;
}

.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portal-card {
  padding: 50px 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portal-card.white {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portal-card.beige {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
}

.portal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portal-card-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.portal-card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 24px 0;
}

.portal-card-cta {
  margin-top: auto;
}

.portal-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6B35;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portal-card-link:hover {
  gap: 12px;
  color: #9B59B6;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #9B59B6 0%, #FF6B35 100%);
  padding: 80px 20px;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content {
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.newsletter-icon-wrapper {
  margin-bottom: 24px;
}

.newsletter-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35 0%, #9B59B6 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.newsletter-icon {
  width: 40px;
  height: 40px;
  stroke: white;
}

.newsletter-header-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #1a1a1a;
}

.newsletter-header-text p {
  font-size: 18px;
  color: #666;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 24px;
}

.newsletter-form-row {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, #FF6B35 0%, #9B59B6 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.newsletter-status {
  color: #4CAF50;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
}

.lock-icon {
  width: 16px;
  height: 16px;
  stroke: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .portal-cards {
    grid-template-columns: 1fr;
  }

  .portal-main-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .soundtrack-title {
    font-size: 32px;
  }

  .portal-main-title {
    font-size: 32px;
  }

  .portal-card-title {
    font-size: 24px;
  }

  .newsletter-form-row {
    flex-direction: column;
  }

  .newsletter-submit {
    width: 100%;
  }

  .newsletter-content {
    padding: 40px 30px;
  }

  .newsletter-header-text h2 {
    font-size: 32px;
  }
} }

