/* Prevent background scroll when modal is open */
.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}
/* --- Fresh CSS Foundation (Fall Theme) --- */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.app-body {
  font-family: 'Poppins', sans-serif;
  background: #FFFBF2; /* Very light off-white, cream base */
  color: #543C2B;     /* Darkest brown text */
  min-height: 100vh;
  line-height: 1.6;
}

/* General Headings */
h1, h2, h3, h4, h5, h6 {
   color: #543C2B; /* Darkest brown for headings */
}

/* --- E-Commerce Shop Section --- */

.shop-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  overflow: hidden;
  position: relative;
  /* Subtle gradient background using fall colors */
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E8 100%); /* White to light cream */
}

.shop-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
}

/* The Main Display Card */
.shop-display-card {
  background: #FFFFFF; /* White card */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 16px;
  border: 1px solid #EAE0D1; /* Light tan border */
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(84, 60, 43, 0.08); /* Subtle brown shadow */
  text-align: center;
}

.shop-display-card .shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #543C2B; /* Darkest brown */
  margin-bottom: 0.5rem;
}

.shop-display-card .shop-description {
  font-size: 1.125rem;
  color: #8B6349; /* Mid-dark brown */
  margin-bottom: 1.5rem;
}

/* Text Fade-in Animation */
.text-fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Primary Accent Button */
.shop-button {
  background: #A47E42; /* Mid-brown */
  border: 1px solid #DBBD57; /* Lighter orange-brown border */
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  color: #FFFFFF; /* White text */
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}

.shop-button:hover {
  background: #8B6349; /* Darker brown hover */
  border-color: #A47E42;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(84, 60, 43, 0.2); /* Brown shadow */
}

/* The Wheel */
.shop-wheel-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.shop-wheel {
  position: relative;
  width: 30rem;
  height: 30rem;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-style: preserve-3d;
  transform: scale(0.8);
}

@media (min-width: 768px) {
  .shop-container {
    flex-direction: row;
    justify-content: space-around;
  }
  .shop-display-card {
    width: 40%;
    text-align: left;
  }
  .shop-wheel {
    transform: scale(1);
  }
}

.shop-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #FFFFFF; /* White circle */
  border: 1px solid #EAE0D1; /* Light tan border */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.08); /* Subtle brown shadow */
}

.shop-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.shop-item:not(.active-shop) {
  filter: grayscale(50%) brightness(0.9); /* Less intense grayscale */
  opacity: 0.8;
}

.shop-item:hover:not(.active-shop) {
  background: #FFF8E8; /* Light cream hover */
}

.shop-item.active-shop {
  background: #FFFFFF;
  border-color: #A47E42; /* Mid-brown border */
  border-width: 2px;
  filter: none;
  opacity: 1;
}

