/* =========================
   01. Admin Management Styles
   ========================= */
.admin-header-row { 
  align-items: center; 
  display: flex; 
  justify-content: space-between; 
  margin-bottom: 20px; 
}

.categories-container { 
  margin: 20px auto; 
  max-width: 1200px; 
  padding: 0 20px; 
}

.category-table { 
  background: white; 
  border-collapse: collapse; 
  border-radius: 12px; 
  box-shadow: 0 4px 15px rgba(196, 124, 24, 0.1); 
  overflow: hidden; 
  table-layout: fixed; 
  width: 100%; 
}

.category-table td { 
  border-bottom: 1px solid #eee; 
  color: var(--text-dark); 
  padding: 15px; 
  vertical-align: top; 
}

.category-table th { 
  background-color: var(--brand-gold); 
  color: white; 
  padding: 15px; 
  text-align: left; 
}

.cat-thumb { 
  border: 1px solid #ddd; 
  border-radius: 4px; 
  height: 50px; 
  object-fit: cover; 
  width: 50px; 
}

.col-actions { text-align: center; width: 100px; }
.col-img { width: 80px; }
.col-name { width: 180px; }
.col-order { width: 80px; }
.col-slug { width: 150px; }

.text-desc { font-size: 0.85rem; line-height: 1.4; }
.text-muted-small { color: #999; font-size: 0.85rem; }
.thumb-placeholder { background: #eee; border-radius: 4px; height: 50px; width: 50px; }

/* =========================
   02. App-Style Storefront Layout
   ========================= */
.btn-add {
  background-color: var(--brand-gold);
  border-radius: 6px;
  box-sizing: border-box;
  color: white;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: auto;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
}

.btn-add:hover {
  background-color: var(--brand-gold-dark);
}

.category-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 25px 0;
  max-width: 800px;
}

.category-header {
  align-items: center;
  color: var(--brand-gold-dark);
  display: flex;
  font-family: 'Crimson Text', serif;
  font-size: 2rem;
  gap: 15px;
  margin: 0 0 5px 0;
}

.category-section {
  border-bottom: 1px dashed rgba(196, 124, 24, 0.2);
  padding-bottom: 20px;
  padding-top: 40px;
}

.category-section:last-of-type {
  border-bottom: none;
}

.jump-menu {
  display: flex;
  gap: 12px;
  margin: 0 auto;
  max-width: 1200px;
  overflow-x: auto;
  padding: 0 80px;
  scrollbar-width: none;
}

.jump-menu::-webkit-scrollbar {
  display: none;
}

.jump-menu-wrapper {
  background-color: var(--bg-cream);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pill-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pill-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: white;
}

.product-card {
  background-color: var(--card-white);
  border: 1px solid var(--brand-gold);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.product-card:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: none;
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px;
}

.product-info h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.product-price {
  color: var(--brand-gold-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* =========================
   03. Base Layout
   ========================= */
body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  display: flex;           /* Sticky Footer Fix */
  flex-direction: column;  /* Sticky Footer Fix */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;       /* Sticky Footer Fix: Body takes full height */
}

body.modal-open {
  overflow: hidden;
}

main.wrap {
  flex-grow: 1;            /* Sticky Footer Fix: Pushes footer to bottom */
}

.form-col {
  flex: 1;
}

.form-row {
  display: flex; 
  gap: 10px;
}

.hidden {
  display: none !important;
}

/* =========================
   04. Brand Color Variables
   ========================= */
:root {
  --bg-cream: #FFF6E8;
  --brand-gold: #C47C18;
  --brand-gold-dark: #BB6D01;
  --card-white: #FFFFFF;
  --text-dark: #222222;
}

/* =========================
   05. Buttons
   ========================= */
.btn, .btn-submit {
  align-self: flex-start; 
  background-color: var(--brand-gold);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto; 
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover, .btn-submit:hover {
  background-color: var(--brand-gold-dark);
}

.btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-full {
  margin-top: 5px;
  padding: 10px; 
  width: 100%; 
}

/* =========================
   06. Card Styling
   ========================= */
.card {
  background-color: var(--card-white);
  border-radius: 12px;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: none;
}

.card img {
  height: 120px;
  object-fit: cover;
  width: 100%;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 12px 14px;
}

.card-content h2 {
  color: var(--brand-gold-dark);
  font-size: 1rem;
  margin: 0 0 8px 0;
}

.card-content p {
  color: #555;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.category-card .btn {
  display: block;
  font-size: 0.82rem;
  margin-top: auto;
  padding: 9px 0;
  text-align: center;
  width: 100%;
}

.price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-desc {
  display: -webkit-box;
  line-clamp: 3;
  margin-bottom: 15px;
  min-height: 4.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;  
  -webkit-line-clamp: 3;
}

/* =========================
   07. Category Hero & Breadcrumbs
   ========================= */
.breadcrumb {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--brand-gold);
  text-decoration: none;
}

.category-hero {
  margin-bottom: 40px;
  text-align: center;
}

/* =========================
   08. Divider
   ========================= */
.brand-divider {
  background-color: var(--brand-gold);
  border: none;
  height: 3px;
  margin: 0;
  width: 100%;
}

/* =========================
   09. Footer Styling (Slim Version)
   ========================= */
.site-footer {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Crimson Text', serif;
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
}

.footer-container-slim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px !important;
  width: 100%;
  box-sizing: border-box;
}

.footer-left-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-label {
  font-weight: 700;
  color: var(--brand-gold-dark);
}

.footer-item-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-item-inline svg {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.footer-item-inline a, .footer-link-inline {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-sep {
  color: var(--brand-gold);
  opacity: 0.4;
  font-weight: 400;
}

.footer-right-copyright {
  color: var(--text-dark);
}

.footer-right-copyright p {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* =========================
   10. Header & Search UI
   ========================= */
.auth-link {
  color: var(--brand-gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.baking-quote {
  color: var(--brand-gold-dark);
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  font-size: 0.82rem;
}

.header-topbar-left,
.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}

.header-center {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 0 30px;
}

.header-left {
  flex-shrink: 0;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  min-width: 240px;
  position: relative;
}

.header-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #888;
}

.header-social-label {
  color: #888;
  font-size: 0.78rem;
  white-space: nowrap;
}

.header-search-container {
  position: relative;
  width: 100%;
}

.quote-author {
  color: var(--brand-gold);
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 4px 0 0 0;
}

.quote-block {
  max-width: 480px;
  text-align: center;
}

.search-dropdown {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: block;
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 450px;
  z-index: 1000;
}

.search-form {
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  padding-left: 12px;
  transition: border-color 0.2s;
}

.search-form button {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 6px 10px;
}

.search-form input {
  border: none;
  font-size: 0.85rem;
  outline: none;
  padding: 6px 0;
  width: 100%;
}

.search-form:focus-within {
  border-color: var(--brand-gold);
}

.search-hero-compact {
  margin-bottom: 10px;
}

.search-item-prod {
  align-items: center;
  border-radius: 8px;
  color: var(--text-dark);
  display: flex; gap: 12px;
  padding: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.search-item-prod img {
  border-radius: 6px;
  height: 45px;
  object-fit: cover;
  width: 45px;
}

.search-item-prod span { font-size: 0.95rem; font-weight: 600; }

.search-item-prod:hover { background: #f9f9f9; }

.search-no-results { color: #666; font-style: italic; text-align: center; }

.search-result-card img {
  height: 130px;
}

.search-result-cat {
  color: #888;
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.search-result-info {
  padding: 10px;
}

.search-result-info h3 {
  font-size: 0.95rem;
}

.search-result-price {
  color: var(--brand-gold-dark);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.search-results-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}

.search-results-list h4 {
  color: #999;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.search-results-section {
  padding-top: 0;
}

.sep {
  color: var(--brand-gold);
  margin: 0 5px;
  opacity: 0.5;
}

.site-header {
  background-color: var(--bg-cream);
  border-bottom: 2px solid var(--brand-gold);
  padding: 0;
}

.greta-photo {
  height: 180px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.site-header .logo {
  display: block;
  height: auto;
  max-height: 100px;
  max-width: 170px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--brand-gold-dark);
  transform: scale(1.1);
}

.social-links svg {
  height: 16px;
  width: 16px;
}

.user-greeting {
  margin-right: 6px;
}

.user-interface {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================
   11a. Menu Card Styles
   ========================= */
.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
}

.menu-card-content h2 {
  font-size: 1.05rem;
  margin: 0;
}

.menu-card-content p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.menu-card-steps {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-card-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #ccc;
}

.step-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--brand-gold);
}

.menu-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.menu-card-btn {
  background-color: white;
  border-radius: 6px;
  color: var(--brand-gold-dark);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.menu-card-btn:hover {
  background-color: var(--brand-gold-dark);
  color: white;
}

.menu-card-btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.menu-card-btn-secondary:hover {
  background-color: rgba(255,255,255,0.15);
  color: white;
}

.menu-card-tagline {
  font-style: italic;
  font-family: 'Crimson Text', serif;
  font-size: 0.95rem !important;
  opacity: 0.85;
}

.grid-filler {
  visibility: hidden;
}

.grid-spacer {
  display: none;
}

/* =========================
   11. Info Card Variations
   ========================= */
.dark-theme {
  background-color: var(--text-dark);
  border-top: none;
}

.dark-theme h2 { color: var(--brand-gold); }
.dark-theme p { color: #ccc; }

.gold-theme {
  background-color: var(--brand-gold);
  border-top: none;
}

.gold-theme h2, 
.gold-theme p, 
.gold-theme .info-icon {
  color: white;
}

.info-card {
  justify-content: center;
  text-align: center;
}

.info-icon {
  color: var(--brand-gold);
  height: 32px;
  margin: 0 auto 15px;
  width: 32px;
}

/* =========================
   12. Main Grid Layout
   ========================= */
.category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 30px;
  max-width: 1200px;
}

.wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 24px 80px 0px; 
}

/* =========================
   13. Modal & Scrolling Fixes
   ========================= */
#authModal .form-group {
  margin-bottom: 10px;
}

#authModal .form-group input {
  padding: 8px;
}

#authModal .form-group label {
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.auth-modal-content {
  margin: auto;
  max-width: 440px;
  padding: 25px;
}

.auth-modal-overlay {
  align-items: center;
  display: flex !important;
  justify-content: center;
  visibility: hidden;
}

.auth-modal-overlay.active {
  visibility: visible;
}

.btn-cancel { 
  background: #eee; 
  border: none; 
  border-radius: 6px; 
  cursor: pointer; 
  flex: 1; 
  padding: 12px; 
}

.error-msg {
  color: #d93025;
  display: none;
  font-size: 0.75rem;
  margin-top: 2px;
}

.form-group { margin-bottom: 15px; }

.form-group input, 
.form-group textarea { 
  border: 1px solid #ddd; 
  border-radius: 6px; 
  box-sizing: border-box; 
  padding: 10px; 
  width: 100%; 
}

.form-group label { display: block; font-weight: bold; margin-bottom: 5px; }

.help-text { color: #666; display: block; font-size: 0.8rem; margin-top: 4px; }

.help-text-muted {
  color: #888;
  font-size: 0.7rem; 
}

.image-zoom-trigger {
  align-items: center;
  background: white;
  border: none;
  border-radius: 50%;
  bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 30px;
}

.image-zoom-trigger svg {
  color: var(--brand-gold);
  height: 18px;
  width: 18px;
}

.product-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.product-card-img-wrapper:hover .image-zoom-trigger {
  opacity: 1;
  transform: scale(1.1);
}

.modal { 
  background: rgba(0,0,0,0.5); 
  display: none; 
  height: 100%; 
  left: 0; 
  overflow-y: auto; 
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 1000; 
}

.modal-close {
  cursor: pointer; 
  font-size: 1.5rem; 
  line-height: 1;
}

.modal-content { 
  background: white; 
  border-radius: 12px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
  box-sizing: border-box; 
  margin: 5% auto; 
  max-height: 85vh; 
  overflow-y: auto; 
  padding: 30px; 
  width: 450px; 
}

.modal-footer { display: flex; gap: 10px; margin-top: 10px; }

.modal-footer-note {
  font-size: 0.85rem; 
  margin-bottom: 0;
  margin-top: 15px; 
  text-align: center; 
}

.modal-header-row {
  align-items: center; 
  display: flex; 
  justify-content: space-between; 
  margin-bottom: 15px;
}

.modal-link-alt {
  color: var(--brand-gold); 
  font-weight: bold;
}

.modal-title {
  color: var(--brand-gold-dark);
  font-size: 1.25rem;
  margin: 0; 
}

.zoom-modal-close {
  color: white;
  cursor: pointer;
  font-size: 40px;
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 1003;
}

.zoom-modal-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.zoom-modal-content img {
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}

.zoom-modal-overlay {
  align-items: center;
  background: rgba(0,0,0,0.85) !important;
  display: none;
  justify-content: center;
  z-index: 2000 !important;
}

/* =========================
   14. User Account & Dashboard
   ========================= */

/* Tab navigation bar — sits flush against the gold divider.
   Active tab color matches the divider so there's no seam.
   To add tabs: edit the $tabs array in account.php only.   */
.dashboard-tab-bar {
  background-color: var(--bg-cream);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.dashboard-tab-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 80px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dashboard-tab-inner::-webkit-scrollbar {
  display: none;
}

.dash-tab {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: none;
  /* Overlap the 3px divider below — zero gap between tab and line */
  margin-bottom: -3px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dash-tab:hover {
  background-color: rgba(196, 124, 24, 0.09);
  border-top-color: var(--brand-gold);
  border-left-color: var(--brand-gold);
  border-right-color: var(--brand-gold);
  color: var(--brand-gold-dark);
}

.dash-tab.active {
  background-color: var(--brand-gold);
  border-top-color: var(--brand-gold);
  border-left-color: var(--brand-gold);
  border-right-color: var(--brand-gold);
  color: white;
}

/* Reuses .brand-divider style — rendered as <hr class="dashboard-divider"> */
.dashboard-divider {
  background-color: var(--brand-gold);
  border: none;
  height: 3px;
  margin: 0;
  width: 100%;
}

/* Content area */
.dashboard-wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 30px 80px 0;
}

.dashboard-greeting {
  margin: 0 0 24px 0;
}

.dashboard-greeting h1 {
  color: var(--brand-gold-dark);
  font-family: 'Crimson Text', serif;
  font-size: 2rem;
  margin: 0 0 4px 0;
}

.dashboard-greeting p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Summary stat cards (Overview tab) */
.dash-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.dash-stat-card {
  background: white;
  border: 1px solid rgba(196,124,24,0.25);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-stat-icon {
  color: var(--brand-gold);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.dash-stat-info h3 {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.dash-stat-info p {
  color: #999;
  font-size: 0.78rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section titles */
.dash-section-title {
  color: var(--brand-gold-dark);
  font-family: 'Crimson Text', serif;
  font-size: 1.4rem;
  margin: 0 0 14px 0;
  border-bottom: 1px dashed rgba(196,124,24,0.25);
  padding-bottom: 8px;
}

/* Orders table */
.dash-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.dash-table th {
  background-color: var(--brand-gold);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.dash-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.dash-table tr:last-child td {
  border-bottom: none;
}

/* Placeholder panels */
.dash-placeholder {
  background: white;
  border: 1px dashed rgba(196,124,24,0.3);
  border-radius: 10px;
  padding: 60px 30px;
  text-align: center;
  margin-bottom: 30px;
}

.dash-placeholder .ph-icon {
  color: rgba(196,124,24,0.3);
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: block;
}

.dash-placeholder h3 {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0 0 6px 0;
}

.dash-placeholder p {
  font-size: 0.85rem;
  color: #bbb;
  margin: 0;
}

/* Account settings */
.dash-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.dash-settings-card {
  background: white;
  border: 1px solid rgba(196,124,24,0.2);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 24px;
}

.dash-settings-card h3 {
  color: var(--brand-gold-dark);
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  margin: 0 0 16px 0;
}

/* =========================
   15. Responsive Breakpoints
   ========================= */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jump-menu {
    padding: 0 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wrap {
    padding: 30px 40px;
  }
  .dashboard-tab-inner,
  .dashboard-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
  .dash-summary-row {
    grid-template-columns: 1fr 1fr;
  }
  .dash-settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-header {
    font-size: 1.6rem;
  }
  .jump-menu {
    padding: 0 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .search-results-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 20px 20px;
  }
  .dashboard-tab-inner,
  .dashboard-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dash-tab {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .dash-summary-row {
    grid-template-columns: 1fr;
  }
  .dashboard-greeting h1 {
    font-size: 1.5rem;
  }
}
