:root {
  --color-primary: #a61c76;
  /* Magenta */
  --color-primary-hover: #8f1564;
  --color-secondary: #fff1f8;
  /* Soft Pink */
  --color-text-main: #111827;
  --color-text-muted: #6b7280;
  --color-bg: #fafafa;
  --color-white: #ffffff;
  --color-border: #e5e7eb;

  --font-family-main: 'Poppins', sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
}
html {
  font-size: 11px;
}

@media (min-width: 760px) {
  html {
    font-size: 11px;
  }
}

/* Reset & Basics */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family-main);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.text-primary {
  color: var(--color-primary);
}

.text-muted {
  color: var(--color-text-muted);
}

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
  color: white;
}

/* Flex & Grid */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Media queries shifted to the very end of this file */

/* Component: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary-hover);
}

/* Component: Cards */
.card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  padding: 2.5rem;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.card > * {
  position: relative;
  z-index: 2;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px 0 rgba(166, 28, 118, 0.12);
  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.8);
}

.card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: -2.5rem -2.5rem 1.5rem -2.5rem;
  width: calc(100% + 5rem);
  z-index: 2;
  position: relative;
}

/* Specific UI Layouts from Design */
/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all var(--transition-normal);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background-color: rgba(166, 28, 118, 0.08);
}

