@charset "UTF-8";
:root {
  --primary-color: #c29d3c;
  /* Gold base */
  --primary-hover-color: #a9862f;
  /* Darker gold on hover */
  --accent-color: #d9881e;
  /* Warm orange-gold for highlights */
  --background-color: #fdfaf5;
  /* Light cream/goldish background */
  --card-background-color: #ffffff;
  --text-color: #3b2e13;
  /* Dark brown instead of black */
  --text-muted-color: #8c7b5c;
  /* Muted goldish-gray */
  --border-color: #e3d6b1;
  /* Subtle warm border */
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(194, 157, 60, 0.15);
  --box-shadow-hover: 0 6px 16px rgba(194, 157, 60, 0.25);
  --product-detail-card-background: #fff;
  --product-detail-border-color: #e8dbc0;
  --product-detail-text-color: #3b2e13;
  --product-detail-muted-text-color: #a18f6d;
  --product-detail-accent-color: #d9881e;
  --product-detail-primary-color: #c29d3c;
  --product-detail-border-radius: 8px;
  --product-detail-box-shadow: 0 4px 12px rgba(194, 157, 60, 0.15);
  --product-detail-spacing-unit: 1rem; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background-color);
  color: #333;
  margin: 0;
  padding: 0; }

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

/* New styles for category sections */
.category-section {
  margin-bottom: 40px; }

.category-section__title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px; }

.product-card {
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  position: relative;
  /* Added to make it a positioning context for the badge */ }

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

.product-card__image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* Changed to contain to see whole image */
  background-color: #f8f9fa;
  /* Light background for images */
  padding: 15px;
  /* Slightly more padding */
  box-sizing: border-box; }

.product-card__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column; }

.product-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-color); }

.product-card__price {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px; }

.product-card__price .original-price {
  text-decoration: line-through;
  color: var(--text-muted-color);
  font-size: 1rem; }

.product-card__price .sale-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--accent-color, #dc3545); }

.product-card__price .current-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-color, #333); }

.product-card__discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color, #e74c3c);
  color: white;
  padding: 5px 8px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1; }

.product-card__features {
  font-size: 0.9rem;
  color: #555;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  flex-grow: 1; }

.product-card__features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px; }

.product-card__features li::before {
  content: '✓';
  color: #27ae60;
  position: absolute;
  /* Keep checkmark */
  left: 0;
  font-weight: bold; }

.product-card__actions {
  margin-top: auto;
  /* Pushes actions to the bottom */
  display: flex;
  justify-content: space-between;
  align-items: center; }

.product-card__actions .btn-details {
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  transition: background-color 0.3s ease; }

.product-card__actions .btn-details:hover {
  background-color: var(--primary-hover-color); }

.product-card__actions .compare-checkbox {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted-color); }

.product-card__actions .compare-checkbox input {
  margin-right: 5px;
  accent-color: var(--primary-color); }

/* New styles for "View all in category" button */
.category-section__view-all-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  /* Use primary color for consistency */
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease; }

.category-section__view-all-btn:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px); }

/* Styles for Root Categories Section */
.root-categories-section {
  background-color: var(--card-background-color);
  /* Or var(--background-color) for less emphasis */
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px; }

.root-categories-section__title {
  font-size: 1.5rem;
  /* Slightly smaller than featured category titles */
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--text-color); }

.root-categories-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Spacing between category items */ }

.root-categories-section__item a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #e9ecef;
  /* A light grey, distinct from primary buttons */
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }

.root-categories-section__item a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color); }

/* Breadcrumb Styles */
.breadcrumb {
  list-style: none;
  padding: 10px 15px;
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  /* Spacing below breadcrumbs */ }

.breadcrumb li {
  font-size: 0.9rem;
  color: var(--text-muted-color); }

.breadcrumb li a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.2s ease; }

.breadcrumb li a:hover {
  color: var(--primary-hover-color);
  text-decoration: underline; }

.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
  color: var(--text-muted-color); }

.breadcrumb li.active {
  color: var(--text-color);
  font-weight: 500; }

