.page-title {
    font-family: 'Pangolin';
    color: #4e342e;
    font-weight: bold;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Pangolin', cursive;
    color: #2e7d32;
    font-weight: 600;
    font-size: 40px;
}

.card {
    background: #f9a825;
}

.cart-btn {
    background: #4e342e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(94, 67, 23, 0.3);
}

.cart-btn:hover {
    background: #2e7d32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 95, 31, 0.4);
    text-decoration: none;
}

.card-title {
    font-family: 'Pangolin', cursive;
    color: #4e342e;
    font-weight: 600;
}

.card-text {
    font-family: 'Nunito', sans-serif;
    color: #2e7d32;
    font-weight: bold;
}

.price {
    font-family: 'Nunito', sans-serif;
    color: #4e342e;
    font-weight: bold;
    font-size: 22px;
}

.add-to-cart-btn {
    background: #4e342e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 8px;
}

.add-to-cart-btn:hover {
    background: #2e7d32;
    color: #ffffff;
}