/** Shopify CDN: Minification failed

Line 9:22 Comments in CSS use "/* ... */" instead of "//"
Line 1071:0 Expected "}" to go with "{"

**/
@font-face {
  font-family: 'Gotham-Black';
  src: url('{{ '/cdn/shop/files/Gotham-Black.woff2?v=1747803733' | file_url }}') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Headings (H2–H6): Gotham Black */
h2, h3, h4, h5, h6 {
  font-family: 'Gotham-Black', sans-serif !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: all;
}

/* Overlay covers the whole page but is behind the panel */
.cart-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}

/* Cart panel slides in and sits above overlay */
.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10001;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}

/* Base header styling - UPDATED FOR RESPONSIVENESS */
.tanaka-header-wrapper {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #fff;
  --header-height: auto;
}

.tanaka-header-wrapper.transparent {
  background-color: transparent;
}

.tanaka-header-wrapper.transparent.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Announcement bar */
.announcement-bar {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 101;
}

a.announcement-bar {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a.announcement-bar:hover {
  opacity: 0.9;
}

div.announcement-bar {
  cursor: default;
}

.announcement-marquee {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation-name: marquee-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .announcement-bar {
    font-size: 13px;
    padding: 6px 0;
  }
}

/* RESPONSIVE HEADER LAYOUT */
.tanaka-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 40px);
  gap: clamp(10px, 2vw, 20px);
}

.tanaka-header-left {
  flex: 0 0 auto;
}

.hana-field-logo {
  width: 100px !important;
  height: 100px !important;
}

/* RESPONSIVE LOGO */
.header-logo {
  height: clamp(60px, 8vw, 100px);
  width: auto;
  transition: height 0.3s ease;
}

.transparent-logo {
  display: block;
}

.solid-logo {
  display: none;
}

.scrolled .transparent-logo {
  display: none;
}

.scrolled .solid-logo {
  display: block;
}

.tanaka-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.header-bottom-row {
  display: flex;
  align-items: center;
  min-height: 50px;
  overflow: visible;
}

/* RESPONSIVE CTA BUTTONS */
.header-buttons {
  display: flex;
  gap: clamp(8px, 1vw, 10px);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: none;
}

