html,
body {
  overflow-x: hidden;
}

body {
  background-color: #fefae6;
  /* font-family: "Roboto Slab", sans-serif; */
  color: #434144;
}

a {
  color: #7a9e3e;
  /* text-decoration: none; */
}

/* Hide native number input spinners */
input[type=number].no-spinner::-webkit-outer-spin-button,
input[type=number].no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number].no-spinner {
  appearance: textfield;
  -moz-appearance: textfield;
}

.container {
  width: 100%;
  max-width: 1280px;
}

h1,
h2,
h3,
h4 {
  font-family: "Brawler", serif;
  color: #434144;
  text-transform: uppercase;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

.nav-link {
  font-family: "Brawler", serif;
  text-transform: uppercase;
  font-weight: 600;
  /* color: #434144; */
}
.nav-item {
  padding: 0.35rem;
}
.nav-item:hover {
  background-color: #7a9e3e;
  color: #ffffff !important;
}
.nav-link:hover {
  color: #ffffff !important;
}
.active {
  background-color: #7a9e3e;
  color: #ffffff !important;
}

.featured-img-1 {
  /* border-bottom: 5px solid #7A9E3E; */
  box-shadow: 9px 9px #7a9e3e;
}

.featured-img-2 {
  /* border-bottom: 5px solid #7A9E3E; */
  box-shadow: -9px 9px #7a9e3e;
}

.btn-primary {
  background-color: #7a9e3e;
  color: #ffffff !important;
  border-radius: 0;
  border: 0;
  width: 100%;
  max-width: 160px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.btn-primary:hover {
  background-color: #555555;
  color: #ffffff !important;
  border-radius: 0;
  border: 0;
}
.navbar-toggler {
  background-color: #7a9e3e !important;
  color: #ffffff !important;
  border: 0;
  border-radius: 0;
}

.text-green {
  color: #7a9e3e !important;
}
.text-light-green {
  color: #98b962 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-light {
  color: #fefae6 !important;
}
.w-20 {
  width: 18%;
}
.footer-small {
  color: #999999;
  font-size: 7pt;
}

.icon-button {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin: auto;
  background-color: #7a9e3e;
  border: 0;
}

.icon-button:hover {
  background-color: #555555;
  color: #ffffff !important;
}
.cart-icon-button {
  position: relative;
  overflow: visible;
}
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background-color: #cf4f4a;
  color: #ffffff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}
.h-0 {
  height: 0 !important;
}
.collections-div {
  background-color: #444444;
  color: #fefae6;
}
.hand {
  cursor: pointer;
}

.mobile {
  display: none;
  visibility: hidden;
}
.desktop {
  display: inline-block;
  visibility: visible;
}
.category-btn {
  /* box shadow blurred */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: filter 160ms ease;
  width: 95% !important;
}
.category-btn:hover {
  width: 100% !important;
  /** transition the width back to normal */
  transition: width 400ms ease;


}

@media (max-width: 990px) {
  .desktop {
    display: none;
    visibility: hidden;
  }
  .mobile {
    display: inline-block;
    visibility: visible;
  }
  .mobile .navbar-collapse {
    transition: none;
  }

  .mobile .navbar-collapse.show {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px; /* or top: <header-height>px if you want below header */
    width: 100%;
    height: 100vh; /* full height; change to auto if you prefer only content height */
    background: #444444; /* match your navbar background */
    color: #fefae6;
    z-index: 1050; /* above other content (Bootstrap modal z-index is 1050) */
    padding-top: 56px; /* push content below the header row if top:0 */
    overflow-y: auto;
  }

  /* Optional: make nav links centered and full width */
  .mobile .navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
}

@media (max-width: 525px) {
.mobile .navbar-collapse.show {
    top: 90px; /* or top: <header-height>px if you want below header */
  }
}

@media (max-width: 400px) {
.mobile .navbar-collapse.show {
    top: 70px; /* or top: <header-height>px if you want below header */
  }
}

/* Slight back-and-forth sway for an inline SVG */
.sway {
  display: inline-block;
  transform-origin: center;
  animation: sway 2.2s ease-in-out infinite;
  will-change: transform;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sway {
    animation: none;
  }
}

@keyframes sway {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(2px) rotate(1deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-2px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

/* Floating up chevron button */
.scroll-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7a9e3e;
  color: #fff;
  /* border-radius: 50%; */
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.35); */
  border: 0;
  z-index: 9999;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
  opacity: 0.95;
  -webkit-tap-highlight-color: transparent;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
  transform: translateY(-4px) scale(1.03);
  background: rgba(0, 0, 0, 0.85);
  outline: none;
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.99);
}

.scroll-to-top svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
  fill: currentColor;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top,
  .scroll-to-top:hover,
  .scroll-to-top:focus,
  .scroll-to-top:active {
    transition: none;
    transform: none;
  }
}
------------------------
/* Contact Page */
------------------------ */
body {
    /* Path to your file - ensure the name is exact */
    background-image: url('Asset 5.png');

    /* This forces the image to fill the screen width and height */
    background-size: cover;

    /* Keeps the image centered */
    background-position: center;

    /* Stops the image from tiling */
    background-repeat: no-repeat;

    /* This keeps the background from moving when you scroll */
    background-attachment: fixed;

    /* Ensures the body takes up at least the full height of the screen */
    margin: 0;
    min-height: 100vh;
    
    /* Full visibility */
    opacity: 1;
}


 /* Images/media should never force width */
  img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }

