.serif-font { font-family: "Playfair Display", serif !important;
}
.brand--text { color: #4A2018 !important;
}
.bg-berry-soft { background-color: #FFF9FB !important;
}
.brand-line-short {
  width: 40px;
  height: 3px;
  background: #4A2018;
}
.border-subtle { border: 1px solid #f0f0f0 !important;
}
.border-bottom { border-bottom: 1px solid #f0f0f0 !important;
}
/* Payment Selection States */
.payment-card {
  transition: all 0.3s ease;
  cursor: pointer;
}
.active-payment {
  background: #FFF9FB !important;
  border: 1.5px solid #4A2018 !important;
}
.active-payment-mobile {
  border-color: #4A2018 !important;
  background: #FFF9FB !important;
}
.letter-spacing-1 { letter-spacing: 1px !important;
}
.letter-spacing-2 { letter-spacing: 2px !important;
}
@media (max-width: 600px) {
.rounded-xl { border-radius: 24px !important;
}
}


/* ── Styled Input Fields ── */
.styled-input .v-input__slot {
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s ease !important;
}
.styled-input fieldset {
  border-color: rgba(196, 145, 122, 0.15) !important;
  transition: all 0.3s ease !important;
}
.styled-input.v-input--is-focused fieldset {
  border-color: #c4917a !important;
  border-width: 1.5px !important;
  box-shadow: 0 0 0 3px rgba(196, 145, 122, 0.1) !important;
}
.styled-input input,
.styled-input textarea,
.styled-input .v-select__selection {
  color: #4a2018 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.styled-input input::-moz-placeholder, .styled-input textarea::-moz-placeholder {
  color: rgba(155, 123, 111, 0.5) !important;
}
.styled-input input::placeholder,
.styled-input textarea::placeholder {
  color: rgba(155, 123, 111, 0.5) !important;
}
.styled-input .v-label {
  color: #9b7b6f !important;
  font-size: 14px !important;
}
/* ── Info Card Hover ── */
.info-card-hover:hover {
  transform: translateX(4px) !important;
  box-shadow: 0 4px 20px rgba(166, 120, 100, 0.08) !important;
  border-color: rgba(196, 145, 122, 0.15) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}
/* ── Email Link Hover ── */
.email-link-hover:hover {
  color: #b8735a !important;
}
/* ── Map Link Hover ── */
.map-link-hover:hover {
  background: linear-gradient(
    135deg,
    rgba(196, 145, 122, 0.15),
    rgba(217, 161, 137, 0.08)
  ) !important;
  border-color: rgba(196, 145, 122, 0.2) !important;
}
/* ── Submit Button Hover ── */
.submit-btn-hover:hover {
  box-shadow: 0 14px 35px rgba(74, 32, 24, 0.25),
    0 4px 12px rgba(42, 24, 16, 0.12) !important;
}
.submit-btn-hover:hover {
  transform: translateY(-2px);
}
.submit-btn-hover:active {
  transform: translateY(0) scale(0.98);
}
.submit-btn-hover::before {
  display: none !important;
}
/* ── Decorative Image Hover ── */
.deco-img-hover:hover {
  filter: saturate(1) sepia(0) !important;
  transform: scale(1.03) !important;
}
/* ── Scroll float animation ── */
@keyframes scrollFloat {
0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
}
50% {
    transform: translateY(8px);
    opacity: 0.3;
}
}
.scroll-float {
  animation: scrollFloat 2.5s ease-in-out infinite;
}

