/* 1. Typography */
.serif-font {
  font-family: 'Playfair Display', serif; /* Ensure you load this font */
  letter-spacing: 0.5px;
}
.letter-spacing-1 {
  letter-spacing: 1px;
}
.text-color-primary {
  color: #4a2018;
}
.hover-underline:hover {
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
}
/* 2. Layout Utilities */
.relative { position: relative;
}
.absolute-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.bg-white { background-color: #FAF8F5 !important;
}
.opacity-90 { opacity: 0.9;
}
.w-100 { width: 100%;
}
.login-shell {
  background: #faf8f5;
}
.login-frame {
  min-height: 100vh;
  background: #faf8f5;
}
.login-panel {
  min-height: 100vh;
}
.login-form-wrap {
  padding-bottom: 20px;
}
.login-heading-block {
  margin-bottom: 36px;
}
.login-title {
  margin-bottom: 8px;
}
.login-subtitle {
  font-size: 1rem;
  line-height: 1.5;
}
.login-forgot-row {
  margin-bottom: 28px;
}
.login-register-block {
  margin-top: 34px;
}
.login-submit-btn {
  box-shadow: 0 14px 30px rgba(120, 70, 50, 0.12);
}
/* 3. Glass Effect for Mobile Card (Refined) */
.glass-card {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}
.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.premium-input { 
  display: flex; 
  align-items: center;
}
.premium-input >>> fieldset { 
  border-color: #e0e0e0; 
  transition: 0.3s;
}
.premium-input:hover >>> fieldset {
  border-color: #bdbdbd;
}
.premium-input.v-input--is-focused >>> fieldset {
  border-color: #333 !important;
}
.premium-input.v-input--is-focused >>> fieldset { /* Dark grey focus */
  border-width: 1px;
}
/* 5. Animation */
.slide-up-animation {
  animation: slideUp 0.8s ease-out;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(20px);
}
to { opacity: 1; transform: translateY(0);
}
}
.zoom-effect .v-image__image {
  transition: transform 10s ease;
}
.zoom-effect:hover .v-image__image {
  transform: scale(1.1);
}
@media (max-width: 959px) {
.login-panel {
    align-items: flex-start !important;
    padding-top: 28px !important;
    padding-bottom: 36px !important;
}
.login-panel {
    min-height: auto;
}
.login-form-wrap {
    max-width: 100% !important;
}
.login-mobile-logo {
    margin-bottom: 24px;
}
.login-heading-block {
    margin-bottom: 24px;
}
.login-title {
    font-size: 2.25rem !important;
}
.login-title {
    line-height: 1.05;
}
.login-subtitle {
    font-size: 0.96rem;
}
.login-input {
    margin-bottom: 18px !important;
}
.login-forgot-row {
    margin-bottom: 22px;
}
.login-submit-btn {
    font-size: 1rem !important;
    min-height: 54px !important;
}
.login-register-block {
    margin-top: 28px;
}
}


