/* Floating Cart Icon */
.floating-cart {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.floating-cart:hover {
  box-shadow: 0 8px 32px rgba(240,84,35,0.18);
  background: #fff7f2;
  transform: scale(1.08) rotate(-8deg);
}
.floating-cart img {
  width: 38px;
  height: 38px;
  transition: transform 0.2s;
}
.floating-cart:hover img {
  transform: scale(1.15) rotate(-8deg);
}
@media (max-width: 600px) {
  .floating-cart {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 12px;
  }
  .floating-cart img {
    width: 28px;
    height: 28px;
  }
}
/* Reset and protect navbar paddings from page styles */
#navbar-include, .navbar {
  all: unset;
  display: block;
}
.navbar {
  width: 100vw !important;
  box-sizing: border-box !important;
  padding: 12px 10px !important;
  margin: 0 !important;
  background: #fff;
  border-bottom: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

@media (min-width: 769px) {
  .navbar {
    padding: 20px 20px !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 100vw !important;
    left: 0;
    right: 0;
    position: relative;
    min-width: 0;
    max-width: 100vw;
  }
}

/* Cart count badge styles for navbar */
.cart-count {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #e56b45;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  margin-left: 4px;
    transition: color 0.2s;
  }

  .mobile-menu a:hover {
  color: #FF4713;
}
.mobile-menu a:active,
.mobile-menu a:focus {
  color: #FF4713;
  color: #FF4713;
  }
.cart-count:empty {
  display: none !important;
  background: none !important;
  color: inherit !important;
  min-width: 0 !important;
  height: 0 !important;
  border-radius: 0 !important;
  opacity: 0 !important;
}
/* Ensure Font Awesome icons display correctly */
i, .fa, .fas, .fab, .far {
  font-family: var(--fa-style-family, "Font Awesome 6 Free"), "Font Awesome 5 Free", "FontAwesome", Arial, sans-serif !important;
  font-weight: var(--fa-style, 900) !important;
}
/* Open Sauce One Font Faces */
@font-face {
  font-family: 'Open Sauce One';
  src: url('/public/assets/fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('/public/assets/fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('/public/assets/fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('/public/assets/fonts/OpenSauceOne-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('/public/assets/fonts/OpenSauceOne-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Add more weights/styles as needed */

html, body, * {
  font-family: 'Open Sauce One', 'Open Sans', Arial, sans-serif !important;
}
/* Navbar Base */
.navbar {
    padding: 12px 10px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 10px;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Links - Centered in Desktop */
.nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #FF4713;
}

/* Hamburger (Hidden in Desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #FF4713;
  border-radius: 2px;
}

/* Mobile Menu (Hidden Default) */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px; /* Reduced from 260px */
  min-width: 160px; /* Reduced from 180px */
  max-width: 75vw; /* Reduced from 90vw */
  padding: 24px 18px 12px 18px;
  border-radius: 12px 0 0 12px;
}

.mobile-menu a {
  padding: 14px 12px;
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  font-weight: lighter;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    z-index: 1002 !important;
    margin-bottom: 0 !important;
  }
  body {
    margin-top: 64px !important; /* Adjust to navbar height */
  }
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}