:root {
  --nav-bg: #2C1F0E;
  --primary: #2C1F0E;
  --olive: #B8860B;
  --dark-olive: #8B6508;
  --gold-bright: #D4A017;
  --gold-muted: #C49A1A;
  --gold-light: #E8C96A;
  --gold-pale: #F5DFA0;
  --section-dark: #F7EDD8;
  --section-mid: #F2E4C4;
  --section-warm: #EDD9A8;
  --section-cream: #FBF5E6;
  --beige: #F2E4C4;
  --cream: #FBF5E6;
  --cream-dark: #EDD9A8;
  --border: rgba(184, 134, 11, .35);
  --border-bright: rgba(212, 160, 23, .60);
  --border-dark: rgba(184, 134, 11, .18);
  --text: #2C1F0E;
  --text-light: #FBF5E6;
  --text-muted: rgba(44, 31, 14, .60);
  --muted: rgba(44, 31, 14, .60);
  --shadow: 0 20px 60px rgba(44, 31, 14, .12);
  --shadow-lg: 0 32px 80px rgba(44, 31, 14, .20);
  --shadow-card: 0 8px 32px rgba(44, 31, 14, .10);
  --r: 12px;
  --r-sm: 6px;
  --r-pill: 50px;
  --fd: '';
  --fb: 'Jost', sans-serif;
  --ease: all .4s cubic-bezier(.165, .84, .44, 1);
}

.exclusive-footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 3% 0;
}

.exclusive-footer {
  background: #1C1008;
  border-top: 1px solid rgba(184, 134, 11, 0.30);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: var(--fb);
  max-width: 100%;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--olive);
  border-radius: 6px;
}

#Shop-page-wrapper,
.Shop-Banner,
.Shop-layout {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: none;
}

#NavBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(184, 134, 11, .12);
  z-index: 1000;
  transition: transform .35s ease;
  will-change: transform;

}

.Sub-Navbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 5%;
  height: 70px;
  max-width: 1600px;
  margin: 0 auto;
}

.Logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.Logo span {
  color: var(--olive);
}

.NavLinks {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.NavLinks a {
  color: rgba(238, 234, 228, .75);
  font-size: .75rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
}

.NavLinks a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width .3s;
}

.NavLinks a:hover,
.NavLinks a.nav-active {
  color: var(--olive);
}

.NavLinks a:hover::after,
.NavLinks a.nav-active::after {
  width: 100%;
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 220px;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(184, 134, 11, .5);
  font-size: .75rem;
  pointer-events: none;
}

.SearchBar {
  width: 100%;
  padding: 8px 12px 8px 30px;
  background: rgba(44, 31, 14, .55);
  border: 1px solid rgba(184, 134, 11, .2);
  border-radius: var(--r-sm);
  color: var(--beige);
  font-size: .78rem;
  outline: none;
  transition: border-color .3s;
}

.SearchBar:focus {
  border-color: var(--olive);
}

.SearchBar::placeholder {
  color: rgba(227, 219, 187, .38);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
  display: none;
  z-index: 3000;
  overflow: hidden;
}


.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(184, 134, 11, .15);
  transition: background .2s;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(212, 160, 23, .12);
}

.suggestion-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #3D2C05;
  flex-shrink: 0;
}

.suggestion-info {
  flex: 1;
  min-width: 0;
}

.suggestion-title {
  font-size: .82rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-category {
  font-size: .67rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .5;
  margin-top: 1px;
  color: var(--gold-light);
}

.suggestion-price {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 8px;
}







.NavRight {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--olive);
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color .25s, background .25s;
}

.nav-icon-btn:hover {
  color: var(--cream);
  background: rgba(184, 134, 11, .12);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--olive);
  color: var(--nav-bg);
  border-radius: 50px;
  font-size: .55rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.cart-badge.show {
  display: flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--nav-bg);
  border-top: 1px solid rgba(184, 134, 11, .12);
  padding: 16px 5% 20px;
  gap: 0;
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  color: rgba(238, 234, 228, .78);
  padding: 12px 0;
  font-size: .82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 134, 11, .08);
  transition: color .25s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.nav-active {
  color: var(--olive);
}

.mobile-nav a.nav-active {
  padding-left: 10px;
  border-left: 2px solid var(--olive);
}

