html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    margin-bottom: 50px;
    line-height: 1.6;
    background-color: #f8f9fa;
}
header {
    text-align: center;
    padding: 5px 0;
    background-color: #FFFFFF;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}
.error {
    color: red;
}

h1, .h1 {
    color: #8CC63E;
}
h2 {
    color: #8CC63E;
}
h3 {
    color: #000f;
    font-size:18px;
    font-weight:bold;
}
/*p {
    color: #555;
}*/

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #f0f0f0;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
}
.product-attention {
    color: orangered; /* Example styling */
    cursor: pointer; /* Example styling */
}
.product-code {
    color: lightgray; /* Example styling */
   
}
.product-item {
    border: 1px solid #ddd;
    padding: 15px;
    width:300px;
    margin: 10px;
    text-align: center;
}
    .product-item img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
.product-image {
    width: 150px;
    height: auto;
}
.price {
    color: #007bff;
    font-weight: bold;
}
/*.product-description {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/

   /* .product-description:hover {
        max-width: none;
        overflow: visible;
        white-space: normal;
    }*/