@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
header,
input,
button,
textarea,
select {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ══ TOP BAR ══ */
.the-five-top-bar {
  height: 34px;
  background: #000;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

.the-five-side-panel {}

.the-five-marquee {
  display: flex;
  width: 100%;
}

.the-five-marquee-content {
  display: flex;
  white-space: nowrap;
  animation: the-five-marquee-scroll 35s linear infinite;
}

.the-five-top-bar:hover .the-five-marquee-content {
  animation-play-state: paused;
}

.the-five-marquee-content span {
  color: white;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  margin: 0px 45px;
  cursor: default;
}

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

  100% {
    transform: translateX(-100%);
  }
}

.the-five-search-icon-search {
  width: 26px !important;
  height: 26px !important;
}

/* ══ HEADER ══ */
.the-five-site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #d8d6d0;
  transition: box-shadow 0.3s;
}

.the-five-site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.the-five-header-inner {
  padding: 0px 40px;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 10px auto 30px;
  max-width: 1440px;
}

/* Left */
.the-five-header-left {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Hamburger */
.the-five-hamburger-btn {
  background: transparent;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.the-five-hamburger-btn:hover {
  opacity: 0.5;
}

.the-five-hamburger-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: #000;
  transition: all 0.32s ease;
  transform-origin: center;
}

.the-five-hamburger-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.the-five-hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.the-five-hamburger-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Desktop nav */
.the-five-desktop-nav {
  display: flex;
  align-items: center;
}

.the-five-desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.the-five-desktop-nav-menu li {
  margin: 0;
}

.the-five-desktop-nav-menu li a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.the-five-desktop-nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.the-five-desktop-nav-menu li:hover>a::after,
.the-five-desktop-nav-menu li.current-menu-item>a::after,
.the-five-desktop-nav-menu li.current-menu-ancestor>a::after {
  transform: scaleX(1);
}

.the-five-desktop-nav-menu li:hover>a,
.the-five-desktop-nav-menu li.current-menu-item>a,
.the-five-desktop-nav-menu li.current-menu-ancestor>a {
  color: #c9a84c;
}

.the-five-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.the-five-nav-link {
  display: inline-block;
  padding: 0 13px;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  position: relative;

  transition: color 0.2s;
}

.the-five-nav-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: rgb(119 90 25 / 1);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.the-five-nav-item:hover .the-five-nav-link::after {
  transform: scaleX(1);
}

/* Logo */
.the-five-header-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.the-five-header-logo svg {
  height: 36px;
  width: auto;
}

.the-five-header-logo img {
  height: 75px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  transform: scale(1.2);
}

/* Right */
.the-five-header-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.the-five-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  transition: opacity 0.2s;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 !important;
}

.the-five-icon-btn:hover {
  opacity: 0.5;
}

.the-five-icon-btn svg {
  width: 20px;
  height: 20px;
}

.the-five-cart-badge {
  position: absolute;
  top: 6px;
  right: 3px;
  width: 14px;
  height: 14px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes the-five-menuFade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.the-five-menu-col {
  min-width: 130px;
}

.the-five-menu-col-title {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: capitalize;
  color: #888;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e6e1;
}

.the-five-menu-col ul {
  list-style: none;
}

.the-five-menu-col ul li {
  margin-bottom: 9px;
}

.the-five-menu-col ul li a {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #000;
  text-decoration: none;

  transition: color 0.15s;
}

.the-five-menu-col ul li a:hover {
  color: #888;
}

.the-five-menu-col ul li a.ital {
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
}

.the-five-menu-feature {
  margin-left: auto;
  flex-shrink: 0;
  width: 155px;
}

.the-five-menu-feature img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.the-five-menu-feature-cap {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  color: #888;
}

.the-five-menu-backdrop {
  display: none;
  position: fixed;
  top: calc(34px + 56px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 700;
}

#theFiveHambBtn {
  display: none;
}

.the-five-menu-backdrop.show {
  display: block;
}

/* ══ SHARED BLUR OVERLAY ══ */
.the-five-ov-bd,
#theFiveOvBd {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition:
    backdrop-filter 0.42s ease,
    background 0.42s ease;
}

.the-five-ov-bd.on,
#theFiveOvBd.on,
body:has(.the-five-side-panel.open) #theFiveOvBd,
body:has(.the-five-side-panel.open) .the-five-ov-bd {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(16px);
  transition:
    backdrop-filter 0.42s ease,
    background 0.42s ease;
  backdrop-filter: blur(16px);
}

/* ══ FLOATING PANEL BASE ══ */
.the-five-side-panel {
  position: fixed;
  top: 12px;
  bottom: 12px;
  width: 50%;
  background: #fff;
  border-radius: 5px;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── LEFT PANEL ── */
.the-five-left-panel {
  width: 20%;
  left: 12px;
  transform: translateX(calc(-100% - 12px - 24px));
}

.the-five-left-panel.open {
  transform: translateX(0);
  padding: 20px;
}

.the-five-mobile-nav ul {
  display: flex;
  gap: 10px;
  padding: 30px 0px;
  flex-direction: column;
  list-style: none;
  /* removes bullets/markers */
  margin: 0;
}

.the-five-mobile-nav .menu-link {
  color: #c9a84c;
  /* your custom color */
  text-decoration: none;
  /* optional: removes underline */
}

.the-five-mobile-nav .menu-link:hover {
  opacity: 0.8;
  /* optional hover effect */
}

.the-five-lp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #d8d6d0;
  flex-shrink: 0;
}