/* Site Footer Styles */
.site-footer {
  background-color: #343a40;
  /* Dark background for footer */
  color: #f8f9fa;
  /* Light text color */
  padding: 30px 0;
  margin-top: 40px;
  /* Space above the footer */
  font-size: 0.9rem;
  text-align: center; }

.site-footer p {
  margin: 0 0 10px 0; }

.site-footer a {
  color: var(--primary-color);
  /* Use primary color for links */
  text-decoration: none;
  transition: color 0.2s ease; }

.site-footer a:hover {
  color: var(--primary-hover-color);
  text-decoration: underline; }

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  /* Center pagination block */
  padding-left: 0;
  list-style: none;
  border-radius: var(--border-radius);
  margin-top: 30px;
  /* Space above pagination */
  margin-bottom: 20px;
  /* Space below pagination */ }

.page-item {
  margin: 0 3px;
  /* Spacing between page items */ }

.page-item .page-link {
  position: relative;
  display: block;
  padding: 0.65rem 0.95rem;
  /* Slightly adjusted padding */
  line-height: 1.25;
  color: var(--primary-color);
  background-color: var(--card-background-color);
  border: 1px solid var(--border-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  /* Apply border-radius to links */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }

.page-item .page-link:hover {
  z-index: 2;
  color: var(--primary-hover-color);
  background-color: #e9ecef;
  /* Light hover background */
  border-color: #dee2e6; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500; }

.page-item.disabled .page-link {
  color: var(--text-muted-color);
  pointer-events: none;
  cursor: auto;
  background-color: var(--card-background-color);
  border-color: var(--border-color); }

.page-link .sr-only {
  /* Screen reader only text */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/* Site Footer Styles */
.site-footer {
  background-color: #343a40;
  /* Dark background for footer */
  color: #f8f9fa;
  /* Light text color */
  padding: 30px 0;
  margin-top: 40px;
  /* Space above the footer */
  font-size: 0.9rem;
  text-align: center; }

.site-footer p {
  margin: 0 0 10px 0; }

.site-footer a {
  color: var(--primary-color);
  /* Use primary color for links */
  text-decoration: none;
  transition: color 0.2s ease; }

.site-footer a:hover {
  color: var(--primary-hover-color);
  text-decoration: underline; }

/* Base styles for content-section */
.content-section {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0px auto;
  max-width: 1200px;
  /* Constrain width for non-wide pages */
  width: 100%;
  box-sizing: border-box; }

/* Wide layout for homepage */
.content-section--wide {
  max-width: 100%;
  /* Full-width for homepage */
  margin: 1rem 0; }

/* Heading styles */
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e1e2f; }

/* Paragraph styles for text-heavy pages */
.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem; }

/* Form styles for form-heavy pages */
.content-section .js-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem; }

/* Ensure table fits within content-section */
.content-section .custom-table {
  width: 100%;
  max-width: 100%; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 1rem 1.5rem;
    margin: 0.5rem; }

  .content-section--wide {
    margin: 0.5rem; }

  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem; }

  .content-section p {
    font-size: 0.9375rem; } }
@media (max-width: 480px) {
  .content-section {
    padding: 0.75rem 1rem; }

  .content-section h2 {
    font-size: 1.25rem; }

  .content-section p {
    font-size: 0.875rem; } }
.flash-message-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0; }

.flash-message-row > div {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  /* Limits the width for better readability */ }

.flash-message {
  background-color: #e6f4ea;
  /* Light green background for success */
  color: #2e7d32;
  /* Dark green text for contrast */
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #a5d6a7;
  /* Subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  /* Smooth fade-in animation */ }

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .flash-message {
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 10px; } }
.filter-bar {
  background-color: var(--card-background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center; }

.filter-bar input[type="search"],
.filter-bar select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  flex-grow: 1; }

.filter-bar input[type="search"] {
  min-width: 250px; }

.filter-bar button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease; }

.filter-bar button:hover {
  background-color: var(--primary-hover-color); }

.filter-bar__browse-all-btn {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: background-color 0.3s ease; }

.filter-bar__browse-all-btn:hover {
  background-color: #218838; }

/* Site Header Styles */
.site-header {
  background-color: var(--card-background-color);
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  top: 0;
  z-index: 1000;
  width: 100%; }

.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; }