/* Dropdown Navigation */
.nav-links .dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-links .dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .dropdown-content {
  visibility: hidden;
  position: absolute;
  background-color: var(--color-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  z-index: 100;
  top: calc(100% + 5px);
  left: 0;
  border: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.nav-links .dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-links .dropdown-content a {
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-main);
  border-radius: 0;
  width: 100%;
  display: block;
}

.nav-links .dropdown-content a:hover {
  background-color: rgba(166, 28, 118, 0.05);
  color: var(--color-primary);
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: var(--color-white);
  border-top: none;
  padding: 4rem 0 2rem;
}

.site-footer .text-muted {
  color: #94a3b8 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-secondary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Interactive elements */
.gradient-banner {
  background: linear-gradient(135deg, #a61c76 0%, #4f46e5 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

/* Glassmorphism & Effects */
.glass-nav {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(166, 28, 118, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.wave-bg {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(166,28,118,0.15) 100%);
  overflow: hidden;
}

.wave-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23a61c76' fill-opacity='0.1' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,192C672,213,768,203,864,170.7C960,139,1056,85,1152,74.7C1248,64,1344,96,1392,112L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: 0;
}

.mesh-bg {
  background-color: #fafafa;
  background-image: 
    radial-gradient(at 40% 20%, rgba(166, 28, 118, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(166, 28, 118, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255, 183, 3, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(166, 28, 118, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(255, 183, 3, 0.05) 0px, transparent 50%);
  position: relative;
  overflow: hidden;
}

.mesh-bg > * {
  position: relative;
  z-index: 1;
}

.wave-bg > * {
  position: relative;
  z-index: 1;
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
}

.reveal.visible.fall-top {
  animation: fallTop 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.visible.drop-in {
  animation: dropIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.visible.slide-in {
  animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fallTop {
  0% { opacity: 0; transform: translateY(-80px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-40px) scale(0.9); }
  60% { opacity: 1; transform: translateY(5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: scrollLeft 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content .card {
  flex-shrink: 0;
  width: 280px;
  margin: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* Hero Specific Animations */
@keyframes heroBounceIn {
  0% { transform: translateY(-80px) scale(0.8); opacity: 0; }
  50% { transform: translateY(10px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.hero-animate-element {
  opacity: 0;
}

.reveal.visible.hero-animate-element {
  animation: heroBounceIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-animate-badge {
  opacity: 0;
}

.reveal.visible.hero-animate-badge {
  animation: heroBounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, heroFloat 3s ease-in-out infinite alternate;
}

.hero-delay-1 { animation-delay: 0.2s; }
.hero-delay-2 { animation-delay: 0.4s; }
.hero-delay-3 { animation-delay: 0.6s; }
.hero-delay-4 { animation-delay: 0.8s; }

/* Circular Trade Fair Button */
.btn-trade-fair-circle {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.btn-trade-fair-circle:hover {
  transform: scale(1.05);
}

.btn-trade-fair-circle:hover .tf-center-content {
  box-shadow: 0 8px 25px rgba(166, 28, 118, 0.6);
  background: linear-gradient(135deg, #c2185b, #ff6b6b);
}

.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 18s linear infinite;
}

@keyframes rotateText {
  100% { transform: rotate(360deg); }
}

.tf-center-content {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #a61c76, #ff4081);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(166, 28, 118, 0.4);
  border: 2px solid white;
  z-index: 2;
  animation: pulse-glow-circle 2s infinite;
  transition: all 0.3s ease;
}

.tf-countdown {
  color: white;
  font-size: 0.65rem;
  font-family: monospace;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

@keyframes pulse-glow-circle {
  0% { box-shadow: 0 0 0 0 rgba(166, 28, 118, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(166, 28, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 28, 118, 0); }
}

/* Mobile Menu & Drawer Styles */
.mobile-menu-btn {
  display: none;
  color: var(--color-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  max-height: 95vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--color-primary);
}

.mobile-drawer.active {
  transform: translateY(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer-close-btn {
  color: var(--color-text-main);
  background: var(--color-secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background: var(--color-primary);
  color: white;
}

.drawer-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.drawer-content a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
  transition: color var(--transition-fast);
}

.mobile-nav-link.active,
.mobile-nav-link:hover,
.drawer-content a:hover {
  color: var(--color-primary);
}

/* Mobile Accordion Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-btn {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.mobile-dropdown-btn span {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.mobile-dropdown.open .mobile-dropdown-btn {
  color: var(--color-primary);
}

.mobile-dropdown.open .mobile-dropdown-btn span {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
}

.mobile-dropdown.open .mobile-dropdown-content {
  max-height: 400px;
  margin-top: 1rem;
}

.mobile-dropdown-content a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--color-text-muted) !important;
}

.mobile-dropdown-content a:hover {
  color: var(--color-primary) !important;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.drawer-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .mobile-menu-btn { display: none !important; }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  h1 { font-size: 2.25rem !important; }
  h2 { font-size: 1.75rem !important; }
  h3 { font-size: 1.25rem !important; }
  p { font-size: 1rem !important; }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Stack grid and flex objects on mobile */
  .grid {
    grid-template-columns: 1fr !important;
  }
  
  .flex.md\:flex-row, .flex.md\:flex-row-reverse {
    flex-direction: column !important;
  }
  
  /* Navigation tweaks */
  .nav-links {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 0.5rem;
  }
  
  .btn-trade-fair-circle {
    transform: scale(0.65) !important;
    margin-left: 0;
    margin-right: -0.5rem;
    transform-origin: right center;
    display: flex !important;
  }
  
  .nav-wrap {
    height: 5rem;
  }

  .logo img {
    height: 38px !important; /* Increased from 28px */
    transform: scale(1.3) !important; /* Increased from 1.1 */
    transform-origin: left center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* Mobile WhatsApp Widget */
  .qr-code-box {
    display: none !important;
  }
  .whatsapp-floating-widget {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
  }
  .whatsapp-btn-circle {
    width: 50px !important;
    height: 50px !important;
  }
  .whatsapp-btn-circle svg {
    width: 28px !important;
    height: 28px !important;
  }
}
/* Sub Menu Item Styling */
.sub-menu-item {
  position: relative;
  padding-left: 2rem !important;
  font-size: 0.85rem !important;
  color: var(--color-text-muted) !important;
  transition: all var(--transition-fast);
}

.sub-menu-item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.sub-menu-item:hover {
  color: var(--color-primary) !important;
  padding-left: 2.25rem !important;
  background-color: rgba(166, 28, 118, 0.05);
}

.sub-menu-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
  background-color: var(--color-primary);
}
