 /*Nav */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  max-height: 42px;
  width: auto;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link.dropdown-trigger {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--body-color);
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family-monospace);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link.dropdown-trigger:hover,
.nav-link.dropdown-trigger.active {
  color: var(--primary);
  background: var(--primary-light);
}

.dropdown-icon {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-link.dropdown-trigger.active .dropdown-icon {
  transform: rotate(180deg);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: var(--custom-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1050;
  padding: 24px;
  min-width: 520px;
}

.mega-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.mega-content {
  display: flex;
  gap: 32px;
}

.mega-col {
  min-width: 140px;
}

.mega-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

.mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-links li {
  margin-bottom: 2px;
}

.mega-links li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--body-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-links li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.currency-wrapper {
  position: relative;
}

.currency-btn-custom {
  display: flex;
  align-items: center;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-btn-custom:hover {
  border-color: var(--primary);
}

.currency-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: var(--custom-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  min-width: 120px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1050;
}

.currency-wrapper.active .currency-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-item-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--body-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.currency-item-link:hover {
  background: var(--gray-light);
  color: var(--primary);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-link {
  color: var(--body-color);
  font-size: 20px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 6px;
  transition: color 0.2s ease;
}

.cart-link:hover {
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.nav-button {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-button.secondary {
  color: var(--body-color);
  border: 1px solid var(--border-color);
  background: transparent;
}

.nav-button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-button.primary {
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
}

.nav-button.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.nav-auth-dropdown {
  position: relative;
}

.nav-auth-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--body-color);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-auth-btn:hover {
  color: var(--primary);
}

.nav-auth-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: var(--custom-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  min-width: 160px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1050;
}

.nav-auth-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-auth-item {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--body-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.nav-auth-item:hover {
  background: var(--gray-light);
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--gray-light);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--body-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1199px) {
  .nav-container {
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px 30px;
    z-index: 1050;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link.dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .mega-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 16px 12px;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    background: var(--gray-light);
  }

  .mega-dropdown.active {
    display: block;
    transform: none;
  }

  .mega-content {
    flex-direction: column;
    gap: 16px;
  }

  .mega-title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .mega-links li a {
    padding: 5px 0;
    font-size: 13px;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 12px;
  }

  .brand-logo {
    max-height: 34px;
  }

  .cart-link {
    font-size: 18px;
  }

  .currency-btn-custom {
    padding: 4px 8px;
  }

  .currency-btn-custom img {
    width: 20px !important;
  }
}

/* Pricing */
.tt-features-list {
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
  text-align: left;
}

.tt-features-list li {
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.tt-features-list li:last-child {
  border-bottom: none;
}

.tt-features-list li i {
  color: #83D617;
  font-size: 14px;
  flex-shrink: 0;
}

.tt-features-wrapper .tt-feature-more {
  display: none;
}

.tt-features-wrapper.tt-expanded .tt-feature-more {
  display: flex;
}

.tt-features-toggle-all {
  display: inline-block;
  padding: 10px 30px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tt-features-toggle-all:hover {
  background: var(--primary);
  color: #fff;
}

.tt-features-toggle-all:focus,
.tt-features-toggle-all:active {
  outline: none;
  box-shadow: none;
}


/* Promo Banner */
.tt-promo-banner {
    background: linear-gradient(135deg, #1C40F2 0%, #7C3AED 100%);
    color: #fff;
    padding: 8px 0;
    text-align: center;
    position: relative;
    margin-top: 0;
}
.tt-promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.promo-title {
    font-size: 14px;
    font-weight: 500;
}
.promo-deal-btn-highlighted {
    background: #fff;
    color: #1C40F2;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s;
}
.promo-deal-btn-highlighted:hover {
    transform: scale(1.05);
    color: #1C40F2;
}
/* Mega Dropdown Nav */
.tt-header .has-dropdown {
    position: relative;
}
.tt-header .dropdown-trigger {
    background: none;
    border: none;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tt-header .dropdown-trigger .dropdown-icon {
    font-size: 10px;
    transition: transform .2s;
}
.tt-header .dropdown-trigger.active .dropdown-icon {
    transform: rotate(180deg);
}
.tt-header .mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    min-width: 500px;
    padding: 24px;
    z-index: 1050;
}
.tt-header .mega-dropdown.active {
    display: block;
}
.tt-header .mega-content {
    display: flex;
    gap: 32px;
}
.tt-header .mega-col {
    flex: 1;
}
.tt-header .mega-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1C40F2;
}
.tt-header .mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tt-header .mega-links li {
    margin-bottom: 6px;
}
.tt-header .mega-links a {
    color: #444;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color .2s;
}
.tt-header .mega-links a:hover {
    color: #1C40F2;
}
.tt-header .mega-features {
    flex: 1;
    background: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
}
.tt-header .mega-features-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}
.tt-header .mega-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tt-header .mega-features-list li {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tt-header .mega-features-list li i {
    color: #1C40F2;
    font-size: 12px;
}
.tt-header .mega-features-price {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e5f1;
}
.tt-header .mega-features-price a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
}
.tt-header .mega-features-price b {
    font-size: 18px;
    color: #1C40F2;
}
[data-bs-theme="dark"] .tt-header .mega-dropdown {
    background: #1e1e2d;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
[data-bs-theme="dark"] .tt-header .mega-links a {
    color: #aaa;
}
[data-bs-theme="dark"] .tt-header .mega-links a:hover {
    color: #7C3AED;
}
[data-bs-theme="dark"] .tt-header .mega-features {
    background: #2a2a3d;
}
[data-bs-theme="dark"] .tt-header .mega-features-title {
    color: #ddd;
}
[data-bs-theme="dark"] .tt-header .mega-features-list li {
    color: #bbb;
}
[data-bs-theme="dark"] .tt-header .mega-features-price {
    border-top-color: #333;
}
[data-bs-theme="dark"] .tt-header .mega-features-price a {
    color: #ccc;
}

/* Mega Navbar toolbar links */
.tt-header .nav-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    text-decoration: none;
    color: inherit;
    padding: 6px 10px;
    position: relative;
}
.tt-header .nav-icon-link.cart-btn-mega {
    position: relative;
}