/* The main wrapper takes the full screen height */
.chat-wrapper {
  height: 100vh; 
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f4f6f8;
}
/* The card container fills the wrapper */
.chat-container { 
  padding-left: 100px;
  padding-right: 100px;
  height: 100%; 
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Prevents double scrollbars */
}
/* The scrollable area fills all remaining space */
.chat-body {
  overflow-y: auto !important;
}
.chat-body {
  flex: 1 1 auto; /* Grow to fill space */ /* Enable scrolling */
  min-height: 0; /* Critical for nested flex scrolling */
  scroll-behavior: auto;
  position: relative;
  /* Custom Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}
.chat-body::-webkit-scrollbar {
  width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
  background-color: #e0e0e0; 
  border-radius: 4px;
}
/* Prevent Header/Footer from shrinking when keyboard opens */
.v-toolbar, 
.chat-footer {
  flex-shrink: 0;
}
/* =========================================================
   2. HEADER & FOOTER STYLING
   ========================================================= */
.border-bottom {
  border-bottom: 1px solid #f0f0f0;
}
.border-top {
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.02); /* Subtle uplift */
}
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50; /* Green */
  border-radius: 50%;
  display: inline-block;
}
/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */
.serif-font {
  font-family: "Playfair Display", "Times New Roman", serif !important;
}
.date-badge {
  background-color: rgba(0,0,0,0.05);
  color: #757575;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
/* =========================================================
   4. MESSAGE BUBBLES
   ========================================================= */
.message-bubble {
  max-width: 75%;
  padding: 10px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
/* User Bubble (Right - Gold) */
.user-bubble {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  color: white;
  border-radius: 16px 16px 0 16px; /* Sharp bottom-right */
  align-self: flex-end;
}
/* Support Bubble (Left - White) */
.support-bubble {
  background-color: #FAF8F5;
  color: #333;
  border-radius: 16px 16px 16px 0; /* Sharp bottom-left */
  align-self: flex-start;
  border: 1px solid rgba(0,0,0,0.05);
}
/* =========================================================
   5. INPUT AREA TWEAKS
   ========================================================= */
/* Force input height */
.chat-input >>> .v-input__slot {
  min-height: 48px !important;
  padding-top: 10px !important;
}
.send-btn {
  transition: transform 0.2s;
}
.send-btn:active {
  transform: scale(0.9);
}
/* =========================================================
   6. MOBILE RESPONSIVENESS
   ========================================================= */
@media (max-width: 600px) {
.message-bubble {
    max-width: 85%; /* Wider bubbles on small screens */
    font-size: 0.9rem;
}
.chat-body {
    padding-bottom: 20px; /* Extra padding for touch */
}
.chat-container{
  padding-left: 2px;
  padding-right: 2px;
}
}

/* ── Marquee Animation ── */
@keyframes scroll-vibe {
from { transform: translateX(0);
}
to { transform: translateX(-50%);
}
}
.marquee-track {
  min-width: 100%;
  justify-content: center;
}
.marquee-group {
  justify-content: center;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
/* ── Product Card Hover ── */
.product-card-hover:active {
  transform: translateY(-3px) scale(0.98) !important;
}
/* ── Heart Button Hover ── */
.product-heart-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.15) translateY(0) !important;
  box-shadow: 0 4px 16px rgba(196, 145, 122, 0.25) !important;
}
.product-heart-btn:hover .v-icon {
  color: #e74c6f !important;
}
/* ── Explore CTA Button ── */
.explore-cta-btn::before {
  display: none !important;
}
.explore-cta-btn:hover .explore-fill {
  height: 100% !important;
}
.explore-cta-btn:hover .explore-arrow {
  transform: translateX(5px) !important;
  color: #B8735A !important;
}
.explore-cta-btn:hover {
  letter-spacing: 1.2px !important;
}
.explore-cta-btn:active {
  transform: scale(0.97);
}
/* ── Header explore button (matches New Arrivals) ── */
.featured-explore-btn {
  border-color: rgba(187, 123, 96, 0.35) !important;
  color: #7c4938 !important;
  font-weight: 700 !important;
}
.featured-explore-btn {
  letter-spacing: 0.04em;
}
/* ── New Arrivals–style product card ── */
.featured-card {
  cursor: pointer;
  margin: 0 12px;
  width: 270px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(166, 120, 100, 0.08), 0 1px 4px rgba(166, 120, 100, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(166, 120, 100, 0.16), 0 4px 12px rgba(166, 120, 100, 0.08);
}
.featured-card .product-img-wrap {
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.featured-card .product-img-inner {
  box-shadow: none !important;
}
.featured-card .product-img-inner {
  width: 100%;
}
.featured-card .product-img-inner ::v-deep .v-image__image {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
.featured-card .save-ribbon {
  position: absolute;
  top: 0;
  right: 18px;
  background: linear-gradient(180deg, #e0b09c, #c4917a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 12px 6px 16px;
  box-shadow: 0 4px 12px rgba(166, 120, 100, 0.25);
  z-index: 3;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 86%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 86%, 0 100%);
}
.featured-card .arrival-content {
  margin-top: 0;
  padding: 18px 18px 20px;
  text-align: center;
  background: #ffffff;
}
.featured-card .arrival-price {
  align-items: center;
  color: #5a3a2c;
  display: flex;
  font-size: 19px;
  font-weight: 700;
  gap: 2px;
  justify-content: center;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.featured-card .arrival-name {
  color: #4a2018;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.featured-card:hover .arrival-name {
  color: #b8735a;
}
.featured-card .card-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.featured-card .home-add-cart-btn {
  background: transparent !important;
  border: 1.5px solid rgba(196, 145, 122, 0.35) !important;
  color: #4a2018 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  height: 46px !important;
}
.featured-card .home-add-cart-btn {
  flex: 1;
  letter-spacing: 0.2px;
}
.featured-card .home-add-cart-btn:hover {
  background: rgba(196, 145, 122, 0.08) !important;
}
.featured-card .card-heart-btn {
  width: 46px !important;
  height: 46px !important;
  border: 1.5px solid rgba(196, 145, 122, 0.35) !important;
  border-radius: 50% !important;
}
.featured-card .card-heart-btn {
  flex: 0 0 auto;
}
.featured-card .card-heart-icon {
  color: #b8735a !important;
  font-size: 20px !important;
}
.featured-card .product-loader {
  color: rgba(196, 145, 122, 0.5);
}
@media (max-width: 959px) {
.featured-card {
    width: 220px;
    margin: 0 6px;
}
}

.featured-mobile-section {
  position: relative;
  background: #faf8f5;
}
.featured-mobile-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #4a2018;
}
.featured-mobile-title-accent {
  color: #b8735a;
}
.featured-mobile-link {
  color: #b8735a !important;
}
.featured-mobile-link {
  letter-spacing: 1px;
}
.horizontal-scroll {
  display: flex;
  overflow-x: auto; 
  overflow-y: hidden;
  /* Provides momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch; 
  /* Hides scrollbar Firefox */
  scrollbar-width: none; 
  /* Adds padding to the bottom to allow shadow to show without getting cut off */
  padding-bottom: 10px; 
  
  /* Snap Logic for "App feel" */
  scroll-snap-type: x mandatory;
}

/* Hide scrollbar Chrome/Safari/Webkit */
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* Card Styling */
.product-card {
  flex: 0 0 auto; /* Prevents card from shrinking */
  scroll-snap-align: start; /* Snaps card to left on scroll stop */
  transition: transform 0.2s;
  background: linear-gradient(180deg, #fffdfa 0%, #faf4ee 100%);
  border: 1px solid rgba(196, 145, 122, 0.12);
  box-shadow: 0 10px 28px rgba(120, 70, 50, 0.08);
}
.mobile-skeleton-card {
  background: #fffaf6 !important;
  border-color: rgba(196, 145, 122, 0.12) !important;
}
.product-card:active {
  transform: scale(0.96); /* Subtle click effect */
}

/* Image Wrapper for better corner control */
.image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf4 0%, #f4ece4 100%);
}
.product-name-mobile {
  color: #4a2018;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.product-price-mobile {
  color: #7d4d3f;
}

/* Glass effect for overlay buttons */
.glass-effect {
  background: rgba(0, 0, 0, 0.3) !important;
}
.glass-effect {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.absolute-top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

