/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/* =====================================================
   STOREFRONT DESIGN SYSTEM - PROFESSIONAL EDITION
   Modern, clean, customer-facing UI
   ===================================================== */

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

/* =====================================================
   CSS Variables (Design Tokens)
   ===================================================== */
:root {
  /* Brand Colors - Modern & Professional */
  --color-primary: #ea384d;
  --color-primary-hover: #d32f44;
  --color-primary-light: rgba(234, 56, 77, 0.08);
  --color-primary-gradient: linear-gradient(135deg, #ea384d 0%, #d32f44 100%);
  --color-secondary: #ff6b35;
  --color-accent: #10b981;

  /* Neutral Colors - Refined grays */
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f4f4f5;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d4d4d8;
  --color-gray-400: #a1a1aa;
  --color-gray-500: #71717a;
  --color-gray-600: #52525b;
  --color-gray-700: #3f3f46;
  --color-gray-800: #27272a;
  --color-gray-900: #18181b;

  /* Semantic Aliases */
  --color-background: var(--color-gray-50);
  --color-surface: var(--color-white);
  --color-text-primary: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-600);
  --color-text-muted: var(--color-gray-400);
  --color-border: var(--color-gray-200);
  --color-border-hover: var(--color-gray-300);

  /* Status Colors */
  --color-success: #16a34a;
  --color-success-light: rgba(22, 163, 74, 0.1);
  --color-warning: #d97706;
  --color-warning-light: rgba(217, 119, 6, 0.1);
  --color-error: #dc2626;
  --color-error-light: rgba(220, 38, 38, 0.08);
  --color-danger: #dc2626;
  --color-danger-bg: rgba(220, 38, 38, 0.08);
  --color-info: #2563eb;
  --color-info-light: rgba(37, 99, 235, 0.08);

  /* Border Radius - Refined */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  /* Shadows - Soft & Premium */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 800px;
}

/* =====================================================
   Reset & Base Styles
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-background);
  min-height: 100vh;
}

/* =====================================================
   Typography - Professional
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
  color: var(--color-text-secondary);
  line-height: 1.65;
}

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

a:hover {
  color: var(--color-primary-hover);
}

/* =====================================================
   Buttons - Premium Feel
   ===================================================== */
button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--color-primary-gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(234, 56, 77, 0.25);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover:not(:disabled)::before {
  opacity: 1;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 56, 77, 0.35);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(234, 56, 77, 0.25);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--color-gray-300);
  background: var(--color-gray-50);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 10px 16px;
}

.btn-ghost:hover:not(:disabled) {
  background: var(--color-gray-100);
  color: var(--color-text-primary);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

/* =====================================================
   Form Elements - Refined
   ===================================================== */
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--color-gray-300);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

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

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: 6px;
  font-weight: 500;
}

/* =====================================================
   Cards - Premium Design
   ===================================================== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}

.card-body {
  padding: 24px;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.card-footer {
  padding: 16px 24px;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-border);
}

/* =====================================================
   Badge - Professional
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}

.badge-success {
  background: var(--color-success-light);
  color: var(--color-success);
  border-color: rgba(22, 163, 74, 0.2);
}

.badge-warning {
  background: var(--color-warning-light);
  color: var(--color-warning);
  border-color: rgba(217, 119, 6, 0.2);
}

.badge-error {
  background: var(--color-error-light);
  color: var(--color-error);
  border-color: rgba(220, 38, 38, 0.2);
}

.badge-info {
  background: var(--color-info-light);
  color: var(--color-info);
  border-color: rgba(37, 99, 235, 0.2);
}

/* =====================================================
   Container
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* =====================================================
   Header - Premium
   ===================================================== */
.store-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.store-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.store-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.store-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(234, 56, 77, 0.25);
}

.store-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* =====================================================
   Cart Button - Premium
   ===================================================== */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--color-primary-gradient);
  color: white;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(234, 56, 77, 0.25);
  border: none;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 56, 77, 0.35);
}

