body {
    font-family: 'Lora', serif; /* Apply Lora font globally */
}
.page-title {
    font-size: 30px; /* Set font size to 30px */
    text-align: left; /* Align title to the left */
}
.out-of-stock-label {
    position: absolute;
    top: 10px;
    right: 10px; /* Move to the right side */
    background-color: rgba(255, 255, 255, 0.9);
    color: #EB4D5E; /* Updated color */
    font-weight: normal; /* Set font weight to normal */
    font-size: 0.8rem; /* Adjust font size to smaller */
    padding: 5px 10px;
    border: 1px solid #EB4D5E; /* Updated border color */
    border-radius: 20px;
    z-index: 1;
}
.product-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-style: dashed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-style: solid;
}
.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.product-card p {
    margin: 0;
    text-decoration: none !important;
    text-align: left;
}
.product-card strong {
    font-size: 1.2rem;
    text-decoration: none !important;
}
.product-card del {
    color: #888;
    font-size: 0.9rem;
}

.product-cart .card-footer {
    background-color: #f5f5f5 !important;
}

a {
    text-decoration: none;
}

select {
    border-radius: 0 !important;
}