/* Prevent the main navbar content from overflowing on smaller desktop widths */
.v-app-bar .v-toolbar__content {
  flex-wrap: nowrap;
  overflow: hidden;
}
/* Logo should never shrink or wrap */
.v-app-bar .v-toolbar__content > a {
  flex: 0 0 auto;
}
/* Right-side desktop actions stay on one line */
.search-stack {
  min-width: 0;
}
/* Kill any border / shadow / elevation line on the navbars */
.no-line-bar,
.no-line-bar.v-app-bar,
.no-line-bar.v-sheet {
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.no-line-bar::before,
.no-line-bar::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: none !important;
}
/* Search pill */
.search-pill .v-input__slot {
  background: rgba(196,145,122,0.08) !important;
  border: 1px solid rgba(196,145,122,0.15) !important;
  border-radius: 50px !important;
  padding: 0 8px 0 16px !important;
  transition: all 0.3s ease !important;
}
.search-pill .v-input__slot:focus-within {
  background: rgba(196,145,122,0.12) !important;
  border-color: #C4917A !important;
  box-shadow: 0 0 0 3px rgba(196,145,122,0.15) !important;
}
.search-pill input {
  color: #4A2018 !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
}
.search-pill input::-moz-placeholder {
  color: rgba(74,32,24,0.45) !important;
}
.search-pill input::placeholder {
  color: rgba(74,32,24,0.45) !important;
}
.search-stack {
  position: relative;
}
.search-suggestions-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(196,145,122,0.16);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(166,120,100,0.14);
  left: 0;
  margin-top: 10px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 20;
}
.search-suggestion-loading {
  color: #9b7b6f;
  font-size: 13px;
  font-weight: 600;
  padding: 16px 18px;
}
.search-suggestion-item,
.mobile-search-suggestion-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  transition: background 0.2s ease;
}
.search-suggestion-item + .search-suggestion-item,
.mobile-search-suggestion-item + .mobile-search-suggestion-item {
  border-top: 1px solid rgba(196,145,122,0.08);
}
.search-suggestion-item:hover,
.mobile-search-suggestion-item:hover {
  background: rgba(196,145,122,0.06);
}
.search-suggestion-avatar {
  flex-shrink: 0;
}
.search-suggestion-copy {
  flex: 1;
  min-width: 0;
}
.search-suggestion-name {
  color: #4A2018;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggestion-meta {
  color: #9B7B6F;
  font-size: 11.5px;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggestion-price {
  color: #B8735A;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}
.mobile-search-suggestions {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(196,145,122,0.12);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(166,120,100,0.1);
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 960px) {
.mobile-main-navbar-offset.v-app-bar--fixed {
    top: var(--safe-area-top) !important;
}
body.mobile-public-navbar-offset .v-application .v-main {
    padding-top: calc(64px + var(--safe-area-top)) !important;
    padding-top: calc(var(--public-navbar-height, 64px) + var(--safe-area-top)) !important;
}
.mobile-drawer-header {
    height: calc(210px + var(--safe-area-top)) !important;
    padding-top: calc(32px + var(--safe-area-top)) !important;
}
}
/* Category bar */
.v-slide-group__prev,
.v-slide-group__next {
  min-width: 36px !important;
  background: linear-gradient(90deg, rgba(255,255,255,1) 60%, transparent) !important;
}
.v-slide-group__next {
  background: linear-gradient(270deg, rgba(255,255,255,1) 60%, transparent) !important;
}
.v-slide-group__prev .v-icon,
.v-slide-group__next .v-icon {
  color: #B8735A !important;
}
.v-slide-group__prev .v-icon,
.v-slide-group__next .v-icon {
  opacity: 0.6;
}
.category-btn::before {
  display: none !important;
}
.category-btn::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #C4917A, #D9A189);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.category-btn:hover::after {
  width: 60%;
}
.category-btn:hover span {
  opacity: 1 !important;
}
.category-btn:hover {
  background: rgba(196,145,122,0.06) !important;
}
.active-category-btn {
  background: rgba(196,145,122,0.12) !important;
}
.active-category-btn {
  box-shadow: inset 0 0 0 1px rgba(196,145,122,0.2);
}
.active-category-btn::after {
  width: 60%;
}
.active-category-label {
  opacity: 1 !important;
  color: #4a2018 !important;
}
.active-category-label {
  font-weight: 700;
}
.active-category-btn .chevron-icon {
  color: #b8735a !important;
}
.sub-item:hover {
  background: rgba(196,145,122,0.06) !important;
}
.sub-item:hover .v-list-item__title {
  color: #B8735A !important;
}
.sub-item:hover .sub-arrow {
  color: #B8735A !important;
}
.sub-item:hover .sub-arrow {
  transform: translateX(3px);
}
.chevron-icon {
  transition: transform 0.3s ease;
}
.v-btn--active .chevron-icon {
  color: #B8735A !important;
}
.v-btn--active .chevron-icon {
  transform: rotate(180deg);
}
.v-list-item:hover {
  background: rgba(196,145,122,0.04) !important;
}
.v-navigation-drawer .v-list-item:hover {
  background: rgba(196,145,122,0.04) !important;
}
.v-navigation-drawer .v-list-item:hover {
  transform: translateX(2px);
}


/* 1. Scrollbar for Desktop Form */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
/* 2. Glassmorphism for Mobile */
.glass-card {
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}
.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
/* 3. Typography & Utility */
.ls-1 { letter-spacing: 1px;
}
.pointer { cursor: pointer;
}
.z-index-1 { z-index: 1; position: relative;
}
.relative { position: relative;
}
/* 4. Decorative Circle on Desktop */
.absolute-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
/* 5. Input Tweaks */
::v-deep .v-text-field--outlined fieldset {
  border-color: #e0e0e0;
}
::v-deep .v-text-field--outlined.v-input--is-focused fieldset {
  border-width: 1px !important;
}
::v-deep .v-text-field--outlined.v-input--is-focused fieldset { /* Prevents border from jumping thickness */
}