.user-dropdown-wrap {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 2000;
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.user-dropdown-header {
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.user-dropdown-header p {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 3px;
}

.user-dropdown-header strong {
  font-family: var(--fd);
  font-size: 1.05rem;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  font-size: .82rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background .18s, padding-left .18s;
  color: var(--text);
}

.user-dropdown-item:last-child {
  border-bottom: none;
}

.user-dropdown-item:hover {
  background: var(--cream-dark);
  padding-left: 22px;
}

.user-dropdown-item i {
  width: 16px;
  text-align: center;
  color: var(--olive);
  font-size: .82rem;
}

#Shop-page-wrapper {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--cream);
}

.Shop-Banner {
  height: 340px;
  background: linear-gradient(to bottom, rgba(26, 28, 16, .7) 0%, rgba(26, 28, 16, .25) 50%, rgba(26, 28, 16, .7) 100%),
    url('../../Images/Banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.Shop-Banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--cream), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.Shop-banner-inner {
  position: relative;
  z-index: 1;
  animation: fadeUp .9s cubic-bezier(.165, .84, .44, 1) both;
}

.Shop-banner-label {
  display: block;
  font-size: .68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.Shop-banner-inner h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.Shop-banner-inner h1 em {
  color: var(--olive);
  font-style: italic;
}

.Shop-banner-inner p {
  font-size: .88rem;
  color: rgba(247, 242, 227, .7);
  letter-spacing: .5px;
}

.Shop-layout {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 5%;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
  min-height: 100vh;
}
#Shop-page-wrapper {
  overflow: visible; /* override any inherited overflow */
}

.Shop-layout > section {
  min-height: 600px; /* ensures the section is tall enough for sticky to activate */
}
.Shop-layout>* {
  min-width: 0;
}

.Shop-Sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

.sb-label {
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 8px;
}

.sb-search-wrap {
  position: relative;
}

.sb-search-wrap i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(44, 31, 14, .3);
  font-size: .78rem;
  pointer-events: none;
}

#Shop-searchFilter {
  width: 100%;
  padding: 10px 10px 10px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .84rem;
  color: var(--text);
  outline: none;
  transition: border-color .25s;
}

#Shop-searchFilter:focus {
  border-color: var(--olive);
}

#Shop-searchFilter::placeholder {
  color: rgba(44, 31, 14, .32);
}

#Shop-categoryFilter,
#Shop-sortPrice {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--text);
  outline: none;
  cursor: pointer;
}

#Shop-categoryFilter:focus,
#Shop-sortPrice:focus {
  border-color: var(--olive);
}

.sb-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-price-row>* {
  min-width: 0;
}

.sb-price-row input {
  flex: 1;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .82rem;
  color: var(--text);
  outline: none;
  transition: border-color .25s;
  min-width: 0;
  width: 0;
}

.sb-price-row input:focus {
  border-color: var(--olive);
}

.sb-price-row input::placeholder {
  color: rgba(44, 31, 14, .32);
  font-size: .78rem;
}

.sb-price-row span {
  font-size: .78rem;
  color: var(--muted);
  flex-shrink: 0;
}

.sb-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-btn-apply {
  padding: 12px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .25s;
}

.sb-btn-apply:hover {
  background: var(--dark-olive);
}

.sb-btn-reset {
  padding: 12px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s;
}

.sb-btn-reset:hover {
  background: var(--cream-dark);
  border-color: var(--text);
}

.Shop-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.Shop-grid-header h2 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}

.Shop-result-count {
  font-size: .76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#Shop-productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

#Shop-productGrid>* {
  min-width: 0;
}

.shop-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  width: 100%;
  min-width: 0;
}

.shop-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive);
}

.shop-card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  cursor: pointer;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.165, .84, .44, 1);
}

.shop-card:hover .shop-card-img img {
  transform: scale(1.07);
}

.shop-disc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--olive);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.shop-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shop-card-cat {
  font-size: .64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-olive);
}

.shop-card-name {
  font-family: var(--fd);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}

.shop-card-prices {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.shop-old-price {
  text-decoration: line-through;
  color: rgba(44, 31, 14, .35);
  font-size: .82rem;
}

.shop-new-price {
  font-family: var(--fd);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
}

.shop-card-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.shop-card-btns button {
  flex: 1;
  padding: 10px 6px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: all .22s;
}

.btn-add-cart {
  background: var(--primary);
  color: var(--cream);
}

.btn-add-cart:hover {
  background: var(--dark-olive);
}

.btn-quick-view {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border) !important;
}