/* Layout Container */
.location-details {
    padding: 20px 20px;
    padding-bottom: 20px; /* Adds space between the content and the dashed line */
    margin-bottom: 5px;  /* Adds space after the line before the next section starts */
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
    border-bottom: 2px dashed #7a7a7a;
    padding-bottom: 50px;
}

/* Responsive Columns */
.grid-column {
    flex: 1;
    min-width: 280px;
}

/* Media Elements */
.grid-column iframe, 
.grid-column img {
    width: 80%;
        display: block;
    border-radius: 0px;
    border: none;
    aspect-ratio: auto 520 / 350;
}

/* NEW: Icon Circle and Heading Alignment */
.address-header {
    display: flex;
    font-size: 16px;
    align-items: center; /* Vertically centers the text with the circle */
    margin-bottom: 2px;
    justify-content: flex-start; /* Left aligns everything */
}

.icon-circle {
    background-color: #7a9e3e; /* Green Circle Background */
    width: 25px; /* Adjust size as needed */
    height: 25px;
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    justify-content: center; /* Centers icon inside circle */
    align-items: center;
    margin-right: 15px; /* Space between circle and text */
}

.icon-circle svg {
    width: 13px; /* Adjust icon size inside circle */
    height: 13px;
    fill: #fff9e3; /* Creamy Icon Color */
}

/* Typography Spacing */
.address-header h3 {
    margin: 0; /* Important to keep it aligned with the circle */
    font-size: 16px;
}

.address-details address {
    font-style: normal;
    line-height: 1.6;
        color: #333;
    padding-left: 40px; /* Optional: Aligns text with the heading, accounting for circle + margin */
}

/* Container Spacing */
.contact-column {
    padding: 20px;
}

.contact-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* List Styling */
/* Centers the list and places items side-by-side */
.contact-list {
    display: flex;
    flex-direction: row; /* Aligns items horizontally */
    justify-content: center; /* Centers the row on the page */
    flex-wrap: wrap; /* Allows stacking if the screen is too narrow */
    gap: 40px; /* Adds consistent spacing between the two contact blocks */
    list-style: none;
    padding: 30px;
    margin: 0;
}

/* Individual contact item styling */
.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.contact-item a:hover {
    opacity: 0.8;
}

/* Matching the Location Icon Style */
.icon-circle.small {
    background-color: #7a9e3e; /* Your Green */
    width: 25px; /* Adjust size as needed */
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0; /* Prevents circle from squishing */
}

.icon-circle.small svg {
    width: 13px;
    height: 13px;
    fill: #fff9e3; /* Your Cream color */
}

.contact-text {
    font-size: 1rem;
    line-height: 1;
}