/** Shopify CDN: Minification failed

Line 48:0 All "@import" rules must come first

**/
/*
==============================================
0. SHOPIFY SECTION OVERRIDES (Add this at the very top)
==============================================
*/

/* Remove default Shopify section spacing */
.shopify-section {
  margin: 0;
  padding: 0;
}

/* Ensure header section is full width without grid gaps */
.shopify-section--header,
#shopify-section-header,
.shopify-section[id*="header"] {
  display: block;
  width: 100%;
}

/* Same for footer */
.shopify-section--footer,
#shopify-section-footer,
.shopify-section[id*="footer"] {
  display: block;
  width: 100%;
}

/* Reset any default body/html margins that might cause gaps */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/*
==============================================
1. FONT IMPORTS & GENERAL STYLING
==============================================
*/
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Instrument Sans', sans-serif;
}

/*
==============================================
2. HEADER STRUCTURE & LAYOUT
==============================================
*/
.site-header,
.header-top-bar,
.header-nav-bar {
  width: 100%;
  box-sizing: border-box;
}

.header-top-bar {
  background-color: #69391E;
  padding: 12px 0;
}

.header-nav-bar {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 70px;
  display: block;
}

/*
==============================================
3. HEADER COMPONENTS
==============================================
*/

/* --- Search Bar with Icon Inside --- */
.header-search {
  flex-grow: 1;
  max-width: 550px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input[type="search"] {
  width: 100%;
  height: 42px;
  padding: 10px 55px 10px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  font-family: 'Instrument Sans', sans-serif;
}

.header-search input[type="search"]::placeholder {
  color: #999;
}

.header-search input[type="search"]:focus {
  outline: none;
  border-color: #FF9D0B;
}

.header-search .search-icon-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #FF9D0B;
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.header-search .search-icon-button:hover {
  background-color: #e68a00;
}

.header-search .search-icon-button img {
  height: 20px;
  width: auto;
}

/* --- Top Right Icons (Cart, Account) --- */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-icons .header-cart-link,
.header-icons .header-account-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
  position: relative;
  transition: opacity 0.3s ease;
}

.header-icons .header-cart-link:hover,
.header-icons .header-account-link:hover {
  opacity: 0.8;
}

.header-icons img {
  height: 26px;
  margin-bottom: 3px;
}

/* --- Cart Notification Badge --- */
.header-cart-link span {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #FF9D0B;
  color: white;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  box-sizing: border-box;
}

/*
==============================================
4. MAIN NAVIGATION MENU
==============================================
*/
.header-nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 14px 0;
}

.header-nav-bar ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-nav-bar ul li img {
  height: 22px;
}

/* This is your new code */
.header-nav-bar ul li a:hover,
.header-nav-bar ul li a.active {
  color: #FF9D0B;
}

/* Hide mobile close button on desktop */
.mobile-menu-close {
  display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* -- Account Dropdown Menu -- */
.account-dropdown-container {
  position: relative;
  display: inline-block;
}

.account-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.account-dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 1000;
  margin-top: 8px;
}

.account-dropdown-menu.active {
  display: block; /* Shown with JS */
}

.account-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.account-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.account-dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

/* White hamburger for mobile (on brown background) */
@media (max-width: 768px) {
  .mobile-menu-toggle span {
    background-color: white;
  }
}

/*
==============================================
5. RESPONSIVE DESIGN
==============================================
*/

/* Tablet Layout */
@media (max-width: 1024px) {
  .header-container {
    width: 95%;
  }

  .header-search {
    max-width: 400px;
  }

  .header-nav-bar ul {
    gap: 25px;
  }

  .header-nav-bar ul li a {
    font-size: 15px;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  .header-top-bar {
    padding: 12px 0;
  }

  .header-container {
    gap: 15px;
  }

  .header-logo img {
    height: 35px;
  }

  /* Hide search bar completely on mobile */
  .header-search {
    display: none;
  }

  /* Icons smaller on mobile */
  .header-icons {
    gap: 15px;
  }

  .header-icons img {
    height: 22px;
  }

  .header-icons .header-cart-link span,
  .header-icons .header-account-link span {
    font-size: 11px;
  }

  /* Position hamburger in top bar */
  .mobile-menu-toggle {
    display: flex !important;
    order: -1; /* Place before logo */
  }

  .header-top-bar .header-container {
    display: flex;
    align-items: center;
  }

  /* Hide the navigation bar on mobile (menu will be overlay) */
  /* Hide the navigation bar on mobile (menu will be overlay) */
.header-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  z-index: 1000;
}

.header-nav-bar .header-container {
  display: block;
}

  /* Mobile navigation menu */
  .header-nav-bar ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 20px 0;
    gap: 0;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 1000;
    display: flex !important;
  }

  .header-nav-bar ul.mobile-menu-open {
    left: 0;
  }

  .header-nav-bar ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu-close {
  display: block !important;
}

  .header-nav-bar ul li.mobile-menu-close {
    border-bottom: 2px solid #ddd;
    padding: 15px 25px;
  }

  .close-menu-btn {
    background: none;
    border: none;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 0;
  }

  .header-nav-bar ul li a {
    padding: 18px 25px;
    width: 100%;
    font-size: 16px;
  }

  .header-nav-bar ul li a:hover {
    background-color: #f9f9f9;
  }

  /* Mobile menu overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    display: block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .header-logo img {
    height: 30px;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons img {
    height: 20px;
  }

  .header-icons .header-cart-link span,
  .header-icons .header-account-link span {
    font-size: 10px;
  }

  .header-search input[type="search"] {
    font-size: 13px;
    padding: 8px 50px 8px 15px;
  }
}