.btn-quick-view:hover {
  background: var(--cream-dark);
  border-color: var(--olive) !important;
}

.shop-no-results {
  grid-column: 1/-1;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.shop-no-results i {
  font-size: 2.8rem;
  color: rgba(44, 31, 14, .12);
}

.shop-no-results p {
  font-size: .9rem;
  color: var(--muted);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 28, 16, .78);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: modalFade .3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  background: var(--cream);
  width: 100%;
  max-width: 880px;
  padding: 44px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalUp .35s cubic-bezier(.165, .84, .44, 1);
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.modal-image-wrap {
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--olive);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.modal-content-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-cat {
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark-olive);
}

.modal-title {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-price-row .old-price {
  text-decoration: line-through;
  color: rgba(44, 31, 14, .38);
  font-size: .9rem;
}

.modal-price-row .cur-price {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.modal-price-badge {
  background: var(--primary);
  color: var(--olive);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
}

.specs-label {
  font-size: .67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-olive);
  margin-bottom: 6px;
}

.specs-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.specs-list li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.specs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
}

.size-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.size-selector label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.size-selector select {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .83rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
}

.add-to-cart-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.qty-btn {
  width: 40px;
  height: 42px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: var(--beige);
}

.qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  flex-shrink: 0;
}

.add-btn {
  flex: 1;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: var(--r-sm);
  padding: 11px 18px;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.add-btn:hover:not(:disabled) {
  background: var(--dark-olive);
  transform: translateY(-1px);
}

.add-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.modal-sku {
  font-size: .67rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(44, 31, 14, .3);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(44, 31, 14, .3);
  transition: color .2s, transform .3s;
}

.close-btn:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.stock-warning {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff4e0;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: var(--r-sm);
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 500;
  width: 100%;
  flex-wrap: wrap;
}

.stock-warning i {
  color: #f59e0b;
  font-size: .8rem;
  flex-shrink: 0;
}

.stock-warning.out-of-stock {
  background: #fdf0ef;
  color: #c0392b;
  border-color: #f5c6c6;
}

.stock-warning.out-of-stock i {
  color: #c0392b;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 28, 16, .52);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  max-width: 100vw;
  height: 100%;
  background: var(--cream);
  z-index: 1200;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(0, 0, 0, .15);
  will-change: transform;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-head h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: rgba(44, 31, 14, .32);
  line-height: 1;
  transition: color .2s, transform .3s;
}

.cart-close-btn:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(44, 31, 14, .28);
  gap: 12px;
}

.cart-empty i {
  font-size: 2.5rem;
}

.cart-empty p {
  font-size: .88rem;
}

@keyframes cartIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  position: relative;
  animation: cartIn .3s ease;
}

.cart-item-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.cart-item-size {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-olive);
  margin-bottom: 3px;
}

