/* Store theme variables — overridden at runtime by the per-store <style> block in _Layout.cshtml */
:root {
    --store-primary-bg:     #ffffff;
    --store-secondary-bg:   #f8f9fa;
    --store-primary-text:   #212529;
    --store-secondary-text: #212529;
    --store-header-bg:      #ffffff;
    --store-header-text:    #212529;
}

.store-header {
    background-color: var(--store-header-bg);
    color: var(--store-header-text);
}

.store-primary-bg   { background-color: var(--store-primary-bg);   color: var(--store-primary-text); }
.store-secondary-bg { background-color: var(--store-secondary-bg); color: var(--store-secondary-text); }

html {
  font-size: 14px;
}

input[type="hidden"] {
    display: none !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Address autocomplete suggestions */
.autocomplete-suggestions {
  position: absolute;
  z-index: 1050;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.autocomplete-suggestions .autocomplete-item {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.autocomplete-suggestions .autocomplete-item:hover {
  background-color: #e9ecef;
}