.cart-count {
  background: white;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  min-width: 24px;
  text-align: center;
}

/* =====================================================
   Product Grid - iFood Style
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
}

.product-card {
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .product-card {
    flex-direction: column;
  }
}

.product-card:hover {
  border-color: rgba(234, 56, 77, 0.1);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-image {
  width: 120px;
  height: 120px;
  min-width: 120px;
  background: linear-gradient(145deg, #fff5f7, #ffe8ec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .product-image {
    width: 100%;
    height: 200px;
    min-width: auto;
  }
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.03) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

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

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

.product-content {
  padding: 16px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .product-content {
    padding: 20px;
  }
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .product-name {
    font-size: 1.0625rem;
    margin-bottom: 6px;
  }
}

.product-description {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1;
}

@media (min-width: 640px) {
  .product-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-100);
  margin-top: auto;
}

@media (min-width: 640px) {
  .product-footer {
    padding-top: 16px;
  }
}

.product-price {
  font-size: 1.125rem;
  font-weight: 800;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .product-price {
    font-size: 1.375rem;
  }
}

.add-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: var(--color-secondary);
  color: white;
  border: none;
  padding: 0;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.add-btn svg {
  position: relative;
  z-index: 1;
  color: white;
  stroke: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.add-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.add-btn:hover::before {
  opacity: 1;
}

@media (min-width: 640px) {
  .add-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

.add-btn:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(0.97);
  box-shadow: var(--shadow-xl);
}

.add-btn:active {
  transform: translateY(0) scale(1);
  filter: none;
  box-shadow: var(--shadow-sm);
}

/* Quantity controls in product cards */
.product-qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-qty-controls .qty-btn {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .product-qty-controls .qty-btn {
    width: 34px;
    height: 34px;
  }
}

.product-qty-controls .qty-value {
  min-width: 24px;
  font-size: 0.875rem;
}

/* =====================================================
   Category Pills - Premium
   ===================================================== */
.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.category-pill {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xs);
}

.category-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(234, 56, 77, 0.04);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.category-pill.active {
  background: var(--color-primary-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(234, 56, 77, 0.3);
}

.category-emoji {
  font-size: 1rem;
}

/* =====================================================
   Main Content - iFood Style Layout
   ===================================================== */
.main-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px 100px;
}

/* =====================================================
   Hero Banner - iFood Style
   ===================================================== */
.hero-banner {
  background: linear-gradient(135deg, #ea384d 0%, #ff6b35 100%);
  border-radius: 24px;
  padding: 40px 32px;
  margin: 16px 0 28px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(234, 56, 77, 0.2);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-badge.closed {
  background: rgba(220, 38, 38, 0.3);
}

.hero-hours {
  margin-top: 12px;
  font-size: 0.875rem;
  opacity: 0.9;
  color: white;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 16px;
  color: white;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.95;
}

.hero-info-item svg {
  opacity: 0.85;
}

/* =====================================================
   Categories Section - Sticky iFood Style
   ===================================================== */
.categories-section {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 50;
  background: var(--color-background);
  padding: 16px 0;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-background);
  z-index: -1;
}

/* =====================================================
   Products Section - iFood Style
   ===================================================== */
.products-section {
  padding-top: 8px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.section-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.category-group {
  margin-top: 20px;
}

.category-group-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin: 6px 0 14px;
}

/* =====================================================
   Cart Drawer - Premium
   ===================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--color-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-2xl);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h2 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
}

.cart-drawer-close:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-300);
  color: var(--color-gray-700);
}

.cart-drawer-body {
  flex: 1 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-gray-50);
}

/* =====================================================
   Cart Items - Premium
   ===================================================== */
.cart-empty {
  text-align: center;
  padding: 64px 24px;
}

.cart-empty-icon {
  width: 80px;
  height: 80px;
  background: var(--color-gray-100);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--color-gray-400);
}

