@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

[x-cloak] {
      display: none !important;
}

body {
      background: var(--apple-gray-4);
      color: var(--apple-gray-1);
      line-height: 1.47059;
      font-weight: 400;
      letter-spacing: -0.022em;
}

/* Header styling */
.apple-header {
      background: rgb(255 255 255);
      /* backdrop-filter: saturate(180%) blur(20px); */
      /* border-bottom: 0.5px solid rgba(134, 134, 139, 0.2); */
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      background: white;
      backdrop-filter: saturate(180%) blur(20px);
}

/* Navigation styling */
.nav-link {
      font-size: 15px;
      font-weight: 400;
      color: var(--apple-gray-1);
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 8px 16px;
      border-radius: 12px;
      position: relative;
}

.nav-link:hover {
      color: var(--primary-highlight-color);
      /* background: rgba(0, 122, 255, 0.04); */
}

/* Brand styling */
.brand-text {
      font-size: 21px;
      font-weight: 600;
      letter-spacing: -0.03em;
}

/* Dropdown animations */
.dropdown-panel {
      background: rgb(255 255 255);
      /* backdrop-filter: saturate(180%) blur(20px); */
      border-bottom: 0.5px solid rgba(134, 134, 139, 0.2);
      box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08), 0 8px 32px 0 rgba(0, 0, 0, 0.04);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dropdown-panel.open {
      max-height: 500px;
}

.dropdown-section {
      opacity: 0;
      transform: translateY(-8px);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dropdown-panel.open .dropdown-section {
      opacity: 1;
      transform: translateY(0);
}

.dropdown-panel.open .dropdown-section:nth-child(1) {
      transition-delay: 0.1s;
}
.dropdown-panel.open .dropdown-section:nth-child(2) {
      transition-delay: 0.15s;
}
.dropdown-panel.open .dropdown-section:nth-child(3) {
      transition-delay: 0.2s;
}

/* Dropdown content styling */
.dropdown-category {
      font-size: 12px;
      font-weight: 600;
      color: var(--apple-gray-2);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
}

.dropdown-link {
      font-size: 17px;
      font-weight: 400;
      color: var(--apple-gray-1);
      text-decoration: none;
      display: block;
      padding: 8px 0;
      transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 6px;
}

.dropdown-link:hover {
      color: var(--primary-highlight-color);
      transform: translateX(2px);
}
.mobile-overlay {
  background: white;
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 51;
  /* top: 48px; */
  height: 100vh;
  padding: 0px;
}



.mobile-nav-link {
      font-size: 27px;
      font-weight: 200;
      color: var(--apple-gray-1);
      text-decoration: none;
      padding: 8px 48px;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      /* border-bottom: 0.5px solid rgba(134, 134, 139, 0.1); */
      width: 90%;
}

.mobile-nav-link:hover {
      /* color: var(--primary-highlight-color); */
      /* transform: translateX(4px); */
}

.mobile-back-btn {
      font-size: 17px;
      /* color: var(--primary-highlight-color); */
      background: none;
      border: none;
      /* padding: 8px 0; */
      margin-bottom: 24px;
      transition: all 0.2s ease;
}

.mobile-back-btn:hover {
      transform: translateX(-2px);
}

/* Mobile submenu styling */
.mobile-category {
      font-size: 14px;
      font-weight: 300;
      color: var(--apple-gray-2);
      margin-bottom: 12px;
      margin-top: 32px;
}

.mobile-category:first-child {
      margin-top: 0;
}

.mobile-sub-link {
      font-size: 17px;
      font-weight: 400;
      color: var(--apple-gray-);
      text-decoration: none;
      display: block;
      padding: 5px 18px;
      transition: all 0.2s ease;
}

.mobile-sub-link:hover {
      color: var(--primary-highlight-color);
      transform: translateX(2px);
}

/* Hamburger animation */
.hamburger {
      background: none;
      border: none;
      /* padding: 8px; */
      border-radius: 8px;
      transition: all 0.2s ease;
      height: 48px;
      width: 48px;
      justify-content: center;
      align-items: center;
      /* display: flex; */
}

.hamburger:hover {
      /* background: rgba(0, 122, 255, 0.04); */
}

.hamburger svg {
      transition: all 0.2s ease;
}

/* Close button */
.close-btn {
      background: none;
      border: none;
      /* padding: 8px; */
      border-radius: 50%;
      transition: all 0.2s ease;
}

.close-btn:hover {
      /* background: rgba(134, 134, 139, 0.1); */
      /* transform: rotate(90deg); */
}


.main-title {
      font-size: 48px;
      font-weight: 600;
      line-height: 1.08349;
      letter-spacing: -0.003em;
      color: var(--apple-gray-1);
      margin-bottom: 24px;
}

.main-subtitle {
      font-size: 21px;
      font-weight: 400;
      line-height: 1.381;
      letter-spacing: 0.011em;
      color: var(--apple-gray-2);
}

/* Responsive typography */
@media (max-width: 768px) {
      .main-title {
            font-size: 32px;
            line-height: 1.125;
      }

      .main-subtitle {
            font-size: 19px;
      }
}
.close-header-btn-mobile {
      /* position: absolute; */
      right: 24px;
}
.header-nav-link-btn {
      display: flex;
      align-items: center;
      justify-content: center;
}
.backdrop-filter-none {
  backdrop-filter: none !important;
  background: white;
}
.space-y-1{
      padding: 0px;
}
.space-y-6{
      padding: 3px 48px;
}
.mobile-nav-link img{
      height: 40px;
      width: 40px;
}