:root {
  --bg: #0f1115;
  --card: #181b21;
  --accent: #e8873a;
  --accent-soft: #9bc4aa;
  --text: #f5f5f2;
  --muted: #a4a4a0;
  --radius-lg: 1.2rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b2027, var(--bg));
  color: var(--text);
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 6vw;
  background: radial-gradient(circle at top left, #171a22, #0b0c10);
  border-bottom: 1px solid #252833;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* cluster nav + hamburger + cart on right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* Desktop nav layout */

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent);
}

.cart-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
}

.cart-link:hover {
  color: var(--accent);
}

/* Dropdown */

.nav-dropdown {
  position: relative;
}

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

/* Desktop dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: 100%; /* sit directly under the button */
  left: 0;
  min-width: 180px;
  background: #151821;
  border-radius: 0.8rem;
  border: 1px solid #262935;
  padding: 0.4rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 15;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.nav-dropdown-menu a:hover {
  background: #1f222c;
  color: var(--accent);
}

/* keep menu open when moving from button to menu */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hamburger button – hidden on desktop */

.nav-toggle {
  display: none; /* shown in media query */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid #333844;
  background: #10121a;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #f5f5f5;
}

/* OPEN state (animate slightly) */

.nav-toggle.nav-toggle--open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-toggle--open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* --- MOBILE / TABLET NAV --- */

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(0.8rem + 2.3rem + 0.8rem); /* header padding + button height */
    padding: 0.75rem 6vw 1rem;
    background: #0b0c10;
    border-bottom: 1px solid #252833;
    display: none; /* closed by default */
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .cart-link {
    align-self: flex-start;
  }

  /* mobile dropdown: always visible under "Shop" */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.3rem;
    border-radius: 0.6rem;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding-left: 0;
  }
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 4rem 6vw 2rem;
}

.hero-text {
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 0.5rem;
}

.hero p {
  max-width: 480px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: #333844;
}

.btn-ghost:hover {
  border-color: var(--accent);
}

/* ---------------- SECTION STYLES ---------------- */

.section {
  padding: 2.5rem 6vw 3rem;
}

