/* 
   Vista Food Mart - Premium CSS Stylesheet
   Designed for local SEO and Google Ads landing pages.
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary: #10b981;
  --primary-rgb: 16, 185, 129;
  --primary-hover: #059669;
  --secondary: #fbbf24;
  --secondary-rgb: 251, 191, 36;
  --accent: #6366f1;
  --danger: #ef4444;
  --success: #10b981;

  /* Dark Theme Default */
  --bg-1: #090a0f;
  --bg-2: #111218;
  --bg-3: #181922;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --input-bg: rgba(255, 255, 255, 0.05);
  --card-hover-bg: rgba(255, 255, 255, 0.06);

  /* Fonts */
  --font-title: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.15);
}

/* Light Theme overrides */
[data-theme="light"] {
  --bg-1: #f8fafc;
  --bg-2: #f1f5f9;
  --bg-3: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: rgba(15, 23, 42, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.15);
  --input-bg: #ffffff;
  --card-hover-bg: rgba(16, 185, 129, 0.05);
}

/* Reset and Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-1);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Background Gradients */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}

header.scrolled .nav-container {
  padding: 0.8rem 2rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo-wrapper svg {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Header Utilities */
.nav-utils {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Theme Toggle Button */
.theme-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.theme-btn:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  color: var(--primary);
}

.theme-btn .sun-icon {
  display: none;
}

[data-theme="light"] .theme-btn .moon-icon {
  display: none;
}

[data-theme="light"] .theme-btn .sun-icon {
  display: block;
}

/* Open Status Badge */
.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.live-status-badge.closed {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.live-status-badge .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: currentColor;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* Mobile Menu Toggle
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
} */

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--card-hover-bg);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Page Layout */
section {
  padding: 7rem 2rem 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}
.hours-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* small status dot */
.nav-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
  transition: var(--transition);
}

/* OPEN state */
.nav-status-dot.open {
  background: var(--success);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
}

/* Glass Card Component */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

/* Hero Section */
#hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feat-icon {
  width: 38px;
  height: 38px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-feat-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Visual Collage / Rotating Showcase */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-photo {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 4px solid var(--bg-3);
  transition: var(--transition);
  cursor: pointer;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-photo:hover {
  transform: scale(1.05) translateY(-5px) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.collage-photo:hover img {
  transform: scale(1.1);
}

/* Specifying positions for 3 key real photos */
.photo-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}

.photo-2 {
  width: 65%;
  height: 60%;
  bottom: 0;
  right: 0;
  transform: rotate(4deg);
  z-index: 3;
}

.photo-3 {
  width: 50%;
  height: 50%;
  top: 20%;
  right: 15%;
  transform: rotate(-6deg);
  z-index: 2;
}

/* Core Highlights Section */
#services {
  background-color: var(--bg-2);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #ffffff;
  transform: rotateY(180deg);
}

.service-title {
  font-size: 1.35rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Interactive Product Catalog Section */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

/* Gallery Filter Bar Styling */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.product-image-container {
  height: 180px;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

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

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

.product-availability {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.product-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.product-specialty {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Store Tour Gallery */
#gallery {
  background-color: var(--bg-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  transition: opacity 0.2s ease;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary);
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-family: var(--font-title);
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary);
  color: #ffffff;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* Reviews / Testimonials Section */
.reviews-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.review-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-title);
  color: rgba(var(--primary-rgb), 0.08);
  line-height: 1;
}

.review-rating {
  color: var(--secondary);
  font-size: 1.25rem;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-title);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
}

.author-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.reviews-dot.active {
  background: var(--primary);
  width: 25px;
}

/* Contact and Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-small-card {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.info-small-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-small-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.info-small-text p,
.info-small-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.info-small-text a:hover {
  color: var(--primary);
}

.store-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.store-hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.store-hours-table tr:last-child {
  border-bottom: none;
}

.store-hours-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
}

.store-hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.store-hours-table tr.current-day {
  color: var(--primary);
  font-weight: 700;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input {
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Map Section */
#location {
  background-color: var(--bg-3);
  padding-bottom: 6rem;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-map-frame {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.neighborhood-highlight {
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.neighborhood-highlight p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer Section */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col h3 {
  font-size: 1.15rem;
  font-family: var(--font-title);
  color: var(--text-main);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}
/* Responsive Media Queries */
/* Responsive Media Queries */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    gap: 3rem;
    text-align: center;
  }

  .hero-title-tag {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    max-width: 600px;
    margin: 2rem auto 0 auto;
  }

  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid,
  .location-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-map-frame {
    order: 2;
  }
}


/* =========================
   MOBILE NAVBAR FIX (MAIN)
   ========================= */
@media (max-width: 768px) {

  html {
    font-size: 15px;
  }

  /* NAV CONTAINER: 2 ROW LAYOUT */
  .nav-container {
    flex-wrap: wrap;        /* allows new line */
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  /* LOGO SMALLER */
  .logo-wrapper {
    height: 32px;
  }

  /* UTILS (theme + status) stay top row right */
  .nav-utils {
    gap: 0.6rem;
    margin-right: 0.5rem;
  }

  .theme-btn {
    width: 36px;
    height: 36px;
  }

  /* NAV MENU MOVES TO SECOND LINE */
  .nav-menu {
    flex: 1 0 100%;          /* forces new row */
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 0.9rem;

    overflow-x: auto;
    white-space: nowrap;

    margin-top: 0.6rem;
    padding-bottom: 0.4rem;

    background: var(--bg-2);
    border-bottom: 1px solid var(--border-color);
  }

  /* NAV ITEMS */
  .nav-menu li {
    flex: 0 0 auto;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
    display: inline-block;
  }

  /* HIDE SCROLLBAR */
  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-menu {
    scrollbar-width: none;
  }

  /* GENERAL MOBILE SPACING */
  section {
    padding: 5rem 1.5rem 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lightbox-nav {
    display: none;
  }
}

/* ===== FIX HERO COLLAGE MOBILE DISPLAY ===== */
@media (max-width: 768px) {

  .hero-visual {
    height: auto !important;
    max-width: 100% !important;
    padding: 0 1rem;
  }

  .collage-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .collage-photo {
    position: relative !important;
    width: 100% !important;
    height: 160px !important;
    border-radius: 14px;
    overflow: hidden;
  }

  .collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* optional: make one image full width for better look */
  .collage-photo.photo-2 {
    grid-column: span 2;
    height: 200px;
  }
}
/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .catalog-filter-bar {
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
}