.the-five-lp-head-logo {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 6px;
  color: #000;
}

.the-five-panel-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  color: #000;

  padding: 0;
  transition: opacity 0.2s;
}

.the-five-panel-close-btn:hover {
  opacity: 0.5;
}

.the-five-lp-scroll {
  flex: 1;
  overflow-y: auto;
}

.the-five-lp-scroll::-webkit-scrollbar {
  width: 0;
}

/* Accordion items */
.the-five-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: #000;

  text-align: left;
  transition: background 0.15s;
}

.the-five-acc-btn:hover {
  background: #f5f4f2;
}

.the-five-acc-btn.no-arrow {
  justify-content: flex-start;
}

.the-five-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #000;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease;
}

.the-five-acc-item.open .the-five-chevron {
  transform: rotate(180deg);
}

.the-five-lp-scroll ul {
  list-style: none;
  padding: 6px 0 12px;
}

.the-five-lp-scroll ul li a {
  display: block;
  padding: 9px 22px 9px 34px;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #000;
  text-decoration: none;

  transition: color 0.15s;
}

.the-five-lp-scroll ul li a:hover {
  color: rgb(119 90 25 / 1);
}

.the-five-lp-scroll ul li a.ital {
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
}


.the-five-lp-foot {
  display: none;
}


/* =====================================
   INLINE EXPAND SEARCH (CLEAN)
===================================== */

.the-five-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* FORM */
.the-five-inline-search-form {
  position: absolute;
  right: 100%;
  /* 👈 expand to LEFT */
  top: 50%;
  transform: translateY(-50%) translateX(10px) !important;

  width: 0;
  overflow: hidden;
  opacity: 0;

  transition: all 0.35s ease !important;
}

/* Active state */
.the-five-search-wrapper.active .the-five-inline-search-form {
  width: 220px;
  /* 👈 control size */
  transform: translateY(-50%) translateX(0) !important;
  opacity: 1;
}

/* Input styling */
.the-five-inline-search-form input {
  width: 100%;
  height: 36px;

  padding: 0 12px;
  border-radius: 20px;

  border: 1px solid #e5e5e5;
  outline: none;

  background: #fff;
  color: #333;

  font-size: 14px;

  transition: all 0.25s ease !important;
}

/* Focus effect */
.the-five-inline-search-form input:focus {
  border-color: #6b5b4d;
  box-shadow: 0 0 0 2px rgba(107, 91, 77, 0.1);
}

/* Placeholder */
.the-five-inline-search-form input::placeholder {
  color: #999;
}

/* ACTIVE */
.the-five-search-wrapper.active .the-five-inline-search-form {
  width: 180px;
  margin-left: 8px;
}

/* FADE EFFECT */
.the-five-inline-search-form input {
  opacity: 0;
  transition: opacity 0.2s ease !important;
}

.the-five-search-wrapper.active input {
  opacity: 1;
}

/* ══ MOBILE ══ */
@media (max-width: 900px) {
  .the-five-desktop-nav {
    display: none;
  }

  .the-five-top-bar-center {
    display: none;
  }

  #theFiveHambBtn {
    display: flex;
  }

  .the-five-desktop-nav {
    display: none;
  }

  .the-five-left-panel {
    width: 50%;
  }

  .the-five-sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .the-five-header-inner {
    padding: 0px 40px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .the-five-header-logo {
    order: 1;
    margin-right: auto !important;
    justify-content: flex-start;
  }

  .the-five-header-right {
    margin-right: 10px !important;
    order: 2;
  }

  .the-five-header-left {
    order: 3;
  }
}

/* MOBILE FIX */
@media (max-width: 768px) {


  .the-five-header-logo img {
    height: 45px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transform: scale(1.2);
  }

  .the-five-inline-search-form input {
    width: 120px;
    font-size: 12px;
  }

  .the-five-search-wrapper.active .the-five-inline-search-form {
    width: 120px;
  }

  .the-five-header-inner {
    padding: 0px 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .the-five-search-wrapper {
    display: none !important;
  }

  .the-five-header-inner {
    padding: 0px 0px;
  }

  .the-five-sp-search-area {
    padding: 20px;
  }

  .the-five-lp-scroll ul li a {
    padding: 9px 22px 9px 22px;
  }

  .the-five-header-logo img {
    height: 50px;
    max-width: 150px;
  }

  .the-five-sp-row input {
    font-size: 12px;
  }

  .the-five-sp-row svg {
    width: 14px;
    height: 14px;
  }

  .the-five-header-inner {
    margin: 10px auto 10px;
  }

  .the-five-side-panel {
    width: 80%;
  }

  .the-five-left-panel {
    width: 70%;
  }

  .the-five-lp-foot {
    flex-shrink: 0;
    padding: 18px 22px;
    border-top: 1px solid #d8d6d0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .the-five-lp-foot a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: #000;
    text-decoration: none;

    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .the-five-lp-foot a:hover {
    color: rgb(119 90 25 / 1);
  }

  .the-five-lp-foot a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}