.btn-visit {
  background-color: #CF6B38;
  color: white;
  padding: clamp(8px, 1vw, 10px);
  border-radius: 0px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-visit:hover {
  background-color: #CF6B38;
}

.btn-membership {
  background-color: #f4cb00;
  color: #222;
  padding: clamp(8px, 1vw, 10px);
  border-radius: 0px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-membership:hover {
  background-color: #e5be00;
}

/* Desktop Nav Menu - RESPONSIVE */
.tanaka-nav {
  display: flex;
  align-items: center;
  min-height: 50px; /* Ensure enough vertical space */
  overflow: visible;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(5px, 1vw, 15px);
  flex-wrap: nowrap;
  align-items: center; /* Ensure items are vertically centered */
  overflow: visible; /* Allow carets to be visible */
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px; /* Ensure minimum height */
}

/* RESPONSIVE MENU FONT SIZES */
.menu-item a {
  text-decoration: none;
  color: black;
  font-size: clamp(1rem, 1.5vw, 2.2rem);
  transition: color 0.2s ease;
  text-transform: capitalize;
  font-family: Gotham-Black, sans-serif !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  line-height: 1.2; /* Better line height for carets */
}


.menu-item a:hover {
  color: #CF6B38 !important;
}

/* DESKTOP MENU CARETS */
.nav-menu .menu-item.has-dropdown .caret {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  transition: transform 0.2s ease;
  vertical-align: middle;
  flex-shrink: 0; /* Prevent caret from shrinking */
  min-width: 16px; /* Ensure minimum space for caret */
  height: 16px;
  justify-content: center;
}

.nav-menu .menu-item.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

.nav-menu .menu-item.has-dropdown .caret svg {
  width: 10px;
  height: 6px;
  fill: currentColor;
}

.transparent:not(.scrolled) .menu-item .caret svg {
  fill: black;
}

.menu-item:hover .caret svg {
  fill: #CF6B38;
}

.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu li {
  margin-bottom: 10px;
  color: black;
}

.mega-menu li a {
  font-size: 1.5rem;
  color: white !important;
  transition: color 0.2s;
}

.mega-menu li a:hover {
  color: #CF6B38 !important;
}

.mega-menu li:last-child {
  margin-bottom: 0;
}

/* Style for current/active menu item */
.menu-item.current-menu-item a {
  color: #CF6B38 !important; /* Your hover color */
  position: relative;
}

/* Optional: Add an underline or other indicator */
.menu-item.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #CF6B38;
  border-radius: 1px;
}

/* Style for current submenu item - MORE SPECIFIC */
.mega-menu li.current-submenu-item a {
  color: #CF6B38 !important;
  font-weight: 600;
}


/* Make sure the caret also gets the active color */
.menu-item.current-menu-item .caret svg {
  fill: #CF6B38 !important;
}

/* Maintain active state even on hover */
.menu-item.current-menu-item:hover a {
  color: #CF6B38 !important;
}

.menu-item.current-menu-item:hover .caret svg {
  fill: #CF6B38 !important;
}

/* For transparent header, maintain active state */
.transparent:not(.scrolled) .menu-item.current-menu-item a {
  color: #CF6B38 !important;
}

.transparent:not(.scrolled) .menu-item.current-menu-item .caret svg {
  fill: #CF6B38 !important;
}

/* RESPONSIVE NAV ICONS */
.nav-icons {
  display: flex;
  align-items: center;
  margin-left: clamp(15px, 2vw, 25px);
  gap: clamp(10px, 1.5vw, 15px);
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.icon-button svg {
  transition: fill 0.2s ease;
  fill: #222;
}

.transparent:not(.scrolled) .icon-button svg {
  fill: #000;
}

.icon-button:hover svg {
  fill: #CF6B38;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #CF6B38;
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Hide hamburger on desktop */
.hamburger-icon {
  display: none;
}

/* RESPONSIVE SEARCH DROPDOWN */
.search-dropdown-under-logo {
  position: absolute;
  top: clamp(134px, 12vw + 20px, 179px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  opacity: 0;
  background-color: white;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-dropdown-under-logo.visible {
  opacity: 1;
  visibility: visible;
}

.search-form-under-logo {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  position: relative;
}

.search-dropdown-under-logo input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 1.2rem;
  border: 2px solid #0faa61;
  background: white;
  outline: none;
  border-radius: 8px;
}

#closeSearch {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #777;
  line-height: 1;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10000;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  margin: auto 0;
  padding: 40px 0;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: auto;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: #0faa61;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-checkout:hover {
  background-color: #CF6B38;
}

.close-button {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  color: #777;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: white;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-drawer-header img {
  max-height: 80px;
}

.mobile-nav-menu {
  margin: 0;
  padding: 0px 0;
  list-style: none;
  flex: 0.86;
  overflow-y: auto;
}

.mobile-menu-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-item a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.mobile-menu-item details {
  position: relative;
}

.mobile-menu-item summary {
  padding: 12px 20px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  position: relative;
}

.mobile-menu-item summary:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 12px;
}

.mobile-menu-item details[open] summary:after {
  content: '−';
}

.mobile-menu-item details ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0px 20px;
  background: #f7f7f7;
}

.mobile-menu-item details li {
  margin: 0;
}

.mobile-menu-item details a {
  padding: 8px 20px;
  font-size: 1.5rem;
}

.mobile-cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #eee;
}

.btn-primary {
  display: block;
  background: #5CA666;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-secondary {
  display: block;
  border: 2px solid #f4cb00;
  background-color: #f4cb00;
  color: #222;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
}

/* RESPONSIVE BREAKPOINTS */
@media screen and (max-width: 1200px) {
  .header-top-row {
    margin-bottom: 10px;
  }
  
  .nav-menu {
    gap: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .hamburger-icon {
    display: flex !important;
  }

  .desktop-nav {
    display: none !important;
  }
  
  .header-top-row {
    display: none;
  }
    /* Hamburger icon (2-line) */
  .hamburger-icon {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 15px;
    height: 7px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 110;
  }
  
  .hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 1px;
    transition: transform 0.3s ease;
  }

  .transparent:not(.scrolled) .hamburger-icon span {
    background: #000;
  }
}