.site-header__branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.site-header__logo-img {
  height: 40px;
  /* Adjust as needed */
  width: auto;
  /* Maintain aspect ratio */
  margin-right: 10px;
  /* Space between image and text logo */
  vertical-align: middle;
  /* Align image nicely with text */ }

.site-header__logo a {
  display: flex;
  /* Align image and text logo horizontally */
  align-items: center;
  /* Vertically center items in the link */
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px; }

.site-header__logo a span {
  font-weight: 400;
  color: var(--text-color);
  /* Optional: if you want the "bot" part to be slightly smaller or styled differently */
  /* font-size: 0.9em; */ }

.site-header__tagline {
  font-size: 0.85rem;
  color: var(--text-muted-color);
  margin-top: -2px;
  margin-bottom: 0; }

.site-header__nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease; }

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--primary-color); }

.site-header__search-form {
  flex-grow: 1;
  display: flex;
  align-items: center;
  margin: 0 20px;
  /* Spacing around the search form */
  position: relative;
  /* Needed for absolute positioning of suggestions */ }

.site-header__search-form input[type="search"] {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  /* Rounded left corners */
  font-size: 1rem;
  flex-grow: 1;
  min-width: 200px;
  /* Minimum width for the search input */ }

.site-header__search-form button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  /* Ensure border consistency */
  border-left: none;
  /* Remove left border to merge with input */
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  /* Rounded right corners */
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease; }

.site-header__search-form button:hover {
  background-color: var(--primary-hover-color); }

.site-header__actions .btn {
  padding: 8px 18px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-left: 10px; }

.site-header__actions .btn-login,
.site-header__actions .btn-logout {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color); }

.site-header__actions .btn-login:hover,
.site-header__actions .btn-logout:hover {
  background-color: var(--primary-color);
  color: white; }

.site-header__actions .btn-register,
.site-header__actions .btn-account {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color); }

.site-header__actions .btn-register:hover,
.site-header__actions .btn-account:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color); }

/* Responsive adjustments for header */
@media (max-width: 768px) {
  .site-header__container {
    flex-wrap: wrap;
    justify-content: space-between;
    /* Keep logo and actions apart */ }

  .site-header__branding {
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 10px; }

  .site-header__logo a {
    justify-content: center;
    /* Center logo content (image + text) */ }

  .site-header__tagline {
    margin-top: 0; }

  .site-header__search-form {
    order: 3;
    /* Move search form to the next line */
    width: 100%;
    margin: 10px 0 0 0;
    /* Adjust margin for wrapped state */ }

  .site-header__logo {
    margin-bottom: 0;
    /* Remove bottom margin if search wraps */ } }
.autocomplete-suggestions {
  position: absolute;
  border: 1px solid var(--border-color);
  border-top: none;
  z-index: 999;
  top: 100%;
  /* Position below the input */
  left: 0;
  right: 0;
  background-color: var(--card-background-color);
  box-shadow: var(--box-shadow);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 300px;
  overflow-y: auto; }

.autocomplete-suggestion {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px; }

.autocomplete-suggestion:hover {
  background-color: #f0f0f0; }

.autocomplete-suggestion img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px; }

.autocomplete-suggestion .title {
  flex-grow: 1;
  font-size: 0.95rem; }

.autocomplete-suggestion .price {
  font-size: 0.9rem;
  color: var(--text-muted-color);
  font-weight: bold; }

.category-header {
  margin-bottom: 20px; }
  .category-header__title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-color); }
  .category-header__description {
    font-size: 1rem;
    color: var(--text-muted-color); }

.category-items-section {
  margin-bottom: 30px;
  margin-top: 20px;
  padding: 20px;
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow); }
  .category-items-section__title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-color); }
  .category-items-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
  .category-items-section__item {
    background-color: var(--background-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color); }
  .category-items-section__link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500; }
    .category-items-section__link:hover {
      text-decoration: underline; }
  .category-items-section__product-count {
    font-size: 0.85em;
    color: var(--text-muted-color); }

