body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

a {color:#ea5b0c}

a.itemlink {
  color: black;
  text-decoration: none;
}

a.itemlink:hover {
  color: #ea5b0c;
  text-decoration: underline;
}

p {
    margin-bottom: 0.6rem;
}

.cart-icon {
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}


.card-img-top {
    height: 200px;
    object-fit: scale-down;
}

.btn {
    transition: background-color 0.3s;
}

@media (max-width: 576px) {
    .card-img-top {
        height: 150px;
    }
}
/* Default: show dash on desktop */
.switch::before {
  content: "-";
}

/* For desktop, add a hyphen before the paragraph content */
.switch::before {
  content: "-";
}

/* For mobile, add a line break before the paragraph content */
@media (max-width: 600px) {
  .switch::before {
    content: " "; /* Clear the desktop content */
    display: block; /* Create a line break */
  }
}