:root {
  --secondary-bg-color: #343a40;
}

html, body {
  background: green url('../media/picnic_bg.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.panel {
  border-radius: 15px;
  background-color: transparent;
  border: 1px solid #3d1a41;
}

.light-panel {
  background-color: var(--secondary-bg-color);
  color: white;
}

.results-panel {
  padding-left: 25%;
  padding-right: 25%;
}

.closed-basket {
  background-image: url('/static/base/media/picnic_basket_closed.png');
}

.open-basket {
  background-image: url('/static/base/media/picnic_basket_open.png');
}

.image-container {
  position: relative;
}

.image-container span {
  position: relative;
}

.catalog-page {
  min-height: 100vh;
  padding: 2rem;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("/static/base/media/picnic_background.jpg");
  background-size: cover;
  background-position: center;
}

.catalog-card {
  border-radius: 16px;
  background: #1f2428;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.catalog-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.6);
}

.catalog-card img {
  border-radius: 12px;
  background: #2a2f34;
}

.catalog-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #f8f9fa;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

img#item_catalog {
  aspect-ratio: 1/1;
}

img#item_panel {
  max-width: 15%;
}