:root {
      --font-body: 'Montserrat', 'Segoe UI', sans-serif;
      --font-display: 'Playfair Display', 'Times New Roman', 'Georgia', serif;
      --nav-ink: #111111;
      --nav-accent: #C09828;
    }

/* Navbar (Unified from Citrus) */
#wrapper-navbar {
      background: transparent;
      position: sticky;
      top: 0;
      z-index: 1400;
      padding: 0 16px;
      transition: transform 0.32s ease, opacity 0.32s ease;
      will-change: transform, opacity;
    }
    #wrapper-navbar.is-hidden {
      transform: translateY(-135%);
      opacity: 0;
      pointer-events: none;
    }
    .navbar {
      padding: 1rem 0;
      border-radius: 24px;
      position: relative;
      overflow: visible;
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: #ffffff;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
      backdrop-filter: none;
    }
    .navbar::before {
      content: none;
    }
    .navbar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: clamp(0.55rem, 1.4vw, 1.2rem);
      position: relative;
      z-index: 1;
    }
    .navbar-actions {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      order: 4;
    }
    .navbar-menu {
      display: none;
      list-style: none;
      gap: 0.35rem;
      margin: 0;
      padding: 0;
      align-items: center;
      flex: 1;
    }
    .navbar-left { order: 1; justify-content: flex-end; padding-right: 0.35rem; }
    .navbar-right { order: 3; justify-content: flex-start; padding-left: 0.35rem; }
    .navbar-logo { display: flex; align-items: center; order: 2; margin: 0 clamp(0.15rem, 0.9vw, 0.7rem); flex-shrink: 0; }
    .navbar-logo img {
      height: 96px;
      width: auto;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 8px 22px rgba(11, 13, 32, 0.38), 0 0 0 3px rgba(255, 255, 255, 0.07);
      transition: all 0.3s;
    }
    .navbar-logo img:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 12px 26px rgba(11, 13, 32, 0.5), 0 0 0 3px rgba(246, 178, 95, 0.17);
    }
    .nav-item { margin: 0; }
    .nav-dropdown { position: relative; }
    .nav-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 12px;
    }
    .nav-link {
      text-decoration: none;
      color: var(--nav-ink);
      font-weight: 600;
      font-size: 0.83rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s;
      padding: 0.65rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      position: relative;
      border-radius: 999px;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
    }
    .nav-item-icon {
      display: inline-flex;
      align-items: center;
    }
    .nav-icon-button,
    .nav-icon-link {
      border: 1px solid rgba(17, 17, 17, 0.2);
      background: rgba(255, 255, 255, 0.65);
      color: var(--nav-ink);
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
      transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
      text-decoration: none;
    }
    .nav-icon-link {
      position: relative;
    }
    .nav-icon-button:hover,
    .nav-icon-link:hover {
      background: rgba(246, 178, 95, 0.18);
      border-color: rgba(246, 178, 95, 0.45);
      transform: translateY(-1px);
    }
    .nav-search-icon {
      width: 18px;
      height: 18px;
    }
    .nav-link-dropdown {
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .nav-link-dropdown:focus,
    .nav-link-dropdown:focus-visible {
      outline: none;
      box-shadow: none;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 24px;
      height: 2px;
      transform: translateX(-50%) scaleX(0);
      background: linear-gradient(90deg, #ffe3b5, var(--nav-accent));
      transition: transform 0.28s ease;
    }
    .nav-link.active,
    .nav-link:focus-visible {
      color: #111111;
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.09);
    }
    .nav-link.active::after,
    .nav-link:focus-visible::after {
      transform: translateX(-50%) scaleX(1);
    }
    @media (hover: hover) and (pointer: fine) {
      .nav-link:hover {
        color: #111111;
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.09);
      }
      .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
      }
    }
    .cart-link {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .nav-cart-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }
    .nav-count {
      min-width: 20px;
      height: 20px;
      padding: 0 6px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      background: linear-gradient(135deg, #ffd9a6, var(--nav-accent));
      color: #24162f;
      box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45);
    }
    .nav-icon-link .nav-count {
      position: absolute;
      top: -6px;
      right: -6px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      font-size: 0.65rem;
    }
    .nav-caret {
      font-size: 0.72rem;
      line-height: 1;
      transform: translateY(1px);
      transition: transform 0.25s ease;
    }
    .nav-dropdown-menu {
      list-style: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 220px;
      margin: 0;
      padding: 0.4rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 14px 30px rgba(12, 16, 38, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 25;
    }
    .nav-dropdown-link {
      display: block;
      padding: 0.6rem 0.75rem;
      color: #1a2042;
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus-visible,
    .nav-dropdown-link.active {
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-dropdown:focus-within .nav-caret {
      transform: translateY(1px) rotate(180deg);
    }
    @media (hover: hover) and (pointer: fine) {
      .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
      .nav-dropdown:hover .nav-caret {
        transform: translateY(1px) rotate(180deg);
      }
    }

    .navbar-toggler {
      background: rgba(255, 255, 255, 0.65);
      border: 1px solid rgba(17, 17, 17, 0.2);
      border-radius: 999px;
      width: 38px;
      height: 38px;
      padding: 0;
      cursor: pointer;
      z-index: 1001;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.25s ease, border-color 0.25s ease;
    }
    .navbar-toggler:focus-visible {
      outline: 2px solid rgba(246, 178, 95, 0.75);
      outline-offset: 4px;
    }
    .navbar-toggler-icon {
      width: 22px;
      height: 16px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .toggler-line {
      width: 22px;
      height: 2px;
      background: #111;
      border-radius: 2px;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }
    .navbar-toggler.is-open { background: rgba(246, 178, 95, 0.18); border-color: rgba(246, 178, 95, 0.45); }
    .navbar-toggler.is-open .navbar-toggler-icon { position: relative; justify-content: center; }
    .navbar-toggler.is-open .toggler-line:nth-child(1), .navbar-toggler.is-open .toggler-line:nth-child(3) { position: absolute; left: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(1) { transform: rotate(45deg); }
    .navbar-toggler.is-open .toggler-line:nth-child(2) { opacity: 0; }
    .navbar-toggler.is-open .toggler-line:nth-child(3) { transform: rotate(-45deg); }

    .nav-search-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: 16px;
      width: min(520px, calc(100% - 32px));
      padding: 0.65rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.12);
      box-shadow: 0 18px 32px rgba(12, 16, 38, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      z-index: 20;
    }
    .nav-search-panel.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-search-form {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-search-input {
      flex: 1;
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.14);
      padding: 0.55rem 0.9rem;
      font-size: 0.85rem;
      font-family: inherit;
      background: rgba(255, 255, 255, 0.88);
    }
    .nav-search-input:focus {
      outline: 2px solid rgba(246, 178, 95, 0.6);
      outline-offset: 2px;
    }
    .nav-search-submit,
    .nav-search-clear {
      border-radius: 999px;
      border: 1px solid rgba(17, 17, 17, 0.18);
      background: rgba(255, 255, 255, 0.7);
      padding: 0.45rem 0.8rem;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.25s ease, border-color 0.25s ease;
      font-family: inherit;
    }
    .nav-search-submit:hover,
    .nav-search-clear:hover {
      background: rgba(246, 178, 95, 0.2);
      border-color: rgba(246, 178, 95, 0.45);
    }
    .nav-search-results {
      margin-top: 0.65rem;
      display: grid;
      gap: 0.35rem;
    }
    .nav-search-result {
      text-decoration: none;
      color: #1a2042;
      font-weight: 600;
      font-size: 0.82rem;
      padding: 0.5rem 0.7rem;
      border-radius: 10px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.86);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }
    .nav-search-result:hover,
    .nav-search-result:focus-visible {
      background: rgba(246, 178, 95, 0.18);
      border-color: rgba(246, 178, 95, 0.4);
    }
    .nav-search-empty {
      font-size: 0.8rem;
      color: #4a557a;
      padding: 0.4rem 0.2rem;
    }

    .mobile-nav {
      display: block;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 40px rgba(10, 13, 31, 0.22);
      padding: 0.7rem;
      border: 1px solid rgba(255, 255, 255, 0.55);
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      transform: translateY(-8px) scale(0.985);
      transform-origin: top center;
      pointer-events: none;
      transition: max-height 0.38s ease, opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }
    .mobile-nav::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 17px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14) 40%, rgba(255, 255, 255, 0.24));
    }
    .mobile-nav.is-open {
      max-height: 720px;
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .mobile-nav .navbar-nav {
      list-style: none;
      padding: 0.2rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      position: relative;
      z-index: 1;
    }
    .mobile-nav .nav-link {
      color: #111;
      width: 100%;
      justify-content: space-between;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.55);
    }
    .mobile-nav .nav-link:focus-visible {
      background: rgba(246, 178, 95, 0.16);
      border-color: rgba(246, 178, 95, 0.3);
      color: #111;
    }
    .mobile-nav .nav-link.active {
      border-color: rgba(246, 178, 95, 0.35);
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }
    .mobile-nav .nav-link::after { display: none; }
    .mobile-nav .nav-dropdown::after { display: none; }
    .mobile-nav .nav-dropdown-menu {
      position: static;
      min-width: 100%;
      margin-top: 0.25rem;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    .mobile-nav .nav-dropdown-menu.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      max-height: 320px;
      pointer-events: auto;
    }
    .mobile-nav .nav-dropdown-link {
      color: #111;
      border-radius: 10px;
      font-size: 0.74rem;
    }
    .mobile-nav .nav-dropdown-link:focus-visible,
    .mobile-nav .nav-dropdown-link.active {
      background: rgba(246, 178, 95, 0.18);
      color: #111;
    }
    @media (hover: hover) and (pointer: fine) {
      .mobile-nav .nav-link:hover {
        background: rgba(246, 178, 95, 0.16);
        border-color: rgba(246, 178, 95, 0.3);
        color: #111;
      }
      .mobile-nav .nav-dropdown-link:hover {
        background: rgba(246, 178, 95, 0.18);
        color: #111;
      }
    }

    .nav-link,
    .nav-dropdown-link,
    .nav-icon-button,
    .navbar-toggler {
      touch-action: manipulation;
    }

    @media (max-width: 1099px) {
      #wrapper-navbar {
        position: fixed;
        left: 0;
        right: 0;
        padding: 0 10px;
      }
      .navbar-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
      }
      .navbar-toggler {
        justify-self: start;
        order: 1;
      }
      .navbar-mobile-start {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        justify-self: start;
        order: 1;
      }
      .navbar-mobile-start .navbar-toggler {
        justify-self: auto;
        order: 0;
      }
      .nav-shop-icon {
        width: 18px;
        height: 18px;
      }
      .navbar-logo {
        justify-self: center;
        order: 2;
        margin: 0;
      }
      .navbar-logo img {
        height: 96px;
        border-radius: 16px;
      }
      .navbar-actions {
        justify-self: end;
        order: 3;
      }
      .nav-search-panel {
        right: 8px;
        width: min(520px, calc(100% - 16px));
      }
    }

    @media (min-width: 1100px) {
      .navbar-menu { display: flex; }
      .navbar-toggler { display: none; }
      .navbar-actions { display: none; }
      .navbar-mobile-start { display: none; }
    }

    /* Smooth visual transitions between stacked sections */

.navbar,
.navbar-menu,
.nav-link,
.nav-link-dropdown,
.nav-dropdown-link,
.mobile-nav {
  font-family: var(--font-body);
}

/* Product Form Styles (Global) */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 14px;
}
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #555e7d;
}
.select {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  background: #fff;
  color: #1c2550;
  appearance: auto;
  -webkit-appearance: auto;
}