.cart-item-price {
  font-size: .8rem;
  color: var(--dark-olive);
  font-weight: 600;
  margin-bottom: 7px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-qty-row button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 4px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.cart-qty-row button:hover {
  background: var(--beige);
}

.cart-qty-row span {
  font-size: .85rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 7px;
  right: 9px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(44, 31, 14, .2);
  line-height: 1;
  transition: color .2s;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-coupon {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.coupon-row {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .82rem;
  color: var(--text);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color .25s;
  min-width: 0;
}

.coupon-input:focus {
  border-color: var(--olive);
}

.coupon-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(44, 31, 14, .32);
}

.coupon-apply-btn {
  padding: 9px 14px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.coupon-apply-btn:hover {
  background: var(--dark-olive);
}

.coupon-msg {
  font-size: .78rem;
  margin-top: 6px;
  min-height: 16px;
}

.coupon-msg.success {
  color: rgb(184, 134, 11);

}

.coupon-msg.err {
  color: #c0392b;
}

.cart-footer {
  padding: 14px 18px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
}

.cart-grand {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

.cart-checkout-btn {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 6px;
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.cart-checkout-btn:hover {
  background: var(--dark-olive);
  transform: translateY(-1px);
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  background: var(--primary);
  color: var(--cream);
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-size: .8rem;
  letter-spacing: .5px;
  opacity: 0;
  visibility: hidden;
  transition: all .35s cubic-bezier(.165, .84, .44, 1);
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#shop-pagination {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pg-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--primary);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.pg-btn:hover:not(:disabled) {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}

.pg-btn:disabled {
  opacity: .3;
  cursor: default;
}

.pg-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pg-num {
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s ease;
  cursor: pointer;
}

.pg-num:hover {
  background: var(--cream-dark);
  border-color: var(--olive);
}

.pg-num.active {
  background: var(--primary);
  color: var(--olive);
  border-color: var(--primary);
  font-weight: 700;
  pointer-events: none;
}

.pg-ellipsis {
  min-width: 36px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: 1px;
  user-select: none;
}

.pg-info {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1200px) {
  #Shop-productGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .Shop-layout {
    padding: 32px 4%;
    gap: 24px;
  }

}

@media (max-width: 900px) {
  .Shop-layout {
    grid-template-columns: 1fr;
    padding: 24px 4%;
    gap: 20px;
  }

  .Shop-Sidebar {
    position: static !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 10px;
  }

  .Shop-Sidebar>div:first-child {
    grid-column: 1 / -1;
  }

  .sb-btns {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 10px;
  }

  .sb-btn-apply,
  .sb-btn-reset {
    flex: 1;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-image-wrap {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .NavLinks {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .search-wrapper {
    max-width: 150px;
  }

  .Shop-Banner {
    height: 260px;
  }

  .Shop-Sidebar {
    grid-template-columns: 1fr;
  }

  .sb-btns {
    flex-direction: row;
  }

  #Shop-productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    height: 88vh;
    transform: translateY(110%);
  }

  .cart-drawer.open {
    transform: translateY(0);
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-box {
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
    padding: 28px 22px;
    max-width: 100%;
  }

  .modal-image-wrap {
    height: 260px;
  }

  ::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .search-suggestions {
    width: 260px;
    left: auto;
    right: 0;
  }

}

@media (max-width: 600px) {
  .Shop-Banner {
    height: 220px;
  }

  .Shop-banner-inner h1 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .Shop-layout {
    padding: 18px 4%;
    gap: 16px;
  }

  #Shop-productGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-card-img {
    height: 200px;
  }

  .Shop-grid-header {
    margin-bottom: 14px;
  }

  .Shop-grid-header h2 {
    font-size: 1.25rem;
  }

  .modal-box {
    padding: 22px 16px;
  }

  .modal-image-wrap {
    height: 230px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .pg-num,
  .pg-btn {
    min-width: 36px;
    height: 36px;
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .Sub-Navbar {
    padding: 0 14px;
    gap: 8px;
  }

  .Logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .search-wrapper {
    max-width: 120px;
  }

  .Shop-Banner {
    height: 200px;
  }

  .Shop-layout {
    padding: 14px 3%;
  }

  .Shop-Sidebar {
    padding: 14px;
    gap: 12px;
    border-radius: 8px;
  }

  .sb-label {
    font-size: .58rem;
    letter-spacing: 2px;
  }

  #Shop-minPrice,
  #Shop-maxPrice {
    font-size: 16px;
    padding: 8px 8px;
  }

  .sb-btn-apply,
  .sb-btn-reset {
    padding: 11px;
    font-size: .68rem;
  }

  #Shop-productGrid {
    gap: 10px;
  }

  .shop-card-img {
    height: 180px;
  }

  .shop-card-body {
    padding: 14px 16px;
    gap: 4px;
  }

  .shop-card-name {
    font-size: 1.05rem;
  }

  .shop-new-price {
    font-size: 1rem;
  }

  .shop-card-btns button {
    padding: 9px 4px;
    font-size: .63rem;
  }

  .Shop-grid-header h2 {
    font-size: 1.1rem;
  }

  .modal-box {
    padding: 18px 14px;
  }

  .modal-image-wrap {
    height: 200px;
    border-radius: 10px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .size-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  #modalSize {
    width: 100%;
    font-size: 16px;
  }

  .qty-btn {
    width: 36px;
    height: 38px;
  }

  .qty-input {
    width: 46px;
  }

  .add-btn {
    font-size: .65rem;
    padding: 10px 12px;
  }

  .cart-head h3 {
    font-size: 1.2rem;
  }

  .cart-items-list {
    padding: 10px 12px;
    gap: 8px;
  }

  .cart-item {
    gap: 10px;
    padding: 10px 12px;
  }

  .cart-item-img {
    width: 54px;
    height: 54px;
  }

  .coupon-input {
    font-size: 16px;
  }

  .cart-total-row {
    font-size: .82rem;
  }

  .cart-grand {
    font-size: .9rem;
  }

  .cart-checkout-btn {
    font-size: .7rem;
    padding: 13px;
  }

  .toast {
    bottom: 16px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: translateX(0) translateY(18px);
    border-radius: 10px;
    font-size: .78rem;
    padding: 11px 18px;
    white-space: normal;
    text-align: center;
  }

  .toast.show {
    transform: translateX(0) translateY(0);
  }

  #shop-pagination {
    margin-top: 28px;
    gap: 10px;
  }

  .pg-num,
  .pg-btn {
    min-width: 32px;
    height: 32px;
    font-size: .74rem;
  }

  .pg-info {
    font-size: .64rem;
  }

  .search-suggestions {
    position: fixed;
    top: 70px;
    left: 8px;
    right: 8px;
    width: auto;
    z-index: 3500;
  }

  .shop-no-results {
    padding: 48px 16px;
  }

  .stock-warning {
    padding: 8px 12px;
    font-size: .76rem;
  }

}

@media (max-width: 380px) {
  .Sub-Navbar {
    padding: 0 10px;
    gap: 6px;
  }

  .Logo {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .search-wrapper {
    display: none;
  }

  .Shop-Banner {
    height: 180px;
  }

  .Shop-banner-inner h1 {
    font-size: 26px;
  }

  .Shop-banner-inner p {
    font-size: .72rem;
  }

  .Shop-layout {
    padding: 12px 10px;
    gap: 12px;
  }

  .Shop-Sidebar {
    padding: 12px 10px;
    gap: 10px;
  }

  .sb-price-row {
    flex-direction: column;
    gap: 6px;
  }

  #Shop-minPrice,
  #Shop-maxPrice {
    width: 100%;
  }

  .sb-btns {
    flex-direction: column;
    gap: 8px;
  }

  .sb-btn-apply,
  .sb-btn-reset {
    width: 100%;
  }

  .shop-card-img {
    height: 160px;
  }

  .modal-box {
    padding: 16px 12px;
  }

  .modal-image-wrap {
    height: 180px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .shop-card-btns button {
    font-size: .58rem;
    padding: 8px 4px;
  }

  .pg-num,
  .pg-btn {
    min-width: 28px;
    height: 28px;
    font-size: .7rem;
  }

  .pagination {
    gap: 3px;
  }

  .cart-drawer {
    height: 90vh;
  }

  .cart-item-img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 320px) {
  .Logo {
    font-size: 13px;
  }

  .nav-icon-btn {
    width: 30px;
    height: 30px;
  }

  .Shop-Banner {
    height: 160px;
  }

  .Shop-banner-inner h1 {
    font-size: 22px;
  }

  .Shop-banner-label {
    display: none;
  }

  .Shop-banner-inner p {
    font-size: .68rem;
  }

  .Shop-layout {
    padding: 10px 8px;
    gap: 10px;
  }

  .Shop-Sidebar {
    padding: 10px 8px;
    gap: 8px;
  }

  .shop-card-img {
    height: 140px;
  }

  .shop-card-name {
    font-size: .88rem;
  }

  .shop-new-price {
    font-size: .9rem;
  }

  .shop-card-btns button {
    font-size: .56rem;
    padding: 7px 3px;
  }

  .modal-box {
    padding: 14px 10px;
  }

  .modal-image-wrap {
    height: 150px;
  }

  .modal-title {
    font-size: 1.05rem;
  }

  .qty-btn {
    width: 28px;
    height: 32px;
  }

  .qty-input {
    width: 36px;
  }

  .add-btn {
    font-size: .56rem;
    padding: 7px 6px;
  }

  .cart-drawer {
    height: 92vh;
  }

  .cart-item {
    padding: 9px 10px;
  }

  .cart-item-img {
    width: 42px;
    height: 42px;
  }

  .pg-num,
  .pg-btn {
    min-width: 26px;
    height: 26px;
    font-size: .66rem;
  }

  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pg-info {
    font-size: .58rem;
  }
}

@media (max-width: 280px) {
  .Shop-banner-inner h1 {
    font-size: 18px;
  }

  .Shop-banner-inner p {
    display: none;
  }

  .Logo {
    font-size: 11px;
  }

  .shop-card-img {
    height: 120px;
  }

  .modal-image-wrap {
    height: 120px;
  }

  .add-to-cart-row {
    flex-wrap: wrap;
  }

  .add-btn {
    flex: none;
    width: 100%;
    margin-top: 4px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  #Shop-productGrid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .Shop-Banner {
    height: 150px;
  }

  .modal-overlay {
    align-items: center;
    padding: 10px;
  }

  .modal-box {
    border-radius: 14px;
    max-height: 95vh;
    padding: 16px 20px;
  }

  .modal-image-wrap {
    height: 200px;
  }

  .cart-drawer {
    height: 100vh;
    border-radius: 0;
  }
}

@media (hover: none) and (pointer: coarse) {

  .qty-btn,
  .nav-icon-btn,
  .close-btn,
  .cart-close-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .cart-qty-row button {
    min-width: 36px;
    min-height: 36px;
  }

  .sb-btn-apply,
  .sb-btn-reset,
  .coupon-apply-btn,
  .cart-checkout-btn {
    min-height: 44px;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cart-footer {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  @media (max-width: 768px) {
    .modal-box {
      padding-bottom: calc(22px + env(safe-area-inset-bottom));
    }
  }
}

@media (max-width: 430px) {

  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  #Shop-page-wrapper,
  .Shop-layout,
  .Shop-Sidebar,
  #Shop-productGrid,
  .shop-card,
  section,
  aside {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .Shop-layout {
    display: flex;
    flex-direction: column;
    padding: 14px 10px;
    gap: 14px;
    margin: 0;
  }

  .Shop-Sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 14px 12px;
    gap: 12px;
    border-radius: 8px;
  }

  .Shop-Sidebar input,
  .Shop-Sidebar select,
  #Shop-searchFilter,
  #Shop-categoryFilter,
  #Shop-sortPrice,
  #Shop-minPrice,
  #Shop-maxPrice {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .sb-price-row {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .sb-price-row input {
    flex: 1;
    min-width: 0;
    width: 0;
  }

  .sb-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .sb-btn-apply,
  .sb-btn-reset {
    width: 100%;
    box-sizing: border-box;
  }

  #Shop-productGrid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .shop-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .Shop-layout>section {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* ── Custom Dropdown ── */
.sb-custom-select {
  position: relative;
  user-select: none;
}

.sb-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  font-size: .84rem;
  color: var(--text);
  gap: 10px;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}

.sb-select-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--olive);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s;
}

.sb-custom-select.open .sb-select-trigger::before,
.sb-select-trigger:hover::before {
  opacity: 1;
}

.sb-select-trigger:hover,
.sb-custom-select.open .sb-select-trigger {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, .08);
}

.sb-select-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .84rem;
}

.sb-chevron-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(184, 134, 11, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .25s ease;
}

.sb-custom-select.open .sb-chevron-wrap {
  background: var(--olive);
  transform: rotate(180deg);
}

.sb-chevron-wrap svg {
  width: 10px;
  height: 10px;
}

.sb-chevron-wrap svg path {
  stroke: var(--olive);
  transition: stroke .2s;
}

.sb-custom-select.open .sb-chevron-wrap svg path {
  stroke: #fff;
}

.sb-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--cream);
  border: 1px solid rgba(184, 134, 11, .3);
  border-radius: var(--r-sm);
  box-shadow: 0 16px 40px rgba(44, 31, 14, .14);
  z-index: 500;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top center;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.sb-custom-select.open .sb-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sb-select-item {
  padding: 10px 14px 10px 18px;
  font-size: .82rem;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, padding-left .15s;
  border-bottom: 1px solid rgba(184, 134, 11, .1);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.sb-select-item:last-child {
  border-bottom: none;
}

.sb-select-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--olive);
  opacity: 0;
  transition: opacity .15s;
}

.sb-select-item:hover {
  background: rgba(184, 134, 11, .06);
  padding-left: 22px;
}

.sb-select-item:hover::before {
  opacity: 1;
}

.sb-select-item.active {
  background: var(--primary);
  color: var(--cream-dark);
  font-weight: 500;
  padding-left: 18px;
}

.sb-select-item.active::before {
  background: var(--olive);
  opacity: 1;
}

.sb-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s;
}

.sb-select-item.active .sb-item-dot,
.sb-select-item:hover .sb-item-dot {
  opacity: 1;
}