.cart-empty h3 {
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: 1.125rem;
}

.cart-empty p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.cart-item-image {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #fef3c7, #fed7aa);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-600);
}

.qty-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.qty-value {
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  font-size: 0.9375rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.cart-total-label {
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.cart-total-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

/* =====================================================
   Checkout - Premium
   ===================================================== */
.checkout-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 20px;
}

.checkout-section h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
}

.checkout-section h3 span {
  font-size: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  gap: 16px;
}

.address-book {
  background: var(--color-gray-50);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.address-book-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.address-book-header h4 {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.address-book-empty {
  background: var(--color-gray-50);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.address-list {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.address-card {
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: var(--transition-fast);
}

.address-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-xs);
}

.address-card.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.address-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.address-card-city {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.address-card-body {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* =====================================================
   Order Status Tracker - Premium
   ===================================================== */
.order-tracker {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.order-tracker-icon {
  width: 100px;
  height: 100px;
  background: var(--color-success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 3rem;
  color: var(--color-success);
}

.order-tracker h2 {
  margin-bottom: 8px;
  color: var(--color-success);
  font-size: 1.5rem;
}

.order-tracker-id {
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: var(--color-gray-100);
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  display: inline-block;
  margin-bottom: 32px;
}

.status-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  min-width: 110px;
  opacity: 0.35;
  transition: all var(--transition-normal);
}

.status-step.active {
  opacity: 1;
}

.status-step.completed {
  opacity: 0.6;
}

.status-step-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.status-step.active .status-step-icon {
  background: var(--color-primary-light);
  animation: pulse 2s ease-in-out infinite;
}

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

.status-step-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* =====================================================
   Loading Spinner
   ===================================================== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   Skeleton Loaders
   ===================================================== */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-gray-100) 0%,
    var(--color-gray-200) 50%,
    var(--color-gray-100) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-lg);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

@media (min-width: 640px) {
  .skeleton-card {
    flex-direction: column;
  }
}

.skeleton-image {
  width: 120px;
  height: 120px;
  min-width: 120px;
}

@media (min-width: 640px) {
  .skeleton-image {
    width: 100%;
    height: 200px;
    min-width: auto;
  }
}

.skeleton-content {
  padding: 16px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 640px) {
  .skeleton-content {
    padding: 20px;
  }
}

.skeleton-title {
  height: 20px;
  width: 70%;
  border-radius: 4px;
}

.skeleton-text {
  height: 14px;
  width: 90%;
  border-radius: 4px;
}

.skeleton-price {
  height: 24px;
  width: 40%;
  border-radius: 4px;
  margin-top: auto;
}

/* =====================================================
   Alerts / Messages
   ===================================================== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  border: 1px solid transparent;
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.alert-success {
  background: var(--color-success-light);
  color: var(--color-success);
  border-color: rgba(22, 163, 74, 0.2);
}

.alert-warning {
  background: var(--color-warning-light);
  color: var(--color-warning);
  border-color: rgba(217, 119, 6, 0.2);
}

.alert-error {
  background: var(--color-error-light);
  color: var(--color-error);
  border-color: rgba(220, 38, 38, 0.2);
}

.alert-info {
  background: var(--color-info-light);
  color: var(--color-info);
  border-color: rgba(37, 99, 235, 0.2);
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--color-text-muted); }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 768px) {
  h1 { font-size: 1.625rem; }
  h2 { font-size: 1.25rem; }

  .container {
    padding: 0 16px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .status-steps {
    gap: 4px;
  }

  .status-step {
    min-width: 90px;
    padding: 12px;
  }

  .checkout-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .store-header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .store-logo {
    font-size: 1.125rem;
  }

  .store-logo-icon {
    width: 40px;
    height: 40px;
  }

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

  .product-image {
    height: 160px;
  }

  .product-content {
    padding: 16px;
  }

  .order-tracker {
    padding: 24px 16px;
  }
}