/* --- Navigation Bar Styles (Fall Theme) --- */
.main-header.stacked {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

/* Top Bar */
.top-bar {
  background-color: #FFF8E8; /* Light cream */
  color: #8B6349; /* Medium dark brown text */
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links a {
  color: #8B6349; /* Medium dark brown */
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.top-bar-links a:hover {
  color: #543C2B; /* Darkest brown hover */
}

/* Main Nav */
.main-nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #FFFFFF; /* Solid white */
  border-radius: 0 0 0.75rem 0.75rem;
  border: none;
  border-bottom: 1px solid #EAE0D1; /* Light tan border */
  box-shadow: 0 2px 4px rgba(84, 60, 43, 0.05); /* Brown shadow */
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #543C2B; /* Darkest brown logo text */
}
.logo a { color: #543C2B; text-decoration: none;}

.nav-links a {
  color: #8B6349; /* Medium dark brown */
  text-decoration: none;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #A47E42; /* Mid-brown hover */
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #A47E42; /* Mid-brown underline */
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Footer Styles (Fall Theme) --- */
.main-footer {
  width: 100%;
  padding: 2rem;
  background: #FFFFFF; /* White */
  border-top: 1px solid #EAE0D1; /* Light tan border */
  color: #A47E42; /* Medium brown text */
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A47E42;
}

.footer-links a {
  color: #A47E42;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8B6349; /* Darker brown hover */
}

@media (max-width: 768px) {
  .footer-content { flex-direction: column; gap: 1rem; }
}

/* --- Shop Page & Product Grid Styles (Fall Theme) --- */
.shop-page-content, .account-page-content, .cart-page-content, .privacy-policy-page, .terms-service-page { /* Apply padding to all main content */
  padding: 10rem 2rem 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  color: #543C2B; /* Darkest brown main text */
}

.shop-title, .account-title, .cart-title { /* Style all page titles */
  color: #543C2B;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.shop-subtitle {
  font-size: 1.2rem;
  color: #8B6349; /* Medium dark brown */
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #FFFFFF; /* White card */
  border: 1px solid #EAE0D1; /* Light tan border */
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.08); /* Subtle brown shadow */
}

.product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(84, 60, 43, 0.1); /* Brown shadow */
}

.product-image-container {
  width: 100%;
  height: 250px;
  background: #F5F1E9; /* Light cream background for images */
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #543C2B; /* Darkest brown */
  margin-bottom: 0.5rem;
}

.product-description {
  color: #8B6349; /* Medium dark brown */
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #543C2B; /* Darkest brown */
  margin-bottom: 1.5rem;
}

/* Secondary Button Style */
.product-button {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #A47E42; /* Mid-brown text */
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(164, 126, 66, 0.1); /* Very light brown */
  border: 1px solid rgba(164, 126, 66, 0.3);
  transition: all 0.3s ease;
}

.product-button:hover {
  background: rgba(164, 126, 66, 0.2);
  color: #543C2B; /* Darkest brown */
  transform: translateY(-2px);
}

/* --- Product Section Styles --- */
.product-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.product-section:not(:last-child) {
  border-bottom: 1px solid #EAE0D1; /* Light tan border */
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #543C2B; /* Darkest brown */
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #A47E42; /* Mid-brown accent */
  margin-top: 0.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #8B6349; /* Medium dark brown */
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* --- Tab Navigation Styles --- */
.tab-container {
  margin-bottom: 3rem;
}

.tab-buttons {
  display: flex;
  gap: 0;
  background: #F5F1E9; /* Light cream background */
  border-radius: 12px;
  padding: 4px;
  max-width: 400px;
  margin: 0 auto;
}

.tab-button {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #8B6349; /* Medium brown */
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button:hover {
  color: #543C2B; /* Darker brown on hover */
  background: rgba(164, 126, 66, 0.1);
}

.tab-button.active {
  background: #FFFFFF; /* White background for active */
  color: #543C2B; /* Darkest brown */
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.1);
}

/* --- Tab Content Styles --- */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Update product-section to work with tabs */
.tab-content .product-section {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* --- Sub-Tab Navigation Styles --- */
.sub-tab-container {
  margin: 2rem 0 3rem 0;
}

.sub-tab-buttons {
  display: flex;
  gap: 0;
  background: #F5F1E9;
  border-radius: 10px;
  padding: 3px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sub-tab-button {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8B6349;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 150px;
}

.sub-tab-button:hover {
  color: #543C2B;
  background: rgba(164, 126, 66, 0.1);
}

.sub-tab-button.active {
  background: #A47E42;
  color: white;
  box-shadow: 0 2px 6px rgba(84, 60, 43, 0.15);
}

/* --- Sub-Tab Content Styles --- */
.sub-tab-content {
  display: none;
  animation: fadeInUp 0.4s ease-in-out;
}

.sub-tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #543C2B;
  margin-bottom: 0.75rem;
  text-align: center;
}

.sub-section-description {
  font-size: 1rem;
  color: #8B6349;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive sub-tabs */
@media (max-width: 768px) {
  .sub-tab-buttons {
    flex-direction: column;
    gap: 2px;
  }
  
  .sub-tab-button {
    min-width: unset;
  }
}

/* --- Corporate Admin Page Styles --- */
.admin-page-content {
  padding: 10rem 2rem 4rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  min-height: 100vh;
  color: #1e293b;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.admin-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.admin-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 400;
}

/* Admin Navigation */
.admin-nav-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.admin-view-nav {
  display: flex;
  gap: 1rem;
  background: #F5F1E9;
  border-radius: 12px;
  padding: 4px;
}

.admin-nav-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #8B6349;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.admin-nav-button:hover {
  color: #543C2B;
  background: rgba(164, 126, 66, 0.1);
}

.admin-nav-button.active-view {
  background: #A47E42;
  color: white;
  box-shadow: 0 2px 6px rgba(84, 60, 43, 0.15);
}

/* Admin Stats Section */
.admin-stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 60, 43, 0.12);
}

.stat-card h2 {
  font-size: 1.1rem;
  color: #8B6349;
  margin-bottom: 1rem;
  font-weight: 500;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #A47E42;
  margin: 0;
}

/* Admin Inquiry List */
.admin-inquiry-list {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.05);
}

.admin-inquiry-list h2 {
  color: #543C2B;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.inquiry-card {
  background: #F5F1E9;
  border: 1px solid #EAE0D1;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.inquiry-card:hover {
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.1);
  transform: translateY(-1px);
}

