body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

header {
    background-color: #024b20;
    color: #fff;
    padding: 5px;
    text-align: center;
}

.last {
    display: block;
    text-align: center;
}

.dropdown {
    display: inline-block;
    margin-right: 20px;
}

.dropdown select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #2ecc71;
    background-color: #fff;
    color: #2ecc71;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.product {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    width: calc(25% - 30px);
    text-align: center;
    display: block;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.product img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product:hover {
    transform: scale(1.05);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 300px; /* Adjust as needed */
  margin: auto;
  overflow: hidden;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.carousel button.prev,
.carousel button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.carousel button.prev {
  left: 0;
}

.carousel button.next {
  right: 0;
}

footer {
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#communication-bar {
    background-color: #024b20;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#communication-bar p {
    margin: 0;
}

@media only screen and (max-width: 600px) {
    .info-bubble {
        font-size: 12px;
        padding: 8px;
    }
}

@media only screen and (max-width: 1200px) {
    .product {
        width: calc(33.33% - 30px);
    }
}

@media only screen and (max-width: 900px) {
    .product {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 600px) {
    .product {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 480px) {

    #sorting-buttons select,
    #sorting-buttons button {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    header {
        font-size: 24px;
    }
}

@media only screen and (max-width: 600px) {
    header {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    header {
        font-size: 16px;
    }
}