.section--subtle {
  background: radial-gradient(circle at top left, #191d25, #0f1115);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2,
.section h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.section-link {
  font-size: 0.85rem;
  color: var(--accent-soft);
  text-decoration: none;
}

.section-link:hover {
  color: var(--accent);
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ---------------- PRODUCTS / GRIDS ---------------- */

.featured {
  padding: 1rem 6vw 3rem;
}

.featured h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* consistent card width & size */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
  justify-content: flex-start;
}

.product-grid--tight {
  max-width: 800px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid #262935;
  min-height: 260px; /* tweak as needed */
}

.product-card--outlined {
  background: transparent;
  border-style: dashed;
}

/* Placeholder image blocks for now */
.product-card img,
.product-image-skeleton {
  width: 100%;
  border-radius: 0.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.product-image-skeleton {
  aspect-ratio: 4 / 3;
  border: 1px dashed #333844;
  background: repeating-linear-gradient(
    135deg,
    #181b21,
    #181b21 8px,
    #1f222c 8px,
    #1f222c 16px
  );
}

.product-card h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.price {
  margin: 0 0 0.75rem;
  color: var(--accent-soft);
}

/* push button to bottom so cards line up */
.product-card .btn {
  margin-top: auto;
}

.product-pill {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #333844;
  margin-bottom: 0.5rem;
}

.shipping-note {
  margin-top: 1.5rem;
  color: var(--muted);
}

/* CATEGORY GRID */

.category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.5rem;
}

.category-card {
  display: block;
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid #262935;
  background: #181b21;
  text-decoration: none;
  color: var(--text);
}

.category-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.category-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.category-card:hover {
  border-color: var(--accent);
}

/* COMING SOON */

.coming-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.coming-card {
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid #262935;
  background: #181b21;
}

.coming-card h3 {
  margin: 0 0 0.4rem;
}

.coming-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.pill-soft {
  background: #222531;
  color: var(--muted);
}

/* MINI STORY */

.story {
  max-width: 640px;
}

/* NEWSLETTER */

.newsletter {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid #262935;
  background: #151821;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #333844;
  background: #0f1115;
  color: var(--text);
  min-width: 220px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ---------------- CART PAGE ---------------- */

.cart-page {
  padding: 2rem 6vw 3rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border-radius: 0.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid #262935;
  margin-bottom: 0.75rem;
}

.cart-item-name {
  font-weight: 500;
}

.cart-item-price {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.qty-btn,
.remove-btn {
  border-radius: 999px;
  border: 1px solid #333844;
  background: transparent;
  color: var(--text);
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.qty-btn:hover,
.remove-btn:hover {
  border-color: var(--accent);
}

.cart-qty {
  min-width: 1.5rem;
  text-align: center;
}

.cart-summary {
  margin-top: 1.5rem;
  max-width: 360px;
  padding: 1rem;
  background: #151821;
  border-radius: var(--radius-lg);
  border: 1px solid #262935;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.total-row {
  margin-top: 0.5rem;
  font-weight: 600;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

/* ---------------- SUCCESS PAGE ---------------- */

.success-page {
  padding: 3rem 6vw;
  text-align: center;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 2rem 6vw 2rem;
  border-top: 1px solid #252833;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.footer-column h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.footer-column a:hover {
  color: var(--accent);
}

.logo--small {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #252833;
  padding-top: 0.75rem;
  text-align: center;
}

/* ---------------- FILTER CHIPS ---------------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-right: 0.3rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid #333844;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip-active {
  border-color: var(--accent);
  background: #201a15;
  color: var(--accent);
}

/* ---------------- FAQ ---------------- */

.faq {
  max-width: 720px;
}

.faq details {
  border-radius: 0.9rem;
  border: 1px solid #262935;
  background: #181b21;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-size: 0.95rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(-1px);
  color: var(--muted);
}

.faq details[open] summary::before {
  content: "▾";
}

.faq p {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------------- CONTACT ---------------- */

.contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.contact-card {
  border-radius: 1rem;
  border: 1px solid #262935;
  background: #151821;
  padding: 1.25rem 1.25rem 1.5rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-form {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #333844;
  background: #0f1115;
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ---------------- RESPONSIVE TWEAKS ---------------- */

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .newsletter {
    align-items: flex-start;
  }

  .filters {
    align-items: flex-start;
  }
}
/* PRODUCT DETAIL PAGE */

.product-page {
  max-width: 960px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.product-media img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #262935;
  background: #181b21;
}

.product-info h1 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.product-price {
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.product-details {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.small-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}
.product-link {
  color: inherit;
  text-decoration: none;
}

.product-link:hover {
  color: var(--accent);
}
/* ---------------- TOASTS ---------------- */

.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 9999;
}

.toast {
  background: #111827;
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(10px);
  animation: toast-in 0.18s ease-out forwards;
}

.toast--hide {
  animation: toast-out 0.18s ease-in forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 600px) {
  .toast-container {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0.75rem;
  }
}
/* =========================
   CART PAGE LAYOUT
   ========================= */

.cart-page {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem 4rem;
}

.cart-page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Cart items container */
#cart-items[data-cart-items] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Each row in the cart */
.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.9);
}

/* Product name */
.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Qty controls */
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-item-qty button {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-item-qty span {
  min-width: 1.5rem;
  text-align: center;
}

/* Price */
.cart-item-total {
  font-weight: 600;
  text-align: right;
}

/* Remove button */
.remove-btn {
  border: none;
  background: transparent;
  color: #ff7b7b;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  justify-self: end;
}

/* Summary box */
.cart-summary {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 14, 0.95);
}

.cart-summary.hidden {
  display: none;
}

.cart-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.cart-summary .total-row {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
}

.cart-summary label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.cart-summary input[type="email"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.6);
  color: inherit;
}

/* Checkout button */
.cart-summary .btn,
button[data-checkout-button] {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #f97316, #e11d48);
  color: #fff;
}

/* Empty state */
#empty-cart-msg {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

#empty-cart-msg.muted {
  opacity: 0.7;
}

/* =========================
   CART RESPONSIVE
   ========================= */

@media (max-width: 640px) {
  .cart-row {
    grid-template-columns: 1.8fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "name price"
      "qty remove";
  }

  .cart-item-name {
    grid-area: name;
  }

  .cart-item-total {
    grid-area: price;
    text-align: right;
  }

  .cart-item-qty {
    grid-area: qty;
    margin-top: 0.25rem;
  }

  .remove-btn {
    grid-area: remove;
    justify-self: end;
    margin-top: 0.25rem;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: radial-gradient(circle at top, #1c2620 0, #050606 55%, #020303 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  color: #f2f2f2;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #f5f5f5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link,
.cart-link {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 0.98rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-link:hover,
.cart-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(180, 255, 214, 0.5);
}

.nav-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* dropdown reuse for My Account + Shop */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 170px;
  background: #060707;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  padding: 6px 0;
  display: none;
}

.nav-dropdown-menu a,
.nav-dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 14px;
  color: #e8e8e8;
  font-size: 0.95rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover {
  background: rgba(255,255,255,0.06);
}

/* hamburger behavior (keep your existing, or this if you don't have it) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #f2f2f2;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    background: #050606;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: none;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
  }
}