.inquiry-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #EAE0D1;
}

.inquiry-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #543C2B;
}

.inquiry-date {
  color: #8B6349;
  font-size: 0.9rem;
}

.inquiry-card-body {
  margin-bottom: 1rem;
  color: #543C2B;
  line-height: 1.5;
}

.inquiry-card-body p {
  margin-bottom: 0.5rem;
}

.inquiry-message {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #EAE0D1;
}

.inquiry-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.inquiry-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-new {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-contacted {
  background: rgba(164, 126, 66, 0.1);
  color: #A47E42;
}

.inquiry-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Admin Action Buttons - Using Homepage Button Style */
.admin-action-button {
  padding: 0.6rem 1.2rem !important;
  font-size: 0.85rem !important;
  min-width: auto !important;
}

.admin-action-button.secondary {
  background: rgba(139, 99, 73, 0.1) !important;
  color: #8B6349 !important;
  border: 1px solid #8B6349 !important;
}

.admin-action-button.secondary:hover {
  background: #8B6349 !important;
  color: white !important;
}

.admin-action-button.danger {
  background: rgba(220, 38, 38, 0.1) !important;
  color: #dc2626 !important;
  border: 1px solid #dc2626 !important;
}

.admin-action-button.danger:hover {
  background: #dc2626 !important;
  color: white !important;
}

.no-inquiries-message {
  text-align: center;
  color: #8B6349;
  font-size: 1.1rem;
  padding: 3rem;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #A47E42;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(84, 60, 43, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.toast-hidden {
  transform: translateX(100%);
  opacity: 0;
}

#toast-close-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .admin-page-content {
    padding: 8rem 1rem 2rem 1rem;
  }
  
  .admin-nav-container {
    margin-bottom: 2rem;
  }
  
  .admin-view-nav {
    flex-direction: column;
    gap: 2px;
  }
  
  .inquiry-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .inquiry-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .inquiry-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* --- Fix Rotation for Second Wheel Item --- */
.shop-item[data-index="1"] img {
  transform: rotate(180deg);
}

/* --- Contact Form Section Styles (Fall Theme) --- */
.contact-section {
  padding: 6rem 2rem;
  background: #A47E42; /* Mid-brown background */
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  color: #FFF8E8; /* Light cream */
  /* ... */
}

.contact-subtitle {
  color: #ffffff;
  /* ... */
}

.business-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.business-info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 232, 0.3);
  color: #FFF8E8;
  font-size: 0.95rem;
  text-align: center;
  min-width: 200px;
}

.business-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-form-layout {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white */
  border: 1px solid rgba(255, 248, 232, 0.2); /* Light cream border */
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Keep subtle shadow */
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .span-two { grid-column: span 2; }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF8E8; /* Light cream */
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 232, 0.3); /* Lighter cream border */
  background: rgba(255, 255, 255, 0.1); /* More transparent white */
  color: #FFFFFF; /* White text */
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input::placeholder, .form-textarea::placeholder {
   color: #EAE0D1; /* Tan placeholder */
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #DBBD57; /* Orange-brown focus */
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(219, 189, 87, 0.3); /* Orange-brown focus ring */
}

.form-textarea { resize: vertical; }

.form-submit-area { text-align: center; margin-top: 2rem; }

.form-message-feedback { margin-top: 1rem; font-size: 0.9rem; }

