/* ===================================================================
   OrderSpareParts.ng — Store (Public) Stylesheet
   ===================================================================
   Extends admin design tokens. Brand: White / Red (#c62828) / Black (#111827)
   =================================================================== */

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

:root {
  --brand-red:        #c62828;
  --brand-red-hover:  #b71c1c;
  --brand-red-light:  #ffebee;
  --brand-black:      #111827;
  --brand-black-soft: #1f2937;
  --brand-white:      #ffffff;

  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;

  --color-success: #16a34a;
  --color-warning: #f59e0b;

  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm:   0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-card: 0 1px 3px 0 rgba(0,0,0,0.08), 0 1px 2px -1px rgba(0,0,0,0.08);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.10), 0 4px 6px -4px rgba(0,0,0,0.10);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.12);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base: 250ms cubic-bezier(0.4,0,0.2,1);
}

/* ===================================================================
   Reset & Base
   =================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: #fff;
  overflow-x: hidden;
}

a { color: var(--brand-red); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brand-red-hover); }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--brand-black); margin-top: 0; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================================================
   Flexbox / Grid Utilities
   =================================================================== */

.d-flex          { display: flex; }
.d-grid          { display: grid; }
.flex-wrap       { flex-wrap: wrap; }
.flex-col        { flex-direction: column; }
.items-start     { align-items: flex-start; }
.items-center    { align-items: center; }
.items-end       { align-items: flex-end; }
.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.flex-1          { flex: 1; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.5rem; }
.gap-6  { gap: 2rem; }

.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); }
.text-sm     { font-size: 0.875rem; }
.text-lg     { font-size: 1.125rem; }
.text-xl     { font-size: 1.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold   { font-weight: 700; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }

/* ===================================================================
   Navbar
   =================================================================== */

.store-navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 64px;
}

.store-navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.store-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.store-navbar .navbar-brand img {
  height: 36px;
}

.store-navbar .navbar-brand .brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-black);
  letter-spacing: -0.025em;
}

.store-navbar .navbar-brand .brand-text span {
  color: var(--brand-red);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 2rem;
  list-style: none;
  padding: 0;
}

.navbar-links li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: var(--brand-black);
  background: var(--gray-100);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.25rem;
}

/* ===================================================================
   Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}

.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(198,40,40,0.2); }

.btn-primary {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-red-hover); border-color: var(--brand-red-hover); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); color: var(--brand-black); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.875rem; font-size: 0.8125rem; }

/* ===================================================================
   Hero Section
   =================================================================== */

.hero {
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(198,40,40,0.18), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(198,40,40,0.08), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: var(--brand-red);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-content .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .hero-illustration {
  width: 100%;
  max-width: 440px;
}

/* ===================================================================
   Section
   =================================================================== */

.section {
  padding: 4rem 0;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================================================================
   Feature Cards
   =================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  background: var(--brand-red-light);
  color: var(--brand-red);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===================================================================
   Product Cards
   =================================================================== */

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

.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card .product-image {
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

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

.product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card .product-body {
  padding: 1.25rem;
}

.product-card .product-category {
  font-size: 0.75rem;
  color: var(--brand-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.product-card .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--brand-black);
}

.product-card .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.product-card .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
}

.product-card .product-price small {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ===================================================================
   Categories Strip
   =================================================================== */

.categories-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-chip:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.08);
}

.category-chip i {
  font-size: 1.125rem;
}

/* ===================================================================
   CTA Section
   =================================================================== */

.cta-section {
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(198,40,40,0.2), transparent);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--gray-400);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ===================================================================
   Stats Bar
   =================================================================== */

.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats-bar .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-black);
  line-height: 1.1;
}

.stats-bar .stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ===================================================================
   Footer
   =================================================================== */

.store-footer {
  background: var(--brand-black);
  color: var(--gray-400);
  padding: 3rem 0 1.5rem;
}

.store-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.store-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-footer ul li {
  margin-bottom: 0.5rem;
}

.store-footer ul li a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.store-footer ul li a:hover {
  color: #fff;
}

.store-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.store-footer .footer-brand img {
  height: 28px;
}

.store-footer .footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
}

/* ===================================================================
   Maintenance Page
   =================================================================== */

.maintenance-wrapper {
  min-height: 100vh;
  background: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.maintenance-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(198,40,40,0.15), transparent),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(198,40,40,0.06), transparent);
  pointer-events: none;
}

.maintenance-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  padding: 3rem 2rem;
}

.maintenance-card .brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--brand-red);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(198,40,40,0.15);
}

.maintenance-card h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.maintenance-card h1 span {
  color: var(--brand-red);
}

.maintenance-card p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.maintenance-card .countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.maintenance-card .countdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  min-width: 72px;
}

.maintenance-card .countdown-item .count-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.maintenance-card .countdown-item .count-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.maintenance-card .subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.maintenance-card .subscribe-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.maintenance-card .subscribe-form input::placeholder {
  color: var(--gray-500);
}

.maintenance-card .subscribe-form input:focus {
  border-color: var(--brand-red);
}

.maintenance-card .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.maintenance-card .social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.125rem;
  transition: all var(--transition-fast);
}

.maintenance-card .social-links a:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

/* ===================================================================
   Auth Pages (Customer Login / Register)
   =================================================================== */

.auth-wrapper {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}

.auth-card .auth-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.auth-card .auth-logo img {
  height: 40px;
}

.auth-card h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.375rem;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

.auth-card .form-group {
  margin-bottom: 1.25rem;
}

.auth-card .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.auth-card .form-control {
  display: block;
  width: 100%;
  padding: 0.6rem 0.875rem;
  font-size: 0.9375rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.auth-card .form-control:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.auth-card .btn-primary {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.auth-card .auth-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.auth-card .auth-footer a {
  font-weight: 500;
}

/* ===================================================================
   Customer Dashboard
   =================================================================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
}

.dashboard-sidebar {
  background: var(--brand-black);
  padding: 1.5rem 0;
}

.dashboard-sidebar .user-info {
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.5rem;
}

.dashboard-sidebar .user-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.dashboard-sidebar .user-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.dashboard-sidebar .user-email {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.dashboard-sidebar ul li a:hover,
.dashboard-sidebar ul li a.active {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-left-color: var(--brand-red);
}

.dashboard-content {
  background: var(--gray-50);
  padding: 2rem;
}

.dashboard-content .page-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ===================================================================
   About Page
   =================================================================== */

.about-hero {
  background: var(--brand-black);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(198,40,40,0.18), transparent);
  pointer-events: none;
}

.about-hero h1 {
  color: #fff;
  font-size: 2.75rem;
  position: relative;
}

.about-hero p {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 1rem auto 0;
  position: relative;
}

.about-content {
  padding: 4rem 0;
}

.about-content .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content .about-text h2 {
  margin-bottom: 1rem;
}

.about-content .about-text p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 991px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 { font-size: 2.25rem; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-content .btn-group { justify-content: center; }
  .hero-image { display: none; }

  .store-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .about-content .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    margin: 0;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-hamburger {
    display: block;
  }

  .hero { padding: 3rem 0; }
  .hero-content h1 { font-size: 1.875rem; }

  .section { padding: 2.5rem 0; }

  .store-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .countdown { flex-wrap: wrap; }
  .maintenance-card { padding: 2rem 1rem; }
  .maintenance-card h1 { font-size: 1.5rem; }

  .auth-card { padding: 1.5rem; }

  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
