/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
  color: #333;
}

.container {
  min-height: 100vh;
  position: relative;
}

/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #333;
  text-transform: uppercase;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333;
  transition: opacity 0.2s;
}

.icon-btn:hover {
  opacity: 0.7;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ff6b35;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s;
}

.hamburger-menu:hover {
  opacity: 0.7;
}

.hamburger-menu span {
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 1px;
  transition: all 0.3s;
}

/* Mobile Top Bar - Removed, using main header instead */
.mobile-top-bar {
  display: none !important;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.mobile-menu.active {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-menu-content {
  background: #fff;
  width: 280px;
  height: 100vh;
  padding: 0;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 4px;
  transition: opacity 0.2s;
}

.close-menu:hover {
  opacity: 0.7;
}

.mobile-nav {
  padding: 20px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 400;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.nav-item:hover {
  background-color: #fafafa;
}

.nav-item-with-dropdown {
  display: flex;
  flex-direction: column;
}

.nav-item-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 400;
  background: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
}

.nav-item-toggle:hover {
  background-color: #fafafa;
}

.nav-item-toggle span:first-child {
  flex: 1;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #999;
  margin-left: 8px;
}

.nav-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.nav-dropdown.active {
  max-height: 500px;
}

.dropdown-item {
  display: block;
  padding: 10px 20px 10px 40px;
  color: #666;
  text-decoration: none;
  transition: background-color 0.2s;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:hover {
  background-color: #fafafa;
  color: #ff6b35;
}

.dropdown-loading {
  padding: 10px 20px 10px 40px;
  color: #999;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

/* Mobile Filter Panel */
.mobile-filter-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.mobile-filter-panel.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.filter-panel-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Desktop Layout */
.desktop-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 60px);
}

/* Filter Sidebar */
.filter-sidebar {
  width: 280px;
  background: #fff;
  padding: 32px 24px;
  box-shadow: 1px 0 3px rgba(0,0,0,0.05);
  height: calc(100vh - 60px);
  position: sticky;
  top: 60px;
  overflow-y: auto;
}

/* Filter Sections */
.filter-section {
  margin-bottom: 32px;
}

.filter-section label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Accordion Styles */
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: left;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.2s;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-toggle:hover {
  color: #ff6b35;
}

.accordion-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.toggle-icon {
  transition: transform 0.2s;
  font-size: 12px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.expanded {
  max-height: 200px;
  padding-top: 12px;
}

@media (min-width: 751px) {
  .accordion-content {
    max-height: 200px !important;
    padding-top: 12px !important;
  }
}

/* Category Options */
.category-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.category-option:hover {
  color: #ff6b35;
}

.category-option input[type="radio"] {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #ff6b35;
}

/* Price Range */
.price-range-container {
  margin-top: 12px;
}

.price-range-container input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e5e5;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
}

.price-range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
  transition: all 0.3s ease;
}

.price-range-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.price-range-container input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(255,107,53,0.3);
  transition: all 0.3s ease;
}

.price-range-container input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.price-label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-align: center;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 32px;
  background: #fafafa;
}

/* Category Filter Pills */
.category-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 20px;
  border: none;
  background: #f0f0f0;
  color: #666;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-pill:hover {
  background: #e5e5e5;
}

.filter-pill.active {
  background: #ff6b35;
  color: #fff;
}

.category-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-icon-btn {
  background: #f0f0f0;
  color: #666;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.filter-icon-btn:hover {
  background: #e5e5e5;
}

.filter-icon-btn.active {
  background: #ff6b35;
  color: #fff;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 20px;
}

.section-header > div {
  flex: 1;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.view-all-btn {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.view-all-btn:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

/* Search Row */
.search-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.search-container {
  flex: 1;
  position: relative;
}

.search-container::before {
  content: '🔍';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
}

.search-container input {
  width: 100%;
  padding: 12px 16px 12px 45px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.search-container input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

/* Results Counter */
.results-counter {
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #e5e5e5;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #fafafa;
  overflow: hidden;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-new {
  background: #333;
  color: #fff;
}

.badge-sale {
  background: #ff6b35;
  color: #fff;
}

.product-badge:not(:first-child) {
  top: 44px;
}

.product-info {
  padding: 16px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.empty-state h3 {
  margin: 0 0 16px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.empty-state p {
  margin: 0;
  font-size: 16px;
  color: #999;
}

/* Done Button */
.done-button {
  width: 100%;
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
  transition: background-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.done-button:hover {
  background: #e55a2b;
}

/* Responsive Design */
@media (min-width: 751px) {
  .mobile-top-bar,
  .mobile-menu,
  .mobile-filter-panel {
    display: none !important;
  }
  
  .desktop-layout {
    display: flex !important;
  }
  
  .filter-sidebar {
    display: block !important;
  }
}

@media (max-width: 750px) {
  .main-header {
    padding: 12px 16px;
  }

  .brand-logo {
    font-size: 20px;
  }

  .mobile-top-bar {
    display: flex;
  }
  
  .desktop-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    display: none;
  }
  
  .main-content {
    padding: 20px 16px;
  }
  
  h1 {
    font-size: 20px;
    margin: 0 0 4px 0;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-header > div {
    flex: 1;
    min-width: 0;
  }

  .view-all-btn {
    padding: 10px 16px;
    font-size: 12px;
    width: auto;
    flex-shrink: 0;
  }
  
  .category-filters {
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 14px;
  }

  .current-price {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-panel-content {
    width: 95%;
    padding: 20px;
  }
  
  .mobile-menu-content {
    width: 100%;
  }
}

/* Focus styles for accessibility */
button:focus,
input:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  aspect-ratio: 1.2;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.category-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  padding: 24px 20px 20px;
  color: #fff;
}

.category-card-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #fff;
}

.category-card-count {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

@media (max-width: 750px) {
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  
  .category-card-name {
    font-size: 20px;
  }
}

/* Main Filter Panel */
.main-filter-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.main-filter-panel.active {
  display: flex;
}

.main-filter-panel-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.filter-panel-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.close-filter-panel {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-filter-panel:hover {
  background: #f5f5f5;
  opacity: 0.8;
}

.filter-panel-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.filter-panel-body .filter-section {
  margin-bottom: 28px;
}

.filter-panel-body .filter-section:last-child {
  margin-bottom: 0;
}

.filter-panel-body .filter-section > label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: none;
  border: none;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.accordion-toggle:hover {
  color: #ff6b35;
}

.toggle-icon {
  font-size: 12px;
  transition: transform 0.3s;
}

.accordion-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.expanded {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

.category-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.category-option:hover {
  color: #ff6b35;
}

.category-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.price-range-container {
  margin-top: 12px;
}

.price-range-container input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e5e5;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-range-container input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-label {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.sort-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.sort-select:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.checkbox-option:hover {
  color: #ff6b35;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff6b35;
}

.filter-panel-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
}

.clear-filters-btn,
.apply-filters-btn {
  flex: 1;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  border: none;
}

.clear-filters-btn {
  background: #f0f0f0;
  color: #666;
}

.clear-filters-btn:hover {
  background: #e5e5e5;
}

.apply-filters-btn {
  background: #ff6b35;
  color: #fff;
}

.apply-filters-btn:hover {
  background: #e55a2b;
}

@media (max-width: 750px) {
  .main-filter-panel {
    padding: 0;
    align-items: flex-end;
  }
  
  .main-filter-panel-content {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }
}

/* Smooth transitions */
* {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