/* Mobile styles */
@media screen and (max-width: 769px) {
  .tanaka-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "burger logo icons";
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
  }

  .header-logo {
    height: clamp(70px, 12vw, 100px);
  }

  .hamburger-icon {
    display: flex;
    grid-area: burger;
    z-index: 10005;
    justify-self: start;
  }
  
  .tanaka-header-left {
    grid-area: logo;
    text-align: center;
    justify-self: center;
    margin: 0;
  }

  .tanaka-header-right {
    grid-area: icons;
    justify-self: end;
  }

  .header-top-row {
    display: none;
  }

  .header-bottom-row {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    display: none !important;
  }
  
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 0;
  }

  /* Hamburger icon (2-line) */
  .hamburger-icon {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 15px;
    height: 7px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 110;
  }
  
  .hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 1px;
    transition: transform 0.3s ease;
  }

  .transparent:not(.scrolled) .hamburger-icon span {
    background: #000;
  }
  .search-dropdown-under-logo {
    top: clamp(100px, 15vw + 20px, 130px);
  }
}

/* Better small screen handling */
@media screen and (max-width: 480px) {
  .search-dropdown-under-logo {
    top: clamp(126px, 15vw + 20px, 130px);
  
  .tanaka-header {
    padding: 8px 15px;
    gap: 8px;
  }
  
  .header-logo {
    height: clamp(60px, 15vw, 80px);
  }
  
  .nav-icons {
    gap: 8px;
  }
  
  .icon-button svg {
    width: 20px;
    height: 20px;
  }
}

.hamburger-icon.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-icon.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Utility classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body {
  padding-top: 100px;
  overflow-x: hidden;
}

body.home {
  padding-top: 0;
}

/* Hide Chrome/Edge's default search clear button */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
  .hamburger-icon {
    display: flex !important;
    width: 15px;
    height: 10px;
  }
  
  .mobile-drawer {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-backface-visibility: hidden;
  }
}

.cart-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-item-image {
  width: 64px;
  height: auto;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin: 0 0 4px 0;
}

.cart-item-qty-price {
  font-size: 0.9rem;
  color: #666;
}

/* Container queries support (if available) */
@supports (container-type: inline-size) {
  .tanaka-header {
    container-type: inline-size;
  }
  
  @container (max-width: 768px) {
    .desktop-nav {
      display: none !important;
    }
  }
  /* ADD THIS TO YOUR EXISTING CSS - STRONGER RULES TO HIDE EXTRA X */

/* Hide ALL browser default search clear buttons more aggressively */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
}

/* Hide any extra close buttons in search dropdown (but keep #closeSearch) */
.search-dropdown-under-logo button:not(#closeSearch),
.search-dropdown-under-logo .close:not(#closeSearch),
.search-dropdown-under-logo .close-btn:not(#closeSearch) {
  display: none !important;
}

/* Hide any X symbols that might be pseudo-elements */
.search-dropdown-under-logo *:not(#closeSearch)::before,
.search-dropdown-under-logo *:not(#closeSearch)::after {
  content: none !important;
}

/* Make sure only YOUR close button shows */
#closeSearch {
  display: block !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  font-size: 1.8rem !important;
  cursor: pointer !important;
  color: #777 !important;
  line-height: 1 !important;
  z-index: 10 !important;
}

/* Hide any other elements that might be creating the extra X */
.search-form-under-logo button:not(#closeSearch),
.search-form-under-logo .clear-search:not(#closeSearch) {
  display: none !important;
}

/* Force hide input clear buttons on all browsers */
input[type="text"]::-ms-clear,
input[type="email"]::-ms-clear,
input[type="search"]::-ms-clear {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Mozilla Firefox clear button */
input[type="search"]::-moz-search-cancel-button {
  -moz-appearance: none !important;
  display: none !important;
}
}