/* Message colors */
.success-msg { color: #C8E6C9; } /* Light Green */
.error-msg { color: #FFCDD2; } /* Light Red */

/* Style the submit button within the contact form */
.contact-form-layout .shop-button {
   background: #DBBD57; /* Orange-brown background */
   border: 1px solid #FFF8E8; /* Light cream border */
   color: #543C2B; /* Dark brown text */
   width: auto;
   padding: 0.75rem 2rem;
}
.contact-form-layout .shop-button:hover {
   background: #EAE0D1; /* Tan hover */
   border-color: #DBBD57;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(84, 60, 43, 0.15);
}


/* --- Email Capture Modal Styles (Fall Theme) --- */
.modal-overlay {
  /* Overlay covers the entire viewport */
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 30, 20, 0.7); /* Dark brown overlay */
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Visibility helpers controlled by JS */
.modal-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal-visible {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF; /* White modal */
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(84, 60, 43, 0.3); /* Brown shadow */
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

/* Subtle zoom when visible */
.modal-visible .modal-box { transform: scale(1); }

.modal-close-btn {
  color: #AB9379; /* Light brown/tan */
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close-btn:hover { color: #543C2B; /* Darkest brown */ }

.modal-content { text-align: center; color: #543C2B; /* Darkest brown text */ }

.modal-content h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; color: #543C2B; }
.modal-content h3 { font-size: 1.2rem; font-weight: 600; color: #A47E42; /* Mid-brown */ margin-bottom: 1rem; }
.modal-content p { color: #8B6349; margin-bottom: 1.5rem; }

#modal-email-form {
  display: block; /* ensure rule is not empty to satisfy linters */
}

.modal-input {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #D6C8B5; /* Tan border */
  background: #F5F1E9; /* Light cream */
  color: #543C2B; /* Darkest brown text */
  font-size: 1rem;
}
.modal-input::placeholder { color: #AB9379; }

/* Inline error message for modal form */
.modal-error-message {
  color: #A75D5D;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.modal-button {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  background-color: #A47E42; /* Mid-brown */
  color: #fff;
  font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease;
}
.modal-button:hover { background-color: #8B6349; /* Darker brown */ }

.modal-decline-btn { color: #AB9379; /* Light brown/tan */ }
.modal-decline-btn:hover { color: #543C2B; /* Darkest brown */ }

/* Optional logo sizing inside the modal */
.modal-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}


/* --- Admin Insight Hub Styles (Kept Dark for Readability) --- */
/* (Keeping admin dark is often preferred for dashboards, but we can change if you like) */
.admin-hub-container {
  padding: 2rem;
  background-color: #1F1A15; /* Darker brown base */
  color: #EAE0D1; /* Light tan text */
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
}
.admin-header { border-bottom: 1px solid rgba(164, 126, 66, 0.2); /* ... */ }
.admin-header h1 { color: #FFFFFF; }
.admin-header p { color: #AB9379; }

.admin-stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid #3b82f6;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-left-color: #1e40af;
}

.stat-card h2 {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1e40af;
  line-height: 1;
  margin: 0;
}

.admin-inquiry-list h2 {
  color: #1f2937;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.inquiry-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.inquiry-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.inquiry-card-header {
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem 2rem;
  background: #f9fafb;
}

.inquiry-name {
  color: #1f2937;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.inquiry-date {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
}

.inquiry-card-body {
  padding: 1.5rem 2rem;
}

.inquiry-card-body p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.inquiry-card-body strong {
  color: #1f2937;
  font-weight: 600;
}

.inquiry-message {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  font-style: italic;
  color: #475569;
}

.no-inquiries-message {
  color: #6b7280;
  text-align: center;
  padding: 3rem;
  font-size: 1.1rem;
}

.admin-view-nav {
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 2rem;
  background: white;
  border-radius: 12px 12px 0 0;
  padding: 0;
  overflow: hidden;
}

.admin-view-nav a {
  color: #6b7280;
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.admin-view-nav a:hover {
  background: #f8fafc;
  color: #3b82f6;
  border-bottom-color: #93c5fd;
}

.admin-view-nav a.active-view {
  color: #1e40af;
  background: #eff6ff;
  border-bottom-color: #3b82f6;
}

.inquiry-card-footer {
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem 2rem;
  background: #fafbfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.inquiry-status {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-new {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #f59e0b;
}

.status-contacted {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border: 1px solid #3b82f6;
}

.status-resolved {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #10b981;
}

/* Corporate Action Buttons */
.action-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-button.contact-button {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
}

.action-button.contact-button:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.action-button.new-button {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.action-button.new-button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.action-button.delete-button {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.action-button.delete-button:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}


/* Corporate Dashboard Enhancements */
.admin-dashboard-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .admin-dashboard-grid {
    grid-template-columns: 1fr 300px;
  }
}

/* Professional Data Organization */
.admin-inquiry-list {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.admin-table-header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inquiry-count-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.admin-sidebar {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  height: fit-content;
}

.admin-sidebar h3 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.quick-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.quick-stat-label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.quick-stat-value {
  color: #1e40af;
  font-weight: 700;
  font-size: 1.1rem;
}

.admin-content-main {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* --- Toast Notification Styles (Fall Theme) --- */
.toast-notification {
  background-color: #8B6349; /* Darker brown */
  color: white;
  /* ... */
}
#toast-close-button { color: white; opacity: 0.7; }
#toast-close-button:hover { opacity: 1; }

/* --- Account Page Styles (Fall Theme) --- */
.account-page-content { color: #543C2B; }
.account-title { color: #543C2B; }
.account-form-card {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  box-shadow: 0 4px 12px rgba(84, 60, 43, 0.08);
}
.form-title { color: #543C2B; }
.form-label { color: #8B6349; }
.account-form-card .form-input {
   border: 1px solid #D6C8B5;
   background: #FFFFFF;
   color: #543C2B;
}
.account-form-card .form-input:focus { border-color: #A47E42; background: #FFFFFF; }
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.form-checkbox { color: #8B6349; }
.form-link { color: #A47E42; }
.form-privacy-note { color: #AB9379; }
.account-form-card .shop-button {
    background: #A47E42; border-color: #DBBD57; color: #FFFFFF;
}
.account-form-card .shop-button:hover {
    background: #8B6349; border-color: #A47E42;
}


/* --- Cart Page Styles (Fall Theme) --- */
.cart-page-content { color: #543C2B; }
.cart-title { color: #543C2B; }

.cart-table {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 8px;
}
.cart-table thead { border-bottom: 1px solid #D6C8B5; }
.cart-table th { color: #8B6349; }
.cart-item-row { border-bottom: 1px solid #EAE0D1; }
.cart-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  color: #543C2B;
  font-size: 0.95rem;
}
.cart-item-image img { border: 1px solid #EAE0D1; }
.cart-item-details a { color: #543C2B; }
.cart-item-details p { color: #A47E42; }
.quantity-input {
  border: 1px solid #D6C8B5; background: #F5F1E9; color: #543C2B;
}
.remove-button { color: #A75D5D; } /* Muted Red */
.remove-button:hover { color: #8B4545; }

.cart-summary-box {
  background: #FFF8E8; /* Light Cream */
  border: 1px solid #EAE0D1;
  border-radius: 12px;
}
.cart-summary-box h2 { color: #543C2B; border-bottom: 1px solid #EAE0D1; }
.summary-row { color: #8B6349; }
.total-row { color: #543C2B; border-top: 1px solid #EAE0D1; }
.checkout-button { /* Inherits .shop-button style */
  display: inline-block;
}

/* --- Vehicle Inventory Styles --- */
.inventory-page-content {
  padding: 8rem 2rem 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  color: #543C2B;
}

.inventory-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inventory-search-section {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.05);
}

.search-bar-container {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.inventory-search-bar {
  flex: 1;
  padding: 1rem;
  border: 1px solid #D6C8B5;
  border-radius: 8px 0 0 8px;
  background: #F5F1E9;
  color: #543C2B;
  font-size: 1rem;
}

.search-button {
  padding: 1rem 1.5rem;
  background: #A47E42;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #8B6349;
}

.filter-sort-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reset-filters-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid #A47E42;
  color: #A47E42;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reset-filters-btn:hover {
  background: #A47E42;
  color: white;
}

.sort-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-container label {
  font-weight: 600;
  color: #543C2B;
}

.sort-select {
  padding: 0.75rem;
  border: 1px solid #D6C8B5;
  border-radius: 6px;
  background: #FFFFFF;
  color: #543C2B;
  font-size: 0.9rem;
}

/* Main inventory container */
.inventory-main-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Sidebar filters */
.inventory-sidebar {
  background: #FFFFFF;
  border: 1px solid #A47E42;
  border-radius: 8px;
  padding: 0;
  height: fit-content;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.08);
  position: sticky;
  top: 120px;
  width: 100%;
}

.filter-header {
  background: #A47E42;
  color: white;
  padding: 0.75rem 1rem;
  margin: 0;
  border-radius: 7px 7px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
}

.filter-group {
  margin-bottom: 0;
  border-bottom: 1px solid #EAE0D1;
  padding: 0.75rem 1rem;
}

.filter-toggle {
  width: 100%;
  padding: 0.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: #543C2B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.filter-toggle:hover {
  color: #A47E42;
}

.toggle-arrow {
  font-size: 0.8rem;
  color: #A47E42;
}

.filter-options {
  display: block;
  padding: 0.3rem 0 0 0;
  background: #F5F1E9;
  margin: 0.3rem -1rem 0 -1rem;
  padding-left: 1.5rem;
  padding-right: 1rem;
  padding-bottom: 0.3rem;
}

.filter-options label {
  display: block;
  padding: 0.25rem 0;
  cursor: pointer;
  color: #8B6349;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.filter-options label:hover {
  color: #543C2B;
}

.filter-options input {
  margin-right: 0.75rem;
  accent-color: #A47E42;
}

/* Inventory content area */
.inventory-content {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.05);
}

.inventory-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EAE0D1;
}

.results-count {
  color: #8B6349;
  font-weight: 500;
}

.pagination-info {
  display: flex;
  gap: 0.5rem;
}

.page-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #D6C8B5;
  background: white;
  color: #8B6349;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover {
  background: #A47E42;
  color: white;
  border-color: #A47E42;
}

/* Vehicle grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background: #FFFFFF;
  border: 1px solid #EAE0D1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(84, 60, 43, 0.08);
}

.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(84, 60, 43, 0.12);
}

.vehicle-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.05);
}

.vehicle-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #A47E42;
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.vehicle-badge.special {
  background: #D4902A;
}

.vehicle-badge.new {
  background: #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.vehicle-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.75rem 0;
}

.highlight {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 500;
}

.photo-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.photo-gallery-preview {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.gallery-thumb {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.gallery-thumb:hover {
  opacity: 1;
}

.more-photos {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.1rem 0.3rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  margin-left: 2px;
}

.coming-soon {
  border: 2px dashed #A47E42;
  background: rgba(164, 126, 66, 0.05);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-content {
  padding: 2rem;
}

.coming-soon-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coming-soon h3 {
  color: #543C2B;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: #8B6349;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.inventory-contact-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #543C2B 0%, #8B6349 100%);
  border-radius: 12px;
  color: white;
  text-align: center;
}

.contact-prompt h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFF8E8;
}

.contact-prompt p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #EAE0D1;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  background: #D4AF37;
  color: #543C2B;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-btn:hover {
  background: #FFF8E8;
  color: #543C2B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.inventory-note {
  color: #8B6349;
  font-style: italic;
  font-size: 0.95rem;
}

.vehicle-info {
  padding: 1.5rem;
}

.vehicle-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #543C2B;
  margin-bottom: 0.5rem;
}

.vehicle-details {
  display: flex;
  align-items: center;
  color: #8B6349;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.separator {
  margin: 0 0.5rem;
  color: #D6C8B5;
}

.vehicle-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #A47E42;
  margin-bottom: 1.5rem;
}

.vehicle-actions {
  display: flex;
  gap: 0.75rem;
}

.vehicle-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.vehicle-btn.primary {
  background: #A47E42;
  color: white;
  border: none;
}

.vehicle-btn.primary:hover {
  background: #8B6349;
}

.vehicle-btn.secondary {
  background: transparent;
  color: #A47E42;
  border: 1px solid #A47E42;
}

.vehicle-btn.secondary:hover {
  background: #A47E42;
  color: white;
}

/* Pagination container */
.pagination-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #EAE0D1;
}

/* Add visual separation */
.inventory-main-container::before {
  content: '';
  position: absolute;
  left: 220px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #EAE0D1, transparent);
  z-index: 1;
}

/* Responsive design */
@media (max-width: 1200px) {
  .inventory-main-container {
    grid-template-columns: 180px 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .inventory-main-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .inventory-sidebar {
    order: 1;
    position: static;
    width: 100%;
  }
  
  .filter-sort-container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  
  .search-bar-container {
    flex-direction: column;
  }
  
  .inventory-search-bar {
    border-radius: 8px;
  }
  
  .search-button {
    border-radius: 8px;
  }
  
  .inventory-results-header {
    flex-direction: column;
    gap: 1rem;
  }
}