.active-filters-display {
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--accent-background-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; }
  .active-filters-display__label {
    margin-right: 10px;
    color: var(--text-color);
    font-weight: bold; }
  .active-filters-display__pill {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9em; }
  .active-filters-display__pill-remove {
    margin-left: 8px;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    opacity: 0.7; }
    .active-filters-display__pill-remove:hover {
      opacity: 1; }
  .active-filters-display__clear-all {
    margin-left: auto;
    color: var(--text-muted-color);
    text-decoration: none;
    font-size: 0.9em; }
    .active-filters-display__clear-all:hover {
      text-decoration: underline; }

.category-content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 20px; }
  @media (max-width: 991.98px) {
    .category-content-wrapper {
      flex-direction: column;
      gap: 25px; } }

.filters-column {
  flex: 0 0 280px; }
  @media (max-width: 991.98px) {
    .filters-column {
      flex-basis: auto;
      width: 100%; } }

.filters-section {
  padding: 20px;
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow); }
  .filters-section__title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-color); }

.filter-group {
  margin-bottom: 20px; }
  .filter-group__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color); }
  .filter-group__options-scrollable {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--border-radius); }
  .filter-group__option-label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer; }
    .filter-group__option-label input[type="checkbox"] {
      margin-right: 5px;
      accent-color: var(--primary-color); }
  .filter-group__option-list {
    list-style: none;
    padding: 0;
    margin: 0; }
  .filter-group__option-item {
    margin-bottom: 5px; }
  .filter-group__option-link {
    color: var(--primary-color);
    text-decoration: none; }
    .filter-group__option-link:hover, .filter-group__option-link--active {
      text-decoration: underline; }
    .filter-group__option-link--active {
      font-weight: bold; }

.filters-actions {
  margin-top: 20px; }
  .filters-actions__clear-link {
    color: var(--text-muted-color);
    text-decoration: none;
    font-size: 0.9em; }
    .filters-actions__clear-link:hover {
      text-decoration: underline; }

.products-column {
  flex: 1;
  min-width: 0; }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px; }
  .products-header__title {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-color); }
  .products-header__count {
    color: var(--text-muted-color);
    font-size: 0.9em; }

.sort-options-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .sort-options-wrapper label {
    margin-right: 8px;
    font-size: 0.9em;
    color: var(--text-muted-color); }
  .sort-options-wrapper select {
    padding: 8px 10px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: var(--card-background-color);
    color: var(--text-color);
    font-size: 0.9em; }

.category-message {
  text-align: center;
  color: var(--text-muted-color);
  padding: 30px 0;
  background-color: var(--card-background-color);
  border-radius: var(--border-radius);
  margin-top: 20px; }
  .category-message--prominent {
    font-size: 1.2rem;
    padding: 40px 0; }
  .category-message--subtle {
    font-size: 1rem;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow); }

/* Shared button styles */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease; }

.btn-primary {
  background: var(--primary-color);
  color: white; }

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

.btn-secondary {
  background: var(--text-muted-color);
  color: white; }

.btn-secondary:hover {
  background: var(--text-color); }

header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap; }

header a {
  text-decoration: none;
  color: #1f2a44;
  transition: color 0.2s ease; }

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

.logo {
  display: flex;
  align-items: center; }

.logo img {
  height: 48px;
  margin-right: 0.5rem; }

.logo strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2a44; }

nav {
  display: flex;
  align-items: center; }

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #1f2a44;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease, text-decoration 0.2s ease; }

nav a:hover {
  color: #2563eb;
  text-decoration: underline; }

@media (max-width: 768px) {
  header {
    padding: 0.75rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem; }

  .logo img {
    height: 40px; }

  .logo strong {
    font-size: 1rem; }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; }

  nav a {
    margin: 0.5rem;
    font-size: 0.875rem; } }
@media (max-width: 480px) {
  header {
    padding: 0.5rem 1rem; }

  .logo img {
    height: 36px; }

  .logo strong {
    font-size: 0.9375rem; }

  nav a {
    margin: 0.25rem 0.5rem;
    font-size: 0.8125rem; } }

/*# sourceMappingURL=about_2.css.map */
